SQL++ support in AsterixDB:
1. implemented SQL++ expression to logical plan translator;
2. refactored REST API to be agnostic of query languages;
3. disabled fuzzy join queries for SQL++ runtime tests;
4. fixed several rewriting rules.
Change-Id: I82919c4527b304325059519d819a2c30cf2902a9
Reviewed-on: https://asterix-gerrit.ics.uci.edu/479
Reviewed-by: Till Westmann <tillw@apache.org>
Tested-by: Jenkins <jenkins@fulliautomatix.ics.uci.edu>
diff --git a/asterix-app/src/test/java/org/apache/asterix/test/aql/AQLTestCase.java b/asterix-app/src/test/java/org/apache/asterix/test/aql/AQLTestCase.java
index 618faf6..7173103 100644
--- a/asterix-app/src/test/java/org/apache/asterix/test/aql/AQLTestCase.java
+++ b/asterix-app/src/test/java/org/apache/asterix/test/aql/AQLTestCase.java
@@ -30,8 +30,10 @@
import org.apache.asterix.common.config.GlobalConfig;
import org.apache.asterix.common.exceptions.AsterixException;
-import org.apache.asterix.lang.aql.parser.AQLParser;
+import org.apache.asterix.lang.aql.parser.AQLParserFactory;
import org.apache.asterix.lang.aql.parser.ParseException;
+import org.apache.asterix.lang.common.base.IParser;
+import org.apache.asterix.lang.common.base.IParserFactory;
import org.apache.hyracks.algebricks.common.exceptions.AlgebricksException;
import org.junit.Test;
@@ -40,6 +42,7 @@
public class AQLTestCase extends TestCase {
private final File queryFile;
+ private final IParserFactory aqlParserFactory = new AQLParserFactory();
AQLTestCase(File queryFile) {
super("testAQL");
@@ -49,13 +52,13 @@
@Test
public void testAQL() throws UnsupportedEncodingException, FileNotFoundException, ParseException, AsterixException,
AlgebricksException {
- Reader fis = new BufferedReader(new InputStreamReader(new FileInputStream(queryFile), "UTF-8"));
- AQLParser parser = new AQLParser(fis);
+ Reader reader = new BufferedReader(new InputStreamReader(new FileInputStream(queryFile), "UTF-8"));
+ IParser parser = aqlParserFactory.createParser(reader);
GlobalConfig.ASTERIX_LOGGER.info(queryFile.toString());
try {
parser.parse();
} catch (Exception e) {
- GlobalConfig.ASTERIX_LOGGER.warning("Failed while testing file " + fis);
+ GlobalConfig.ASTERIX_LOGGER.warning("Failed while testing file " + reader);
StringWriter sw = new StringWriter();
PrintWriter writer = new PrintWriter(sw);
e.printStackTrace(writer);
diff --git a/asterix-app/src/test/java/org/apache/asterix/test/dml/DmlTest.java b/asterix-app/src/test/java/org/apache/asterix/test/dml/DmlTest.java
index fdd4bc2..dff1c18 100644
--- a/asterix-app/src/test/java/org/apache/asterix/test/dml/DmlTest.java
+++ b/asterix-app/src/test/java/org/apache/asterix/test/dml/DmlTest.java
@@ -28,6 +28,7 @@
import org.apache.asterix.api.common.AsterixHyracksIntegrationUtil;
import org.apache.asterix.api.java.AsterixJavaClient;
import org.apache.asterix.common.exceptions.AsterixException;
+import org.apache.asterix.compiler.provider.AqlCompilationProvider;
import org.apache.asterix.test.aql.TestExecutor;
import org.apache.asterix.test.base.AsterixTestHelper;
import org.junit.Test;
@@ -57,7 +58,8 @@
Reader loadReader = new BufferedReader(
new InputStreamReader(new FileInputStream(LOAD_FOR_ENLIST_FILE), "UTF-8"));
AsterixJavaClient asterixLoad = new AsterixJavaClient(
- AsterixHyracksIntegrationUtil.getHyracksClientConnection(), loadReader, ERR);
+ AsterixHyracksIntegrationUtil.getHyracksClientConnection(), loadReader, ERR,
+ new AqlCompilationProvider());
try {
asterixLoad.compile(true, false, false, false, false, true, false);
} catch (AsterixException e) {
diff --git a/asterix-app/src/test/java/org/apache/asterix/test/optimizer/OptimizerTest.java b/asterix-app/src/test/java/org/apache/asterix/test/optimizer/OptimizerTest.java
index 18c66b9..092f898 100644
--- a/asterix-app/src/test/java/org/apache/asterix/test/optimizer/OptimizerTest.java
+++ b/asterix-app/src/test/java/org/apache/asterix/test/optimizer/OptimizerTest.java
@@ -28,6 +28,18 @@
import java.util.Collection;
import java.util.logging.Logger;
+import org.apache.asterix.api.common.AsterixHyracksIntegrationUtil;
+import org.apache.asterix.api.java.AsterixJavaClient;
+import org.apache.asterix.common.config.AsterixPropertiesAccessor;
+import org.apache.asterix.common.config.AsterixTransactionProperties;
+import org.apache.asterix.common.config.GlobalConfig;
+import org.apache.asterix.common.exceptions.AsterixException;
+import org.apache.asterix.compiler.provider.AqlCompilationProvider;
+import org.apache.asterix.compiler.provider.ILangCompilationProvider;
+import org.apache.asterix.external.dataset.adapter.FileSystemBasedAdapter;
+import org.apache.asterix.external.util.IdentitiyResolverFactory;
+import org.apache.asterix.test.base.AsterixTestHelper;
+import org.apache.asterix.test.common.TestHelper;
import org.apache.commons.io.FileUtils;
import org.junit.AfterClass;
import org.junit.Assume;
@@ -38,17 +50,6 @@
import org.junit.runners.Parameterized;
import org.junit.runners.Parameterized.Parameters;
-import org.apache.asterix.api.common.AsterixHyracksIntegrationUtil;
-import org.apache.asterix.api.java.AsterixJavaClient;
-import org.apache.asterix.common.config.AsterixPropertiesAccessor;
-import org.apache.asterix.common.config.AsterixTransactionProperties;
-import org.apache.asterix.common.config.GlobalConfig;
-import org.apache.asterix.common.exceptions.AsterixException;
-import org.apache.asterix.external.dataset.adapter.FileSystemBasedAdapter;
-import org.apache.asterix.external.util.IdentitiyResolverFactory;
-import org.apache.asterix.test.base.AsterixTestHelper;
-import org.apache.asterix.test.common.TestHelper;
-
@RunWith(Parameterized.class)
public class OptimizerTest {
@@ -68,6 +69,7 @@
private static final ArrayList<String> ignore = AsterixTestHelper.readFile(FILENAME_IGNORE, PATH_BASE);
private static final ArrayList<String> only = AsterixTestHelper.readFile(FILENAME_ONLY, PATH_BASE);
private static final String TEST_CONFIG_FILE_NAME = "asterix-build-configuration.xml";
+ private static final ILangCompilationProvider compilationProvider = new AqlCompilationProvider();
private static AsterixTransactionProperties txnProperties;
@@ -148,8 +150,8 @@
@Test
public void test() throws Exception {
try {
- String queryFileShort = queryFile.getPath().substring(PATH_QUERIES.length())
- .replace(SEPARATOR.charAt(0), '/');
+ String queryFileShort = queryFile.getPath().substring(PATH_QUERIES.length()).replace(SEPARATOR.charAt(0),
+ '/');
if (!only.isEmpty()) {
boolean toRun = TestHelper.isInPrefixList(only, queryFileShort);
if (!toRun) {
@@ -168,7 +170,7 @@
Reader query = new BufferedReader(new InputStreamReader(new FileInputStream(queryFile), "UTF-8"));
PrintWriter plan = new PrintWriter(actualFile);
AsterixJavaClient asterix = new AsterixJavaClient(
- AsterixHyracksIntegrationUtil.getHyracksClientConnection(), query, plan);
+ AsterixHyracksIntegrationUtil.getHyracksClientConnection(), query, plan, compilationProvider);
try {
asterix.compile(true, false, false, true, true, false, false);
} catch (AsterixException e) {
@@ -179,10 +181,10 @@
plan.close();
query.close();
- BufferedReader readerExpected = new BufferedReader(new InputStreamReader(new FileInputStream(expectedFile),
- "UTF-8"));
- BufferedReader readerActual = new BufferedReader(new InputStreamReader(new FileInputStream(actualFile),
- "UTF-8"));
+ BufferedReader readerExpected = new BufferedReader(
+ new InputStreamReader(new FileInputStream(expectedFile), "UTF-8"));
+ BufferedReader readerActual = new BufferedReader(
+ new InputStreamReader(new FileInputStream(actualFile), "UTF-8"));
String lineExpected, lineActual;
int num = 1;
@@ -203,8 +205,8 @@
lineActual = readerActual.readLine();
// Assert.assertEquals(null, lineActual);
if (lineActual != null) {
- throw new Exception("Result for " + queryFile + " changed at line " + num + ":\n< \n> "
- + lineActual);
+ throw new Exception(
+ "Result for " + queryFile + " changed at line " + num + ":\n< \n> " + lineActual);
}
LOGGER.info("Test \"" + queryFile.getPath() + "\" PASSED!");
actualFile.delete();
diff --git a/asterix-app/src/test/java/org/apache/asterix/test/querygen/AQLToSQLPPConverter.java b/asterix-app/src/test/java/org/apache/asterix/test/querygen/AQLToSQLPPConverter.java
index ede621b..9b06143 100644
--- a/asterix-app/src/test/java/org/apache/asterix/test/querygen/AQLToSQLPPConverter.java
+++ b/asterix-app/src/test/java/org/apache/asterix/test/querygen/AQLToSQLPPConverter.java
@@ -20,7 +20,6 @@
import java.io.BufferedReader;
import java.io.BufferedWriter;
-import java.io.DataInputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
@@ -28,14 +27,19 @@
import java.io.OutputStreamWriter;
import java.util.List;
-import org.apache.asterix.lang.aql.parser.AQLParser;
+import org.apache.asterix.lang.aql.parser.AQLParserFactory;
import org.apache.asterix.lang.aql.util.AQLFormatPrintUtil;
+import org.apache.asterix.lang.common.base.IParser;
+import org.apache.asterix.lang.common.base.IParserFactory;
import org.apache.asterix.lang.common.base.Statement;
-import org.apache.asterix.lang.sqlpp.parser.SQLPPParser;
+import org.apache.asterix.lang.sqlpp.parser.SqlppParserFactory;
import org.apache.commons.io.FileUtils;
public class AQLToSQLPPConverter {
+ private final static IParserFactory aqlParserFactory = new AQLParserFactory();
+ private final static IParserFactory sqlppParserFactory = new SqlppParserFactory();
+
public static void convert(String dirName) throws Exception {
File dir = new File(dirName);
File target = new File(dirName + "_sqlpp");
@@ -46,36 +50,40 @@
private static void convert(File src, File dest) throws Exception {
if (src.isFile()) {
- DataInputStream dis = new DataInputStream(new FileInputStream(src));
+ BufferedReader parserReader = new BufferedReader(new InputStreamReader(new FileInputStream(src)));
BufferedReader reader = new BufferedReader(new InputStreamReader(new FileInputStream(src)));
BufferedWriter writer = new BufferedWriter(new OutputStreamWriter(new FileOutputStream(dest)));
try {
String line = null;
while ((line = reader.readLine()) != null) {
- if (line.startsWith("/*") || line.startsWith(" *") || line.startsWith("*")) {
+ if (line.startsWith("/*") || line.startsWith(" *") || line.startsWith("*") || line.startsWith("\t")
+ || line.startsWith(" \t")) {
writer.write(line + "\n");
} else {
break;
}
}
writer.write("\n");
- AQLParser parser = new AQLParser(dis);
+ reader.close();
+
+ IParser parser = aqlParserFactory.createParser(parserReader);
List<Statement> statements = parser.parse();
- dis.close();
+ parserReader.close();
+
String sqlString = AQLFormatPrintUtil.toSQLPPString(statements);
writer.write(sqlString);
} catch (Exception e) {
System.out.println("AQL parser fails at: " + src.getAbsolutePath());
//e.printStackTrace();
} finally {
- dis.close();
+ parserReader.close();
reader.close();
writer.close();
}
BufferedReader sqlReader = new BufferedReader(new InputStreamReader(new FileInputStream(dest)));
try {
- SQLPPParser sqlParser = new SQLPPParser(sqlReader);
+ IParser sqlParser = sqlppParserFactory.createParser(sqlReader);
sqlParser.parse();
} catch (Exception e) {
System.out.println("SQL++ parser cannot parse: ");
diff --git a/asterix-app/src/test/java/org/apache/asterix/test/runtime/ExecutionTest.java b/asterix-app/src/test/java/org/apache/asterix/test/runtime/ExecutionTest.java
index 2cba6c8..78cb52e 100644
--- a/asterix-app/src/test/java/org/apache/asterix/test/runtime/ExecutionTest.java
+++ b/asterix-app/src/test/java/org/apache/asterix/test/runtime/ExecutionTest.java
@@ -19,24 +19,15 @@
package org.apache.asterix.test.runtime;
import java.io.File;
-import java.nio.file.Paths;
import java.util.ArrayList;
import java.util.Collection;
-import java.util.logging.Level;
import java.util.logging.Logger;
import org.apache.asterix.api.common.AsterixHyracksIntegrationUtil;
-import org.apache.asterix.common.config.AsterixPropertiesAccessor;
import org.apache.asterix.common.config.AsterixTransactionProperties;
-import org.apache.asterix.common.config.GlobalConfig;
-import org.apache.asterix.external.dataset.adapter.FileSystemBasedAdapter;
-import org.apache.asterix.external.util.IdentitiyResolverFactory;
import org.apache.asterix.test.aql.TestExecutor;
-import org.apache.asterix.test.aql.TestsUtils;
import org.apache.asterix.testframework.context.TestCaseContext;
import org.apache.asterix.testframework.xml.TestGroup;
-import org.apache.asterix.testframework.xml.TestSuite;
-import org.apache.commons.io.FileUtils;
import org.apache.commons.lang3.StringUtils;
import org.junit.AfterClass;
import org.junit.BeforeClass;
@@ -66,79 +57,18 @@
@BeforeClass
public static void setUp() throws Exception {
- System.out.println("Starting setup");
- if (LOGGER.isLoggable(Level.INFO)) {
- LOGGER.info("Starting setup");
- }
- System.setProperty(GlobalConfig.CONFIG_FILE_PROPERTY, TEST_CONFIG_FILE_NAME);
File outdir = new File(PATH_ACTUAL);
outdir.mkdirs();
-
- AsterixPropertiesAccessor apa = new AsterixPropertiesAccessor();
- txnProperties = new AsterixTransactionProperties(apa);
-
- deleteTransactionLogs();
-
- if (LOGGER.isLoggable(Level.INFO)) {
- LOGGER.info("initializing pseudo cluster");
- }
- AsterixHyracksIntegrationUtil.init();
-
- if (LOGGER.isLoggable(Level.INFO)) {
- LOGGER.info("initializing HDFS");
- }
-
- HDFSCluster.getInstance().setup();
-
- // Set the node resolver to be the identity resolver that expects node
- // names
- // to be node controller ids; a valid assumption in test environment.
- System.setProperty(FileSystemBasedAdapter.NODE_RESOLVER_FACTORY_PROPERTY,
- IdentitiyResolverFactory.class.getName());
-
- FailedGroup = new TestGroup();
- FailedGroup.setName("failed");
+ ExecutionTestUtil.setUp();
}
@AfterClass
public static void tearDown() throws Exception {
- AsterixHyracksIntegrationUtil.deinit();
- File outdir = new File(PATH_ACTUAL);
- File[] files = outdir.listFiles();
- if (files == null || files.length == 0) {
- outdir.delete();
- }
+ ExecutionTestUtil.tearDown();
// clean up the files written by the ASTERIX storage manager
for (String d : AsterixHyracksIntegrationUtil.getDataDirs()) {
testExecutor.deleteRec(new File(d));
}
- HDFSCluster.getInstance().cleanup();
-
- if (FailedGroup != null && FailedGroup.getTestCase().size() > 0) {
- File temp = File.createTempFile("failed", ".xml");
- javax.xml.bind.JAXBContext jaxbCtx = null;
- jaxbCtx = javax.xml.bind.JAXBContext.newInstance(TestSuite.class.getPackage().getName());
- javax.xml.bind.Marshaller marshaller = null;
- marshaller = jaxbCtx.createMarshaller();
- marshaller.setProperty(javax.xml.bind.Marshaller.JAXB_FORMATTED_OUTPUT, Boolean.TRUE);
- TestSuite failedSuite = new TestSuite();
- failedSuite.setResultOffsetPath("results");
- failedSuite.setQueryOffsetPath("queries");
- failedSuite.getTestGroup().add(FailedGroup);
- marshaller.marshal(failedSuite, temp);
- System.err.println("The failed.xml is written to :" + temp.getAbsolutePath()
- + ". You can copy it to only.xml by the following cmd:" + "\rcp " + temp.getAbsolutePath() + " "
- + Paths.get("./src/test/resources/runtimets/only.xml").toAbsolutePath());
- }
- }
-
- private static void deleteTransactionLogs() throws Exception {
- for (String ncId : AsterixHyracksIntegrationUtil.getNcNames()) {
- File log = new File(txnProperties.getLogDirectory(ncId));
- if (log.exists()) {
- FileUtils.deleteDirectory(log);
- }
- }
}
@Parameters
@@ -168,6 +98,6 @@
@Test
public void test() throws Exception {
- TestsUtils.executeTest(PATH_ACTUAL, tcCtx, null, false, FailedGroup);
+ testExecutor.executeTest(PATH_ACTUAL, tcCtx, null, false, FailedGroup);
}
}
diff --git a/asterix-app/src/test/java/org/apache/asterix/test/runtime/ExecutionTestUtil.java b/asterix-app/src/test/java/org/apache/asterix/test/runtime/ExecutionTestUtil.java
new file mode 100644
index 0000000..8eccd3f
--- /dev/null
+++ b/asterix-app/src/test/java/org/apache/asterix/test/runtime/ExecutionTestUtil.java
@@ -0,0 +1,117 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+package org.apache.asterix.test.runtime;
+
+import java.io.File;
+import java.nio.file.Paths;
+import java.util.logging.Level;
+import java.util.logging.Logger;
+
+import org.apache.asterix.api.common.AsterixHyracksIntegrationUtil;
+import org.apache.asterix.common.config.AsterixPropertiesAccessor;
+import org.apache.asterix.common.config.AsterixTransactionProperties;
+import org.apache.asterix.common.config.GlobalConfig;
+import org.apache.asterix.external.dataset.adapter.FileSystemBasedAdapter;
+import org.apache.asterix.external.util.IdentitiyResolverFactory;
+import org.apache.asterix.testframework.xml.TestGroup;
+import org.apache.asterix.testframework.xml.TestSuite;
+import org.apache.commons.io.FileUtils;
+
+public class ExecutionTestUtil {
+
+ protected static final Logger LOGGER = Logger.getLogger(ExecutionTest.class.getName());
+
+ protected static final String PATH_ACTUAL = "rttest" + File.separator;
+
+ protected static final String TEST_CONFIG_FILE_NAME = "asterix-build-configuration.xml";
+
+ protected static AsterixTransactionProperties txnProperties;
+
+ protected static TestGroup FailedGroup;
+
+ public static void setUp() throws Exception {
+ System.out.println("Starting setup");
+ if (LOGGER.isLoggable(Level.INFO)) {
+ LOGGER.info("Starting setup");
+ }
+ System.setProperty(GlobalConfig.CONFIG_FILE_PROPERTY, TEST_CONFIG_FILE_NAME);
+
+ AsterixPropertiesAccessor apa = new AsterixPropertiesAccessor();
+ txnProperties = new AsterixTransactionProperties(apa);
+
+ deleteTransactionLogs();
+
+ if (LOGGER.isLoggable(Level.INFO)) {
+ LOGGER.info("initializing pseudo cluster");
+ }
+ AsterixHyracksIntegrationUtil.init();
+
+ if (LOGGER.isLoggable(Level.INFO)) {
+ LOGGER.info("initializing HDFS");
+ }
+
+ HDFSCluster.getInstance().setup();
+
+ // Set the node resolver to be the identity resolver that expects node
+ // names
+ // to be node controller ids; a valid assumption in test environment.
+ System.setProperty(FileSystemBasedAdapter.NODE_RESOLVER_FACTORY_PROPERTY,
+ IdentitiyResolverFactory.class.getName());
+
+ FailedGroup = new TestGroup();
+ FailedGroup.setName("failed");
+ }
+
+ private static void deleteTransactionLogs() throws Exception {
+ for (String ncId : AsterixHyracksIntegrationUtil.getNcNames()) {
+ File log = new File(txnProperties.getLogDirectory(ncId));
+ if (log.exists()) {
+ FileUtils.deleteDirectory(log);
+ }
+ }
+ }
+
+ public static void tearDown() throws Exception {
+ AsterixHyracksIntegrationUtil.deinit();
+ File outdir = new File(PATH_ACTUAL);
+ File[] files = outdir.listFiles();
+ if (files == null || files.length == 0) {
+ outdir.delete();
+ }
+ HDFSCluster.getInstance().cleanup();
+
+ if (FailedGroup != null && FailedGroup.getTestCase().size() > 0) {
+ File temp = File.createTempFile("failed", ".xml");
+ javax.xml.bind.JAXBContext jaxbCtx = null;
+ jaxbCtx = javax.xml.bind.JAXBContext.newInstance(TestSuite.class.getPackage().getName());
+ javax.xml.bind.Marshaller marshaller = null;
+ marshaller = jaxbCtx.createMarshaller();
+ marshaller.setProperty(javax.xml.bind.Marshaller.JAXB_FORMATTED_OUTPUT, Boolean.TRUE);
+ TestSuite failedSuite = new TestSuite();
+ failedSuite.setResultOffsetPath("results");
+ failedSuite.setQueryOffsetPath("queries");
+ failedSuite.getTestGroup().add(FailedGroup);
+ marshaller.marshal(failedSuite, temp);
+ System.err.println("The failed.xml is written to :" + temp.getAbsolutePath()
+ + ". You can copy it to only.xml by the following cmd:" + "\rcp " + temp.getAbsolutePath() + " "
+ + Paths.get("./src/test/resources/runtimets/only.xml").toAbsolutePath());
+ }
+ }
+
+}
diff --git a/asterix-app/src/test/java/org/apache/asterix/test/runtime/SqlppExecutionTest.java b/asterix-app/src/test/java/org/apache/asterix/test/runtime/SqlppExecutionTest.java
new file mode 100644
index 0000000..d5f4db3
--- /dev/null
+++ b/asterix-app/src/test/java/org/apache/asterix/test/runtime/SqlppExecutionTest.java
@@ -0,0 +1,103 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+package org.apache.asterix.test.runtime;
+
+import java.io.File;
+import java.util.ArrayList;
+import java.util.Collection;
+import java.util.logging.Logger;
+
+import org.apache.asterix.api.common.AsterixHyracksIntegrationUtil;
+import org.apache.asterix.common.config.AsterixTransactionProperties;
+import org.apache.asterix.test.aql.TestExecutor;
+import org.apache.asterix.testframework.context.TestCaseContext;
+import org.apache.asterix.testframework.xml.TestGroup;
+import org.apache.commons.lang3.StringUtils;
+import org.junit.AfterClass;
+import org.junit.BeforeClass;
+import org.junit.Test;
+import org.junit.runner.RunWith;
+import org.junit.runners.Parameterized;
+import org.junit.runners.Parameterized.Parameters;
+
+/**
+ * Runs the runtime test cases under 'asterix-app/src/test/resources/runtimets'.
+ */
+@RunWith(Parameterized.class)
+public class SqlppExecutionTest {
+
+ protected static final Logger LOGGER = Logger.getLogger(SqlppExecutionTest.class.getName());
+
+ protected static final String PATH_ACTUAL = "rttest" + File.separator;
+ protected static final String PATH_BASE = StringUtils.join(new String[] { "src", "test", "resources", "runtimets" },
+ File.separator);
+
+ protected static final String TEST_CONFIG_FILE_NAME = "asterix-build-configuration.xml";
+
+ protected static AsterixTransactionProperties txnProperties;
+ private final static TestExecutor testExecutor = new TestExecutor();
+
+ protected static TestGroup FailedGroup;
+
+ @BeforeClass
+ public static void setUp() throws Exception {
+ File outdir = new File(PATH_ACTUAL);
+ outdir.mkdirs();
+ ExecutionTestUtil.setUp();
+ }
+
+ @AfterClass
+ public static void tearDown() throws Exception {
+ ExecutionTestUtil.tearDown();
+ // clean up the files written by the ASTERIX storage manager
+ for (String d : AsterixHyracksIntegrationUtil.getDataDirs()) {
+ testExecutor.deleteRec(new File(d));
+ }
+ }
+
+ @Parameters
+ public static Collection<Object[]> tests() throws Exception {
+ Collection<Object[]> testArgs = buildTestsInXml("only_sqlpp.xml");
+ if (testArgs.size() == 0) {
+ testArgs = buildTestsInXml("testsuite_sqlpp.xml");
+ }
+ return testArgs;
+ }
+
+ protected static Collection<Object[]> buildTestsInXml(String xmlfile) throws Exception {
+ Collection<Object[]> testArgs = new ArrayList<Object[]>();
+ TestCaseContext.Builder b = new TestCaseContext.Builder();
+ for (TestCaseContext ctx : b.build(new File(PATH_BASE), xmlfile)) {
+ testArgs.add(new Object[] { ctx });
+ }
+ return testArgs;
+
+ }
+
+ protected TestCaseContext tcCtx;
+
+ public SqlppExecutionTest(TestCaseContext tcCtx) {
+ this.tcCtx = tcCtx;
+ }
+
+ @Test
+ public void test() throws Exception {
+ testExecutor.executeTest(PATH_ACTUAL, tcCtx, null, false, FailedGroup);
+ }
+}
diff --git a/asterix-app/src/test/java/org/apache/asterix/test/sqlpp/ParserTestExecutor.java b/asterix-app/src/test/java/org/apache/asterix/test/sqlpp/ParserTestExecutor.java
index 79ad9ed..07bea69 100644
--- a/asterix-app/src/test/java/org/apache/asterix/test/sqlpp/ParserTestExecutor.java
+++ b/asterix-app/src/test/java/org/apache/asterix/test/sqlpp/ParserTestExecutor.java
@@ -21,27 +21,28 @@
import static org.mockito.Mockito.mock;
import static org.mockito.Mockito.when;
-import java.io.BufferedReader;
import java.io.File;
-import java.io.FileInputStream;
import java.io.FileOutputStream;
-import java.io.InputStreamReader;
import java.io.PrintWriter;
-import java.io.Reader;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
import org.apache.asterix.common.config.GlobalConfig;
import org.apache.asterix.common.exceptions.AsterixException;
+import org.apache.asterix.lang.common.base.IParser;
+import org.apache.asterix.lang.common.base.IParserFactory;
+import org.apache.asterix.lang.common.base.IQueryRewriter;
+import org.apache.asterix.lang.common.base.IRewriterFactory;
import org.apache.asterix.lang.common.base.Statement;
import org.apache.asterix.lang.common.base.Statement.Kind;
+import org.apache.asterix.lang.common.rewrites.LangRewritingContext;
import org.apache.asterix.lang.common.statement.DataverseDecl;
import org.apache.asterix.lang.common.statement.FunctionDecl;
import org.apache.asterix.lang.common.statement.Query;
-import org.apache.asterix.lang.sqlpp.parser.SQLPPParser;
-import org.apache.asterix.lang.sqlpp.rewrites.SqlppRewriter;
-import org.apache.asterix.lang.sqlpp.util.FunctionUtils;
+import org.apache.asterix.lang.common.util.FunctionUtil;
+import org.apache.asterix.lang.sqlpp.parser.SqlppParserFactory;
+import org.apache.asterix.lang.sqlpp.rewrites.SqlppRewriterFactory;
import org.apache.asterix.lang.sqlpp.util.SqlppAstPrintUtil;
import org.apache.asterix.metadata.declared.AqlMetadataProvider;
import org.apache.asterix.test.aql.TestExecutor;
@@ -54,6 +55,9 @@
public class ParserTestExecutor extends TestExecutor {
+ private IParserFactory sqlppParserFactory = new SqlppParserFactory();
+ private IRewriterFactory sqlppRewriterFactory = new SqlppRewriterFactory();
+
@Override
public void executeTest(String actualPath, TestCaseContext testCaseCtx, ProcessBuilder pb,
boolean isDmlRecoveryTest, TestGroup failedGroup) throws Exception {
@@ -102,10 +106,9 @@
// Tests the SQL++ parser.
public void testSQLPPParser(File queryFile, File actualResultFile, File expectedFile) throws Exception {
- Reader reader = new BufferedReader(new InputStreamReader(new FileInputStream(queryFile), "UTF-8"));
actualResultFile.getParentFile().mkdirs();
PrintWriter writer = new PrintWriter(new FileOutputStream(actualResultFile));
- SQLPPParser parser = new SQLPPParser(reader);
+ IParser parser = sqlppParserFactory.createParser(readTestFile(queryFile));
GlobalConfig.ASTERIX_LOGGER.info(queryFile.toString());
try {
List<Statement> statements = parser.parse();
@@ -117,13 +120,14 @@
Map<String, String> config = mock(Map.class);
when(aqlMetadataProvider.getDefaultDataverseName()).thenReturn(dvName);
when(aqlMetadataProvider.getConfig()).thenReturn(config);
- when(config.get(FunctionUtils.IMPORT_PRIVATE_FUNCTIONS)).thenReturn("true");
+ when(config.get(FunctionUtil.IMPORT_PRIVATE_FUNCTIONS)).thenReturn("true");
for (Statement st : statements) {
if (st.getKind() == Kind.QUERY) {
Query query = (Query) st;
- SqlppRewriter rewriter = new SqlppRewriter(functions, query, aqlMetadataProvider);
- rewrite(rewriter);
+ IQueryRewriter rewriter = sqlppRewriterFactory.createQueryRewriter();
+ rewrite(rewriter, functions, query, aqlMetadataProvider,
+ new LangRewritingContext(query.getVarCounter()));
}
SqlppAstPrintUtil.print(st, writer);
}
@@ -131,10 +135,9 @@
// Compares the actual result and the expected result.
runScriptAndCompareWithResult(queryFile, new PrintWriter(System.err), expectedFile, actualResultFile);
} catch (Exception e) {
- GlobalConfig.ASTERIX_LOGGER.warning("Failed while testing file " + reader);
+ GlobalConfig.ASTERIX_LOGGER.warning("Failed while testing file " + queryFile);
throw e;
} finally {
- reader.close();
writer.close();
}
}
@@ -164,9 +167,14 @@
// Rewrite queries.
// Note: we do not do inline function rewriting here because this needs real
// metadata access.
- private void rewrite(SqlppRewriter rewriter) throws AsterixException {
+ private void rewrite(IQueryRewriter rewriter, List<FunctionDecl> declaredFunctions, Query topExpr,
+ AqlMetadataProvider metadataProvider, LangRewritingContext context) throws AsterixException {
+ PA.invokeMethod(rewriter,
+ "setup(java.util.List, org.apache.asterix.lang.common.statement.Query, org.apache.asterix.metadata.declared.AqlMetadataProvider, "
+ + "org.apache.asterix.lang.common.rewrites.LangRewritingContext)",
+ declaredFunctions, topExpr, metadataProvider, context);
PA.invokeMethod(rewriter, "inlineColumnAlias()");
- PA.invokeMethod(rewriter, "variableCheckAndRewrite()");
+ PA.invokeMethod(rewriter, "variableCheckAndRewrite(boolean)", Boolean.TRUE);
}
}
diff --git a/asterix-app/src/test/resources/optimizerts/queries_sqlpp/limit-issue353.sqlpp b/asterix-app/src/test/resources/optimizerts/queries_sqlpp/limit-issue353.sqlpp
index e0b1b89..6900ac9 100644
--- a/asterix-app/src/test/resources/optimizerts/queries_sqlpp/limit-issue353.sqlpp
+++ b/asterix-app/src/test/resources/optimizerts/queries_sqlpp/limit-issue353.sqlpp
@@ -18,6 +18,10 @@
*/
/*
* Description : This test case is to verify the fix for issue353
+ : https://code.google.com/p/asterixdb/issues/detail?id=353
+ * Expected Res : Success
+ * Date : 28th April 2013
+ */
drop database tpch if exists;
create database tpch;
diff --git a/asterix-app/src/test/resources/optimizerts/results/disjunction-to-join-delete-1.plan b/asterix-app/src/test/resources/optimizerts/results/disjunction-to-join-delete-1.plan
index 563a75b..c65c71c 100644
--- a/asterix-app/src/test/resources/optimizerts/results/disjunction-to-join-delete-1.plan
+++ b/asterix-app/src/test/resources/optimizerts/results/disjunction-to-join-delete-1.plan
@@ -12,12 +12,10 @@
-- ONE_TO_ONE_EXCHANGE |PARTITIONED|
-- ASSIGN |PARTITIONED|
-- STREAM_PROJECT |PARTITIONED|
- -- ASSIGN |PARTITIONED|
- -- STREAM_PROJECT |PARTITIONED|
+ -- ONE_TO_ONE_EXCHANGE |PARTITIONED|
+ -- BTREE_SEARCH |PARTITIONED|
-- ONE_TO_ONE_EXCHANGE |PARTITIONED|
- -- BTREE_SEARCH |PARTITIONED|
- -- ONE_TO_ONE_EXCHANGE |PARTITIONED|
- -- STABLE_SORT [$$15(ASC)] |PARTITIONED|
- -- HASH_PARTITION_EXCHANGE [$$15] |PARTITIONED|
- -- UNNEST |UNPARTITIONED|
- -- EMPTY_TUPLE_SOURCE |UNPARTITIONED|
+ -- STABLE_SORT [$$11(ASC)] |PARTITIONED|
+ -- HASH_PARTITION_EXCHANGE [$$11] |PARTITIONED|
+ -- UNNEST |UNPARTITIONED|
+ -- EMPTY_TUPLE_SOURCE |UNPARTITIONED|
diff --git a/asterix-app/src/test/resources/optimizerts/results/disjunction-to-join-delete-2.plan b/asterix-app/src/test/resources/optimizerts/results/disjunction-to-join-delete-2.plan
index ba4c536..25b3396 100644
--- a/asterix-app/src/test/resources/optimizerts/results/disjunction-to-join-delete-2.plan
+++ b/asterix-app/src/test/resources/optimizerts/results/disjunction-to-join-delete-2.plan
@@ -12,19 +12,16 @@
-- ONE_TO_ONE_EXCHANGE |PARTITIONED|
-- ASSIGN |PARTITIONED|
-- STREAM_PROJECT |PARTITIONED|
- -- ASSIGN |PARTITIONED|
+ -- STREAM_SELECT |PARTITIONED|
-- STREAM_PROJECT |PARTITIONED|
- -- STREAM_SELECT |PARTITIONED|
- -- ASSIGN |PARTITIONED|
- -- STREAM_PROJECT |PARTITIONED|
- -- ONE_TO_ONE_EXCHANGE |PARTITIONED|
- -- BTREE_SEARCH |PARTITIONED|
- -- ONE_TO_ONE_EXCHANGE |PARTITIONED|
- -- STABLE_SORT [$$19(ASC)] |PARTITIONED|
- -- ONE_TO_ONE_EXCHANGE |PARTITIONED|
- -- STREAM_PROJECT |PARTITIONED|
- -- ONE_TO_ONE_EXCHANGE |PARTITIONED|
- -- BTREE_SEARCH |PARTITIONED|
- -- BROADCAST_EXCHANGE |PARTITIONED|
- -- UNNEST |UNPARTITIONED|
- -- EMPTY_TUPLE_SOURCE |UNPARTITIONED|
+ -- ONE_TO_ONE_EXCHANGE |PARTITIONED|
+ -- BTREE_SEARCH |PARTITIONED|
+ -- ONE_TO_ONE_EXCHANGE |PARTITIONED|
+ -- STABLE_SORT [$$13(ASC)] |PARTITIONED|
+ -- ONE_TO_ONE_EXCHANGE |PARTITIONED|
+ -- STREAM_PROJECT |PARTITIONED|
+ -- ONE_TO_ONE_EXCHANGE |PARTITIONED|
+ -- BTREE_SEARCH |PARTITIONED|
+ -- BROADCAST_EXCHANGE |PARTITIONED|
+ -- UNNEST |UNPARTITIONED|
+ -- EMPTY_TUPLE_SOURCE |UNPARTITIONED|
diff --git a/asterix-app/src/test/resources/optimizerts/results/disjunction-to-join-delete-3.plan b/asterix-app/src/test/resources/optimizerts/results/disjunction-to-join-delete-3.plan
index 55fc23c..37ccaf2 100644
--- a/asterix-app/src/test/resources/optimizerts/results/disjunction-to-join-delete-3.plan
+++ b/asterix-app/src/test/resources/optimizerts/results/disjunction-to-join-delete-3.plan
@@ -9,20 +9,18 @@
-- INSERT_DELETE |PARTITIONED|
-- ONE_TO_ONE_EXCHANGE |PARTITIONED|
-- MATERIALIZE |PARTITIONED|
- -- HASH_PARTITION_EXCHANGE [$$12] |PARTITIONED|
+ -- HASH_PARTITION_EXCHANGE [$$10] |PARTITIONED|
-- ASSIGN |PARTITIONED|
-- STREAM_PROJECT |PARTITIONED|
- -- ASSIGN |PARTITIONED|
- -- STREAM_PROJECT |PARTITIONED|
- -- ONE_TO_ONE_EXCHANGE |PARTITIONED|
- -- HYBRID_HASH_JOIN [$$15][$$13] |PARTITIONED|
- -- HASH_PARTITION_EXCHANGE [$$15] |PARTITIONED|
- -- UNNEST |UNPARTITIONED|
- -- EMPTY_TUPLE_SOURCE |UNPARTITIONED|
- -- HASH_PARTITION_EXCHANGE [$$13] |PARTITIONED|
- -- STREAM_PROJECT |PARTITIONED|
- -- ASSIGN |PARTITIONED|
+ -- ONE_TO_ONE_EXCHANGE |PARTITIONED|
+ -- HYBRID_HASH_JOIN [$$11][$$9] |PARTITIONED|
+ -- HASH_PARTITION_EXCHANGE [$$11] |PARTITIONED|
+ -- UNNEST |UNPARTITIONED|
+ -- EMPTY_TUPLE_SOURCE |UNPARTITIONED|
+ -- HASH_PARTITION_EXCHANGE [$$9] |PARTITIONED|
+ -- STREAM_PROJECT |PARTITIONED|
+ -- ASSIGN |PARTITIONED|
+ -- ONE_TO_ONE_EXCHANGE |PARTITIONED|
+ -- DATASOURCE_SCAN |PARTITIONED|
-- ONE_TO_ONE_EXCHANGE |PARTITIONED|
- -- DATASOURCE_SCAN |PARTITIONED|
- -- ONE_TO_ONE_EXCHANGE |PARTITIONED|
- -- EMPTY_TUPLE_SOURCE |PARTITIONED|
+ -- EMPTY_TUPLE_SOURCE |PARTITIONED|
diff --git a/asterix-app/src/test/resources/optimizerts/results/scan-delete-all.plan b/asterix-app/src/test/resources/optimizerts/results/scan-delete-all.plan
index c2173fb..5b1d2f8 100644
--- a/asterix-app/src/test/resources/optimizerts/results/scan-delete-all.plan
+++ b/asterix-app/src/test/resources/optimizerts/results/scan-delete-all.plan
@@ -7,8 +7,7 @@
-- ONE_TO_ONE_EXCHANGE |PARTITIONED|
-- ASSIGN |PARTITIONED|
-- STREAM_PROJECT |PARTITIONED|
- -- ASSIGN |PARTITIONED|
- -- ONE_TO_ONE_EXCHANGE |PARTITIONED|
- -- DATASOURCE_SCAN |PARTITIONED|
- -- ONE_TO_ONE_EXCHANGE |PARTITIONED|
- -- EMPTY_TUPLE_SOURCE |PARTITIONED|
+ -- ONE_TO_ONE_EXCHANGE |PARTITIONED|
+ -- DATASOURCE_SCAN |PARTITIONED|
+ -- ONE_TO_ONE_EXCHANGE |PARTITIONED|
+ -- EMPTY_TUPLE_SOURCE |PARTITIONED|
diff --git a/asterix-app/src/test/resources/optimizerts/results/scan-delete-rtree-secondary-index.plan b/asterix-app/src/test/resources/optimizerts/results/scan-delete-rtree-secondary-index.plan
index 691761d..ca4a6c2 100644
--- a/asterix-app/src/test/resources/optimizerts/results/scan-delete-rtree-secondary-index.plan
+++ b/asterix-app/src/test/resources/optimizerts/results/scan-delete-rtree-secondary-index.plan
@@ -25,9 +25,8 @@
-- ONE_TO_ONE_EXCHANGE |PARTITIONED|
-- ASSIGN |PARTITIONED|
-- STREAM_PROJECT |PARTITIONED|
- -- ASSIGN |PARTITIONED|
- -- ONE_TO_ONE_EXCHANGE |PARTITIONED|
- -- BTREE_SEARCH |PARTITIONED|
- -- ONE_TO_ONE_EXCHANGE |PARTITIONED|
- -- ASSIGN |PARTITIONED|
- -- EMPTY_TUPLE_SOURCE |PARTITIONED|
+ -- ONE_TO_ONE_EXCHANGE |PARTITIONED|
+ -- BTREE_SEARCH |PARTITIONED|
+ -- ONE_TO_ONE_EXCHANGE |PARTITIONED|
+ -- ASSIGN |PARTITIONED|
+ -- EMPTY_TUPLE_SOURCE |PARTITIONED|
diff --git a/asterix-app/src/test/resources/optimizerts/results/scan-delete.plan b/asterix-app/src/test/resources/optimizerts/results/scan-delete.plan
index cfe5d35..790ac4f 100644
--- a/asterix-app/src/test/resources/optimizerts/results/scan-delete.plan
+++ b/asterix-app/src/test/resources/optimizerts/results/scan-delete.plan
@@ -6,11 +6,9 @@
-- MATERIALIZE |PARTITIONED|
-- ONE_TO_ONE_EXCHANGE |PARTITIONED|
-- ASSIGN |PARTITIONED|
- -- STREAM_PROJECT |PARTITIONED|
- -- ASSIGN |PARTITIONED|
- -- STREAM_SELECT |PARTITIONED|
- -- ASSIGN |PARTITIONED|
+ -- STREAM_SELECT |PARTITIONED|
+ -- STREAM_PROJECT |PARTITIONED|
+ -- ONE_TO_ONE_EXCHANGE |PARTITIONED|
+ -- DATASOURCE_SCAN |PARTITIONED|
-- ONE_TO_ONE_EXCHANGE |PARTITIONED|
- -- DATASOURCE_SCAN |PARTITIONED|
- -- ONE_TO_ONE_EXCHANGE |PARTITIONED|
- -- EMPTY_TUPLE_SOURCE |PARTITIONED|
+ -- EMPTY_TUPLE_SOURCE |PARTITIONED|
diff --git a/asterix-app/src/test/resources/optimizerts/results/skip-index/dont-skip-primary-index-search-in-delete.plan b/asterix-app/src/test/resources/optimizerts/results/skip-index/dont-skip-primary-index-search-in-delete.plan
index e2e6dff..bc9f1d1 100644
--- a/asterix-app/src/test/resources/optimizerts/results/skip-index/dont-skip-primary-index-search-in-delete.plan
+++ b/asterix-app/src/test/resources/optimizerts/results/skip-index/dont-skip-primary-index-search-in-delete.plan
@@ -7,9 +7,8 @@
-- ONE_TO_ONE_EXCHANGE |PARTITIONED|
-- ASSIGN |PARTITIONED|
-- STREAM_PROJECT |PARTITIONED|
- -- ASSIGN |PARTITIONED|
- -- ONE_TO_ONE_EXCHANGE |PARTITIONED|
- -- BTREE_SEARCH |PARTITIONED|
- -- ONE_TO_ONE_EXCHANGE |PARTITIONED|
- -- ASSIGN |PARTITIONED|
- -- EMPTY_TUPLE_SOURCE |PARTITIONED|
+ -- ONE_TO_ONE_EXCHANGE |PARTITIONED|
+ -- BTREE_SEARCH |PARTITIONED|
+ -- ONE_TO_ONE_EXCHANGE |PARTITIONED|
+ -- ASSIGN |PARTITIONED|
+ -- EMPTY_TUPLE_SOURCE |PARTITIONED|
diff --git a/asterix-app/src/test/resources/optimizerts/results/skip-index/skip-ngram-index-search-in-delete.plan b/asterix-app/src/test/resources/optimizerts/results/skip-index/skip-ngram-index-search-in-delete.plan
index c882d81..31de832 100644
--- a/asterix-app/src/test/resources/optimizerts/results/skip-index/skip-ngram-index-search-in-delete.plan
+++ b/asterix-app/src/test/resources/optimizerts/results/skip-index/skip-ngram-index-search-in-delete.plan
@@ -11,11 +11,9 @@
-- MATERIALIZE |PARTITIONED|
-- ONE_TO_ONE_EXCHANGE |PARTITIONED|
-- ASSIGN |PARTITIONED|
- -- STREAM_PROJECT |PARTITIONED|
- -- ASSIGN |PARTITIONED|
- -- STREAM_SELECT |PARTITIONED|
- -- ASSIGN |PARTITIONED|
+ -- STREAM_SELECT |PARTITIONED|
+ -- STREAM_PROJECT |PARTITIONED|
+ -- ONE_TO_ONE_EXCHANGE |PARTITIONED|
+ -- DATASOURCE_SCAN |PARTITIONED|
-- ONE_TO_ONE_EXCHANGE |PARTITIONED|
- -- DATASOURCE_SCAN |PARTITIONED|
- -- ONE_TO_ONE_EXCHANGE |PARTITIONED|
- -- EMPTY_TUPLE_SOURCE |PARTITIONED|
+ -- EMPTY_TUPLE_SOURCE |PARTITIONED|
diff --git a/asterix-app/src/test/resources/optimizerts/results/skip-index/skip-rtree-index-search-in-delete.plan b/asterix-app/src/test/resources/optimizerts/results/skip-index/skip-rtree-index-search-in-delete.plan
index b69dfa3..0c406e2 100644
--- a/asterix-app/src/test/resources/optimizerts/results/skip-index/skip-rtree-index-search-in-delete.plan
+++ b/asterix-app/src/test/resources/optimizerts/results/skip-index/skip-rtree-index-search-in-delete.plan
@@ -13,11 +13,9 @@
-- MATERIALIZE |PARTITIONED|
-- ONE_TO_ONE_EXCHANGE |PARTITIONED|
-- ASSIGN |PARTITIONED|
- -- STREAM_PROJECT |PARTITIONED|
- -- ASSIGN |PARTITIONED|
- -- STREAM_SELECT |PARTITIONED|
- -- ASSIGN |PARTITIONED|
+ -- STREAM_SELECT |PARTITIONED|
+ -- STREAM_PROJECT |PARTITIONED|
+ -- ONE_TO_ONE_EXCHANGE |PARTITIONED|
+ -- DATASOURCE_SCAN |PARTITIONED|
-- ONE_TO_ONE_EXCHANGE |PARTITIONED|
- -- DATASOURCE_SCAN |PARTITIONED|
- -- ONE_TO_ONE_EXCHANGE |PARTITIONED|
- -- EMPTY_TUPLE_SOURCE |PARTITIONED|
\ No newline at end of file
+ -- EMPTY_TUPLE_SOURCE |PARTITIONED|
diff --git a/asterix-app/src/test/resources/optimizerts/results/skip-index/skip-secondary-btree-index-search-in-delete.plan b/asterix-app/src/test/resources/optimizerts/results/skip-index/skip-secondary-btree-index-search-in-delete.plan
index c882d81..31de832 100644
--- a/asterix-app/src/test/resources/optimizerts/results/skip-index/skip-secondary-btree-index-search-in-delete.plan
+++ b/asterix-app/src/test/resources/optimizerts/results/skip-index/skip-secondary-btree-index-search-in-delete.plan
@@ -11,11 +11,9 @@
-- MATERIALIZE |PARTITIONED|
-- ONE_TO_ONE_EXCHANGE |PARTITIONED|
-- ASSIGN |PARTITIONED|
- -- STREAM_PROJECT |PARTITIONED|
- -- ASSIGN |PARTITIONED|
- -- STREAM_SELECT |PARTITIONED|
- -- ASSIGN |PARTITIONED|
+ -- STREAM_SELECT |PARTITIONED|
+ -- STREAM_PROJECT |PARTITIONED|
+ -- ONE_TO_ONE_EXCHANGE |PARTITIONED|
+ -- DATASOURCE_SCAN |PARTITIONED|
-- ONE_TO_ONE_EXCHANGE |PARTITIONED|
- -- DATASOURCE_SCAN |PARTITIONED|
- -- ONE_TO_ONE_EXCHANGE |PARTITIONED|
- -- EMPTY_TUPLE_SOURCE |PARTITIONED|
+ -- EMPTY_TUPLE_SOURCE |PARTITIONED|
diff --git a/asterix-app/src/test/resources/optimizerts/results/skip-index/skip-word-index-search-in-delete.plan b/asterix-app/src/test/resources/optimizerts/results/skip-index/skip-word-index-search-in-delete.plan
index c882d81..31de832 100644
--- a/asterix-app/src/test/resources/optimizerts/results/skip-index/skip-word-index-search-in-delete.plan
+++ b/asterix-app/src/test/resources/optimizerts/results/skip-index/skip-word-index-search-in-delete.plan
@@ -11,11 +11,9 @@
-- MATERIALIZE |PARTITIONED|
-- ONE_TO_ONE_EXCHANGE |PARTITIONED|
-- ASSIGN |PARTITIONED|
- -- STREAM_PROJECT |PARTITIONED|
- -- ASSIGN |PARTITIONED|
- -- STREAM_SELECT |PARTITIONED|
- -- ASSIGN |PARTITIONED|
+ -- STREAM_SELECT |PARTITIONED|
+ -- STREAM_PROJECT |PARTITIONED|
+ -- ONE_TO_ONE_EXCHANGE |PARTITIONED|
+ -- DATASOURCE_SCAN |PARTITIONED|
-- ONE_TO_ONE_EXCHANGE |PARTITIONED|
- -- DATASOURCE_SCAN |PARTITIONED|
- -- ONE_TO_ONE_EXCHANGE |PARTITIONED|
- -- EMPTY_TUPLE_SOURCE |PARTITIONED|
+ -- EMPTY_TUPLE_SOURCE |PARTITIONED|
diff --git a/asterix-app/src/test/resources/optimizerts/results/sort-cust.plan b/asterix-app/src/test/resources/optimizerts/results/sort-cust.plan
index 5452f6f..66e6049 100644
--- a/asterix-app/src/test/resources/optimizerts/results/sort-cust.plan
+++ b/asterix-app/src/test/resources/optimizerts/results/sort-cust.plan
@@ -8,10 +8,9 @@
-- ONE_TO_ONE_EXCHANGE |PARTITIONED|
-- STABLE_SORT [$$7(ASC)] |PARTITIONED|
-- ONE_TO_ONE_EXCHANGE |PARTITIONED|
- -- STREAM_PROJECT |PARTITIONED|
- -- ASSIGN |PARTITIONED|
- -- STREAM_PROJECT |PARTITIONED|
- -- ONE_TO_ONE_EXCHANGE |PARTITIONED|
- -- DATASOURCE_SCAN |PARTITIONED|
- -- ONE_TO_ONE_EXCHANGE |PARTITIONED|
- -- EMPTY_TUPLE_SOURCE |PARTITIONED|
+ -- ASSIGN |PARTITIONED|
+ -- STREAM_PROJECT |PARTITIONED|
+ -- ONE_TO_ONE_EXCHANGE |PARTITIONED|
+ -- DATASOURCE_SCAN |PARTITIONED|
+ -- ONE_TO_ONE_EXCHANGE |PARTITIONED|
+ -- EMPTY_TUPLE_SOURCE |PARTITIONED|
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/consolidate-selects-complex.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/consolidate-selects-complex.ast
index 787d03f..d9e03df 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/consolidate-selects-complex.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/consolidate-selects-complex.ast
@@ -69,12 +69,12 @@
OperatorExpr [
IndexAccessor [
Variable [ Name=jacca ]
- Index: Variable [ Name=jacca ]
+ Index: LiteralExpr [LONG] [0]
]
and
IndexAccessor [
Variable [ Name=jaccb ]
- Index: Variable [ Name=jaccb ]
+ Index: LiteralExpr [LONG] [0]
]
and
OperatorExpr [
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/const-folding.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/const-folding.ast
index 7b38d56..7422c7d 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/const-folding.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/const-folding.ast
@@ -20,10 +20,7 @@
LiteralExpr [STRING] [foo]
LiteralExpr [STRING] [bar]
]
- Index: OrderedListConstructor [
- LiteralExpr [STRING] [foo]
- LiteralExpr [STRING] [bar]
- ]
+ Index: LiteralExpr [LONG] [0]
]
)
]
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/fj-phase1.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/fj-phase1.ast
index dc23607..61ad10d 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/fj-phase1.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/fj-phase1.ast
@@ -79,9 +79,6 @@
With
Variable [ Name=lottery_number ]
Variable [ Name=user ]
- Variable [ Name=lottery_number ]
- Variable [ Name=tokens ]
- Variable [ Name=user ]
LetVariable [ Name=count ]
:=
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/fj-phase2-with-hints.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/fj-phase2-with-hints.ast
index 48fcb34..8abbf79 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/fj-phase2-with-hints.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/fj-phase2-with-hints.ast
@@ -78,8 +78,6 @@
With
Variable [ Name=paper ]
Variable [ Name=token ]
- Variable [ Name=token ]
- Variable [ Name=tokensDBLP ]
Variable [ Name=unrankedTokensDBLP ]
Variable [ Name=paperDBLP ]
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-basic/ngram-edit-distance-check-panic.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-basic/ngram-edit-distance-check-panic.ast
index 80ed456..67ddf2b 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-basic/ngram-edit-distance-check-panic.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-basic/ngram-edit-distance-check-panic.ast
@@ -33,5 +33,5 @@
Where
IndexAccessor [
Variable [ Name=ed ]
- Index: Variable [ Name=ed ]
+ Index: LiteralExpr [LONG] [0]
]
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-basic/ngram-edit-distance-check.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-basic/ngram-edit-distance-check.ast
index 8ba659b..376c1ca 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-basic/ngram-edit-distance-check.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-basic/ngram-edit-distance-check.ast
@@ -30,12 +30,5 @@
LiteralExpr [STRING] [Amihay Motro]
LiteralExpr [LONG] [1]
]
- Index: FunctionCall test.edit-distance-check@3[
- FieldAccessor [
- Variable [ Name=o ]
- Field=authors
- ]
- LiteralExpr [STRING] [Amihay Motro]
- LiteralExpr [LONG] [1]
- ]
+ Index: LiteralExpr [LONG] [0]
]
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-basic/ngram-jaccard-check.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-basic/ngram-jaccard-check.ast
index 3a2e43d..29e43e3 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-basic/ngram-jaccard-check.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-basic/ngram-jaccard-check.ast
@@ -39,20 +39,5 @@
]
LiteralExpr [FLOAT] [0.5]
]
- Index: FunctionCall test.similarity-jaccard-check@3[
- FunctionCall test.gram-tokens@3[
- FieldAccessor [
- Variable [ Name=o ]
- Field=title
- ]
- LiteralExpr [LONG] [3]
- LiteralExpr [FALSE]
- ]
- FunctionCall test.gram-tokens@3[
- LiteralExpr [STRING] [Transactions for Cooperative Environments]
- LiteralExpr [LONG] [3]
- LiteralExpr [FALSE]
- ]
- LiteralExpr [FLOAT] [0.5]
- ]
+ Index: LiteralExpr [LONG] [0]
]
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-basic/olist-edit-distance-check-panic.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-basic/olist-edit-distance-check-panic.ast
index 6137ce8..906bdbe 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-basic/olist-edit-distance-check-panic.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-basic/olist-edit-distance-check-panic.ast
@@ -48,18 +48,7 @@
]
LiteralExpr [LONG] [3]
]
- Index: FunctionCall test.edit-distance-check@3[
- FieldAccessor [
- Variable [ Name=c ]
- Field=interests
- ]
- OrderedListConstructor [
- LiteralExpr [STRING] [computers]
- LiteralExpr [STRING] [wine]
- LiteralExpr [STRING] [walking]
- ]
- LiteralExpr [LONG] [3]
- ]
+ Index: LiteralExpr [LONG] [0]
]
Orderby
FieldAccessor [
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-basic/olist-edit-distance-check.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-basic/olist-edit-distance-check.ast
index e893033..831e8ae 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-basic/olist-edit-distance-check.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-basic/olist-edit-distance-check.ast
@@ -48,18 +48,7 @@
]
LiteralExpr [LONG] [1]
]
- Index: FunctionCall test.edit-distance-check@3[
- FieldAccessor [
- Variable [ Name=c ]
- Field=interests
- ]
- OrderedListConstructor [
- LiteralExpr [STRING] [computers]
- LiteralExpr [STRING] [wine]
- LiteralExpr [STRING] [walking]
- ]
- LiteralExpr [LONG] [1]
- ]
+ Index: LiteralExpr [LONG] [0]
]
Orderby
FieldAccessor [
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-basic/olist-jaccard-check.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-basic/olist-jaccard-check.ast
index 6df827e..c515756 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-basic/olist-jaccard-check.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-basic/olist-jaccard-check.ast
@@ -48,16 +48,5 @@
]
LiteralExpr [FLOAT] [0.7]
]
- Index: FunctionCall test.similarity-jaccard-check@3[
- FieldAccessor [
- Variable [ Name=c ]
- Field=interests
- ]
- OrderedListConstructor [
- LiteralExpr [STRING] [databases]
- LiteralExpr [STRING] [computers]
- LiteralExpr [STRING] [wine]
- ]
- LiteralExpr [FLOAT] [0.7]
- ]
+ Index: LiteralExpr [LONG] [0]
]
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-basic/ulist-jaccard-check.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-basic/ulist-jaccard-check.ast
index 352c27b..feaf424 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-basic/ulist-jaccard-check.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-basic/ulist-jaccard-check.ast
@@ -48,16 +48,5 @@
]
LiteralExpr [FLOAT] [0.7]
]
- Index: FunctionCall test.similarity-jaccard-check@3[
- FieldAccessor [
- Variable [ Name=c ]
- Field=interests
- ]
- UnorderedListConstructor [
- LiteralExpr [STRING] [computers]
- LiteralExpr [STRING] [wine]
- LiteralExpr [STRING] [databases]
- ]
- LiteralExpr [FLOAT] [0.7]
- ]
+ Index: LiteralExpr [LONG] [0]
]
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-basic/word-jaccard-check.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-basic/word-jaccard-check.ast
index 721ba2f..f2fff63 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-basic/word-jaccard-check.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-basic/word-jaccard-check.ast
@@ -34,16 +34,5 @@
]
LiteralExpr [FLOAT] [0.5]
]
- Index: FunctionCall test.similarity-jaccard-check@3[
- FunctionCall test.word-tokens@1[
- FieldAccessor [
- Variable [ Name=o ]
- Field=title
- ]
- ]
- FunctionCall test.word-tokens@1[
- LiteralExpr [STRING] [Transactions for Cooperative Environments]
- ]
- LiteralExpr [FLOAT] [0.5]
- ]
+ Index: LiteralExpr [LONG] [0]
]
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-complex/ngram-edit-distance-check-let-panic-nopanic_01.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-complex/ngram-edit-distance-check-let-panic-nopanic_01.ast
index 7fd4d5e..252f82d 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-complex/ngram-edit-distance-check-let-panic-nopanic_01.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-complex/ngram-edit-distance-check-let-panic-nopanic_01.ast
@@ -44,11 +44,11 @@
OperatorExpr [
IndexAccessor [
Variable [ Name=eda ]
- Index: Variable [ Name=eda ]
+ Index: LiteralExpr [LONG] [0]
]
and
IndexAccessor [
Variable [ Name=edb ]
- Index: Variable [ Name=edb ]
+ Index: LiteralExpr [LONG] [0]
]
]
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-complex/ngram-edit-distance-check-let-panic-nopanic_02.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-complex/ngram-edit-distance-check-let-panic-nopanic_02.ast
index ed8919f..6b707a0 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-complex/ngram-edit-distance-check-let-panic-nopanic_02.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-complex/ngram-edit-distance-check-let-panic-nopanic_02.ast
@@ -44,11 +44,11 @@
OperatorExpr [
IndexAccessor [
Variable [ Name=edb ]
- Index: Variable [ Name=edb ]
+ Index: LiteralExpr [LONG] [0]
]
and
IndexAccessor [
Variable [ Name=eda ]
- Index: Variable [ Name=eda ]
+ Index: LiteralExpr [LONG] [0]
]
]
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-complex/ngram-edit-distance-check-let-panic.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-complex/ngram-edit-distance-check-let-panic.ast
index 0c3a146..4c375a0 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-complex/ngram-edit-distance-check-let-panic.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-complex/ngram-edit-distance-check-let-panic.ast
@@ -33,5 +33,5 @@
Where
IndexAccessor [
Variable [ Name=ed ]
- Index: Variable [ Name=ed ]
+ Index: LiteralExpr [LONG] [0]
]
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-complex/ngram-edit-distance-check-let.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-complex/ngram-edit-distance-check-let.ast
index e33ade2..c0dc5f7 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-complex/ngram-edit-distance-check-let.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-complex/ngram-edit-distance-check-let.ast
@@ -33,5 +33,5 @@
Where
IndexAccessor [
Variable [ Name=ed ]
- Index: Variable [ Name=ed ]
+ Index: LiteralExpr [LONG] [0]
]
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-complex/ngram-edit-distance-check-substring.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-complex/ngram-edit-distance-check-substring.ast
index c02435c..c77c881 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-complex/ngram-edit-distance-check-substring.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-complex/ngram-edit-distance-check-substring.ast
@@ -51,16 +51,5 @@
LiteralExpr [STRING] [datbase]
LiteralExpr [LONG] [1]
]
- Index: FunctionCall test.edit-distance-check@3[
- FunctionCall test.substring@3[
- FieldAccessor [
- Variable [ Name=paper ]
- Field=title
- ]
- LiteralExpr [LONG] [0]
- LiteralExpr [LONG] [8]
- ]
- LiteralExpr [STRING] [datbase]
- LiteralExpr [LONG] [1]
- ]
+ Index: LiteralExpr [LONG] [0]
]
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-complex/ngram-edit-distance-check-word-tokens.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-complex/ngram-edit-distance-check-word-tokens.ast
index 8b24f37..0038f9b 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-complex/ngram-edit-distance-check-word-tokens.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-complex/ngram-edit-distance-check-word-tokens.ast
@@ -53,9 +53,5 @@
LiteralExpr [STRING] [Multmedia]
LiteralExpr [LONG] [1]
]
- Index: FunctionCall test.edit-distance-check@3[
- Variable [ Name=word ]
- LiteralExpr [STRING] [Multmedia]
- LiteralExpr [LONG] [1]
- ]
+ Index: LiteralExpr [LONG] [0]
]
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-complex/ngram-jaccard-check-let.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-complex/ngram-jaccard-check-let.ast
index fe5751b..6ca88af 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-complex/ngram-jaccard-check-let.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-complex/ngram-jaccard-check-let.ast
@@ -42,5 +42,5 @@
Where
IndexAccessor [
Variable [ Name=jacc ]
- Index: Variable [ Name=jacc ]
+ Index: LiteralExpr [LONG] [0]
]
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-complex/ngram-jaccard-check-multi-let.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-complex/ngram-jaccard-check-multi-let.ast
index a2ce996..12cfef8 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-complex/ngram-jaccard-check-multi-let.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-complex/ngram-jaccard-check-multi-let.ast
@@ -59,5 +59,5 @@
Where
IndexAccessor [
Variable [ Name=jacc ]
- Index: Variable [ Name=jacc ]
+ Index: LiteralExpr [LONG] [0]
]
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-complex/olist-edit-distance-check-let-panic.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-complex/olist-edit-distance-check-let-panic.ast
index d37e489..4e16c82 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-complex/olist-edit-distance-check-let-panic.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-complex/olist-edit-distance-check-let-panic.ast
@@ -51,7 +51,7 @@
Where
IndexAccessor [
Variable [ Name=ed ]
- Index: Variable [ Name=ed ]
+ Index: LiteralExpr [LONG] [0]
]
Orderby
FieldAccessor [
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-complex/olist-edit-distance-check-let.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-complex/olist-edit-distance-check-let.ast
index 21b8dbb..98b185f 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-complex/olist-edit-distance-check-let.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-complex/olist-edit-distance-check-let.ast
@@ -51,7 +51,7 @@
Where
IndexAccessor [
Variable [ Name=ed ]
- Index: Variable [ Name=ed ]
+ Index: LiteralExpr [LONG] [0]
]
Orderby
FieldAccessor [
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-complex/olist-jaccard-check-let.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-complex/olist-jaccard-check-let.ast
index 3bd622b..fc14ab3 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-complex/olist-jaccard-check-let.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-complex/olist-jaccard-check-let.ast
@@ -51,5 +51,5 @@
Where
IndexAccessor [
Variable [ Name=jacc ]
- Index: Variable [ Name=jacc ]
+ Index: LiteralExpr [LONG] [0]
]
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-complex/ulist-jaccard-check-let.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-complex/ulist-jaccard-check-let.ast
index f0bf820..d682832 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-complex/ulist-jaccard-check-let.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-complex/ulist-jaccard-check-let.ast
@@ -51,5 +51,5 @@
Where
IndexAccessor [
Variable [ Name=jacc ]
- Index: Variable [ Name=jacc ]
+ Index: LiteralExpr [LONG] [0]
]
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-complex/word-jaccard-check-let.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-complex/word-jaccard-check-let.ast
index 6e32d34..8f294b1 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-complex/word-jaccard-check-let.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-complex/word-jaccard-check-let.ast
@@ -37,5 +37,5 @@
Where
IndexAccessor [
Variable [ Name=jacc ]
- Index: Variable [ Name=jacc ]
+ Index: LiteralExpr [LONG] [0]
]
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-complex/word-jaccard-check-multi-let.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-complex/word-jaccard-check-multi-let.ast
index 22ccaf9..55d0faa 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-complex/word-jaccard-check-multi-let.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-complex/word-jaccard-check-multi-let.ast
@@ -54,5 +54,5 @@
Where
IndexAccessor [
Variable [ Name=jacc ]
- Index: Variable [ Name=jacc ]
+ Index: LiteralExpr [LONG] [0]
]
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-join/issue741.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-join/issue741.ast
index 25459dc..2840a58 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-join/issue741.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-join/issue741.ast
@@ -66,7 +66,7 @@
OperatorExpr [
IndexAccessor [
Variable [ Name=sim ]
- Index: Variable [ Name=sim ]
+ Index: LiteralExpr [LONG] [0]
]
and
OperatorExpr [
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-join/leftouterjoin-probe-pidx-with-join-edit-distance-check-idx_01.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-join/leftouterjoin-probe-pidx-with-join-edit-distance-check-idx_01.ast
index a3b4ee5..d3ed6f8 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-join/leftouterjoin-probe-pidx-with-join-edit-distance-check-idx_01.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-join/leftouterjoin-probe-pidx-with-join-edit-distance-check-idx_01.ast
@@ -96,7 +96,7 @@
OperatorExpr [
IndexAccessor [
Variable [ Name=sim ]
- Index: Variable [ Name=sim ]
+ Index: LiteralExpr [LONG] [0]
]
and
OperatorExpr [
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-join/leftouterjoin-probe-pidx-with-join-jaccard-check-idx_01.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-join/leftouterjoin-probe-pidx-with-join-jaccard-check-idx_01.ast
index d280beb..dfc11d5 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-join/leftouterjoin-probe-pidx-with-join-jaccard-check-idx_01.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-join/leftouterjoin-probe-pidx-with-join-jaccard-check-idx_01.ast
@@ -96,7 +96,7 @@
OperatorExpr [
IndexAccessor [
Variable [ Name=sim ]
- Index: Variable [ Name=sim ]
+ Index: LiteralExpr [LONG] [0]
]
and
OperatorExpr [
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-join/ngram-edit-distance-check_01.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-join/ngram-edit-distance-check_01.ast
index fe0a5ae..622076f 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-join/ngram-edit-distance-check_01.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-join/ngram-edit-distance-check_01.ast
@@ -61,17 +61,7 @@
]
LiteralExpr [LONG] [3]
]
- Index: FunctionCall test.edit-distance-check@3[
- FieldAccessor [
- Variable [ Name=a ]
- Field=authors
- ]
- FieldAccessor [
- Variable [ Name=b ]
- Field=authors
- ]
- LiteralExpr [LONG] [3]
- ]
+ Index: LiteralExpr [LONG] [0]
]
and
OperatorExpr [
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-join/ngram-edit-distance-check_02.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-join/ngram-edit-distance-check_02.ast
index 226ef2da..9db438d 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-join/ngram-edit-distance-check_02.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-join/ngram-edit-distance-check_02.ast
@@ -61,17 +61,7 @@
]
LiteralExpr [LONG] [3]
]
- Index: FunctionCall test.edit-distance-check@3[
- FieldAccessor [
- Variable [ Name=a ]
- Field=authors
- ]
- FieldAccessor [
- Variable [ Name=b ]
- Field=authors
- ]
- LiteralExpr [LONG] [3]
- ]
+ Index: LiteralExpr [LONG] [0]
]
and
OperatorExpr [
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-join/ngram-edit-distance-check_03.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-join/ngram-edit-distance-check_03.ast
index 22a1b5c..1a8e0d9 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-join/ngram-edit-distance-check_03.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-join/ngram-edit-distance-check_03.ast
@@ -51,17 +51,7 @@
]
LiteralExpr [LONG] [3]
]
- Index: FunctionCall test.edit-distance-check@3[
- FieldAccessor [
- Variable [ Name=a ]
- Field=authors
- ]
- FieldAccessor [
- Variable [ Name=b ]
- Field=authors
- ]
- LiteralExpr [LONG] [3]
- ]
+ Index: LiteralExpr [LONG] [0]
]
and
OperatorExpr [
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-join/ngram-edit-distance-check_04.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-join/ngram-edit-distance-check_04.ast
index 5dd91f7..4429a97 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-join/ngram-edit-distance-check_04.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-join/ngram-edit-distance-check_04.ast
@@ -28,7 +28,7 @@
:
IndexAccessor [
Variable [ Name=ed ]
- Index: Variable [ Name=ed ]
+ Index: LiteralExpr [LONG] [1]
]
)
]
@@ -62,7 +62,7 @@
OperatorExpr [
IndexAccessor [
Variable [ Name=ed ]
- Index: Variable [ Name=ed ]
+ Index: LiteralExpr [LONG] [0]
]
and
OperatorExpr [
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-join/ngram-edit-distance-contains.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-join/ngram-edit-distance-contains.ast
index 2f33777..d099c60 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-join/ngram-edit-distance-contains.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-join/ngram-edit-distance-contains.ast
@@ -61,17 +61,7 @@
]
LiteralExpr [LONG] [3]
]
- Index: FunctionCall test.edit-distance-contains@3[
- FieldAccessor [
- Variable [ Name=a ]
- Field=authors
- ]
- FieldAccessor [
- Variable [ Name=b ]
- Field=authors
- ]
- LiteralExpr [LONG] [3]
- ]
+ Index: LiteralExpr [LONG] [0]
]
and
OperatorExpr [
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-join/ngram-jaccard-check_01.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-join/ngram-jaccard-check_01.ast
index d0217af..f548b62 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-join/ngram-jaccard-check_01.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-join/ngram-jaccard-check_01.ast
@@ -70,25 +70,7 @@
]
LiteralExpr [FLOAT] [0.5]
]
- Index: FunctionCall test.similarity-jaccard-check@3[
- FunctionCall test.gram-tokens@3[
- FieldAccessor [
- Variable [ Name=a ]
- Field=title
- ]
- LiteralExpr [LONG] [3]
- LiteralExpr [FALSE]
- ]
- FunctionCall test.gram-tokens@3[
- FieldAccessor [
- Variable [ Name=b ]
- Field=title
- ]
- LiteralExpr [LONG] [3]
- LiteralExpr [FALSE]
- ]
- LiteralExpr [FLOAT] [0.5]
- ]
+ Index: LiteralExpr [LONG] [0]
]
and
OperatorExpr [
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-join/ngram-jaccard-check_02.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-join/ngram-jaccard-check_02.ast
index 0fd14a4..9b46f1e 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-join/ngram-jaccard-check_02.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-join/ngram-jaccard-check_02.ast
@@ -70,25 +70,7 @@
]
LiteralExpr [FLOAT] [0.5]
]
- Index: FunctionCall test.similarity-jaccard-check@3[
- FunctionCall test.gram-tokens@3[
- FieldAccessor [
- Variable [ Name=a ]
- Field=title
- ]
- LiteralExpr [LONG] [3]
- LiteralExpr [FALSE]
- ]
- FunctionCall test.gram-tokens@3[
- FieldAccessor [
- Variable [ Name=b ]
- Field=title
- ]
- LiteralExpr [LONG] [3]
- LiteralExpr [FALSE]
- ]
- LiteralExpr [FLOAT] [0.5]
- ]
+ Index: LiteralExpr [LONG] [0]
]
and
OperatorExpr [
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-join/ngram-jaccard-check_03.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-join/ngram-jaccard-check_03.ast
index b816313..37c880b 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-join/ngram-jaccard-check_03.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-join/ngram-jaccard-check_03.ast
@@ -60,25 +60,7 @@
]
LiteralExpr [FLOAT] [0.5]
]
- Index: FunctionCall test.similarity-jaccard-check@3[
- FunctionCall test.gram-tokens@3[
- FieldAccessor [
- Variable [ Name=a ]
- Field=title
- ]
- LiteralExpr [LONG] [3]
- LiteralExpr [FALSE]
- ]
- FunctionCall test.gram-tokens@3[
- FieldAccessor [
- Variable [ Name=b ]
- Field=title
- ]
- LiteralExpr [LONG] [3]
- LiteralExpr [FALSE]
- ]
- LiteralExpr [FLOAT] [0.5]
- ]
+ Index: LiteralExpr [LONG] [0]
]
and
OperatorExpr [
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-join/ngram-jaccard-check_04.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-join/ngram-jaccard-check_04.ast
index 4695a2c..e270861 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-join/ngram-jaccard-check_04.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-join/ngram-jaccard-check_04.ast
@@ -29,7 +29,7 @@
:
IndexAccessor [
Variable [ Name=jacc ]
- Index: Variable [ Name=jacc ]
+ Index: LiteralExpr [LONG] [1]
]
)
]
@@ -71,7 +71,7 @@
OperatorExpr [
IndexAccessor [
Variable [ Name=jacc ]
- Index: Variable [ Name=jacc ]
+ Index: LiteralExpr [LONG] [0]
]
and
OperatorExpr [
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-join/olist-edit-distance-check_01.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-join/olist-edit-distance-check_01.ast
index 50e0cac..4454367 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-join/olist-edit-distance-check_01.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-join/olist-edit-distance-check_01.ast
@@ -66,17 +66,7 @@
]
LiteralExpr [LONG] [3]
]
- Index: FunctionCall test.edit-distance-check@3[
- FieldAccessor [
- Variable [ Name=a ]
- Field=interests
- ]
- FieldAccessor [
- Variable [ Name=b ]
- Field=interests
- ]
- LiteralExpr [LONG] [3]
- ]
+ Index: LiteralExpr [LONG] [0]
]
and
OperatorExpr [
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-join/olist-edit-distance-check_02.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-join/olist-edit-distance-check_02.ast
index a0714e9..3847e59 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-join/olist-edit-distance-check_02.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-join/olist-edit-distance-check_02.ast
@@ -66,17 +66,7 @@
]
LiteralExpr [LONG] [3]
]
- Index: FunctionCall test.edit-distance-check@3[
- FieldAccessor [
- Variable [ Name=a ]
- Field=interests
- ]
- FieldAccessor [
- Variable [ Name=b ]
- Field=interests
- ]
- LiteralExpr [LONG] [3]
- ]
+ Index: LiteralExpr [LONG] [0]
]
and
OperatorExpr [
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-join/olist-edit-distance-check_03.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-join/olist-edit-distance-check_03.ast
index c76a987..35508b4 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-join/olist-edit-distance-check_03.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-join/olist-edit-distance-check_03.ast
@@ -65,17 +65,7 @@
]
LiteralExpr [LONG] [3]
]
- Index: FunctionCall test.edit-distance-check@3[
- FieldAccessor [
- Variable [ Name=a ]
- Field=interests
- ]
- FieldAccessor [
- Variable [ Name=b ]
- Field=interests
- ]
- LiteralExpr [LONG] [3]
- ]
+ Index: LiteralExpr [LONG] [0]
]
and
OperatorExpr [
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-join/olist-edit-distance-check_04.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-join/olist-edit-distance-check_04.ast
index da43e50..18921c8 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-join/olist-edit-distance-check_04.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-join/olist-edit-distance-check_04.ast
@@ -42,7 +42,7 @@
:
IndexAccessor [
Variable [ Name=ed ]
- Index: Variable [ Name=ed ]
+ Index: LiteralExpr [LONG] [1]
]
)
]
@@ -76,7 +76,7 @@
OperatorExpr [
IndexAccessor [
Variable [ Name=ed ]
- Index: Variable [ Name=ed ]
+ Index: LiteralExpr [LONG] [0]
]
and
OperatorExpr [
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-join/olist-jaccard-check_01.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-join/olist-jaccard-check_01.ast
index 6047077..9a1841e 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-join/olist-jaccard-check_01.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-join/olist-jaccard-check_01.ast
@@ -66,17 +66,7 @@
]
LiteralExpr [FLOAT] [0.7]
]
- Index: FunctionCall test.similarity-jaccard-check@3[
- FieldAccessor [
- Variable [ Name=a ]
- Field=interests
- ]
- FieldAccessor [
- Variable [ Name=b ]
- Field=interests
- ]
- LiteralExpr [FLOAT] [0.7]
- ]
+ Index: LiteralExpr [LONG] [0]
]
and
OperatorExpr [
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-join/olist-jaccard-check_02.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-join/olist-jaccard-check_02.ast
index 201c5b1..e41041e 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-join/olist-jaccard-check_02.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-join/olist-jaccard-check_02.ast
@@ -66,17 +66,7 @@
]
LiteralExpr [FLOAT] [0.7]
]
- Index: FunctionCall test.similarity-jaccard-check@3[
- FieldAccessor [
- Variable [ Name=a ]
- Field=interests
- ]
- FieldAccessor [
- Variable [ Name=b ]
- Field=interests
- ]
- LiteralExpr [FLOAT] [0.7]
- ]
+ Index: LiteralExpr [LONG] [0]
]
and
OperatorExpr [
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-join/olist-jaccard-check_03.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-join/olist-jaccard-check_03.ast
index 2b79710..f6d1fdc 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-join/olist-jaccard-check_03.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-join/olist-jaccard-check_03.ast
@@ -65,17 +65,7 @@
]
LiteralExpr [FLOAT] [0.7]
]
- Index: FunctionCall test.similarity-jaccard-check@3[
- FieldAccessor [
- Variable [ Name=a ]
- Field=interests
- ]
- FieldAccessor [
- Variable [ Name=b ]
- Field=interests
- ]
- LiteralExpr [FLOAT] [0.7]
- ]
+ Index: LiteralExpr [LONG] [0]
]
and
OperatorExpr [
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-join/olist-jaccard-check_04.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-join/olist-jaccard-check_04.ast
index e54b565..3f00899 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-join/olist-jaccard-check_04.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-join/olist-jaccard-check_04.ast
@@ -42,7 +42,7 @@
:
IndexAccessor [
Variable [ Name=jacc ]
- Index: Variable [ Name=jacc ]
+ Index: LiteralExpr [LONG] [1]
]
)
]
@@ -76,7 +76,7 @@
OperatorExpr [
IndexAccessor [
Variable [ Name=jacc ]
- Index: Variable [ Name=jacc ]
+ Index: LiteralExpr [LONG] [0]
]
and
OperatorExpr [
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-join/ulist-jaccard-check_01.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-join/ulist-jaccard-check_01.ast
index 5522ff1..f7a9bb1 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-join/ulist-jaccard-check_01.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-join/ulist-jaccard-check_01.ast
@@ -66,17 +66,7 @@
]
LiteralExpr [FLOAT] [0.7]
]
- Index: FunctionCall test.similarity-jaccard-check@3[
- FieldAccessor [
- Variable [ Name=a ]
- Field=interests
- ]
- FieldAccessor [
- Variable [ Name=b ]
- Field=interests
- ]
- LiteralExpr [FLOAT] [0.7]
- ]
+ Index: LiteralExpr [LONG] [0]
]
and
OperatorExpr [
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-join/ulist-jaccard-check_02.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-join/ulist-jaccard-check_02.ast
index ad4806a..b45a362 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-join/ulist-jaccard-check_02.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-join/ulist-jaccard-check_02.ast
@@ -66,17 +66,7 @@
]
LiteralExpr [FLOAT] [0.7]
]
- Index: FunctionCall test.similarity-jaccard-check@3[
- FieldAccessor [
- Variable [ Name=a ]
- Field=interests
- ]
- FieldAccessor [
- Variable [ Name=b ]
- Field=interests
- ]
- LiteralExpr [FLOAT] [0.7]
- ]
+ Index: LiteralExpr [LONG] [0]
]
and
OperatorExpr [
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-join/ulist-jaccard-check_03.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-join/ulist-jaccard-check_03.ast
index fe395ab..27b6bc9 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-join/ulist-jaccard-check_03.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-join/ulist-jaccard-check_03.ast
@@ -65,17 +65,7 @@
]
LiteralExpr [FLOAT] [0.7]
]
- Index: FunctionCall test.similarity-jaccard-check@3[
- FieldAccessor [
- Variable [ Name=a ]
- Field=interests
- ]
- FieldAccessor [
- Variable [ Name=b ]
- Field=interests
- ]
- LiteralExpr [FLOAT] [0.7]
- ]
+ Index: LiteralExpr [LONG] [0]
]
and
OperatorExpr [
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-join/ulist-jaccard-check_04.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-join/ulist-jaccard-check_04.ast
index 20a87d3..866c60b 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-join/ulist-jaccard-check_04.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-join/ulist-jaccard-check_04.ast
@@ -42,7 +42,7 @@
:
IndexAccessor [
Variable [ Name=jacc ]
- Index: Variable [ Name=jacc ]
+ Index: LiteralExpr [LONG] [1]
]
)
]
@@ -76,7 +76,7 @@
OperatorExpr [
IndexAccessor [
Variable [ Name=jacc ]
- Index: Variable [ Name=jacc ]
+ Index: LiteralExpr [LONG] [0]
]
and
OperatorExpr [
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-join/word-jaccard-check-after-btree-access.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-join/word-jaccard-check-after-btree-access.ast
index 5b4c193..6e39512 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-join/word-jaccard-check-after-btree-access.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-join/word-jaccard-check-after-btree-access.ast
@@ -48,7 +48,7 @@
:
IndexAccessor [
Variable [ Name=sim ]
- Index: Variable [ Name=sim ]
+ Index: LiteralExpr [LONG] [1]
]
)
]
@@ -86,7 +86,7 @@
OperatorExpr [
IndexAccessor [
Variable [ Name=sim ]
- Index: Variable [ Name=sim ]
+ Index: LiteralExpr [LONG] [0]
]
and
OperatorExpr [
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-join/word-jaccard-check_01.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-join/word-jaccard-check_01.ast
index 6586148..96946f6 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-join/word-jaccard-check_01.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-join/word-jaccard-check_01.ast
@@ -65,21 +65,7 @@
]
LiteralExpr [FLOAT] [0.5]
]
- Index: FunctionCall test.similarity-jaccard-check@3[
- FunctionCall test.word-tokens@1[
- FieldAccessor [
- Variable [ Name=a ]
- Field=title
- ]
- ]
- FunctionCall test.word-tokens@1[
- FieldAccessor [
- Variable [ Name=b ]
- Field=title
- ]
- ]
- LiteralExpr [FLOAT] [0.5]
- ]
+ Index: LiteralExpr [LONG] [0]
]
and
OperatorExpr [
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-join/word-jaccard-check_02.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-join/word-jaccard-check_02.ast
index 0b50ff8..08b886f 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-join/word-jaccard-check_02.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-join/word-jaccard-check_02.ast
@@ -65,21 +65,7 @@
]
LiteralExpr [FLOAT] [0.5]
]
- Index: FunctionCall test.similarity-jaccard-check@3[
- FunctionCall test.word-tokens@1[
- FieldAccessor [
- Variable [ Name=a ]
- Field=title
- ]
- ]
- FunctionCall test.word-tokens@1[
- FieldAccessor [
- Variable [ Name=b ]
- Field=title
- ]
- ]
- LiteralExpr [FLOAT] [0.5]
- ]
+ Index: LiteralExpr [LONG] [0]
]
and
OperatorExpr [
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-join/word-jaccard-check_03.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-join/word-jaccard-check_03.ast
index 3c74848..63ee670 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-join/word-jaccard-check_03.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-join/word-jaccard-check_03.ast
@@ -55,21 +55,7 @@
]
LiteralExpr [FLOAT] [0.5]
]
- Index: FunctionCall test.similarity-jaccard-check@3[
- FunctionCall test.word-tokens@1[
- FieldAccessor [
- Variable [ Name=a ]
- Field=title
- ]
- ]
- FunctionCall test.word-tokens@1[
- FieldAccessor [
- Variable [ Name=b ]
- Field=title
- ]
- ]
- LiteralExpr [FLOAT] [0.5]
- ]
+ Index: LiteralExpr [LONG] [0]
]
and
OperatorExpr [
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-join/word-jaccard-check_04.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-join/word-jaccard-check_04.ast
index 711c89a..50cf119 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-join/word-jaccard-check_04.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/inverted-index-join/word-jaccard-check_04.ast
@@ -28,7 +28,7 @@
:
IndexAccessor [
Variable [ Name=jacc ]
- Index: Variable [ Name=jacc ]
+ Index: LiteralExpr [LONG] [1]
]
)
]
@@ -66,7 +66,7 @@
OperatorExpr [
IndexAccessor [
Variable [ Name=jacc ]
- Index: Variable [ Name=jacc ]
+ Index: LiteralExpr [LONG] [0]
]
and
OperatorExpr [
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/limit-issue353.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/limit-issue353.ast
index e69de29..86944f0 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/limit-issue353.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/limit-issue353.ast
@@ -0,0 +1,60 @@
+DataverseUse tpch
+TypeDecl LineItemType [
+ closed RecordType {
+ l_orderkey : int32,
+ l_partkey : int32,
+ l_suppkey : int32,
+ l_linenumber : int32,
+ l_quantity : double,
+ l_extendedprice : double,
+ l_discount : double,
+ l_tax : double,
+ l_returnflag : string,
+ l_linestatus : string,
+ l_shipdate : string,
+ l_commitdate : string,
+ l_receiptdate : string,
+ l_shipinstruct : string,
+ l_shipmode : string,
+ l_comment : string
+ }
+]
+DatasetDecl LineItem(LineItemType) partitioned by [[l_orderkey], [l_linenumber]]
+WriteOutputTo nc1:/tmp/push_limit.adm
+Query:
+SELECT ELEMENT [
+RecordConstructor [
+ (
+ LiteralExpr [STRING] [l_returnflag]
+ :
+ FieldAccessor [
+ Variable [ Name=l ]
+ Field=l_returnflag
+ ]
+ )
+ (
+ LiteralExpr [STRING] [l_linestatus]
+ :
+ FieldAccessor [
+ Variable [ Name=l ]
+ Field=l_linestatus
+ ]
+ )
+ (
+ LiteralExpr [STRING] [l_shipmode]
+ :
+ FieldAccessor [
+ Variable [ Name=l ]
+ Field=l_shipmode
+ ]
+ )
+]
+]
+FROM [ FunctionCall Metadata.dataset@1[
+ LiteralExpr [STRING] [LineItem]
+ ]
+ AS
+ Variable [ Name=l ]
+]
+Limit
+ LiteralExpr [LONG] [2]
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-index/inverted-index-basic/ngram-edit-distance-check-panic.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-index/inverted-index-basic/ngram-edit-distance-check-panic.ast
index fb96e6c..6e4f00c 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-index/inverted-index-basic/ngram-edit-distance-check-panic.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-index/inverted-index-basic/ngram-edit-distance-check-panic.ast
@@ -41,5 +41,5 @@
Where
IndexAccessor [
Variable [ Name=ed ]
- Index: Variable [ Name=ed ]
+ Index: LiteralExpr [LONG] [0]
]
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-index/inverted-index-basic/ngram-edit-distance-check.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-index/inverted-index-basic/ngram-edit-distance-check.ast
index cab1fc3..9d115d0 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-index/inverted-index-basic/ngram-edit-distance-check.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-index/inverted-index-basic/ngram-edit-distance-check.ast
@@ -38,15 +38,5 @@
LiteralExpr [STRING] [Amihay Motro]
LiteralExpr [LONG] [1]
]
- Index: FunctionCall test.edit-distance-check@3[
- FieldAccessor [
- FieldAccessor [
- Variable [ Name=o ]
- Field=nested
- ]
- Field=authors
- ]
- LiteralExpr [STRING] [Amihay Motro]
- LiteralExpr [LONG] [1]
- ]
+ Index: LiteralExpr [LONG] [0]
]
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-index/inverted-index-basic/ngram-jaccard-check.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-index/inverted-index-basic/ngram-jaccard-check.ast
index a62993b..9910e13 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-index/inverted-index-basic/ngram-jaccard-check.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-index/inverted-index-basic/ngram-jaccard-check.ast
@@ -47,23 +47,5 @@
]
LiteralExpr [FLOAT] [0.5]
]
- Index: FunctionCall test.similarity-jaccard-check@3[
- FunctionCall test.gram-tokens@3[
- FieldAccessor [
- FieldAccessor [
- Variable [ Name=o ]
- Field=nested
- ]
- Field=title
- ]
- LiteralExpr [LONG] [3]
- LiteralExpr [FALSE]
- ]
- FunctionCall test.gram-tokens@3[
- LiteralExpr [STRING] [Transactions for Cooperative Environments]
- LiteralExpr [LONG] [3]
- LiteralExpr [FALSE]
- ]
- LiteralExpr [FLOAT] [0.5]
- ]
+ Index: LiteralExpr [LONG] [0]
]
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-index/inverted-index-basic/olist-edit-distance-check-panic.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-index/inverted-index-basic/olist-edit-distance-check-panic.ast
index c4b3feb..45299e4 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-index/inverted-index-basic/olist-edit-distance-check-panic.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-index/inverted-index-basic/olist-edit-distance-check-panic.ast
@@ -57,21 +57,7 @@
]
LiteralExpr [LONG] [3]
]
- Index: FunctionCall test.edit-distance-check@3[
- FieldAccessor [
- FieldAccessor [
- Variable [ Name=c ]
- Field=nested
- ]
- Field=interests
- ]
- OrderedListConstructor [
- LiteralExpr [STRING] [computers]
- LiteralExpr [STRING] [wine]
- LiteralExpr [STRING] [walking]
- ]
- LiteralExpr [LONG] [3]
- ]
+ Index: LiteralExpr [LONG] [0]
]
Orderby
FieldAccessor [
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-index/inverted-index-basic/olist-edit-distance-check.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-index/inverted-index-basic/olist-edit-distance-check.ast
index 49cb6f6..ba55373 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-index/inverted-index-basic/olist-edit-distance-check.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-index/inverted-index-basic/olist-edit-distance-check.ast
@@ -57,21 +57,7 @@
]
LiteralExpr [LONG] [1]
]
- Index: FunctionCall test.edit-distance-check@3[
- FieldAccessor [
- FieldAccessor [
- Variable [ Name=c ]
- Field=nested
- ]
- Field=interests
- ]
- OrderedListConstructor [
- LiteralExpr [STRING] [computers]
- LiteralExpr [STRING] [wine]
- LiteralExpr [STRING] [walking]
- ]
- LiteralExpr [LONG] [1]
- ]
+ Index: LiteralExpr [LONG] [0]
]
Orderby
FieldAccessor [
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-index/inverted-index-basic/olist-jaccard-check.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-index/inverted-index-basic/olist-jaccard-check.ast
index c5d132d..8fdb849 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-index/inverted-index-basic/olist-jaccard-check.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-index/inverted-index-basic/olist-jaccard-check.ast
@@ -56,19 +56,5 @@
]
LiteralExpr [FLOAT] [0.7]
]
- Index: FunctionCall test.similarity-jaccard-check@3[
- FieldAccessor [
- FieldAccessor [
- Variable [ Name=c ]
- Field=nested
- ]
- Field=interests
- ]
- OrderedListConstructor [
- LiteralExpr [STRING] [databases]
- LiteralExpr [STRING] [computers]
- LiteralExpr [STRING] [wine]
- ]
- LiteralExpr [FLOAT] [0.7]
- ]
+ Index: LiteralExpr [LONG] [0]
]
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-index/inverted-index-basic/ulist-jaccard-check.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-index/inverted-index-basic/ulist-jaccard-check.ast
index 6d2fa02..05ef457 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-index/inverted-index-basic/ulist-jaccard-check.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-index/inverted-index-basic/ulist-jaccard-check.ast
@@ -57,19 +57,5 @@
]
LiteralExpr [FLOAT] [0.7]
]
- Index: FunctionCall test.similarity-jaccard-check@3[
- FieldAccessor [
- FieldAccessor [
- Variable [ Name=c ]
- Field=nested
- ]
- Field=interests
- ]
- UnorderedListConstructor [
- LiteralExpr [STRING] [computers]
- LiteralExpr [STRING] [wine]
- LiteralExpr [STRING] [databases]
- ]
- LiteralExpr [FLOAT] [0.7]
- ]
+ Index: LiteralExpr [LONG] [0]
]
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-index/inverted-index-basic/word-jaccard-check.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-index/inverted-index-basic/word-jaccard-check.ast
index a56a462..48041ed 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-index/inverted-index-basic/word-jaccard-check.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-index/inverted-index-basic/word-jaccard-check.ast
@@ -42,19 +42,5 @@
]
LiteralExpr [FLOAT] [0.5]
]
- Index: FunctionCall test.similarity-jaccard-check@3[
- FunctionCall test.word-tokens@1[
- FieldAccessor [
- FieldAccessor [
- Variable [ Name=o ]
- Field=nested
- ]
- Field=title
- ]
- ]
- FunctionCall test.word-tokens@1[
- LiteralExpr [STRING] [Transactions for Cooperative Environments]
- ]
- LiteralExpr [FLOAT] [0.5]
- ]
+ Index: LiteralExpr [LONG] [0]
]
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-index/inverted-index-complex/ngram-edit-distance-check-let-panic-nopanic_01.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-index/inverted-index-complex/ngram-edit-distance-check-let-panic-nopanic_01.ast
index 6440f7e..0a742cf 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-index/inverted-index-complex/ngram-edit-distance-check-let-panic-nopanic_01.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-index/inverted-index-complex/ngram-edit-distance-check-let-panic-nopanic_01.ast
@@ -55,11 +55,11 @@
OperatorExpr [
IndexAccessor [
Variable [ Name=eda ]
- Index: Variable [ Name=eda ]
+ Index: LiteralExpr [LONG] [0]
]
and
IndexAccessor [
Variable [ Name=edb ]
- Index: Variable [ Name=edb ]
+ Index: LiteralExpr [LONG] [0]
]
]
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-index/inverted-index-complex/ngram-edit-distance-check-let-panic-nopanic_02.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-index/inverted-index-complex/ngram-edit-distance-check-let-panic-nopanic_02.ast
index a3648fe..d22d189 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-index/inverted-index-complex/ngram-edit-distance-check-let-panic-nopanic_02.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-index/inverted-index-complex/ngram-edit-distance-check-let-panic-nopanic_02.ast
@@ -55,11 +55,11 @@
OperatorExpr [
IndexAccessor [
Variable [ Name=edb ]
- Index: Variable [ Name=edb ]
+ Index: LiteralExpr [LONG] [0]
]
and
IndexAccessor [
Variable [ Name=eda ]
- Index: Variable [ Name=eda ]
+ Index: LiteralExpr [LONG] [0]
]
]
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-index/inverted-index-complex/ngram-edit-distance-check-let-panic.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-index/inverted-index-complex/ngram-edit-distance-check-let-panic.ast
index 9e51d97..b5d0555 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-index/inverted-index-complex/ngram-edit-distance-check-let-panic.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-index/inverted-index-complex/ngram-edit-distance-check-let-panic.ast
@@ -41,5 +41,5 @@
Where
IndexAccessor [
Variable [ Name=ed ]
- Index: Variable [ Name=ed ]
+ Index: LiteralExpr [LONG] [0]
]
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-index/inverted-index-complex/ngram-edit-distance-check-let.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-index/inverted-index-complex/ngram-edit-distance-check-let.ast
index 025aa20..bb08854 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-index/inverted-index-complex/ngram-edit-distance-check-let.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-index/inverted-index-complex/ngram-edit-distance-check-let.ast
@@ -41,5 +41,5 @@
Where
IndexAccessor [
Variable [ Name=ed ]
- Index: Variable [ Name=ed ]
+ Index: LiteralExpr [LONG] [0]
]
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-index/inverted-index-complex/ngram-edit-distance-check-substring.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-index/inverted-index-complex/ngram-edit-distance-check-substring.ast
index 83c6b9b..4b3c837 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-index/inverted-index-complex/ngram-edit-distance-check-substring.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-index/inverted-index-complex/ngram-edit-distance-check-substring.ast
@@ -65,19 +65,5 @@
LiteralExpr [STRING] [datbase]
LiteralExpr [LONG] [1]
]
- Index: FunctionCall test.edit-distance-check@3[
- FunctionCall test.substring@3[
- FieldAccessor [
- FieldAccessor [
- Variable [ Name=paper ]
- Field=nested
- ]
- Field=title
- ]
- LiteralExpr [LONG] [0]
- LiteralExpr [LONG] [8]
- ]
- LiteralExpr [STRING] [datbase]
- LiteralExpr [LONG] [1]
- ]
+ Index: LiteralExpr [LONG] [0]
]
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-index/inverted-index-complex/ngram-edit-distance-check-word-tokens.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-index/inverted-index-complex/ngram-edit-distance-check-word-tokens.ast
index 4108c72..126477e 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-index/inverted-index-complex/ngram-edit-distance-check-word-tokens.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-index/inverted-index-complex/ngram-edit-distance-check-word-tokens.ast
@@ -67,9 +67,5 @@
LiteralExpr [STRING] [Multmedia]
LiteralExpr [LONG] [1]
]
- Index: FunctionCall test.edit-distance-check@3[
- Variable [ Name=word ]
- LiteralExpr [STRING] [Multmedia]
- LiteralExpr [LONG] [1]
- ]
+ Index: LiteralExpr [LONG] [0]
]
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-index/inverted-index-complex/ngram-jaccard-check-let.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-index/inverted-index-complex/ngram-jaccard-check-let.ast
index 1fe0c3a..3127dde 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-index/inverted-index-complex/ngram-jaccard-check-let.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-index/inverted-index-complex/ngram-jaccard-check-let.ast
@@ -50,5 +50,5 @@
Where
IndexAccessor [
Variable [ Name=jacc ]
- Index: Variable [ Name=jacc ]
+ Index: LiteralExpr [LONG] [0]
]
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-index/inverted-index-complex/ngram-jaccard-check-multi-let.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-index/inverted-index-complex/ngram-jaccard-check-multi-let.ast
index e772f9f..1d5b117 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-index/inverted-index-complex/ngram-jaccard-check-multi-let.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-index/inverted-index-complex/ngram-jaccard-check-multi-let.ast
@@ -67,5 +67,5 @@
Where
IndexAccessor [
Variable [ Name=jacc ]
- Index: Variable [ Name=jacc ]
+ Index: LiteralExpr [LONG] [0]
]
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-index/inverted-index-complex/olist-edit-distance-check-let-panic.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-index/inverted-index-complex/olist-edit-distance-check-let-panic.ast
index d54ef57..7ef0af8 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-index/inverted-index-complex/olist-edit-distance-check-let-panic.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-index/inverted-index-complex/olist-edit-distance-check-let-panic.ast
@@ -60,7 +60,7 @@
Where
IndexAccessor [
Variable [ Name=ed ]
- Index: Variable [ Name=ed ]
+ Index: LiteralExpr [LONG] [0]
]
Orderby
FieldAccessor [
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-index/inverted-index-complex/olist-edit-distance-check-let.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-index/inverted-index-complex/olist-edit-distance-check-let.ast
index 29ce26d..2d29e6e 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-index/inverted-index-complex/olist-edit-distance-check-let.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-index/inverted-index-complex/olist-edit-distance-check-let.ast
@@ -60,7 +60,7 @@
Where
IndexAccessor [
Variable [ Name=ed ]
- Index: Variable [ Name=ed ]
+ Index: LiteralExpr [LONG] [0]
]
Orderby
FieldAccessor [
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-index/inverted-index-complex/olist-jaccard-check-let.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-index/inverted-index-complex/olist-jaccard-check-let.ast
index 6fe8f83..922f9e1 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-index/inverted-index-complex/olist-jaccard-check-let.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-index/inverted-index-complex/olist-jaccard-check-let.ast
@@ -59,5 +59,5 @@
Where
IndexAccessor [
Variable [ Name=jacc ]
- Index: Variable [ Name=jacc ]
+ Index: LiteralExpr [LONG] [0]
]
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-index/inverted-index-complex/ulist-jaccard-check-let.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-index/inverted-index-complex/ulist-jaccard-check-let.ast
index ba67057..2ba4856 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-index/inverted-index-complex/ulist-jaccard-check-let.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-index/inverted-index-complex/ulist-jaccard-check-let.ast
@@ -60,5 +60,5 @@
Where
IndexAccessor [
Variable [ Name=jacc ]
- Index: Variable [ Name=jacc ]
+ Index: LiteralExpr [LONG] [0]
]
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-index/inverted-index-complex/word-jaccard-check-let.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-index/inverted-index-complex/word-jaccard-check-let.ast
index 48e978f..8bed5bb 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-index/inverted-index-complex/word-jaccard-check-let.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-index/inverted-index-complex/word-jaccard-check-let.ast
@@ -45,5 +45,5 @@
Where
IndexAccessor [
Variable [ Name=jacc ]
- Index: Variable [ Name=jacc ]
+ Index: LiteralExpr [LONG] [0]
]
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-index/inverted-index-complex/word-jaccard-check-multi-let.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-index/inverted-index-complex/word-jaccard-check-multi-let.ast
index a6c08fa..d7c363b 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-index/inverted-index-complex/word-jaccard-check-multi-let.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-index/inverted-index-complex/word-jaccard-check-multi-let.ast
@@ -62,5 +62,5 @@
Where
IndexAccessor [
Variable [ Name=jacc ]
- Index: Variable [ Name=jacc ]
+ Index: LiteralExpr [LONG] [0]
]
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-index/inverted-index-join/leftouterjoin-probe-pidx-with-join-edit-distance-check-idx_01.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-index/inverted-index-join/leftouterjoin-probe-pidx-with-join-edit-distance-check-idx_01.ast
index cadc921..406e9a2 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-index/inverted-index-join/leftouterjoin-probe-pidx-with-join-edit-distance-check-idx_01.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-index/inverted-index-join/leftouterjoin-probe-pidx-with-join-edit-distance-check-idx_01.ast
@@ -119,7 +119,7 @@
OperatorExpr [
IndexAccessor [
Variable [ Name=sim ]
- Index: Variable [ Name=sim ]
+ Index: LiteralExpr [LONG] [0]
]
and
OperatorExpr [
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-index/inverted-index-join/leftouterjoin-probe-pidx-with-join-jaccard-check-idx_01.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-index/inverted-index-join/leftouterjoin-probe-pidx-with-join-jaccard-check-idx_01.ast
index a698a84..80c231c 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-index/inverted-index-join/leftouterjoin-probe-pidx-with-join-jaccard-check-idx_01.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-index/inverted-index-join/leftouterjoin-probe-pidx-with-join-jaccard-check-idx_01.ast
@@ -119,7 +119,7 @@
OperatorExpr [
IndexAccessor [
Variable [ Name=sim ]
- Index: Variable [ Name=sim ]
+ Index: LiteralExpr [LONG] [0]
]
and
OperatorExpr [
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-index/inverted-index-join/ngram-edit-distance-check_01.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-index/inverted-index-join/ngram-edit-distance-check_01.ast
index 088d1ec..0d7ebe8 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-index/inverted-index-join/ngram-edit-distance-check_01.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-index/inverted-index-join/ngram-edit-distance-check_01.ast
@@ -77,23 +77,7 @@
]
LiteralExpr [LONG] [3]
]
- Index: FunctionCall test.edit-distance-check@3[
- FieldAccessor [
- FieldAccessor [
- Variable [ Name=a ]
- Field=nested
- ]
- Field=authors
- ]
- FieldAccessor [
- FieldAccessor [
- Variable [ Name=b ]
- Field=nested
- ]
- Field=authors
- ]
- LiteralExpr [LONG] [3]
- ]
+ Index: LiteralExpr [LONG] [0]
]
and
OperatorExpr [
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-index/inverted-index-join/ngram-edit-distance-contains.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-index/inverted-index-join/ngram-edit-distance-contains.ast
index 24ca38a..1b61ffb 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-index/inverted-index-join/ngram-edit-distance-contains.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-index/inverted-index-join/ngram-edit-distance-contains.ast
@@ -77,23 +77,7 @@
]
LiteralExpr [LONG] [3]
]
- Index: FunctionCall test.edit-distance-contains@3[
- FieldAccessor [
- FieldAccessor [
- Variable [ Name=a ]
- Field=nested
- ]
- Field=authors
- ]
- FieldAccessor [
- FieldAccessor [
- Variable [ Name=b ]
- Field=nested
- ]
- Field=authors
- ]
- LiteralExpr [LONG] [3]
- ]
+ Index: LiteralExpr [LONG] [0]
]
and
OperatorExpr [
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-index/inverted-index-join/ngram-jaccard-check_01.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-index/inverted-index-join/ngram-jaccard-check_01.ast
index 852ddc8..6de60d8 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-index/inverted-index-join/ngram-jaccard-check_01.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-index/inverted-index-join/ngram-jaccard-check_01.ast
@@ -86,31 +86,7 @@
]
LiteralExpr [FLOAT] [0.5]
]
- Index: FunctionCall test.similarity-jaccard-check@3[
- FunctionCall test.gram-tokens@3[
- FieldAccessor [
- FieldAccessor [
- Variable [ Name=a ]
- Field=nested
- ]
- Field=title
- ]
- LiteralExpr [LONG] [3]
- LiteralExpr [FALSE]
- ]
- FunctionCall test.gram-tokens@3[
- FieldAccessor [
- FieldAccessor [
- Variable [ Name=b ]
- Field=nested
- ]
- Field=title
- ]
- LiteralExpr [LONG] [3]
- LiteralExpr [FALSE]
- ]
- LiteralExpr [FLOAT] [0.5]
- ]
+ Index: LiteralExpr [LONG] [0]
]
and
OperatorExpr [
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-index/inverted-index-join/olist-edit-distance-check_01.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-index/inverted-index-join/olist-edit-distance-check_01.ast
index 7cc0e31..a10f0dc 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-index/inverted-index-join/olist-edit-distance-check_01.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-index/inverted-index-join/olist-edit-distance-check_01.ast
@@ -77,23 +77,7 @@
]
LiteralExpr [LONG] [3]
]
- Index: FunctionCall test.edit-distance-check@3[
- FieldAccessor [
- FieldAccessor [
- Variable [ Name=a ]
- Field=nested
- ]
- Field=interests
- ]
- FieldAccessor [
- FieldAccessor [
- Variable [ Name=b ]
- Field=nested
- ]
- Field=interests
- ]
- LiteralExpr [LONG] [3]
- ]
+ Index: LiteralExpr [LONG] [0]
]
and
OperatorExpr [
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-index/inverted-index-join/olist-jaccard-check_01.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-index/inverted-index-join/olist-jaccard-check_01.ast
index 280f534..c2c1017 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-index/inverted-index-join/olist-jaccard-check_01.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-index/inverted-index-join/olist-jaccard-check_01.ast
@@ -77,23 +77,7 @@
]
LiteralExpr [FLOAT] [0.7]
]
- Index: FunctionCall test.similarity-jaccard-check@3[
- FieldAccessor [
- FieldAccessor [
- Variable [ Name=a ]
- Field=nested
- ]
- Field=interests
- ]
- FieldAccessor [
- FieldAccessor [
- Variable [ Name=b ]
- Field=nested
- ]
- Field=interests
- ]
- LiteralExpr [FLOAT] [0.7]
- ]
+ Index: LiteralExpr [LONG] [0]
]
and
OperatorExpr [
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-index/inverted-index-join/ulist-jaccard-check_01.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-index/inverted-index-join/ulist-jaccard-check_01.ast
index 2f0cb06..ddbca88 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-index/inverted-index-join/ulist-jaccard-check_01.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-index/inverted-index-join/ulist-jaccard-check_01.ast
@@ -77,23 +77,7 @@
]
LiteralExpr [FLOAT] [0.7]
]
- Index: FunctionCall test.similarity-jaccard-check@3[
- FieldAccessor [
- FieldAccessor [
- Variable [ Name=a ]
- Field=nested
- ]
- Field=interests
- ]
- FieldAccessor [
- FieldAccessor [
- Variable [ Name=b ]
- Field=nested
- ]
- Field=interests
- ]
- LiteralExpr [FLOAT] [0.7]
- ]
+ Index: LiteralExpr [LONG] [0]
]
and
OperatorExpr [
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-index/inverted-index-join/word-jaccard-check-after-btree-access.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-index/inverted-index-join/word-jaccard-check-after-btree-access.ast
index 317caba..f2a55db 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-index/inverted-index-join/word-jaccard-check-after-btree-access.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-index/inverted-index-join/word-jaccard-check-after-btree-access.ast
@@ -59,7 +59,7 @@
:
IndexAccessor [
Variable [ Name=sim ]
- Index: Variable [ Name=sim ]
+ Index: LiteralExpr [LONG] [1]
]
)
]
@@ -103,7 +103,7 @@
OperatorExpr [
IndexAccessor [
Variable [ Name=sim ]
- Index: Variable [ Name=sim ]
+ Index: LiteralExpr [LONG] [0]
]
and
OperatorExpr [
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-index/inverted-index-join/word-jaccard-check_01.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-index/inverted-index-join/word-jaccard-check_01.ast
index 6daba98..d961d77 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-index/inverted-index-join/word-jaccard-check_01.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-index/inverted-index-join/word-jaccard-check_01.ast
@@ -81,27 +81,7 @@
]
LiteralExpr [FLOAT] [0.5]
]
- Index: FunctionCall test.similarity-jaccard-check@3[
- FunctionCall test.word-tokens@1[
- FieldAccessor [
- FieldAccessor [
- Variable [ Name=a ]
- Field=nested
- ]
- Field=title
- ]
- ]
- FunctionCall test.word-tokens@1[
- FieldAccessor [
- FieldAccessor [
- Variable [ Name=b ]
- Field=nested
- ]
- Field=title
- ]
- ]
- LiteralExpr [FLOAT] [0.5]
- ]
+ Index: LiteralExpr [LONG] [0]
]
and
OperatorExpr [
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-open-index/inverted-index-basic/ngram-edit-distance-check-panic.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-open-index/inverted-index-basic/ngram-edit-distance-check-panic.ast
index d12ceed..79c8847 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-open-index/inverted-index-basic/ngram-edit-distance-check-panic.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-open-index/inverted-index-basic/ngram-edit-distance-check-panic.ast
@@ -40,5 +40,5 @@
Where
IndexAccessor [
Variable [ Name=ed ]
- Index: Variable [ Name=ed ]
+ Index: LiteralExpr [LONG] [0]
]
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-open-index/inverted-index-basic/ngram-edit-distance-check.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-open-index/inverted-index-basic/ngram-edit-distance-check.ast
index 4555873..bae732b 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-open-index/inverted-index-basic/ngram-edit-distance-check.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-open-index/inverted-index-basic/ngram-edit-distance-check.ast
@@ -37,15 +37,5 @@
LiteralExpr [STRING] [Amihay Motro]
LiteralExpr [LONG] [1]
]
- Index: FunctionCall test.edit-distance-check@3[
- FieldAccessor [
- FieldAccessor [
- Variable [ Name=o ]
- Field=nested
- ]
- Field=authors
- ]
- LiteralExpr [STRING] [Amihay Motro]
- LiteralExpr [LONG] [1]
- ]
+ Index: LiteralExpr [LONG] [0]
]
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-open-index/inverted-index-basic/ngram-jaccard-check.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-open-index/inverted-index-basic/ngram-jaccard-check.ast
index 9b70e65..050941d 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-open-index/inverted-index-basic/ngram-jaccard-check.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-open-index/inverted-index-basic/ngram-jaccard-check.ast
@@ -46,23 +46,5 @@
]
LiteralExpr [FLOAT] [0.5]
]
- Index: FunctionCall test.similarity-jaccard-check@3[
- FunctionCall test.gram-tokens@3[
- FieldAccessor [
- FieldAccessor [
- Variable [ Name=o ]
- Field=nested
- ]
- Field=title
- ]
- LiteralExpr [LONG] [3]
- LiteralExpr [FALSE]
- ]
- FunctionCall test.gram-tokens@3[
- LiteralExpr [STRING] [Transactions for Cooperative Environments]
- LiteralExpr [LONG] [3]
- LiteralExpr [FALSE]
- ]
- LiteralExpr [FLOAT] [0.5]
- ]
+ Index: LiteralExpr [LONG] [0]
]
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-open-index/inverted-index-basic/word-jaccard-check.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-open-index/inverted-index-basic/word-jaccard-check.ast
index 4ce086b..9767039 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-open-index/inverted-index-basic/word-jaccard-check.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-open-index/inverted-index-basic/word-jaccard-check.ast
@@ -41,19 +41,5 @@
]
LiteralExpr [FLOAT] [0.5]
]
- Index: FunctionCall test.similarity-jaccard-check@3[
- FunctionCall test.word-tokens@1[
- FieldAccessor [
- FieldAccessor [
- Variable [ Name=o ]
- Field=nested
- ]
- Field=title
- ]
- ]
- FunctionCall test.word-tokens@1[
- LiteralExpr [STRING] [Transactions for Cooperative Environments]
- ]
- LiteralExpr [FLOAT] [0.5]
- ]
+ Index: LiteralExpr [LONG] [0]
]
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-open-index/inverted-index-complex/ngram-edit-distance-check-let-panic-nopanic_01.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-open-index/inverted-index-complex/ngram-edit-distance-check-let-panic-nopanic_01.ast
index 062e678..8a8f515 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-open-index/inverted-index-complex/ngram-edit-distance-check-let-panic-nopanic_01.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-open-index/inverted-index-complex/ngram-edit-distance-check-let-panic-nopanic_01.ast
@@ -54,11 +54,11 @@
OperatorExpr [
IndexAccessor [
Variable [ Name=eda ]
- Index: Variable [ Name=eda ]
+ Index: LiteralExpr [LONG] [0]
]
and
IndexAccessor [
Variable [ Name=edb ]
- Index: Variable [ Name=edb ]
+ Index: LiteralExpr [LONG] [0]
]
]
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-open-index/inverted-index-complex/ngram-edit-distance-check-let-panic-nopanic_02.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-open-index/inverted-index-complex/ngram-edit-distance-check-let-panic-nopanic_02.ast
index b3d37bd..df1bc20 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-open-index/inverted-index-complex/ngram-edit-distance-check-let-panic-nopanic_02.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-open-index/inverted-index-complex/ngram-edit-distance-check-let-panic-nopanic_02.ast
@@ -54,11 +54,11 @@
OperatorExpr [
IndexAccessor [
Variable [ Name=edb ]
- Index: Variable [ Name=edb ]
+ Index: LiteralExpr [LONG] [0]
]
and
IndexAccessor [
Variable [ Name=eda ]
- Index: Variable [ Name=eda ]
+ Index: LiteralExpr [LONG] [0]
]
]
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-open-index/inverted-index-complex/ngram-edit-distance-check-let-panic.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-open-index/inverted-index-complex/ngram-edit-distance-check-let-panic.ast
index 83610a0..a0d5fb0 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-open-index/inverted-index-complex/ngram-edit-distance-check-let-panic.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-open-index/inverted-index-complex/ngram-edit-distance-check-let-panic.ast
@@ -40,5 +40,5 @@
Where
IndexAccessor [
Variable [ Name=ed ]
- Index: Variable [ Name=ed ]
+ Index: LiteralExpr [LONG] [0]
]
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-open-index/inverted-index-complex/ngram-edit-distance-check-let.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-open-index/inverted-index-complex/ngram-edit-distance-check-let.ast
index 04a8d06..a703ea7 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-open-index/inverted-index-complex/ngram-edit-distance-check-let.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-open-index/inverted-index-complex/ngram-edit-distance-check-let.ast
@@ -40,5 +40,5 @@
Where
IndexAccessor [
Variable [ Name=ed ]
- Index: Variable [ Name=ed ]
+ Index: LiteralExpr [LONG] [0]
]
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-open-index/inverted-index-complex/ngram-edit-distance-check-substring.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-open-index/inverted-index-complex/ngram-edit-distance-check-substring.ast
index 36ca9fa..45a65dc 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-open-index/inverted-index-complex/ngram-edit-distance-check-substring.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-open-index/inverted-index-complex/ngram-edit-distance-check-substring.ast
@@ -64,19 +64,5 @@
LiteralExpr [STRING] [datbase]
LiteralExpr [LONG] [1]
]
- Index: FunctionCall test.edit-distance-check@3[
- FunctionCall test.substring@3[
- FieldAccessor [
- FieldAccessor [
- Variable [ Name=paper ]
- Field=nested
- ]
- Field=title
- ]
- LiteralExpr [LONG] [0]
- LiteralExpr [LONG] [8]
- ]
- LiteralExpr [STRING] [datbase]
- LiteralExpr [LONG] [1]
- ]
+ Index: LiteralExpr [LONG] [0]
]
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-open-index/inverted-index-complex/ngram-edit-distance-check-word-tokens.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-open-index/inverted-index-complex/ngram-edit-distance-check-word-tokens.ast
index 00611cd..d594166 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-open-index/inverted-index-complex/ngram-edit-distance-check-word-tokens.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-open-index/inverted-index-complex/ngram-edit-distance-check-word-tokens.ast
@@ -66,9 +66,5 @@
LiteralExpr [STRING] [Multmedia]
LiteralExpr [LONG] [1]
]
- Index: FunctionCall test.edit-distance-check@3[
- Variable [ Name=word ]
- LiteralExpr [STRING] [Multmedia]
- LiteralExpr [LONG] [1]
- ]
+ Index: LiteralExpr [LONG] [0]
]
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-open-index/inverted-index-complex/ngram-jaccard-check-let.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-open-index/inverted-index-complex/ngram-jaccard-check-let.ast
index 2289a82..9aad298 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-open-index/inverted-index-complex/ngram-jaccard-check-let.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-open-index/inverted-index-complex/ngram-jaccard-check-let.ast
@@ -49,5 +49,5 @@
Where
IndexAccessor [
Variable [ Name=jacc ]
- Index: Variable [ Name=jacc ]
+ Index: LiteralExpr [LONG] [0]
]
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-open-index/inverted-index-complex/ngram-jaccard-check-multi-let.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-open-index/inverted-index-complex/ngram-jaccard-check-multi-let.ast
index 2c41290..3dbce47 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-open-index/inverted-index-complex/ngram-jaccard-check-multi-let.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-open-index/inverted-index-complex/ngram-jaccard-check-multi-let.ast
@@ -66,5 +66,5 @@
Where
IndexAccessor [
Variable [ Name=jacc ]
- Index: Variable [ Name=jacc ]
+ Index: LiteralExpr [LONG] [0]
]
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-open-index/inverted-index-complex/word-jaccard-check-let.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-open-index/inverted-index-complex/word-jaccard-check-let.ast
index e2d7abe..313b91e 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-open-index/inverted-index-complex/word-jaccard-check-let.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-open-index/inverted-index-complex/word-jaccard-check-let.ast
@@ -44,5 +44,5 @@
Where
IndexAccessor [
Variable [ Name=jacc ]
- Index: Variable [ Name=jacc ]
+ Index: LiteralExpr [LONG] [0]
]
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-open-index/inverted-index-complex/word-jaccard-check-multi-let.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-open-index/inverted-index-complex/word-jaccard-check-multi-let.ast
index 37d4ee0..dd4889a 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-open-index/inverted-index-complex/word-jaccard-check-multi-let.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-open-index/inverted-index-complex/word-jaccard-check-multi-let.ast
@@ -61,5 +61,5 @@
Where
IndexAccessor [
Variable [ Name=jacc ]
- Index: Variable [ Name=jacc ]
+ Index: LiteralExpr [LONG] [0]
]
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-open-index/inverted-index-join/leftouterjoin-probe-pidx-with-join-edit-distance-check-idx_01.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-open-index/inverted-index-join/leftouterjoin-probe-pidx-with-join-edit-distance-check-idx_01.ast
index 6bac05c..0fc1923 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-open-index/inverted-index-join/leftouterjoin-probe-pidx-with-join-edit-distance-check-idx_01.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-open-index/inverted-index-join/leftouterjoin-probe-pidx-with-join-edit-distance-check-idx_01.ast
@@ -118,7 +118,7 @@
OperatorExpr [
IndexAccessor [
Variable [ Name=sim ]
- Index: Variable [ Name=sim ]
+ Index: LiteralExpr [LONG] [0]
]
and
OperatorExpr [
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-open-index/inverted-index-join/ngram-edit-distance-check_01.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-open-index/inverted-index-join/ngram-edit-distance-check_01.ast
index a9c2373..f2e8971 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-open-index/inverted-index-join/ngram-edit-distance-check_01.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-open-index/inverted-index-join/ngram-edit-distance-check_01.ast
@@ -76,23 +76,7 @@
]
LiteralExpr [LONG] [3]
]
- Index: FunctionCall test.edit-distance-check@3[
- FieldAccessor [
- FieldAccessor [
- Variable [ Name=a ]
- Field=nested
- ]
- Field=authors
- ]
- FieldAccessor [
- FieldAccessor [
- Variable [ Name=b ]
- Field=nested
- ]
- Field=authors
- ]
- LiteralExpr [LONG] [3]
- ]
+ Index: LiteralExpr [LONG] [0]
]
and
OperatorExpr [
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-open-index/inverted-index-join/ngram-edit-distance-check_02.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-open-index/inverted-index-join/ngram-edit-distance-check_02.ast
index 6c615b2..ecb4524 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-open-index/inverted-index-join/ngram-edit-distance-check_02.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-open-index/inverted-index-join/ngram-edit-distance-check_02.ast
@@ -76,23 +76,7 @@
]
LiteralExpr [LONG] [3]
]
- Index: FunctionCall test.edit-distance-check@3[
- FieldAccessor [
- FieldAccessor [
- Variable [ Name=a ]
- Field=nested
- ]
- Field=authors
- ]
- FieldAccessor [
- FieldAccessor [
- Variable [ Name=b ]
- Field=nested
- ]
- Field=authors
- ]
- LiteralExpr [LONG] [3]
- ]
+ Index: LiteralExpr [LONG] [0]
]
and
OperatorExpr [
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-open-index/inverted-index-join/ngram-edit-distance-check_03.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-open-index/inverted-index-join/ngram-edit-distance-check_03.ast
index 567cac1..516b968 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-open-index/inverted-index-join/ngram-edit-distance-check_03.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-open-index/inverted-index-join/ngram-edit-distance-check_03.ast
@@ -61,23 +61,7 @@
]
LiteralExpr [LONG] [3]
]
- Index: FunctionCall test.edit-distance-check@3[
- FieldAccessor [
- FieldAccessor [
- Variable [ Name=a ]
- Field=nested
- ]
- Field=authors
- ]
- FieldAccessor [
- FieldAccessor [
- Variable [ Name=b ]
- Field=nested
- ]
- Field=authors
- ]
- LiteralExpr [LONG] [3]
- ]
+ Index: LiteralExpr [LONG] [0]
]
and
OperatorExpr [
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-open-index/inverted-index-join/ngram-edit-distance-check_04.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-open-index/inverted-index-join/ngram-edit-distance-check_04.ast
index b4e0ea6..4be1dbf 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-open-index/inverted-index-join/ngram-edit-distance-check_04.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-open-index/inverted-index-join/ngram-edit-distance-check_04.ast
@@ -75,23 +75,7 @@
]
LiteralExpr [LONG] [3]
]
- Index: FunctionCall test.edit-distance-check@3[
- FieldAccessor [
- FieldAccessor [
- Variable [ Name=a ]
- Field=nested
- ]
- Field=authors
- ]
- FieldAccessor [
- FieldAccessor [
- Variable [ Name=b ]
- Field=nested
- ]
- Field=authors
- ]
- LiteralExpr [LONG] [3]
- ]
+ Index: LiteralExpr [LONG] [0]
]
and
OperatorExpr [
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-open-index/inverted-index-join/ngram-edit-distance-check_05.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-open-index/inverted-index-join/ngram-edit-distance-check_05.ast
index b4e0ea6..4be1dbf 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-open-index/inverted-index-join/ngram-edit-distance-check_05.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-open-index/inverted-index-join/ngram-edit-distance-check_05.ast
@@ -75,23 +75,7 @@
]
LiteralExpr [LONG] [3]
]
- Index: FunctionCall test.edit-distance-check@3[
- FieldAccessor [
- FieldAccessor [
- Variable [ Name=a ]
- Field=nested
- ]
- Field=authors
- ]
- FieldAccessor [
- FieldAccessor [
- Variable [ Name=b ]
- Field=nested
- ]
- Field=authors
- ]
- LiteralExpr [LONG] [3]
- ]
+ Index: LiteralExpr [LONG] [0]
]
and
OperatorExpr [
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-open-index/inverted-index-join/ngram-edit-distance-contains.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-open-index/inverted-index-join/ngram-edit-distance-contains.ast
index ec7ea04..c31bb76 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-open-index/inverted-index-join/ngram-edit-distance-contains.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-open-index/inverted-index-join/ngram-edit-distance-contains.ast
@@ -76,23 +76,7 @@
]
LiteralExpr [LONG] [3]
]
- Index: FunctionCall test.edit-distance-contains@3[
- FieldAccessor [
- FieldAccessor [
- Variable [ Name=a ]
- Field=nested
- ]
- Field=authors
- ]
- FieldAccessor [
- FieldAccessor [
- Variable [ Name=b ]
- Field=nested
- ]
- Field=authors
- ]
- LiteralExpr [LONG] [3]
- ]
+ Index: LiteralExpr [LONG] [0]
]
and
OperatorExpr [
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-open-index/inverted-index-join/ngram-jaccard-check_01.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-open-index/inverted-index-join/ngram-jaccard-check_01.ast
index 680f1a4..8e100f1 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-open-index/inverted-index-join/ngram-jaccard-check_01.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-open-index/inverted-index-join/ngram-jaccard-check_01.ast
@@ -85,31 +85,7 @@
]
LiteralExpr [FLOAT] [0.5]
]
- Index: FunctionCall test.similarity-jaccard-check@3[
- FunctionCall test.gram-tokens@3[
- FieldAccessor [
- FieldAccessor [
- Variable [ Name=a ]
- Field=nested
- ]
- Field=title
- ]
- LiteralExpr [LONG] [3]
- LiteralExpr [FALSE]
- ]
- FunctionCall test.gram-tokens@3[
- FieldAccessor [
- FieldAccessor [
- Variable [ Name=b ]
- Field=nested
- ]
- Field=title
- ]
- LiteralExpr [LONG] [3]
- LiteralExpr [FALSE]
- ]
- LiteralExpr [FLOAT] [0.5]
- ]
+ Index: LiteralExpr [LONG] [0]
]
and
OperatorExpr [
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-open-index/inverted-index-join/ngram-jaccard-check_02.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-open-index/inverted-index-join/ngram-jaccard-check_02.ast
index c8c76ed..1b9f971 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-open-index/inverted-index-join/ngram-jaccard-check_02.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-open-index/inverted-index-join/ngram-jaccard-check_02.ast
@@ -85,31 +85,7 @@
]
LiteralExpr [FLOAT] [0.5]
]
- Index: FunctionCall test.similarity-jaccard-check@3[
- FunctionCall test.gram-tokens@3[
- FieldAccessor [
- FieldAccessor [
- Variable [ Name=a ]
- Field=nested
- ]
- Field=title
- ]
- LiteralExpr [LONG] [3]
- LiteralExpr [FALSE]
- ]
- FunctionCall test.gram-tokens@3[
- FieldAccessor [
- FieldAccessor [
- Variable [ Name=b ]
- Field=nested
- ]
- Field=title
- ]
- LiteralExpr [LONG] [3]
- LiteralExpr [FALSE]
- ]
- LiteralExpr [FLOAT] [0.5]
- ]
+ Index: LiteralExpr [LONG] [0]
]
and
OperatorExpr [
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-open-index/inverted-index-join/ngram-jaccard-check_03.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-open-index/inverted-index-join/ngram-jaccard-check_03.ast
index 5c27747..d2f1b23 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-open-index/inverted-index-join/ngram-jaccard-check_03.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-open-index/inverted-index-join/ngram-jaccard-check_03.ast
@@ -70,31 +70,7 @@
]
LiteralExpr [FLOAT] [0.5]
]
- Index: FunctionCall test.similarity-jaccard-check@3[
- FunctionCall test.gram-tokens@3[
- FieldAccessor [
- FieldAccessor [
- Variable [ Name=a ]
- Field=nested
- ]
- Field=title
- ]
- LiteralExpr [LONG] [3]
- LiteralExpr [FALSE]
- ]
- FunctionCall test.gram-tokens@3[
- FieldAccessor [
- FieldAccessor [
- Variable [ Name=b ]
- Field=nested
- ]
- Field=title
- ]
- LiteralExpr [LONG] [3]
- LiteralExpr [FALSE]
- ]
- LiteralExpr [FLOAT] [0.5]
- ]
+ Index: LiteralExpr [LONG] [0]
]
and
OperatorExpr [
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-open-index/inverted-index-join/ngram-jaccard-check_04.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-open-index/inverted-index-join/ngram-jaccard-check_04.ast
index 0aaba9d..214121f 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-open-index/inverted-index-join/ngram-jaccard-check_04.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-open-index/inverted-index-join/ngram-jaccard-check_04.ast
@@ -84,31 +84,7 @@
]
LiteralExpr [FLOAT] [0.5]
]
- Index: FunctionCall test.similarity-jaccard-check@3[
- FunctionCall test.gram-tokens@3[
- FieldAccessor [
- FieldAccessor [
- Variable [ Name=a ]
- Field=nested
- ]
- Field=title
- ]
- LiteralExpr [LONG] [3]
- LiteralExpr [FALSE]
- ]
- FunctionCall test.gram-tokens@3[
- FieldAccessor [
- FieldAccessor [
- Variable [ Name=b ]
- Field=nested
- ]
- Field=title
- ]
- LiteralExpr [LONG] [3]
- LiteralExpr [FALSE]
- ]
- LiteralExpr [FLOAT] [0.5]
- ]
+ Index: LiteralExpr [LONG] [0]
]
and
OperatorExpr [
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-open-index/inverted-index-join/word-jaccard-check-after-btree-access.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-open-index/inverted-index-join/word-jaccard-check-after-btree-access.ast
index 6ea18ab..035e20b 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-open-index/inverted-index-join/word-jaccard-check-after-btree-access.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-open-index/inverted-index-join/word-jaccard-check-after-btree-access.ast
@@ -58,7 +58,7 @@
:
IndexAccessor [
Variable [ Name=sim ]
- Index: Variable [ Name=sim ]
+ Index: LiteralExpr [LONG] [1]
]
)
]
@@ -102,7 +102,7 @@
OperatorExpr [
IndexAccessor [
Variable [ Name=sim ]
- Index: Variable [ Name=sim ]
+ Index: LiteralExpr [LONG] [0]
]
and
OperatorExpr [
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-open-index/inverted-index-join/word-jaccard-check_01.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-open-index/inverted-index-join/word-jaccard-check_01.ast
index b87f210..37a6c4a 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-open-index/inverted-index-join/word-jaccard-check_01.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-open-index/inverted-index-join/word-jaccard-check_01.ast
@@ -80,27 +80,7 @@
]
LiteralExpr [FLOAT] [0.5]
]
- Index: FunctionCall test.similarity-jaccard-check@3[
- FunctionCall test.word-tokens@1[
- FieldAccessor [
- FieldAccessor [
- Variable [ Name=a ]
- Field=nested
- ]
- Field=title
- ]
- ]
- FunctionCall test.word-tokens@1[
- FieldAccessor [
- FieldAccessor [
- Variable [ Name=b ]
- Field=nested
- ]
- Field=title
- ]
- ]
- LiteralExpr [FLOAT] [0.5]
- ]
+ Index: LiteralExpr [LONG] [0]
]
and
OperatorExpr [
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-open-index/inverted-index-join/word-jaccard-check_02.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-open-index/inverted-index-join/word-jaccard-check_02.ast
index 0941add..1192b39 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-open-index/inverted-index-join/word-jaccard-check_02.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-open-index/inverted-index-join/word-jaccard-check_02.ast
@@ -80,27 +80,7 @@
]
LiteralExpr [FLOAT] [0.5]
]
- Index: FunctionCall test.similarity-jaccard-check@3[
- FunctionCall test.word-tokens@1[
- FieldAccessor [
- FieldAccessor [
- Variable [ Name=a ]
- Field=nested
- ]
- Field=title
- ]
- ]
- FunctionCall test.word-tokens@1[
- FieldAccessor [
- FieldAccessor [
- Variable [ Name=b ]
- Field=nested
- ]
- Field=title
- ]
- ]
- LiteralExpr [FLOAT] [0.5]
- ]
+ Index: LiteralExpr [LONG] [0]
]
and
OperatorExpr [
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-open-index/inverted-index-join/word-jaccard-check_03.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-open-index/inverted-index-join/word-jaccard-check_03.ast
index eee4066..998e6e6 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-open-index/inverted-index-join/word-jaccard-check_03.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-open-index/inverted-index-join/word-jaccard-check_03.ast
@@ -65,27 +65,7 @@
]
LiteralExpr [FLOAT] [0.5]
]
- Index: FunctionCall test.similarity-jaccard-check@3[
- FunctionCall test.word-tokens@1[
- FieldAccessor [
- FieldAccessor [
- Variable [ Name=a ]
- Field=nested
- ]
- Field=title
- ]
- ]
- FunctionCall test.word-tokens@1[
- FieldAccessor [
- FieldAccessor [
- Variable [ Name=b ]
- Field=nested
- ]
- Field=title
- ]
- ]
- LiteralExpr [FLOAT] [0.5]
- ]
+ Index: LiteralExpr [LONG] [0]
]
and
OperatorExpr [
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-open-index/inverted-index-join/word-jaccard-check_04.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-open-index/inverted-index-join/word-jaccard-check_04.ast
index 10e9f85..45fe598 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-open-index/inverted-index-join/word-jaccard-check_04.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/nested-open-index/inverted-index-join/word-jaccard-check_04.ast
@@ -79,27 +79,7 @@
]
LiteralExpr [FLOAT] [0.5]
]
- Index: FunctionCall test.similarity-jaccard-check@3[
- FunctionCall test.word-tokens@1[
- FieldAccessor [
- FieldAccessor [
- Variable [ Name=a ]
- Field=nested
- ]
- Field=title
- ]
- ]
- FunctionCall test.word-tokens@1[
- FieldAccessor [
- FieldAccessor [
- Variable [ Name=b ]
- Field=nested
- ]
- Field=title
- ]
- ]
- LiteralExpr [FLOAT] [0.5]
- ]
+ Index: LiteralExpr [LONG] [0]
]
and
OperatorExpr [
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-basic/ngram-edit-distance-check-panic.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-basic/ngram-edit-distance-check-panic.ast
index 1bc655f..38ac11e 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-basic/ngram-edit-distance-check-panic.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-basic/ngram-edit-distance-check-panic.ast
@@ -32,5 +32,5 @@
Where
IndexAccessor [
Variable [ Name=ed ]
- Index: Variable [ Name=ed ]
+ Index: LiteralExpr [LONG] [0]
]
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-basic/ngram-edit-distance-check.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-basic/ngram-edit-distance-check.ast
index 535abc4..f940637 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-basic/ngram-edit-distance-check.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-basic/ngram-edit-distance-check.ast
@@ -29,12 +29,5 @@
LiteralExpr [STRING] [Amihay Motro]
LiteralExpr [LONG] [1]
]
- Index: FunctionCall test.edit-distance-check@3[
- FieldAccessor [
- Variable [ Name=o ]
- Field=authors
- ]
- LiteralExpr [STRING] [Amihay Motro]
- LiteralExpr [LONG] [1]
- ]
+ Index: LiteralExpr [LONG] [0]
]
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-basic/ngram-jaccard-check.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-basic/ngram-jaccard-check.ast
index a80c3b5..acd8e29 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-basic/ngram-jaccard-check.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-basic/ngram-jaccard-check.ast
@@ -38,20 +38,5 @@
]
LiteralExpr [FLOAT] [0.5]
]
- Index: FunctionCall test.similarity-jaccard-check@3[
- FunctionCall test.gram-tokens@3[
- FieldAccessor [
- Variable [ Name=o ]
- Field=title
- ]
- LiteralExpr [LONG] [3]
- LiteralExpr [FALSE]
- ]
- FunctionCall test.gram-tokens@3[
- LiteralExpr [STRING] [Transactions for Cooperative Environments]
- LiteralExpr [LONG] [3]
- LiteralExpr [FALSE]
- ]
- LiteralExpr [FLOAT] [0.5]
- ]
+ Index: LiteralExpr [LONG] [0]
]
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-basic/word-jaccard-check.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-basic/word-jaccard-check.ast
index 4e94166..2d26dd9 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-basic/word-jaccard-check.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-basic/word-jaccard-check.ast
@@ -33,16 +33,5 @@
]
LiteralExpr [FLOAT] [0.5]
]
- Index: FunctionCall test.similarity-jaccard-check@3[
- FunctionCall test.word-tokens@1[
- FieldAccessor [
- Variable [ Name=o ]
- Field=title
- ]
- ]
- FunctionCall test.word-tokens@1[
- LiteralExpr [STRING] [Transactions for Cooperative Environments]
- ]
- LiteralExpr [FLOAT] [0.5]
- ]
+ Index: LiteralExpr [LONG] [0]
]
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-complex/ngram-edit-distance-check-let-panic-nopanic_01.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-complex/ngram-edit-distance-check-let-panic-nopanic_01.ast
index b4ae60d..5e86c12 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-complex/ngram-edit-distance-check-let-panic-nopanic_01.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-complex/ngram-edit-distance-check-let-panic-nopanic_01.ast
@@ -43,11 +43,11 @@
OperatorExpr [
IndexAccessor [
Variable [ Name=eda ]
- Index: Variable [ Name=eda ]
+ Index: LiteralExpr [LONG] [0]
]
and
IndexAccessor [
Variable [ Name=edb ]
- Index: Variable [ Name=edb ]
+ Index: LiteralExpr [LONG] [0]
]
]
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-complex/ngram-edit-distance-check-let-panic-nopanic_02.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-complex/ngram-edit-distance-check-let-panic-nopanic_02.ast
index 117c646..7c10bfa 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-complex/ngram-edit-distance-check-let-panic-nopanic_02.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-complex/ngram-edit-distance-check-let-panic-nopanic_02.ast
@@ -43,11 +43,11 @@
OperatorExpr [
IndexAccessor [
Variable [ Name=edb ]
- Index: Variable [ Name=edb ]
+ Index: LiteralExpr [LONG] [0]
]
and
IndexAccessor [
Variable [ Name=eda ]
- Index: Variable [ Name=eda ]
+ Index: LiteralExpr [LONG] [0]
]
]
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-complex/ngram-edit-distance-check-let-panic.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-complex/ngram-edit-distance-check-let-panic.ast
index 0dbfd47..5da4fe4 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-complex/ngram-edit-distance-check-let-panic.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-complex/ngram-edit-distance-check-let-panic.ast
@@ -32,5 +32,5 @@
Where
IndexAccessor [
Variable [ Name=ed ]
- Index: Variable [ Name=ed ]
+ Index: LiteralExpr [LONG] [0]
]
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-complex/ngram-edit-distance-check-let.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-complex/ngram-edit-distance-check-let.ast
index 6e36688..601b7cf 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-complex/ngram-edit-distance-check-let.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-complex/ngram-edit-distance-check-let.ast
@@ -32,5 +32,5 @@
Where
IndexAccessor [
Variable [ Name=ed ]
- Index: Variable [ Name=ed ]
+ Index: LiteralExpr [LONG] [0]
]
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-complex/ngram-edit-distance-check-substring.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-complex/ngram-edit-distance-check-substring.ast
index 326ecfa..1887616 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-complex/ngram-edit-distance-check-substring.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-complex/ngram-edit-distance-check-substring.ast
@@ -50,16 +50,5 @@
LiteralExpr [STRING] [datbase]
LiteralExpr [LONG] [1]
]
- Index: FunctionCall test.edit-distance-check@3[
- FunctionCall test.substring@3[
- FieldAccessor [
- Variable [ Name=paper ]
- Field=title
- ]
- LiteralExpr [LONG] [0]
- LiteralExpr [LONG] [8]
- ]
- LiteralExpr [STRING] [datbase]
- LiteralExpr [LONG] [1]
- ]
+ Index: LiteralExpr [LONG] [0]
]
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-complex/ngram-edit-distance-check-word-tokens.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-complex/ngram-edit-distance-check-word-tokens.ast
index 146b5fb..665e2cb 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-complex/ngram-edit-distance-check-word-tokens.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-complex/ngram-edit-distance-check-word-tokens.ast
@@ -52,9 +52,5 @@
LiteralExpr [STRING] [Multmedia]
LiteralExpr [LONG] [1]
]
- Index: FunctionCall test.edit-distance-check@3[
- Variable [ Name=word ]
- LiteralExpr [STRING] [Multmedia]
- LiteralExpr [LONG] [1]
- ]
+ Index: LiteralExpr [LONG] [0]
]
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-complex/ngram-jaccard-check-let.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-complex/ngram-jaccard-check-let.ast
index 50c1eee..570f695 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-complex/ngram-jaccard-check-let.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-complex/ngram-jaccard-check-let.ast
@@ -41,5 +41,5 @@
Where
IndexAccessor [
Variable [ Name=jacc ]
- Index: Variable [ Name=jacc ]
+ Index: LiteralExpr [LONG] [0]
]
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-complex/ngram-jaccard-check-multi-let.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-complex/ngram-jaccard-check-multi-let.ast
index a021ee6..f65f836 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-complex/ngram-jaccard-check-multi-let.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-complex/ngram-jaccard-check-multi-let.ast
@@ -58,5 +58,5 @@
Where
IndexAccessor [
Variable [ Name=jacc ]
- Index: Variable [ Name=jacc ]
+ Index: LiteralExpr [LONG] [0]
]
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-complex/word-jaccard-check-let.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-complex/word-jaccard-check-let.ast
index 572a3b5..fee2bac 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-complex/word-jaccard-check-let.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-complex/word-jaccard-check-let.ast
@@ -36,5 +36,5 @@
Where
IndexAccessor [
Variable [ Name=jacc ]
- Index: Variable [ Name=jacc ]
+ Index: LiteralExpr [LONG] [0]
]
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-complex/word-jaccard-check-multi-let.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-complex/word-jaccard-check-multi-let.ast
index 4e81a84..ee42128 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-complex/word-jaccard-check-multi-let.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-complex/word-jaccard-check-multi-let.ast
@@ -53,5 +53,5 @@
Where
IndexAccessor [
Variable [ Name=jacc ]
- Index: Variable [ Name=jacc ]
+ Index: LiteralExpr [LONG] [0]
]
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-join/leftouterjoin-probe-pidx-with-join-edit-distance-check-idx_01.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-join/leftouterjoin-probe-pidx-with-join-edit-distance-check-idx_01.ast
index 7cb7620..fc462c7 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-join/leftouterjoin-probe-pidx-with-join-edit-distance-check-idx_01.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-join/leftouterjoin-probe-pidx-with-join-edit-distance-check-idx_01.ast
@@ -95,7 +95,7 @@
OperatorExpr [
IndexAccessor [
Variable [ Name=sim ]
- Index: Variable [ Name=sim ]
+ Index: LiteralExpr [LONG] [0]
]
and
OperatorExpr [
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-join/ngram-edit-distance-check_01.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-join/ngram-edit-distance-check_01.ast
index e2be001..497999b 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-join/ngram-edit-distance-check_01.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-join/ngram-edit-distance-check_01.ast
@@ -60,17 +60,7 @@
]
LiteralExpr [LONG] [3]
]
- Index: FunctionCall test.edit-distance-check@3[
- FieldAccessor [
- Variable [ Name=a ]
- Field=authors
- ]
- FieldAccessor [
- Variable [ Name=b ]
- Field=authors
- ]
- LiteralExpr [LONG] [3]
- ]
+ Index: LiteralExpr [LONG] [0]
]
and
OperatorExpr [
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-join/ngram-edit-distance-check_02.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-join/ngram-edit-distance-check_02.ast
index ee772de..792a4e9 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-join/ngram-edit-distance-check_02.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-join/ngram-edit-distance-check_02.ast
@@ -60,17 +60,7 @@
]
LiteralExpr [LONG] [3]
]
- Index: FunctionCall test.edit-distance-check@3[
- FieldAccessor [
- Variable [ Name=a ]
- Field=authors
- ]
- FieldAccessor [
- Variable [ Name=b ]
- Field=authors
- ]
- LiteralExpr [LONG] [3]
- ]
+ Index: LiteralExpr [LONG] [0]
]
and
OperatorExpr [
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-join/ngram-edit-distance-check_03.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-join/ngram-edit-distance-check_03.ast
index 2625826..d611005 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-join/ngram-edit-distance-check_03.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-join/ngram-edit-distance-check_03.ast
@@ -50,17 +50,7 @@
]
LiteralExpr [LONG] [3]
]
- Index: FunctionCall test.edit-distance-check@3[
- FieldAccessor [
- Variable [ Name=a ]
- Field=authors
- ]
- FieldAccessor [
- Variable [ Name=b ]
- Field=authors
- ]
- LiteralExpr [LONG] [3]
- ]
+ Index: LiteralExpr [LONG] [0]
]
and
OperatorExpr [
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-join/ngram-edit-distance-check_04.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-join/ngram-edit-distance-check_04.ast
index c03fc57..205ee3e 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-join/ngram-edit-distance-check_04.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-join/ngram-edit-distance-check_04.ast
@@ -59,17 +59,7 @@
]
LiteralExpr [LONG] [3]
]
- Index: FunctionCall test.edit-distance-check@3[
- FieldAccessor [
- Variable [ Name=a ]
- Field=authors
- ]
- FieldAccessor [
- Variable [ Name=b ]
- Field=authors
- ]
- LiteralExpr [LONG] [3]
- ]
+ Index: LiteralExpr [LONG] [0]
]
and
OperatorExpr [
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-join/ngram-edit-distance-check_05.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-join/ngram-edit-distance-check_05.ast
index c03fc57..205ee3e 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-join/ngram-edit-distance-check_05.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-join/ngram-edit-distance-check_05.ast
@@ -59,17 +59,7 @@
]
LiteralExpr [LONG] [3]
]
- Index: FunctionCall test.edit-distance-check@3[
- FieldAccessor [
- Variable [ Name=a ]
- Field=authors
- ]
- FieldAccessor [
- Variable [ Name=b ]
- Field=authors
- ]
- LiteralExpr [LONG] [3]
- ]
+ Index: LiteralExpr [LONG] [0]
]
and
OperatorExpr [
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-join/ngram-edit-distance-check_inline_03.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-join/ngram-edit-distance-check_inline_03.ast
index 4f9f6f5..d0930e1 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-join/ngram-edit-distance-check_inline_03.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-join/ngram-edit-distance-check_inline_03.ast
@@ -27,7 +27,7 @@
:
IndexAccessor [
Variable [ Name=ed ]
- Index: Variable [ Name=ed ]
+ Index: LiteralExpr [LONG] [1]
]
)
]
@@ -61,7 +61,7 @@
OperatorExpr [
IndexAccessor [
Variable [ Name=ed ]
- Index: Variable [ Name=ed ]
+ Index: LiteralExpr [LONG] [0]
]
and
OperatorExpr [
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-join/ngram-edit-distance-contains.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-join/ngram-edit-distance-contains.ast
index 1078ccd..03d5c1d 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-join/ngram-edit-distance-contains.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-join/ngram-edit-distance-contains.ast
@@ -60,17 +60,7 @@
]
LiteralExpr [LONG] [3]
]
- Index: FunctionCall test.edit-distance-contains@3[
- FieldAccessor [
- Variable [ Name=a ]
- Field=authors
- ]
- FieldAccessor [
- Variable [ Name=b ]
- Field=authors
- ]
- LiteralExpr [LONG] [3]
- ]
+ Index: LiteralExpr [LONG] [0]
]
and
OperatorExpr [
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-join/ngram-jaccard-check_01.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-join/ngram-jaccard-check_01.ast
index 36048d7..9b25b7e 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-join/ngram-jaccard-check_01.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-join/ngram-jaccard-check_01.ast
@@ -69,25 +69,7 @@
]
LiteralExpr [FLOAT] [0.5]
]
- Index: FunctionCall test.similarity-jaccard-check@3[
- FunctionCall test.gram-tokens@3[
- FieldAccessor [
- Variable [ Name=a ]
- Field=title
- ]
- LiteralExpr [LONG] [3]
- LiteralExpr [FALSE]
- ]
- FunctionCall test.gram-tokens@3[
- FieldAccessor [
- Variable [ Name=b ]
- Field=title
- ]
- LiteralExpr [LONG] [3]
- LiteralExpr [FALSE]
- ]
- LiteralExpr [FLOAT] [0.5]
- ]
+ Index: LiteralExpr [LONG] [0]
]
and
OperatorExpr [
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-join/ngram-jaccard-check_02.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-join/ngram-jaccard-check_02.ast
index 6b235f1..bba3d50 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-join/ngram-jaccard-check_02.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-join/ngram-jaccard-check_02.ast
@@ -69,25 +69,7 @@
]
LiteralExpr [FLOAT] [0.5]
]
- Index: FunctionCall test.similarity-jaccard-check@3[
- FunctionCall test.gram-tokens@3[
- FieldAccessor [
- Variable [ Name=a ]
- Field=title
- ]
- LiteralExpr [LONG] [3]
- LiteralExpr [FALSE]
- ]
- FunctionCall test.gram-tokens@3[
- FieldAccessor [
- Variable [ Name=b ]
- Field=title
- ]
- LiteralExpr [LONG] [3]
- LiteralExpr [FALSE]
- ]
- LiteralExpr [FLOAT] [0.5]
- ]
+ Index: LiteralExpr [LONG] [0]
]
and
OperatorExpr [
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-join/ngram-jaccard-check_03.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-join/ngram-jaccard-check_03.ast
index da9f690..ed59daf 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-join/ngram-jaccard-check_03.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-join/ngram-jaccard-check_03.ast
@@ -59,25 +59,7 @@
]
LiteralExpr [FLOAT] [0.5]
]
- Index: FunctionCall test.similarity-jaccard-check@3[
- FunctionCall test.gram-tokens@3[
- FieldAccessor [
- Variable [ Name=a ]
- Field=title
- ]
- LiteralExpr [LONG] [3]
- LiteralExpr [FALSE]
- ]
- FunctionCall test.gram-tokens@3[
- FieldAccessor [
- Variable [ Name=b ]
- Field=title
- ]
- LiteralExpr [LONG] [3]
- LiteralExpr [FALSE]
- ]
- LiteralExpr [FLOAT] [0.5]
- ]
+ Index: LiteralExpr [LONG] [0]
]
and
OperatorExpr [
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-join/ngram-jaccard-check_04.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-join/ngram-jaccard-check_04.ast
index 3410831..5c9ca54 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-join/ngram-jaccard-check_04.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-join/ngram-jaccard-check_04.ast
@@ -68,25 +68,7 @@
]
LiteralExpr [FLOAT] [0.5]
]
- Index: FunctionCall test.similarity-jaccard-check@3[
- FunctionCall test.gram-tokens@3[
- FieldAccessor [
- Variable [ Name=a ]
- Field=title
- ]
- LiteralExpr [LONG] [3]
- LiteralExpr [FALSE]
- ]
- FunctionCall test.gram-tokens@3[
- FieldAccessor [
- Variable [ Name=b ]
- Field=title
- ]
- LiteralExpr [LONG] [3]
- LiteralExpr [FALSE]
- ]
- LiteralExpr [FLOAT] [0.5]
- ]
+ Index: LiteralExpr [LONG] [0]
]
and
OperatorExpr [
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-join/ngram-jaccard-check_inline_03.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-join/ngram-jaccard-check_inline_03.ast
index b17c189..9cafc98 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-join/ngram-jaccard-check_inline_03.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-join/ngram-jaccard-check_inline_03.ast
@@ -28,7 +28,7 @@
:
IndexAccessor [
Variable [ Name=jacc ]
- Index: Variable [ Name=jacc ]
+ Index: LiteralExpr [LONG] [1]
]
)
]
@@ -70,7 +70,7 @@
OperatorExpr [
IndexAccessor [
Variable [ Name=jacc ]
- Index: Variable [ Name=jacc ]
+ Index: LiteralExpr [LONG] [0]
]
and
OperatorExpr [
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-join/word-jaccard-check-after-btree-access.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-join/word-jaccard-check-after-btree-access.ast
index 4d96b4c..06e4110 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-join/word-jaccard-check-after-btree-access.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-join/word-jaccard-check-after-btree-access.ast
@@ -47,7 +47,7 @@
:
IndexAccessor [
Variable [ Name=sim ]
- Index: Variable [ Name=sim ]
+ Index: LiteralExpr [LONG] [1]
]
)
]
@@ -85,7 +85,7 @@
OperatorExpr [
IndexAccessor [
Variable [ Name=sim ]
- Index: Variable [ Name=sim ]
+ Index: LiteralExpr [LONG] [0]
]
and
OperatorExpr [
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-join/word-jaccard-check_01.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-join/word-jaccard-check_01.ast
index 9312f4f..b7d9557 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-join/word-jaccard-check_01.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-join/word-jaccard-check_01.ast
@@ -64,21 +64,7 @@
]
LiteralExpr [FLOAT] [0.5]
]
- Index: FunctionCall test.similarity-jaccard-check@3[
- FunctionCall test.word-tokens@1[
- FieldAccessor [
- Variable [ Name=a ]
- Field=title
- ]
- ]
- FunctionCall test.word-tokens@1[
- FieldAccessor [
- Variable [ Name=b ]
- Field=title
- ]
- ]
- LiteralExpr [FLOAT] [0.5]
- ]
+ Index: LiteralExpr [LONG] [0]
]
and
OperatorExpr [
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-join/word-jaccard-check_02.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-join/word-jaccard-check_02.ast
index c522135..1712032 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-join/word-jaccard-check_02.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-join/word-jaccard-check_02.ast
@@ -64,21 +64,7 @@
]
LiteralExpr [FLOAT] [0.5]
]
- Index: FunctionCall test.similarity-jaccard-check@3[
- FunctionCall test.word-tokens@1[
- FieldAccessor [
- Variable [ Name=a ]
- Field=title
- ]
- ]
- FunctionCall test.word-tokens@1[
- FieldAccessor [
- Variable [ Name=b ]
- Field=title
- ]
- ]
- LiteralExpr [FLOAT] [0.5]
- ]
+ Index: LiteralExpr [LONG] [0]
]
and
OperatorExpr [
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-join/word-jaccard-check_03.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-join/word-jaccard-check_03.ast
index 3b51a56..90dd0c6 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-join/word-jaccard-check_03.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-join/word-jaccard-check_03.ast
@@ -54,21 +54,7 @@
]
LiteralExpr [FLOAT] [0.5]
]
- Index: FunctionCall test.similarity-jaccard-check@3[
- FunctionCall test.word-tokens@1[
- FieldAccessor [
- Variable [ Name=a ]
- Field=title
- ]
- ]
- FunctionCall test.word-tokens@1[
- FieldAccessor [
- Variable [ Name=b ]
- Field=title
- ]
- ]
- LiteralExpr [FLOAT] [0.5]
- ]
+ Index: LiteralExpr [LONG] [0]
]
and
OperatorExpr [
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-join/word-jaccard-check_04.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-join/word-jaccard-check_04.ast
index ea0d477..b01bd36 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-join/word-jaccard-check_04.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-join/word-jaccard-check_04.ast
@@ -63,21 +63,7 @@
]
LiteralExpr [FLOAT] [0.5]
]
- Index: FunctionCall test.similarity-jaccard-check@3[
- FunctionCall test.word-tokens@1[
- FieldAccessor [
- Variable [ Name=a ]
- Field=title
- ]
- ]
- FunctionCall test.word-tokens@1[
- FieldAccessor [
- Variable [ Name=b ]
- Field=title
- ]
- ]
- LiteralExpr [FLOAT] [0.5]
- ]
+ Index: LiteralExpr [LONG] [0]
]
and
OperatorExpr [
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-join/word-jaccard-check_inline_03.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-join/word-jaccard-check_inline_03.ast
index 8c9a4b7..8f672db 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-join/word-jaccard-check_inline_03.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/open-index-enforced/inverted-index-join/word-jaccard-check_inline_03.ast
@@ -27,7 +27,7 @@
:
IndexAccessor [
Variable [ Name=jacc ]
- Index: Variable [ Name=jacc ]
+ Index: LiteralExpr [LONG] [1]
]
)
]
@@ -65,7 +65,7 @@
OperatorExpr [
IndexAccessor [
Variable [ Name=jacc ]
- Index: Variable [ Name=jacc ]
+ Index: LiteralExpr [LONG] [0]
]
and
OperatorExpr [
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/q2.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/q2.ast
index a7bc644..53ddcd23 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/q2.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/q2.ast
@@ -130,11 +130,11 @@
]
With
Variable [ Name=e ]
- Variable [ Name=by_chapter ]
Variable [ Name=sig_sponsorship_count ]
- Variable [ Name=es ]
Variable [ Name=sponsor ]
Variable [ Name=event ]
+ Variable [ Name=es ]
+ Variable [ Name=sig_name ]
)
Orderby
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/query-issue785.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/query-issue785.ast
index 5b5cb9a..d8a415a 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/query-issue785.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/query-issue785.ast
@@ -186,7 +186,6 @@
Variable [ Name=orders ]
Variable [ Name=n ]
Variable [ Name=customer ]
- Variable [ Name=X ]
Variable [ Name=t ]
LetVariable [ Name=sum ]
diff --git a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/split-materialization-above-join.ast b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/split-materialization-above-join.ast
index 1369a6b..41669f9 100644
--- a/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/split-materialization-above-join.ast
+++ b/asterix-app/src/test/resources/optimizerts/results_parser_sqlpp/split-materialization-above-join.ast
@@ -63,7 +63,7 @@
:
IndexAccessor [
Variable [ Name=sim ]
- Index: Variable [ Name=sim ]
+ Index: LiteralExpr [LONG] [0]
]
)
]
@@ -162,14 +162,11 @@
Variable [ Name=paper ]
Variable [ Name=token ]
Variable [ Name=tokenUnranked ]
- Variable [ Name=tokensLeft ]
Variable [ Name=lenLeft ]
Variable [ Name=paperLeft ]
Variable [ Name=paperRight ]
Variable [ Name=prefixTokenRight ]
Variable [ Name=prefixTokenLeft ]
- Variable [ Name=paperLeft ]
- Variable [ Name=paperRight ]
Orderby
FunctionCall fuzzyjoin.count@1[
@@ -248,7 +245,6 @@
Variable [ Name=paper ]
Variable [ Name=token ]
Variable [ Name=tokenUnranked ]
- Variable [ Name=tokensRight ]
Variable [ Name=lenRight ]
Variable [ Name=tokensLeft ]
Variable [ Name=lenLeft ]
@@ -256,8 +252,6 @@
Variable [ Name=paperRight ]
Variable [ Name=prefixTokenRight ]
Variable [ Name=prefixTokenLeft ]
- Variable [ Name=paperLeft ]
- Variable [ Name=paperRight ]
Orderby
FunctionCall fuzzyjoin.count@1[
@@ -345,8 +339,6 @@
Variable [ Name=paperRight ]
Variable [ Name=prefixTokenRight ]
Variable [ Name=prefixTokenLeft ]
- Variable [ Name=paperLeft ]
- Variable [ Name=paperRight ]
)
AS
diff --git a/asterix-app/src/test/resources/parserts/results_parser_sqlpp/2.ast b/asterix-app/src/test/resources/parserts/results_parser_sqlpp/2.ast
index f861640..7de063f 100644
--- a/asterix-app/src/test/resources/parserts/results_parser_sqlpp/2.ast
+++ b/asterix-app/src/test/resources/parserts/results_parser_sqlpp/2.ast
@@ -97,11 +97,11 @@
]
With
Variable [ Name=e ]
- Variable [ Name=by_chapter ]
Variable [ Name=sig_sponsorship_count ]
- Variable [ Name=es ]
Variable [ Name=sponsor ]
Variable [ Name=event ]
+ Variable [ Name=es ]
+ Variable [ Name=sig_name ]
)
Orderby
diff --git a/asterix-app/src/test/resources/parserts/results_parser_sqlpp/from_inner_join.ast b/asterix-app/src/test/resources/parserts/results_parser_sqlpp/from_inner_join.ast
index 2a3a239..0992966 100644
--- a/asterix-app/src/test/resources/parserts/results_parser_sqlpp/from_inner_join.ast
+++ b/asterix-app/src/test/resources/parserts/results_parser_sqlpp/from_inner_join.ast
@@ -28,6 +28,7 @@
]
AS
Variable [ Name=m ]
+ ON
OperatorExpr [
FieldAccessor [
Variable [ Name=s ]
diff --git a/asterix-app/src/test/resources/parserts/results_parser_sqlpp/from_left_outer_join.ast b/asterix-app/src/test/resources/parserts/results_parser_sqlpp/from_left_outer_join.ast
index 69745a5..0f82980 100644
--- a/asterix-app/src/test/resources/parserts/results_parser_sqlpp/from_left_outer_join.ast
+++ b/asterix-app/src/test/resources/parserts/results_parser_sqlpp/from_left_outer_join.ast
@@ -142,6 +142,7 @@
]
AS
Variable [ Name=sr ]
+ ON
OperatorExpr [
FieldAccessor [
Variable [ Name=sl ]
diff --git a/asterix-app/src/test/resources/parserts/results_parser_sqlpp/nestedFLWOGR3.ast b/asterix-app/src/test/resources/parserts/results_parser_sqlpp/nestedFLWOGR3.ast
index b798bc6..4232303 100644
--- a/asterix-app/src/test/resources/parserts/results_parser_sqlpp/nestedFLWOGR3.ast
+++ b/asterix-app/src/test/resources/parserts/results_parser_sqlpp/nestedFLWOGR3.ast
@@ -97,11 +97,11 @@
]
With
Variable [ Name=e ]
- Variable [ Name=by_chapter ]
Variable [ Name=sig_sponsorship_count ]
- Variable [ Name=es ]
Variable [ Name=sponsor ]
Variable [ Name=event ]
+ Variable [ Name=es ]
+ Variable [ Name=sig_name ]
)
Orderby
diff --git a/asterix-app/src/test/resources/parserts/results_parser_sqlpp/numberInFieldAccessor.ast b/asterix-app/src/test/resources/parserts/results_parser_sqlpp/numberInFieldAccessor.ast
index 38846d5..6a681a0 100644
--- a/asterix-app/src/test/resources/parserts/results_parser_sqlpp/numberInFieldAccessor.ast
+++ b/asterix-app/src/test/resources/parserts/results_parser_sqlpp/numberInFieldAccessor.ast
@@ -52,10 +52,7 @@
Variable [ Name=mv ]
Field=movie
]
- Index: FieldAccessor [
- Variable [ Name=mv ]
- Field=movie
- ]
+ Index: LiteralExpr [LONG] [2]
]
]
]
diff --git a/asterix-app/src/test/resources/runtimets/only_sqlpp.xml b/asterix-app/src/test/resources/runtimets/only_sqlpp.xml
new file mode 100644
index 0000000..b3542eb
--- /dev/null
+++ b/asterix-app/src/test/resources/runtimets/only_sqlpp.xml
@@ -0,0 +1,23 @@
+<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
+<!--
+ ! Licensed to the Apache Software Foundation (ASF) under one
+ ! or more contributor license agreements. See the NOTICE file
+ ! distributed with this work for additional information
+ ! regarding copyright ownership. The ASF licenses this file
+ ! to you under the Apache License, Version 2.0 (the
+ ! "License"); you may not use this file except in compliance
+ ! with the License. You may obtain a copy of the License at
+ !
+ ! http://www.apache.org/licenses/LICENSE-2.0
+ !
+ ! Unless required by applicable law or agreed to in writing,
+ ! software distributed under the License is distributed on an
+ ! "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ ! KIND, either express or implied. See the License for the
+ ! specific language governing permissions and limitations
+ ! under the License.
+ !-->
+<test-suite xmlns="urn:xml.testframework.asterix.apache.org" ResultOffsetPath="results" QueryOffsetPath="queries_sqlpp">
+ <test-group name="failed">
+ </test-group>
+</test-suite>
diff --git a/asterix-app/src/test/resources/runtimets/queries/aggregate-sql/query-issue400/query-issue400.3.query.aql b/asterix-app/src/test/resources/runtimets/queries/aggregate-sql/query-issue400/query-issue400.3.query.aql
index 79384a4..2bac6c0 100644
--- a/asterix-app/src/test/resources/runtimets/queries/aggregate-sql/query-issue400/query-issue400.3.query.aql
+++ b/asterix-app/src/test/resources/runtimets/queries/aggregate-sql/query-issue400/query-issue400.3.query.aql
@@ -18,7 +18,7 @@
*/
/*
* Description : This test case is to verify the fix for issue400
- : https://code.google.com/p/asterixdb/issues/detail?id=400
+ : https://code.google.com/p/asterixdb/issues/detail?id=400
* Expected Res : Success
* Date : 8th May 2013
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries/aggregate/query-issue400/query-issue400.3.query.aql b/asterix-app/src/test/resources/runtimets/queries/aggregate/query-issue400/query-issue400.3.query.aql
index cf9ab2a..0c1df85 100644
--- a/asterix-app/src/test/resources/runtimets/queries/aggregate/query-issue400/query-issue400.3.query.aql
+++ b/asterix-app/src/test/resources/runtimets/queries/aggregate/query-issue400/query-issue400.3.query.aql
@@ -18,7 +18,7 @@
*/
/*
* Description : This test case is to verify the fix for issue400
- : https://code.google.com/p/asterixdb/issues/detail?id=400
+ * : https://code.google.com/p/asterixdb/issues/detail?id=400
* Expected Res : Success
* Date : 8th May 2013
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries/big-object/big_object_groupby/big_object_groupby.3.query.aql b/asterix-app/src/test/resources/runtimets/queries/big-object/big_object_groupby/big_object_groupby.3.query.aql
index 1d2020e..493cbb0 100644
--- a/asterix-app/src/test/resources/runtimets/queries/big-object/big_object_groupby/big_object_groupby.3.query.aql
+++ b/asterix-app/src/test/resources/runtimets/queries/big-object/big_object_groupby/big_object_groupby.3.query.aql
@@ -26,6 +26,6 @@
use dataverse test;
for $i in dataset('Line')
-order by $i.l_partkey, $i.l_shipdate
group by $partkey := $i.l_partkey with $i
+order by $partkey
return { "partkey": $partkey, "lines": $i}
diff --git a/asterix-app/src/test/resources/runtimets/queries/big-object/big_object_sort/big_object_sort.1.ddl.aql b/asterix-app/src/test/resources/runtimets/queries/big-object/big_object_sort/big_object_sort.1.ddl.aql
index 554281e..e8fe215 100644
--- a/asterix-app/src/test/resources/runtimets/queries/big-object/big_object_sort/big_object_sort.1.ddl.aql
+++ b/asterix-app/src/test/resources/runtimets/queries/big-object/big_object_sort/big_object_sort.1.ddl.aql
@@ -18,7 +18,7 @@
*/
/*
* Description : Create an external dataset that contains long comments fields, 10% of the records have a 32K size comments.
- This will trigger into the VSizeFrame path
+* This will trigger into the VSizeFrame path
* Expected Res : Success
* Date : Jun 16 2015
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries/big-object/big_object_sort/big_object_sort.3.query.aql b/asterix-app/src/test/resources/runtimets/queries/big-object/big_object_sort/big_object_sort.3.query.aql
index 2367327..c772fc5 100644
--- a/asterix-app/src/test/resources/runtimets/queries/big-object/big_object_sort/big_object_sort.3.query.aql
+++ b/asterix-app/src/test/resources/runtimets/queries/big-object/big_object_sort/big_object_sort.3.query.aql
@@ -18,7 +18,7 @@
*/
/*
* Description : Create an external dataset that contains long comments fields, 10% of the records have a 32K size comments.
- This will trigger into the VSizeFrame path
+* This will trigger into the VSizeFrame path
* Expected Res : Success
* Date : Jun 16 2015
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries/cross-dataverse/cross-dv15/cross-dv15.3.query.aql b/asterix-app/src/test/resources/runtimets/queries/cross-dataverse/cross-dv15/cross-dv15.3.query.aql
index bab7fb1..1d99878 100644
--- a/asterix-app/src/test/resources/runtimets/queries/cross-dataverse/cross-dv15/cross-dv15.3.query.aql
+++ b/asterix-app/src/test/resources/runtimets/queries/cross-dataverse/cross-dv15/cross-dv15.3.query.aql
@@ -26,4 +26,10 @@
for $l in dataset('Metadata.Function')
where $l.DataverseName='testdv1'
-return $l;
+return {
+"DataverseName": $l.DataverseName,
+"Name": $l.Name,
+"Arity": $l.Arity,
+"ReturnType": $l.ReturnType,
+"Language": $l.Language
+};
diff --git a/asterix-app/src/test/resources/runtimets/queries/dml/insert-and-scan-joined-datasets/insert-and-scan-joined-datasets.3.query.aql b/asterix-app/src/test/resources/runtimets/queries/dml/insert-and-scan-joined-datasets/insert-and-scan-joined-datasets.3.query.aql
index cb35135..446dd2f 100644
--- a/asterix-app/src/test/resources/runtimets/queries/dml/insert-and-scan-joined-datasets/insert-and-scan-joined-datasets.3.query.aql
+++ b/asterix-app/src/test/resources/runtimets/queries/dml/insert-and-scan-joined-datasets/insert-and-scan-joined-datasets.3.query.aql
@@ -19,8 +19,8 @@
/*
* Test case Name : insert-and-scan-joined-datasets.aql
* Description : This test is intended to test inserting into a dataset where the incoming stream
- is involve a join operation that has the same dataset. We insert a materializing to prevent the
- possibility of deadlatch.
+ * is involve a join operation that has the same dataset. We insert a materializing to prevent the
+ * possibility of deadlatch.
* Expected Result : Success
* Date : July 11 2013
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries/external-indexing/rc-format/rc-format.3.query.aql b/asterix-app/src/test/resources/runtimets/queries/external-indexing/rc-format/rc-format.3.query.aql
index a8856de..57946ff 100644
--- a/asterix-app/src/test/resources/runtimets/queries/external-indexing/rc-format/rc-format.3.query.aql
+++ b/asterix-app/src/test/resources/runtimets/queries/external-indexing/rc-format/rc-format.3.query.aql
@@ -17,11 +17,11 @@
* under the License.
*/
/*
-* Description : Create an external dataset that contains records stored with rc hdfs file format.
- Build an index over the external dataset age attribute
- Perform a query over the dataset using the index.
-* Expected Res : Success
-* Date : 3rd Jan 2014
+ * Description : Create an external dataset that contains records stored with rc hdfs file format.
+ * Build an index over the external dataset age attribute
+ * Perform a query over the dataset using the index.
+ * Expected Res : Success
+ * Date : 3rd Jan 2014
*/
use dataverse test;
diff --git a/asterix-app/src/test/resources/runtimets/queries/external-indexing/sequence-format/sequence-format.3.query.aql b/asterix-app/src/test/resources/runtimets/queries/external-indexing/sequence-format/sequence-format.3.query.aql
index 8f340f6..eb903ac 100644
--- a/asterix-app/src/test/resources/runtimets/queries/external-indexing/sequence-format/sequence-format.3.query.aql
+++ b/asterix-app/src/test/resources/runtimets/queries/external-indexing/sequence-format/sequence-format.3.query.aql
@@ -17,11 +17,11 @@
* under the License.
*/
/*
-* Description : Create an external dataset that contains records stored with sequence hdfs file format.
- Build an index over the external dataset age attribute
- Perform a query over the dataset using the index.
-* Expected Res : Success
-* Date : 3rd Jan 2014
+ * Description : Create an external dataset that contains records stored with sequence hdfs file format.
+ * Build an index over the external dataset age attribute
+ * Perform a query over the dataset using the index.
+ * Expected Res : Success
+ * Date : 3rd Jan 2014
*/
use dataverse test;
diff --git a/asterix-app/src/test/resources/runtimets/queries/external-indexing/text-format/text-format.3.query.aql b/asterix-app/src/test/resources/runtimets/queries/external-indexing/text-format/text-format.3.query.aql
index 61107f0..5ad8ab7 100644
--- a/asterix-app/src/test/resources/runtimets/queries/external-indexing/text-format/text-format.3.query.aql
+++ b/asterix-app/src/test/resources/runtimets/queries/external-indexing/text-format/text-format.3.query.aql
@@ -17,11 +17,11 @@
* under the License.
*/
/*
-* Description : Create an external dataset that contains records stored with text hdfs file format.
- Build an index over the external dataset age attribute
- Perform a query over the dataset using the index.
-* Expected Res : Success
-* Date : 3rd Jan 2014
+ * Description : Create an external dataset that contains records stored with text hdfs file format.
+ * Build an index over the external dataset age attribute
+ * Perform a query over the dataset using the index.
+ * Expected Res : Success
+ * Date : 3rd Jan 2014
*/
use dataverse test;
diff --git a/asterix-app/src/test/resources/runtimets/queries/temporal/overlap_bins_gby_0/overlap_bins_gby_0.3.query.aql b/asterix-app/src/test/resources/runtimets/queries/temporal/overlap_bins_gby_0/overlap_bins_gby_0.3.query.aql
index 5eb39a2..4bb5ca9 100644
--- a/asterix-app/src/test/resources/runtimets/queries/temporal/overlap_bins_gby_0/overlap_bins_gby_0.3.query.aql
+++ b/asterix-app/src/test/resources/runtimets/queries/temporal/overlap_bins_gby_0/overlap_bins_gby_0.3.query.aql
@@ -30,4 +30,5 @@
order by get-interval-start($bin)
for $x in $i
let $itv := interval-start-from-time($x.time, $x.duration)
+ order by get-interval-start($bin)
return { "tbin": $bin, "interval": $itv, "overlap": get-overlapping-interval($bin, $itv) }
diff --git a/asterix-app/src/test/resources/runtimets/queries/tpch/nest_aggregate/nest_aggregate.3.query.aql b/asterix-app/src/test/resources/runtimets/queries/tpch/nest_aggregate/nest_aggregate.3.query.aql
index 11a8c62..5b379d6 100644
--- a/asterix-app/src/test/resources/runtimets/queries/tpch/nest_aggregate/nest_aggregate.3.query.aql
+++ b/asterix-app/src/test/resources/runtimets/queries/tpch/nest_aggregate/nest_aggregate.3.query.aql
@@ -27,7 +27,8 @@
for $nation in dataset Nation
for $sn in dataset SelectedNation
-where $nation.n_nationkey = $sn.n_nationkey /*+ indexnl */
+where $nation.n_nationkey /*+ indexnl */ = $sn.n_nationkey
+order by $nation.n_nationkey
return {
"nation_key": $nation.n_nationkey,
"name": $nation.n_name,
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/aggregate-sql/issue531_string_min_max/issue531_string_min_max.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/aggregate-sql/issue531_string_min_max/issue531_string_min_max.2.update.sqlpp
index ed53f85..da2154f 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/aggregate-sql/issue531_string_min_max/issue531_string_min_max.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/aggregate-sql/issue531_string_min_max/issue531_string_min_max.2.update.sqlpp
@@ -18,10 +18,10 @@
*/
/**
* issue531_string_sql-min_sql-max
- *
+ *
* Purpose: test the support of string values for sql-min and sql-max aggregation function
* Result: success
- *
+ *
*/
use test;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/aggregate-sql/issue531_string_min_max/issue531_string_min_max.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/aggregate-sql/issue531_string_min_max/issue531_string_min_max.3.query.sqlpp
index da72ea2..89d205a 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/aggregate-sql/issue531_string_min_max/issue531_string_min_max.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/aggregate-sql/issue531_string_min_max/issue531_string_min_max.3.query.sqlpp
@@ -18,10 +18,10 @@
*/
/**
* issue531_string_sql-min_sql-max
- *
+ *
* Purpose: test the support of string values for sql-min and sql-max aggregation function
* Result: success
- *
+ *
*/
use test;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/aggregate-sql/query-issue400/query-issue400.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/aggregate-sql/query-issue400/query-issue400.3.query.sqlpp
index 20056ca..2df4a86 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/aggregate-sql/query-issue400/query-issue400.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/aggregate-sql/query-issue400/query-issue400.3.query.sqlpp
@@ -16,9 +16,7 @@
* specific language governing permissions and limitations
* under the License.
*/
-/*
- * Description : This test case is to verify the fix for issue400
-"sql-count"(select element i
+"sql-count"((select element i
from [[1,2,3,4,5],[6,7,8,9]] as i
-);
+));
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/aggregate/droptype/droptype.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/aggregate/droptype/droptype.1.ddl.sqlpp
index 4ae5862..17b8907 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/aggregate/droptype/droptype.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/aggregate/droptype/droptype.1.ddl.sqlpp
@@ -17,7 +17,7 @@
* under the License.
*/
/*
- * Description : Test to cover => create type - drop type - recreate that dropped type
+ * Description : Test to cover => create type - drop type - recreate that dropped type
* Expected Res : Success
* Date : 13 Sep 2012
* Issue : 188
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/aggregate/droptype/droptype.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/aggregate/droptype/droptype.2.update.sqlpp
index 8b86c56..de64bf8 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/aggregate/droptype/droptype.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/aggregate/droptype/droptype.2.update.sqlpp
@@ -17,7 +17,7 @@
* under the License.
*/
/*
- * Description : Test to cover => create type - drop type - recreate that dropped type
+ * Description : Test to cover => create type - drop type - recreate that dropped type
* Expected Res : Success
* Date : 13 Sep 2012
* Issue : 188
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/aggregate/droptype/droptype.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/aggregate/droptype/droptype.3.query.sqlpp
index 8b86c56..de64bf8 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/aggregate/droptype/droptype.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/aggregate/droptype/droptype.3.query.sqlpp
@@ -17,7 +17,7 @@
* under the License.
*/
/*
- * Description : Test to cover => create type - drop type - recreate that dropped type
+ * Description : Test to cover => create type - drop type - recreate that dropped type
* Expected Res : Success
* Date : 13 Sep 2012
* Issue : 188
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/aggregate/issue531_string_min_max/issue531_string_min_max.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/aggregate/issue531_string_min_max/issue531_string_min_max.1.ddl.sqlpp
index a99a633..d29beb6 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/aggregate/issue531_string_min_max/issue531_string_min_max.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/aggregate/issue531_string_min_max/issue531_string_min_max.1.ddl.sqlpp
@@ -18,10 +18,10 @@
*/
/**
* issue531_string_min_max
- *
+ *
* Purpose: test the support of string values for min and max aggregation function
* Result: success
- *
+ *
*/
drop database test if exists;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/aggregate/issue531_string_min_max/issue531_string_min_max.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/aggregate/issue531_string_min_max/issue531_string_min_max.2.update.sqlpp
index 6ee731d..9c2fb90 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/aggregate/issue531_string_min_max/issue531_string_min_max.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/aggregate/issue531_string_min_max/issue531_string_min_max.2.update.sqlpp
@@ -18,10 +18,10 @@
*/
/**
* issue531_string_min_max
- *
+ *
* Purpose: test the support of string values for min and max aggregation function
* Result: success
- *
+ *
*/
use test;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/aggregate/issue531_string_min_max/issue531_string_min_max.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/aggregate/issue531_string_min_max/issue531_string_min_max.3.query.sqlpp
index aaec7a7..b5b9917 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/aggregate/issue531_string_min_max/issue531_string_min_max.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/aggregate/issue531_string_min_max/issue531_string_min_max.3.query.sqlpp
@@ -18,10 +18,10 @@
*/
/**
* issue531_string_min_max
- *
+ *
* Purpose: test the support of string values for min and max aggregation function
* Result: success
- *
+ *
*/
use test;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/aggregate/query-issue400/query-issue400.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/aggregate/query-issue400/query-issue400.3.query.sqlpp
index a701efd..d73c8ce 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/aggregate/query-issue400/query-issue400.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/aggregate/query-issue400/query-issue400.3.query.sqlpp
@@ -18,7 +18,11 @@
*/
/*
* Description : This test case is to verify the fix for issue400
+ * : https://code.google.com/p/asterixdb/issues/detail?id=400
+ * Expected Res : Success
+ * Date : 8th May 2013
+ */
-count(select element i
+count((select element i
from [[1,2,3,4,5],[6,7,8,9]] as i
-);
+));
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/big-object/big_object_groupby-2/big_object_groupby.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/big-object/big_object_groupby-2/big_object_groupby.1.ddl.sqlpp
index e193d2b..922c628 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/big-object/big_object_groupby-2/big_object_groupby.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/big-object/big_object_groupby-2/big_object_groupby.1.ddl.sqlpp
@@ -18,6 +18,11 @@
*/
/*
* Description : Create an external dataset that contains long comments fields, 10% of the records have a 32K size comments.
+* This will trigger into the VSizeFrame path
+* Expected Res : Success
+* Date : Jun 16 2015
+*/
+
drop database test if exists;
create database test;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/big-object/big_object_groupby-2/big_object_groupby.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/big-object/big_object_groupby-2/big_object_groupby.3.query.sqlpp
index 0d596ca..8855444 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/big-object/big_object_groupby-2/big_object_groupby.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/big-object/big_object_groupby-2/big_object_groupby.3.query.sqlpp
@@ -18,6 +18,10 @@
*/
/*
* Description : Create an external dataset that contains long comments fields, 10% of the records have a 32K size comments.
+ This will trigger into the VSizeFrame path
+* Expected Res : Success
+* Date : Jun 16 2015
+*/
use test;
@@ -25,5 +29,5 @@
select element {'id':id,'length':test."string-length"(comment),'comment':comment}
from Line as i
group by i.l_comment as comment,i.l_orderkey as id
-order by id
+order by id,test."string-length"(comment),comment
;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/big-object/big_object_groupby/big_object_groupby.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/big-object/big_object_groupby/big_object_groupby.1.ddl.sqlpp
index e193d2b..acbcb60 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/big-object/big_object_groupby/big_object_groupby.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/big-object/big_object_groupby/big_object_groupby.1.ddl.sqlpp
@@ -18,7 +18,10 @@
*/
/*
* Description : Create an external dataset that contains long comments fields, 10% of the records have a 32K size comments.
-
+* This will trigger into the VSizeFrame path
+* Expected Res : Success
+* Date : Jun 16 2015
+*/
drop database test if exists;
create database test;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/big-object/big_object_groupby/big_object_groupby.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/big-object/big_object_groupby/big_object_groupby.2.update.sqlpp
index f9506d4..4b5b322 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/big-object/big_object_groupby/big_object_groupby.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/big-object/big_object_groupby/big_object_groupby.2.update.sqlpp
@@ -18,4 +18,7 @@
*/
/*
* Description : Create an external dataset that contains long comments fields, 10% of the records have a 32K size comments.
-
+* This will trigger into the VSizeFrame path
+* Expected Res : Success
+* Date : Jun 16 2015
+*/
\ No newline at end of file
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/big-object/big_object_groupby/big_object_groupby.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/big-object/big_object_groupby/big_object_groupby.3.query.sqlpp
index 1ed4e28..641b8e6 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/big-object/big_object_groupby/big_object_groupby.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/big-object/big_object_groupby/big_object_groupby.3.query.sqlpp
@@ -18,6 +18,10 @@
*/
/*
* Description : Create an external dataset that contains long comments fields, 10% of the records have a 32K size comments.
+* This will trigger into the VSizeFrame path
+* Expected Res : Success
+* Date : Jun 16 2015
+*/
use test;
@@ -25,4 +29,5 @@
select element {'partkey':partkey,'lines':i}
from Line as i
group by i.l_partkey as partkey
+order by partkey
;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/big-object/big_object_join/big_object_join.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/big-object/big_object_join/big_object_join.1.ddl.sqlpp
index e193d2b..2d2be10 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/big-object/big_object_join/big_object_join.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/big-object/big_object_join/big_object_join.1.ddl.sqlpp
@@ -18,6 +18,10 @@
*/
/*
* Description : Create an external dataset that contains long comments fields, 10% of the records have a 32K size comments.
+* This will trigger into the VSizeFrame path
+* Expected Res : Success
+* Date : Jun 16 2015
+*/
drop database test if exists;
create database test;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/big-object/big_object_join/big_object_join.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/big-object/big_object_join/big_object_join.2.update.sqlpp
index f9506d4..00a13e7 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/big-object/big_object_join/big_object_join.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/big-object/big_object_join/big_object_join.2.update.sqlpp
@@ -18,4 +18,7 @@
*/
/*
* Description : Create an external dataset that contains long comments fields, 10% of the records have a 32K size comments.
-
+* This will trigger into the VSizeFrame path
+* Expected Res : Success
+* Date : Jun 16 2015
+*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/big-object/big_object_join/big_object_join.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/big-object/big_object_join/big_object_join.3.query.sqlpp
index 972ad80..dddc7d5 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/big-object/big_object_join/big_object_join.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/big-object/big_object_join/big_object_join.3.query.sqlpp
@@ -18,6 +18,10 @@
*/
/*
* Description : Create an external dataset that contains long comments fields, 10% of the records have a 32K size comments.
+ This will trigger into the VSizeFrame path
+* Expected Res : Success
+* Date : Jun 16 2015
+*/
use test;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/big-object/big_object_load/big_object_load.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/big-object/big_object_load/big_object_load.1.ddl.sqlpp
new file mode 100644
index 0000000..6e7caa5
--- /dev/null
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/big-object/big_object_load/big_object_load.1.ddl.sqlpp
@@ -0,0 +1,82 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+/*
+* Description : Create an external dataset that contains long comments fields, 10% of the records have a 32K size comments.
+* This will trigger into the VSizeFrame path
+* Expected Res : Success
+* Date : Jun 16 2015
+*/
+
+drop database test if exists;
+create database test;
+
+use test;
+
+
+create type test.LineType as
+ closed {
+ l_orderkey : int32,
+ l_partkey : int32,
+ l_suppkey : int32,
+ l_linenumber : int32,
+ l_quantity : double,
+ l_extendedprice : double,
+ l_discount : double,
+ l_tax : double,
+ l_returnflag : string,
+ l_linestatus : string,
+ l_shipdate : string,
+ l_commitdate : string,
+ l_receiptdate : string,
+ l_shipinstruct : string,
+ l_shipmode : string,
+ l_comment : string
+}
+
+create type test.OrderType as
+ closed {
+ o_orderkey : int32,
+ o_custkey : int32,
+ o_orderstatus : string,
+ o_totalprice : double,
+ o_orderdate : string,
+ o_orderpriority : string,
+ o_clerk : string,
+ o_shippriority : int32,
+ o_comment : string
+}
+
+create type test.CustomerType as
+ closed {
+ c_custkey : int32,
+ c_name : string,
+ c_address : string,
+ c_nationkey : int32,
+ c_phone : string,
+ c_acctbal : double,
+ c_mktsegment : string,
+ c_comment : string
+}
+
+create external table Line(LineType) using "localfs"(("path"="nc1://data/big-object/lineitem.tbl.big"),("input-format"="text-input-format"),("format"="delimited-text"),("delimiter"="|"));
+
+create external table "Order"(OrderType) using "localfs"(("path"="nc1://data/big-object/order.tbl.verylong.big"),("input-format"="text-input-format"),("format"="delimited-text"),("delimiter"="|"));
+
+create external table Customer(CustomerType) using "localfs"(("path"="nc1://data/big-object/customer.tbl.big"),("input-format"="text-input-format"),("format"="delimited-text"),("delimiter"="|"));
+
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/start-with3/start-with3.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/big-object/big_object_load/big_object_load.2.update.sqlpp
similarity index 76%
copy from asterix-app/src/test/resources/runtimets/queries_sqlpp/string/start-with3/start-with3.3.query.sqlpp
copy to asterix-app/src/test/resources/runtimets/queries_sqlpp/big-object/big_object_load/big_object_load.2.update.sqlpp
index 2adc661..00a13e7 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/start-with3/start-with3.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/big-object/big_object_load/big_object_load.2.update.sqlpp
@@ -16,8 +16,9 @@
* specific language governing permissions and limitations
* under the License.
*/
-
-use test;
-
-
-{'result1':test."start-with"('start','start')};
+/*
+* Description : Create an external dataset that contains long comments fields, 10% of the records have a 32K size comments.
+* This will trigger into the VSizeFrame path
+* Expected Res : Success
+* Date : Jun 16 2015
+*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/start-with3/start-with3.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/big-object/big_object_load/big_object_load.3.query.sqlpp
similarity index 68%
copy from asterix-app/src/test/resources/runtimets/queries_sqlpp/string/start-with3/start-with3.3.query.sqlpp
copy to asterix-app/src/test/resources/runtimets/queries_sqlpp/big-object/big_object_load/big_object_load.3.query.sqlpp
index 2adc661..e13615e 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/start-with3/start-with3.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/big-object/big_object_load/big_object_load.3.query.sqlpp
@@ -16,8 +16,16 @@
* specific language governing permissions and limitations
* under the License.
*/
+/*
+* Description : Create an external dataset that contains long comments fields, 10% of the records have a 32K size comments.
+* This will trigger into the VSizeFrame path
+* Expected Res : Success
+* Date : Jun 16 2015
+*/
use test;
-{'result1':test."start-with"('start','start')};
+select element {'custkey':o.o_custkey,'orderkey':o.o_orderkey,'len-comment':test."string-length"(o.o_comment)}
+from "Order" as o
+;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/big-object/big_object_sort/big_object_sort.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/big-object/big_object_sort/big_object_sort.1.ddl.sqlpp
index e193d2b..2d2be10 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/big-object/big_object_sort/big_object_sort.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/big-object/big_object_sort/big_object_sort.1.ddl.sqlpp
@@ -18,6 +18,10 @@
*/
/*
* Description : Create an external dataset that contains long comments fields, 10% of the records have a 32K size comments.
+* This will trigger into the VSizeFrame path
+* Expected Res : Success
+* Date : Jun 16 2015
+*/
drop database test if exists;
create database test;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/big-object/big_object_sort/big_object_sort.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/big-object/big_object_sort/big_object_sort.2.update.sqlpp
index f9506d4..4b5b322 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/big-object/big_object_sort/big_object_sort.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/big-object/big_object_sort/big_object_sort.2.update.sqlpp
@@ -18,4 +18,7 @@
*/
/*
* Description : Create an external dataset that contains long comments fields, 10% of the records have a 32K size comments.
-
+* This will trigger into the VSizeFrame path
+* Expected Res : Success
+* Date : Jun 16 2015
+*/
\ No newline at end of file
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/big-object/big_object_sort/big_object_sort.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/big-object/big_object_sort/big_object_sort.3.query.sqlpp
index 8748e7a..3d8cdca 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/big-object/big_object_sort/big_object_sort.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/big-object/big_object_sort/big_object_sort.3.query.sqlpp
@@ -18,6 +18,10 @@
*/
/*
* Description : Create an external dataset that contains long comments fields, 10% of the records have a 32K size comments.
+* This will trigger into the VSizeFrame path
+* Expected Res : Success
+* Date : Jun 16 2015
+*/
use test;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/binary/find/find.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/binary/find/find.3.query.sqlpp
index 27c5a29..f82d1e7 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/binary/find/find.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/binary/find/find.3.query.sqlpp
@@ -20,4 +20,4 @@
use test;
-[((test."find-binary"(test.hex('aabbccddaa'),test.hex('')) = 1) and (test."find-binary"(test.hex('aabbccddaa'),test.hex('aa')) = 1) and (test."find-binary"(test.hex('aabbccddaa'),test.hex('aa'),1) = 5) and (test."find-binary"(test.hex('aabbccddaa'),test.hex('aabb'),0) = test."find-binary"(test.hex('aabbccddaa'),test.hex('aabb'))) and (test."find-binary"(test.hex('aabbccddaa'),test.hex('11')) = 0) and (test."find-binary"(test.hex('aabbccddaa'),test.hex('ccddaa')) = 3) and (test."find-binary"(test.hex('aabbccddaa'),test.hex('ccddaabb')) = 0)),test."find-binary"(test.hex('aabbccddaa'),null),test."find-binary"(null,null),test."find-binary"(null,test.hex('aabbccddaa'))];
+[(test."find-binary"(test.hex('aabbccddaa'),test.hex('')) = 1),(test."find-binary"(test.hex('aabbccddaa'),test.hex('aa')) = 1),(test."find-binary"(test.hex('aabbccddaa'),test.hex('aa'),1) = 5),(test."find-binary"(test.hex('aabbccddaa'),test.hex('aabb'),0) = test."find-binary"(test.hex('aabbccddaa'),test.hex('aabb'))),(test."find-binary"(test.hex('aabbccddaa'),test.hex('11')) = 0),(test."find-binary"(test.hex('aabbccddaa'),test.hex('ccddaa')) = 3),(test."find-binary"(test.hex('aabbccddaa'),test.hex('ccddaabb')) = 0),test."find-binary"(test.hex('aabbccddaa'),null),test."find-binary"(null,null),test."find-binary"(null,test.hex('aabbccddaa'))];
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/binary/subbinary/subbinary_01.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/binary/subbinary/subbinary_01.3.query.sqlpp
index e47b104..8af3490 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/binary/subbinary/subbinary_01.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/binary/subbinary/subbinary_01.3.query.sqlpp
@@ -20,4 +20,4 @@
use test;
-((test."sub-binary"(test.hex(''),0) = test.hex('')) and (test."sub-binary"(test.hex(''),1) = test.hex('')) and (test."sub-binary"(test.hex(''),-1) = test.hex('')) and (test."sub-binary"(test.hex('aabbccdd'),1,test."binary-length"(test.hex('aabbccdd'))) = test.hex('aabbccdd')) and (test."sub-binary"(test.hex('aabbccdd'),2,1) = test.hex('bb')) and (test."sub-binary"(test.hex('aabbccdd'),2) = test.hex('bbccdd')) and (test."sub-binary"(test.hex('aabbccdd'),5,0) = test.hex('')) and (test."sub-binary"(test.hex('aabbccdd'),4,1) = test.hex('dd')) and (test."sub-binary"(test.hex('aabbccdd'),2,2) = test.hex('bbcc')) and (test."sub-binary"(test.hex('aabbccdd'),0) = test.hex('aabbccdd')) and (test."sub-binary"(test.hex('aabbccdd'),-1) = test.hex('aabbccdd')) and (test."sub-binary"(test.hex('aabbccdd'),1,256) = test.hex('aabbccdd')) and (test."sub-binary"(test.hex('aabbccdd'),2,256) = test.hex('bbccdd')) and (test."sub-binary"(test.hex('aabbccdd'),2,-1) = test.hex('')));
+[(test."sub-binary"(test.hex(''),0) = test.hex('')),(test."sub-binary"(test.hex(''),1) = test.hex('')),(test."sub-binary"(test.hex(''),-1) = test.hex('')),(test."sub-binary"(test.hex('aabbccdd'),1,test."binary-length"(test.hex('aabbccdd'))) = test.hex('aabbccdd')),(test."sub-binary"(test.hex('aabbccdd'),2,1) = test.hex('bb')),(test."sub-binary"(test.hex('aabbccdd'),2) = test.hex('bbccdd')),(test."sub-binary"(test.hex('aabbccdd'),5,0) = test.hex('')),(test."sub-binary"(test.hex('aabbccdd'),4,1) = test.hex('dd')),(test."sub-binary"(test.hex('aabbccdd'),2,2) = test.hex('bbcc')),(test."sub-binary"(test.hex('aabbccdd'),0) = test.hex('aabbccdd')),(test."sub-binary"(test.hex('aabbccdd'),-1) = test.hex('aabbccdd')),(test."sub-binary"(test.hex('aabbccdd'),1,256) = test.hex('aabbccdd')),(test."sub-binary"(test.hex('aabbccdd'),2,256) = test.hex('bbccdd')),(test."sub-binary"(test.hex('aabbccdd'),2,-1) = test.hex(''))];
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/boolean/and_01/and_01.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/boolean/and_01/and_01.3.query.sqlpp
index d010324..daf9ba2 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/boolean/and_01/and_01.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/boolean/and_01/and_01.3.query.sqlpp
@@ -20,7 +20,4 @@
use test;
-select element (x and y)
-from ['true'] as x,
- ['false'] as y
-;
+(test.boolean('true') and test.boolean('false'));
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/constructor/duration_01/duration_01.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/constructor/duration_01/duration_01.1.ddl.sqlpp
index ef8506f..e41ab26 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/constructor/duration_01/duration_01.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/constructor/duration_01/duration_01.1.ddl.sqlpp
@@ -17,7 +17,7 @@
* under the License.
*/
/*
- * Description : test duration constructors
+ * Description : test duration constructors
* Expected Res : Success
* Date : 7 May 2013
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/constructor/duration_01/duration_01.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/constructor/duration_01/duration_01.2.update.sqlpp
index 0ce54d4..02b9f1b 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/constructor/duration_01/duration_01.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/constructor/duration_01/duration_01.2.update.sqlpp
@@ -17,7 +17,7 @@
* under the License.
*/
/*
- * Description : test duration constructors
+ * Description : test duration constructors
* Expected Res : Success
* Date : 7 May 2013
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/constructor/duration_01/duration_01.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/constructor/duration_01/duration_01.3.query.sqlpp
index 689fae16..178e7da 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/constructor/duration_01/duration_01.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/constructor/duration_01/duration_01.3.query.sqlpp
@@ -17,7 +17,7 @@
* under the License.
*/
/*
- * Description : test duration constructors
+ * Description : test duration constructors
* Expected Res : Success
* Date : 7 May 2013
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/constructor/duration_02/duration_02.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/constructor/duration_02/duration_02.1.ddl.sqlpp
index a06e1d5..59f2318 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/constructor/duration_02/duration_02.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/constructor/duration_02/duration_02.1.ddl.sqlpp
@@ -17,7 +17,7 @@
* under the License.
*/
/*
- * Description : test sub type duration (year-month-duration and day-time-duration) constructors
+ * Description : test sub type duration (year-month-duration and day-time-duration) constructors
* Expected Res : Success
* Date : 7 May 2013
* issue : 363
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/constructor/duration_02/duration_02.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/constructor/duration_02/duration_02.2.update.sqlpp
index 7806d1f..6d800f3 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/constructor/duration_02/duration_02.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/constructor/duration_02/duration_02.2.update.sqlpp
@@ -17,7 +17,7 @@
* under the License.
*/
/*
- * Description : test sub type duration (year-month-duration and day-time-duration) constructors
+ * Description : test sub type duration (year-month-duration and day-time-duration) constructors
* Expected Res : Success
* Date : 7 May 2013
* issue : 363
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/constructor/duration_02/duration_02.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/constructor/duration_02/duration_02.3.query.sqlpp
index 8eae7c6..654d754 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/constructor/duration_02/duration_02.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/constructor/duration_02/duration_02.3.query.sqlpp
@@ -17,7 +17,7 @@
* under the License.
*/
/*
- * Description : test sub type duration (year-month-duration and day-time-duration) constructors
+ * Description : test sub type duration (year-month-duration and day-time-duration) constructors
* Expected Res : Success
* Date : 7 May 2013
* issue : 363
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/cross-dataverse/cross-dv04/cross-dv04.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/cross-dataverse/cross-dv04/cross-dv04.1.ddl.sqlpp
index 83038c3..2ba79dd 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/cross-dataverse/cross-dv04/cross-dv04.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/cross-dataverse/cross-dv04/cross-dv04.1.ddl.sqlpp
@@ -21,7 +21,7 @@
* : use dataverse statement is now optional.
* : Use fully qualified names to create datasets, types.
* : drop datasets using fully qualified names
- * : re create the datasets
+ * : re create the datasets
* : Query metadata to verify datasets are created.
* Expected Res : Success
* Date : 28th Aug 2012
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/cross-dataverse/cross-dv04/cross-dv04.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/cross-dataverse/cross-dv04/cross-dv04.2.update.sqlpp
index 25fcdd8..ce3d8a9 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/cross-dataverse/cross-dv04/cross-dv04.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/cross-dataverse/cross-dv04/cross-dv04.2.update.sqlpp
@@ -21,7 +21,7 @@
* : use dataverse statement is now optional.
* : Use fully qualified names to create datasets, types.
* : drop datasets using fully qualified names
- * : re create the datasets
+ * : re create the datasets
* : Query metadata to verify datasets are created.
* Expected Res : Success
* Date : 28th Aug 2012
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/cross-dataverse/cross-dv04/cross-dv04.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/cross-dataverse/cross-dv04/cross-dv04.3.query.sqlpp
index 7c229bd..f103533 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/cross-dataverse/cross-dv04/cross-dv04.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/cross-dataverse/cross-dv04/cross-dv04.3.query.sqlpp
@@ -21,7 +21,7 @@
* : use dataverse statement is now optional.
* : Use fully qualified names to create datasets, types.
* : drop datasets using fully qualified names
- * : re create the datasets
+ * : re create the datasets
* : Query metadata to verify datasets are created.
* Expected Res : Success
* Date : 28th Aug 2012
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/cross-dataverse/cross-dv09/cross-dv09.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/cross-dataverse/cross-dv09/cross-dv09.1.ddl.sqlpp
index 59958b9..6e6c04d 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/cross-dataverse/cross-dv09/cross-dv09.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/cross-dataverse/cross-dv09/cross-dv09.1.ddl.sqlpp
@@ -17,10 +17,22 @@
* under the License.
*/
/*
- * Description : Create user defined funs. in two different dataverses
+ * Description : Create user defined funs. in two different databases
* : and invoke one of them.
* : In this test we use fully qualified names to access and create the UDFs.
* Expected Res : Success
* Date : 31st Aug 2012
*/
+drop database testdv1 if exists;
+drop database testdv2 if exists;
+create database testdv1;
+create database testdv2;
+
+create function testdv1.fun01(){
+'function 01'
+}
+
+create function testdv2.fun02(){
+'function 02'
+}
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/cross-dataverse/cross-dv11/cross-dv11.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/cross-dataverse/cross-dv11/cross-dv11.1.ddl.sqlpp
index 89a6884..449129b 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/cross-dataverse/cross-dv11/cross-dv11.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/cross-dataverse/cross-dv11/cross-dv11.1.ddl.sqlpp
@@ -16,10 +16,22 @@
* specific language governing permissions and limitations
* under the License.
*/
-/*
- * Description : Create two UDFs in two different dataverses
+/*
+ * Description : Create two UDFs in two different databases
* : Invoke one UDF from the body of the other UDF.
* Expected Res : Success
* Date : 31st Aug 2012
*/
+drop database testdv1 if exists;
+drop database testdv2 if exists;
+create database testdv1;
+create database testdv2;
+
+create function testdv1.fun01(){
+testdv2.fun02()
+}
+
+create function testdv2.fun02(){
+'function 02'
+}
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/cross-dataverse/cross-dv11/cross-dv11.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/cross-dataverse/cross-dv11/cross-dv11.2.update.sqlpp
index 89a6884..f3ed4d1 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/cross-dataverse/cross-dv11/cross-dv11.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/cross-dataverse/cross-dv11/cross-dv11.2.update.sqlpp
@@ -16,7 +16,7 @@
* specific language governing permissions and limitations
* under the License.
*/
-/*
+/*
* Description : Create two UDFs in two different dataverses
* : Invoke one UDF from the body of the other UDF.
* Expected Res : Success
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/cross-dataverse/cross-dv11/cross-dv11.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/cross-dataverse/cross-dv11/cross-dv11.3.query.sqlpp
index e1dad33..104ec9d 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/cross-dataverse/cross-dv11/cross-dv11.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/cross-dataverse/cross-dv11/cross-dv11.3.query.sqlpp
@@ -16,7 +16,7 @@
* specific language governing permissions and limitations
* under the License.
*/
-/*
+/*
* Description : Create two UDFs in two different dataverses
* : Invoke one UDF from the body of the other UDF.
* Expected Res : Success
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/cross-dataverse/cross-dv12/cross-dv12.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/cross-dataverse/cross-dv12/cross-dv12.1.ddl.sqlpp
index 9862c5f..e0a3be5 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/cross-dataverse/cross-dv12/cross-dv12.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/cross-dataverse/cross-dv12/cross-dv12.1.ddl.sqlpp
@@ -16,10 +16,22 @@
* specific language governing permissions and limitations
* under the License.
*/
-/*
- * Description : Create two UDFs in two different dataverses
+/*
+ * Description : Create two UDFs in two different databases
* : Bind the results returned by each UDF to a variable and return those variables
* Expected Res : Success
* Date : 31st Aug 2012
*/
+drop database testdv1 if exists;
+drop database testdv2 if exists;
+create database testdv1;
+create database testdv2;
+
+create function testdv1.fun01(){
+'function 01'
+}
+
+create function testdv2.fun02(){
+'function 02'
+}
\ No newline at end of file
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/cross-dataverse/cross-dv12/cross-dv12.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/cross-dataverse/cross-dv12/cross-dv12.2.update.sqlpp
index 9862c5f..1e93fe5 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/cross-dataverse/cross-dv12/cross-dv12.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/cross-dataverse/cross-dv12/cross-dv12.2.update.sqlpp
@@ -16,7 +16,7 @@
* specific language governing permissions and limitations
* under the License.
*/
-/*
+/*
* Description : Create two UDFs in two different dataverses
* : Bind the results returned by each UDF to a variable and return those variables
* Expected Res : Success
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/cross-dataverse/cross-dv12/cross-dv12.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/cross-dataverse/cross-dv12/cross-dv12.3.query.sqlpp
index 1d10e49..8de2f3b 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/cross-dataverse/cross-dv12/cross-dv12.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/cross-dataverse/cross-dv12/cross-dv12.3.query.sqlpp
@@ -16,7 +16,7 @@
* specific language governing permissions and limitations
* under the License.
*/
-/*
+/*
* Description : Create two UDFs in two different dataverses
* : Bind the results returned by each UDF to a variable and return those variables
* Expected Res : Success
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/cross-dataverse/cross-dv13/cross-dv13.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/cross-dataverse/cross-dv13/cross-dv13.1.ddl.sqlpp
index 6f99df6..59272d4 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/cross-dataverse/cross-dv13/cross-dv13.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/cross-dataverse/cross-dv13/cross-dv13.1.ddl.sqlpp
@@ -16,11 +16,27 @@
* specific language governing permissions and limitations
* under the License.
*/
-/*
- * Description : Create UDFs in different dataverses
+/*
+ * Description : Create UDFs in different databases
* : Test for recursion in those UDFs
* Expected Res : Failure - Recursion is not allowed!
* Date : 31st Aug 2012
- * Ignored : This test is currently not part of the test build, because it being a negative test case expectedly throws an exception.
+ * Ignored : This test is currently not part of the test build, because it being a negative test case expectedly throws an exception.
*/
+drop database testdv1 if exists;
+drop database testdv2 if exists;
+create database testdv1;
+create database testdv2;
+
+create function testdv1.fun01(){
+testdv2.fun02()
+}
+
+create function testdv2.fun02(){
+testdv2.fun03()
+}
+
+create function testdv2.fun03(){
+testdv1.fun01()
+}
\ No newline at end of file
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/cross-dataverse/cross-dv13/cross-dv13.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/cross-dataverse/cross-dv13/cross-dv13.2.update.sqlpp
index 6f99df6..21ae20b 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/cross-dataverse/cross-dv13/cross-dv13.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/cross-dataverse/cross-dv13/cross-dv13.2.update.sqlpp
@@ -16,11 +16,11 @@
* specific language governing permissions and limitations
* under the License.
*/
-/*
+/*
* Description : Create UDFs in different dataverses
* : Test for recursion in those UDFs
* Expected Res : Failure - Recursion is not allowed!
* Date : 31st Aug 2012
- * Ignored : This test is currently not part of the test build, because it being a negative test case expectedly throws an exception.
+ * Ignored : This test is currently not part of the test build, because it being a negative test case expectedly throws an exception.
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/cross-dataverse/cross-dv13/cross-dv13.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/cross-dataverse/cross-dv13/cross-dv13.3.query.sqlpp
index 60ee553..115179d 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/cross-dataverse/cross-dv13/cross-dv13.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/cross-dataverse/cross-dv13/cross-dv13.3.query.sqlpp
@@ -16,12 +16,12 @@
* specific language governing permissions and limitations
* under the License.
*/
-/*
+/*
* Description : Create UDFs in different dataverses
* : Test for recursion in those UDFs
* Expected Res : Failure - Recursion is not allowed!
* Date : 31st Aug 2012
- * Ignored : This test is currently not part of the test build, because it being a negative test case expectedly throws an exception.
+ * Ignored : This test is currently not part of the test build, because it being a negative test case expectedly throws an exception.
*/
use testdv1;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/cross-dataverse/cross-dv14/cross-dv14.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/cross-dataverse/cross-dv14/cross-dv14.1.ddl.sqlpp
index 4891f12..040992d 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/cross-dataverse/cross-dv14/cross-dv14.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/cross-dataverse/cross-dv14/cross-dv14.1.ddl.sqlpp
@@ -22,3 +22,9 @@
* Date : 31st Aug 2012
*/
+drop database testdv1 if exists;
+create database testdv1;
+
+create function testdv1.fun01(){
+100
+}
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/cross-dataverse/cross-dv15/cross-dv15.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/cross-dataverse/cross-dv15/cross-dv15.1.ddl.sqlpp
index 8e48045..ecfaad4 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/cross-dataverse/cross-dv15/cross-dv15.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/cross-dataverse/cross-dv15/cross-dv15.1.ddl.sqlpp
@@ -18,8 +18,25 @@
*/
/*
* Description : Create user defined functions using fully qualified names
- * : verify their details in Function dataset in Metadata dataverse.
+ * : verify their details in Function dataset in Metadata database.
* Expected Res :
* Date : 30th Aug 2012
*/
+drop database testdv1 if exists;
+create database testdv1;
+
+// UDF with no inputs
+create function testdv1.fun01(){
+100
+}
+
+// UDF with one input
+create function testdv1.fun02(a){
+"function 02"
+}
+
+// UDF with two inputs
+create function testdv1.fun03(b,c){
+b+c
+}
\ No newline at end of file
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/cross-dataverse/cross-dv15/cross-dv15.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/cross-dataverse/cross-dv15/cross-dv15.3.query.sqlpp
index d08dece..3c127a6 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/cross-dataverse/cross-dv15/cross-dv15.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/cross-dataverse/cross-dv15/cross-dv15.3.query.sqlpp
@@ -23,7 +23,13 @@
* Date : 30th Aug 2012
*/
-select element l
+select element {
+'DataverseName': l.DataverseName,
+'Name': l.Name,
+'Arity': l.Arity,
+'ReturnType': l.ReturnType,
+'Language': l.Language
+}
from "Metadata.Function" as l
where (l.DataverseName = 'testdv1')
;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/cross-dataverse/cross-dv16/cross-dv16.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/cross-dataverse/cross-dv16/cross-dv16.1.ddl.sqlpp
index c70f3db..e3c10cc 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/cross-dataverse/cross-dv16/cross-dv16.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/cross-dataverse/cross-dv16/cross-dv16.1.ddl.sqlpp
@@ -23,3 +23,20 @@
* Ignored : Not part of test build, as its a negative test case that thrwos an exception
*/
+drop database testdv1 if exists;
+create database testdv1;
+
+// UDF with no inputs
+create function testdv1.fun01(){
+testdv1.fun02()
+}
+
+// UDF with one input
+create function testdv1.fun02(){
+testdv1.fun03()
+}
+
+// UDF with two inputs
+create function testdv1.fun03(){
+testdv1.fun04()
+}
\ No newline at end of file
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/cross-dataverse/cross-dv17/cross-dv17.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/cross-dataverse/cross-dv17/cross-dv17.1.ddl.sqlpp
index 8ae2238..c99f5a7 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/cross-dataverse/cross-dv17/cross-dv17.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/cross-dataverse/cross-dv17/cross-dv17.1.ddl.sqlpp
@@ -17,8 +17,35 @@
* under the License.
*/
/*
- * Decription : Create UDF to query two different datasets that are in tow different dataverses.
+ * Decription : Create UDF to query two different datasets that are in tow different databases.
* Expected Res : Success
* Date : Sep 7 2012
*/
+// this test currently gives ParseException
+
+drop database test if exists;
+drop database fest if exists;
+
+create database test;
+create database fest;
+
+create type test.testtype as open {
+id : int32
+}
+
+create type fest.testtype as open {
+id : int32
+}
+
+create dataset test.t1(testtype) primary key id;
+create dataset fest.t1(testtype) primary key id;
+
+create function fest.f1(){
+(
+from "test.t1" as m,
+ "fest.t1" as l
+order by m, l
+select element { 'l':l,'m':m }
+)
+}
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/custord/join_q_04/join_q_04.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/custord/join_q_04/join_q_04.2.update.sqlpp
index 456375c..280047f 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/custord/join_q_04/join_q_04.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/custord/join_q_04/join_q_04.2.update.sqlpp
@@ -18,4 +18,8 @@
*/
/*
* Description : This test case is to verify the fix for issue51
+ : https://code.google.com/p/asterixdb/issues/detail?id=51
+ * Expected Res : SUCCESS
+ * Date : 14th May 2013
+ */
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/custord/join_q_04/join_q_04.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/custord/join_q_04/join_q_04.3.query.sqlpp
index f090a40..9a53a07 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/custord/join_q_04/join_q_04.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/custord/join_q_04/join_q_04.3.query.sqlpp
@@ -18,6 +18,10 @@
*/
/*
* Description : This test case is to verify the fix for issue51
+ : https://code.google.com/p/asterixdb/issues/detail?id=51
+ * Expected Res : SUCCESS
+ * Date : 14th May 2013
+ */
use test;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/distinct/query-issue443-2/query-issue443-2.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/distinct/query-issue443-2/query-issue443-2.3.query.sqlpp
index f2b9a49..c189aed 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/distinct/query-issue443-2/query-issue443-2.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/distinct/query-issue443-2/query-issue443-2.3.query.sqlpp
@@ -23,6 +23,6 @@
* Date : 22th May 2013
*/
-select element a
-from [{'f':19,'g':1},{'f':12,'g':2},{'f':10,'g':1},{'f':17,'g':1},{'f':12,'g':4}] as a
+select distinct element a
+from [{'f':19,'g':1},{'f':12,'g':4},{'f':10,'g':1},{'f':17,'g':1},{'f':12,'g':4}] as a
;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/distinct/query-issue443/query-issue443.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/distinct/query-issue443/query-issue443.3.query.sqlpp
index fd430f9..bce0cc4 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/distinct/query-issue443/query-issue443.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/distinct/query-issue443/query-issue443.3.query.sqlpp
@@ -18,7 +18,11 @@
*/
/*
* Description : This test case is to verify the fix for issue443
+ : https://code.google.com/p/asterixdb/issues/detail?id=443
+ * Expected Res : Fail
+ * Date : 22th May 2013
+ */
-select element a
+select distinct element a
from [{'f':19},{'f':12},{'f':10},{'f':17},{'f':12}] as a
;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/empty-load-with-index/empty-load-with-index.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/empty-load-with-index/empty-load-with-index.2.update.sqlpp
index 4f747ca..488b8b5 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/empty-load-with-index/empty-load-with-index.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/empty-load-with-index/empty-load-with-index.2.update.sqlpp
@@ -16,7 +16,7 @@
* specific language governing permissions and limitations
* under the License.
*/
-/*
+/*
* Test case Name : empty-load-with-index.aql
* Description : Check that an empty load doesn't preclude a future non-empty load on primary and secondary indexes
* Expected Result : Success
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/empty-load-with-index/empty-load-with-index.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/empty-load-with-index/empty-load-with-index.3.query.sqlpp
index 218d6f3..3c8ad0e 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/empty-load-with-index/empty-load-with-index.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/empty-load-with-index/empty-load-with-index.3.query.sqlpp
@@ -16,7 +16,7 @@
* specific language governing permissions and limitations
* under the License.
*/
-/*
+/*
* Test case Name : empty-load-with-index.aql
* Description : Check that an empty load doesn't preclude a future non-empty load on primary and secondary indexes
* Expected Result : Success
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/insert-and-scan-dataset-with-index/insert-and-scan-dataset-with-index.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/insert-and-scan-dataset-with-index/insert-and-scan-dataset-with-index.2.update.sqlpp
index 7693e6f..65e84c4 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/insert-and-scan-dataset-with-index/insert-and-scan-dataset-with-index.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/insert-and-scan-dataset-with-index/insert-and-scan-dataset-with-index.2.update.sqlpp
@@ -16,7 +16,7 @@
* specific language governing permissions and limitations
* under the License.
*/
-/*
+/*
* Test case Name : insert-and-scan-dataset-with-index.aql
* Description : This test is intended to test inserting into a dataset that has a secondary index and scan
* the data at the same time where we insert a materializing to prevent the possibility of deadlatch.
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/insert-and-scan-dataset-with-index/insert-and-scan-dataset-with-index.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/insert-and-scan-dataset-with-index/insert-and-scan-dataset-with-index.3.query.sqlpp
index 0b2beca..f6b3e7e 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/insert-and-scan-dataset-with-index/insert-and-scan-dataset-with-index.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/insert-and-scan-dataset-with-index/insert-and-scan-dataset-with-index.3.query.sqlpp
@@ -16,7 +16,7 @@
* specific language governing permissions and limitations
* under the License.
*/
-/*
+/*
* Test case Name : insert-and-scan-dataset-with-index.aql
* Description : This test is intended to test inserting into a dataset that has a secondary index and scan
* the data at the same time where we insert a materializing to prevent the possibility of deadlatch.
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/insert-and-scan-dataset/insert-and-scan-dataset.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/insert-and-scan-dataset/insert-and-scan-dataset.2.update.sqlpp
index 2521bd9..373bdab 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/insert-and-scan-dataset/insert-and-scan-dataset.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/insert-and-scan-dataset/insert-and-scan-dataset.2.update.sqlpp
@@ -16,7 +16,7 @@
* specific language governing permissions and limitations
* under the License.
*/
-/*
+/*
* Test case Name : insert-and-scan-dataset.aql
* Description : This test is intended to test inserting into a dataset and scan it at the same time
* where we insert a materializing to prevent the possibility of deadlatch.
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/insert-and-scan-dataset/insert-and-scan-dataset.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/insert-and-scan-dataset/insert-and-scan-dataset.3.query.sqlpp
index 187b469..d02710c 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/insert-and-scan-dataset/insert-and-scan-dataset.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/insert-and-scan-dataset/insert-and-scan-dataset.3.query.sqlpp
@@ -16,7 +16,7 @@
* specific language governing permissions and limitations
* under the License.
*/
-/*
+/*
* Test case Name : insert-and-scan-dataset.aql
* Description : This test is intended to test inserting into a dataset and scan it at the same time
* where we insert a materializing to prevent the possibility of deadlatch.
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/insert-and-scan-joined-datasets/insert-and-scan-joined-datasets.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/insert-and-scan-joined-datasets/insert-and-scan-joined-datasets.1.ddl.sqlpp
index 35b7f63..062fe72 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/insert-and-scan-joined-datasets/insert-and-scan-joined-datasets.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/insert-and-scan-joined-datasets/insert-and-scan-joined-datasets.1.ddl.sqlpp
@@ -19,6 +19,11 @@
/*
* Test case Name : insert-and-scan-joined-datasets.aql
* Description : This test is intended to test inserting into a dataset where the incoming stream
+ * is involve a join operation that has the same dataset. We insert a materializing to prevent the
+ * possibility of deadlatch.
+ * Expected Result : Success
+ * Date : July 11 2013
+ */
drop database test if exists;
create database test;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/insert-and-scan-joined-datasets/insert-and-scan-joined-datasets.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/insert-and-scan-joined-datasets/insert-and-scan-joined-datasets.2.update.sqlpp
index 53ce110..5c666bf 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/insert-and-scan-joined-datasets/insert-and-scan-joined-datasets.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/insert-and-scan-joined-datasets/insert-and-scan-joined-datasets.2.update.sqlpp
@@ -16,9 +16,14 @@
* specific language governing permissions and limitations
* under the License.
*/
-/*
+/*
* Test case Name : insert-and-scan-joined-datasets.aql
* Description : This test is intended to test inserting into a dataset where the incoming stream
+ * is involve a join operation that has the same dataset. We insert a materializing to prevent the
+ * possibility of deadlatch.
+ * Expected Result : Success
+ * Date : July 11 2013
+ */
use test;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/insert-and-scan-joined-datasets/insert-and-scan-joined-datasets.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/insert-and-scan-joined-datasets/insert-and-scan-joined-datasets.3.query.sqlpp
index 3da5721..96faf5e 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/insert-and-scan-joined-datasets/insert-and-scan-joined-datasets.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/insert-and-scan-joined-datasets/insert-and-scan-joined-datasets.3.query.sqlpp
@@ -16,9 +16,14 @@
* specific language governing permissions and limitations
* under the License.
*/
-/*
+/*
* Test case Name : insert-and-scan-joined-datasets.aql
* Description : This test is intended to test inserting into a dataset where the incoming stream
+ * is involve a join operation that has the same dataset. We insert a materializing to prevent the
+ * possibility of deadlatch.
+ * Expected Result : Success
+ * Date : July 11 2013
+ */
use test;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/insert-into-empty-dataset-with-index/insert-into-empty-dataset-with-index.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/insert-into-empty-dataset-with-index/insert-into-empty-dataset-with-index.2.update.sqlpp
index 70b9d6c..c06846d 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/insert-into-empty-dataset-with-index/insert-into-empty-dataset-with-index.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/insert-into-empty-dataset-with-index/insert-into-empty-dataset-with-index.2.update.sqlpp
@@ -16,9 +16,9 @@
* specific language governing permissions and limitations
* under the License.
*/
-/*
+/*
* Test case Name : insert-into-empty-dataset-with-index.aql
- * Description : Check that we can insert into an empty dataset and its empty secondary indexes
+ * Description : Check that we can insert into an empty dataset and its empty secondary indexes
* Expected Result : Success
* Date : May 2 2012
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/insert-into-empty-dataset-with-index/insert-into-empty-dataset-with-index.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/insert-into-empty-dataset-with-index/insert-into-empty-dataset-with-index.3.query.sqlpp
index 5d8e160..9e714a6 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/insert-into-empty-dataset-with-index/insert-into-empty-dataset-with-index.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/insert-into-empty-dataset-with-index/insert-into-empty-dataset-with-index.3.query.sqlpp
@@ -16,9 +16,9 @@
* specific language governing permissions and limitations
* under the License.
*/
-/*
+/*
* Test case Name : insert-into-empty-dataset-with-index.aql
- * Description : Check that we can insert into an empty dataset and its empty secondary indexes
+ * Description : Check that we can insert into an empty dataset and its empty secondary indexes
* Expected Result : Success
* Date : May 2 2012
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/insert-into-empty-dataset/insert-into-empty-dataset.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/insert-into-empty-dataset/insert-into-empty-dataset.2.update.sqlpp
index 5994044..0aa03cd 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/insert-into-empty-dataset/insert-into-empty-dataset.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/insert-into-empty-dataset/insert-into-empty-dataset.2.update.sqlpp
@@ -16,9 +16,9 @@
* specific language governing permissions and limitations
* under the License.
*/
-/*
+/*
* Test case Name : insert-into-empty-dataset.aql
- * Description : Check that we can insert into an empty dataset
+ * Description : Check that we can insert into an empty dataset
* Expected Result : Success
* Date : May 2 2012
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/insert-into-empty-dataset/insert-into-empty-dataset.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/insert-into-empty-dataset/insert-into-empty-dataset.3.query.sqlpp
index 2dd4c1d..f5ea509 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/insert-into-empty-dataset/insert-into-empty-dataset.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/insert-into-empty-dataset/insert-into-empty-dataset.3.query.sqlpp
@@ -16,9 +16,9 @@
* specific language governing permissions and limitations
* under the License.
*/
-/*
+/*
* Test case Name : insert-into-empty-dataset.aql
- * Description : Check that we can insert into an empty dataset
+ * Description : Check that we can insert into an empty dataset
* Expected Result : Success
* Date : May 2 2012
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/insert-record-function/insert-record-function.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/insert-record-function/insert-record-function.1.ddl.sqlpp
index db7f984..f170430 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/insert-record-function/insert-record-function.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/insert-record-function/insert-record-function.1.ddl.sqlpp
@@ -16,9 +16,9 @@
* specific language governing permissions and limitations
* under the License.
*/
-/*
+/*
* Test case Name : insert-into-empty-dataset.aql
- * Description : Check that we can insert into an empty dataset
+ * Description : Check that we can insert into an empty dataset
* Expected Result : Success
* Date : May 2 2012
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/insert-record-function/insert-record-function.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/insert-record-function/insert-record-function.2.update.sqlpp
index b47a65c..3bd920b 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/insert-record-function/insert-record-function.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/insert-record-function/insert-record-function.2.update.sqlpp
@@ -16,9 +16,9 @@
* specific language governing permissions and limitations
* under the License.
*/
-/*
+/*
* Test case Name : insert-into-empty-dataset.aql
- * Description : Check that we can insert into an empty dataset
+ * Description : Check that we can insert into an empty dataset
* Expected Result : Success
* Date : May 2 2012
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/insert-record-function/insert-record-function.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/insert-record-function/insert-record-function.3.query.sqlpp
index 3328f0d..3fad723 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/insert-record-function/insert-record-function.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/insert-record-function/insert-record-function.3.query.sqlpp
@@ -16,9 +16,9 @@
* specific language governing permissions and limitations
* under the License.
*/
-/*
+/*
* Test case Name : insert-into-empty-dataset.aql
- * Description : Check that we can insert into an empty dataset
+ * Description : Check that we can insert into an empty dataset
* Expected Result : Success
* Date : May 2 2012
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/insert-syntax.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/insert-syntax.sqlpp
index 7235381..bda00e8 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/insert-syntax.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/insert-syntax.sqlpp
@@ -16,7 +16,7 @@
* specific language governing permissions and limitations
* under the License.
*/
-/*
+/*
* Test case Name : insert-syntax-change.aql
* Description : verify various AQL syntax for insert
* Expected Result : Success
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/opentype-c2o-recursive/opentype-c2o-recursive.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/opentype-c2o-recursive/opentype-c2o-recursive.2.update.sqlpp
index cce9137..4945805 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/opentype-c2o-recursive/opentype-c2o-recursive.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/opentype-c2o-recursive/opentype-c2o-recursive.2.update.sqlpp
@@ -16,9 +16,9 @@
* specific language governing permissions and limitations
* under the License.
*/
-/*
+/*
* Test case Name : opentype-o2c-recursive.aql
- * Description : verify the static casting of nest record constants
+ * Description : verify the static casting of nest record constants
* Expected Result : Success
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/opentype-c2o-recursive/opentype-c2o-recursive.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/opentype-c2o-recursive/opentype-c2o-recursive.3.query.sqlpp
index cc9c002..432e184 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/opentype-c2o-recursive/opentype-c2o-recursive.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/opentype-c2o-recursive/opentype-c2o-recursive.3.query.sqlpp
@@ -16,9 +16,9 @@
* specific language governing permissions and limitations
* under the License.
*/
-/*
+/*
* Test case Name : opentype-o2c-recursive.aql
- * Description : verify the static casting of nest record constants
+ * Description : verify the static casting of nest record constants
* Expected Result : Success
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/opentype-c2o/opentype-c2o.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/opentype-c2o/opentype-c2o.1.ddl.sqlpp
index a04432b..2d8d3d3 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/opentype-c2o/opentype-c2o.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/opentype-c2o/opentype-c2o.1.ddl.sqlpp
@@ -16,10 +16,10 @@
* specific language governing permissions and limitations
* under the License.
*/
-/*
+/*
* Test case Name : opentype-c2o.aql
* Description : read data from a closed type dataset into a open type dataset and verify if
- * records can be casted to the target open type
+ * records can be casted to the target open type
* Expected Result : Success
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/opentype-c2o/opentype-c2o.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/opentype-c2o/opentype-c2o.2.update.sqlpp
index 4701e1c..e4c7f19 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/opentype-c2o/opentype-c2o.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/opentype-c2o/opentype-c2o.2.update.sqlpp
@@ -16,10 +16,10 @@
* specific language governing permissions and limitations
* under the License.
*/
-/*
+/*
* Test case Name : opentype-c2o.aql
* Description : read data from a closed type dataset into a open type dataset and verify if
- * records can be casted to the target open type
+ * records can be casted to the target open type
* Expected Result : Success
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/opentype-c2o/opentype-c2o.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/opentype-c2o/opentype-c2o.3.query.sqlpp
index 6d866d7..be701e0 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/opentype-c2o/opentype-c2o.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/opentype-c2o/opentype-c2o.3.query.sqlpp
@@ -16,10 +16,10 @@
* specific language governing permissions and limitations
* under the License.
*/
-/*
+/*
* Test case Name : opentype-c2o.aql
* Description : read data from a closed type dataset into a open type dataset and verify if
- * records can be casted to the target open type
+ * records can be casted to the target open type
* Expected Result : Success
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/opentype-closed-optional/opentype-closed-optional.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/opentype-closed-optional/opentype-closed-optional.1.ddl.sqlpp
index 3ffd615..b6f17fb 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/opentype-closed-optional/opentype-closed-optional.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/opentype-closed-optional/opentype-closed-optional.1.ddl.sqlpp
@@ -16,7 +16,7 @@
* specific language governing permissions and limitations
* under the License.
*/
-/*
+/*
* Test case Name : opentype-closed-optional.aql
* Description : verify that closed type can have optional fields
* Expected Result : Success
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/opentype-closed-optional/opentype-closed-optional.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/opentype-closed-optional/opentype-closed-optional.2.update.sqlpp
index e9b729d..9bf39ae 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/opentype-closed-optional/opentype-closed-optional.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/opentype-closed-optional/opentype-closed-optional.2.update.sqlpp
@@ -16,7 +16,7 @@
* specific language governing permissions and limitations
* under the License.
*/
-/*
+/*
* Test case Name : opentype-closed-optional.aql
* Description : verify that closed type can have optional fields
* Expected Result : Success
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/opentype-closed-optional/opentype-closed-optional.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/opentype-closed-optional/opentype-closed-optional.3.query.sqlpp
index 4f9549f..339a96c 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/opentype-closed-optional/opentype-closed-optional.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/opentype-closed-optional/opentype-closed-optional.3.query.sqlpp
@@ -16,7 +16,7 @@
* specific language governing permissions and limitations
* under the License.
*/
-/*
+/*
* Test case Name : opentype-closed-optional.aql
* Description : verify that closed type can have optional fields
* Expected Result : Success
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/opentype-insert/opentype-insert.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/opentype-insert/opentype-insert.1.ddl.sqlpp
index 5a2e187..5c4a4d5 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/opentype-insert/opentype-insert.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/opentype-insert/opentype-insert.1.ddl.sqlpp
@@ -16,7 +16,7 @@
* specific language governing permissions and limitations
* under the License.
*/
-/*
+/*
* Test case Name : opentype-insert.aql
* Description : verify static type casting
* Expected Result : Success
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/opentype-insert/opentype-insert.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/opentype-insert/opentype-insert.2.update.sqlpp
index 228bf21..4dfbe32 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/opentype-insert/opentype-insert.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/opentype-insert/opentype-insert.2.update.sqlpp
@@ -16,7 +16,7 @@
* specific language governing permissions and limitations
* under the License.
*/
-/*
+/*
* Test case Name : opentype-insert.aql
* Description : verify static type casting
* Expected Result : Success
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/opentype-insert/opentype-insert.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/opentype-insert/opentype-insert.3.query.sqlpp
index de3ca47..2ec185f 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/opentype-insert/opentype-insert.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/opentype-insert/opentype-insert.3.query.sqlpp
@@ -16,7 +16,7 @@
* specific language governing permissions and limitations
* under the License.
*/
-/*
+/*
* Test case Name : opentype-insert.aql
* Description : verify static type casting
* Expected Result : Success
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/opentype-insert2/opentype-insert2.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/opentype-insert2/opentype-insert2.1.ddl.sqlpp
index e00d8f4..0c4647a 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/opentype-insert2/opentype-insert2.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/opentype-insert2/opentype-insert2.1.ddl.sqlpp
@@ -19,7 +19,7 @@
/*
* Test case Name : opentype-insert2.aql
* Description : verify that the case where SetClosedRecordRule should not rewrite
- * the plan to use closed-record-descriptor
+ * the plan to use closed-record-descriptor
* Expected Result : Success
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/opentype-insert2/opentype-insert2.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/opentype-insert2/opentype-insert2.2.update.sqlpp
index a14aabd..a92ba28 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/opentype-insert2/opentype-insert2.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/opentype-insert2/opentype-insert2.2.update.sqlpp
@@ -16,10 +16,10 @@
* specific language governing permissions and limitations
* under the License.
*/
-/*
+/*
* Test case Name : opentype-insert2.aql
* Description : verify that the case where SetClosedRecordRule should not rewrite
- * the plan to use closed-record-descriptor
+ * the plan to use closed-record-descriptor
* Expected Result : Success
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/opentype-insert2/opentype-insert2.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/opentype-insert2/opentype-insert2.3.query.sqlpp
index 6ab6da5..6561a1e 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/opentype-insert2/opentype-insert2.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/opentype-insert2/opentype-insert2.3.query.sqlpp
@@ -16,10 +16,10 @@
* specific language governing permissions and limitations
* under the License.
*/
-/*
+/*
* Test case Name : opentype-insert2.aql
* Description : verify that the case where SetClosedRecordRule should not rewrite
- * the plan to use closed-record-descriptor
+ * the plan to use closed-record-descriptor
* Expected Result : Success
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/opentype-noexpand/opentype-noexpand.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/opentype-noexpand/opentype-noexpand.1.ddl.sqlpp
index 93322c1..073ae01 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/opentype-noexpand/opentype-noexpand.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/opentype-noexpand/opentype-noexpand.1.ddl.sqlpp
@@ -16,10 +16,10 @@
* specific language governing permissions and limitations
* under the License.
*/
-/*
+/*
* Test case Name : opentype-noexpand.aql
* Description : verify that open type dataset can have records without open fields
- * verify the bag-based fields
+ * verify the bag-based fields
* Expected Result : Success
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/opentype-noexpand/opentype-noexpand.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/opentype-noexpand/opentype-noexpand.2.update.sqlpp
index 00883d6..9a1d2df 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/opentype-noexpand/opentype-noexpand.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/opentype-noexpand/opentype-noexpand.2.update.sqlpp
@@ -16,10 +16,10 @@
* specific language governing permissions and limitations
* under the License.
*/
-/*
+/*
* Test case Name : opentype-noexpand.aql
* Description : verify that open type dataset can have records without open fields
- * verify the bag-based fields
+ * verify the bag-based fields
* Expected Result : Success
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/opentype-noexpand/opentype-noexpand.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/opentype-noexpand/opentype-noexpand.3.query.sqlpp
index 18d610e..6a4ebc1 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/opentype-noexpand/opentype-noexpand.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/opentype-noexpand/opentype-noexpand.3.query.sqlpp
@@ -16,10 +16,10 @@
* specific language governing permissions and limitations
* under the License.
*/
-/*
+/*
* Test case Name : opentype-noexpand.aql
* Description : verify that open type dataset can have records without open fields
- * verify the bag-based fields
+ * verify the bag-based fields
* Expected Result : Success
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/opentype-o2c-recursive/opentype-o2c-recursive.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/opentype-o2c-recursive/opentype-o2c-recursive.2.update.sqlpp
index aa032a7..18455ba 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/opentype-o2c-recursive/opentype-o2c-recursive.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/opentype-o2c-recursive/opentype-o2c-recursive.2.update.sqlpp
@@ -16,9 +16,9 @@
* specific language governing permissions and limitations
* under the License.
*/
-/*
+/*
* Test case Name : opentype-o2c-recursive.aql
- * Description : verify the static casting of nest record constants
+ * Description : verify the static casting of nest record constants
* Expected Result : Success
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/opentype-o2c-recursive/opentype-o2c-recursive.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/opentype-o2c-recursive/opentype-o2c-recursive.3.query.sqlpp
index cc9c002..432e184 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/opentype-o2c-recursive/opentype-o2c-recursive.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/opentype-o2c-recursive/opentype-o2c-recursive.3.query.sqlpp
@@ -16,9 +16,9 @@
* specific language governing permissions and limitations
* under the License.
*/
-/*
+/*
* Test case Name : opentype-o2c-recursive.aql
- * Description : verify the static casting of nest record constants
+ * Description : verify the static casting of nest record constants
* Expected Result : Success
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/opentype-o2c/opentype-o2c.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/opentype-o2c/opentype-o2c.1.ddl.sqlpp
index 6e52c42..92f6a20 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/opentype-o2c/opentype-o2c.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/opentype-o2c/opentype-o2c.1.ddl.sqlpp
@@ -16,10 +16,10 @@
* specific language governing permissions and limitations
* under the License.
*/
-/*
+/*
* Test case Name : opentype-o2c.aql
* Description : verify that open records can be inserted into a closed dataset
- * verify missing optional fields in the closed part of the target closed dataset are allowed
+ * verify missing optional fields in the closed part of the target closed dataset are allowed
* Expected Result : Success
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/opentype-o2c/opentype-o2c.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/opentype-o2c/opentype-o2c.2.update.sqlpp
index 7c3acfd..8381890 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/opentype-o2c/opentype-o2c.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/opentype-o2c/opentype-o2c.2.update.sqlpp
@@ -16,10 +16,10 @@
* specific language governing permissions and limitations
* under the License.
*/
-/*
+/*
* Test case Name : opentype-o2c.aql
* Description : verify that open records can be inserted into a closed dataset
- * verify missing optional fields in the closed part of the target closed dataset are allowed
+ * verify missing optional fields in the closed part of the target closed dataset are allowed
* Expected Result : Success
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/opentype-o2c/opentype-o2c.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/opentype-o2c/opentype-o2c.3.query.sqlpp
index e7de109..fffbf33 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/opentype-o2c/opentype-o2c.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/opentype-o2c/opentype-o2c.3.query.sqlpp
@@ -16,10 +16,10 @@
* specific language governing permissions and limitations
* under the License.
*/
-/*
+/*
* Test case Name : opentype-o2c.aql
* Description : verify that open records can be inserted into a closed dataset
- * verify missing optional fields in the closed part of the target closed dataset are allowed
+ * verify missing optional fields in the closed part of the target closed dataset are allowed
* Expected Result : Success
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/opentype-o2o/opentype-o2o.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/opentype-o2o/opentype-o2o.1.ddl.sqlpp
index a233576..622c12e 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/opentype-o2o/opentype-o2o.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/opentype-o2o/opentype-o2o.1.ddl.sqlpp
@@ -16,10 +16,10 @@
* specific language governing permissions and limitations
* under the License.
*/
-/*
+/*
* Test case Name : opentype-o2o.aql
* Description : verify that the dynamic type cast from one open type to another compatible open type
- * verify the bag-based fields
+ * verify the bag-based fields
* Expected Result : Success
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/opentype-o2o/opentype-o2o.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/opentype-o2o/opentype-o2o.2.update.sqlpp
index b915417..5d85c16 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/opentype-o2o/opentype-o2o.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/opentype-o2o/opentype-o2o.2.update.sqlpp
@@ -16,10 +16,10 @@
* specific language governing permissions and limitations
* under the License.
*/
-/*
+/*
* Test case Name : opentype-o2o.aql
* Description : verify that the dynamic type cast from one open type to another compatible open type
- * verify the bag-based fields
+ * verify the bag-based fields
* Expected Result : Success
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/opentype-o2o/opentype-o2o.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/opentype-o2o/opentype-o2o.3.query.sqlpp
index 314bd1f..ed0d613 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/opentype-o2o/opentype-o2o.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/opentype-o2o/opentype-o2o.3.query.sqlpp
@@ -16,10 +16,10 @@
* specific language governing permissions and limitations
* under the License.
*/
-/*
+/*
* Test case Name : opentype-o2o.aql
* Description : verify that the dynamic type cast from one open type to another compatible open type
- * verify the bag-based fields
+ * verify the bag-based fields
* Expected Result : Success
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/query-issue205/query-issue205.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/query-issue205/query-issue205.1.ddl.sqlpp
index f9ccca6..2962680 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/query-issue205/query-issue205.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/query-issue205/query-issue205.1.ddl.sqlpp
@@ -18,6 +18,10 @@
*/
/*
* Description : This test case is to verify the fix for issue205
+ * : https://code.google.com/p/asterixdb/issues/detail?id=205
+ * Expected Res : Success
+ * Date : 26th November 2012
+ */
drop database test if exists;
create database test;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/query-issue205/query-issue205.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/query-issue205/query-issue205.2.update.sqlpp
index 34639d7..6c5cd3c 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/query-issue205/query-issue205.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/query-issue205/query-issue205.2.update.sqlpp
@@ -18,6 +18,10 @@
*/
/*
* Description : This test case is to verify the fix for issue205
+ : https://code.google.com/p/asterixdb/issues/detail?id=205
+ * Expected Res : Success
+ * Date : 26th November 2012
+ */
use test;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/query-issue205/query-issue205.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/query-issue205/query-issue205.3.query.sqlpp
index 0afeb12..5dc43e5 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/query-issue205/query-issue205.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/query-issue205/query-issue205.3.query.sqlpp
@@ -18,6 +18,10 @@
*/
/*
* Description : This test case is to verify the fix for issue205
+ * : https://code.google.com/p/asterixdb/issues/detail?id=205
+ * Expected Res : Success
+ * Date : 26th November 2012
+ */
use test;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/query-issue288/query-issue288.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/query-issue288/query-issue288.1.ddl.sqlpp
index dd263f3..ed03895 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/query-issue288/query-issue288.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/query-issue288/query-issue288.1.ddl.sqlpp
@@ -18,6 +18,10 @@
*/
/*
* Description : This test case is to verify the fix for issue288
+ : https://code.google.com/p/asterixdb/issues/detail?id=288
+ * Expected Res : Success
+ * Date : 3th April 2013
+ */
drop database test if exists;
create database test;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/query-issue288/query-issue288.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/query-issue288/query-issue288.2.update.sqlpp
index 8a6b5c6..d6a47ec 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/query-issue288/query-issue288.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/query-issue288/query-issue288.2.update.sqlpp
@@ -18,6 +18,10 @@
*/
/*
* Description : This test case is to verify the fix for issue288
+ : https://code.google.com/p/asterixdb/issues/detail?id=288
+ * Expected Res : Success
+ * Date : 3th April 2013
+ */
use test;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/query-issue288/query-issue288.3.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/query-issue288/query-issue288.3.ddl.sqlpp
index 3ba2ebc..23cfba4 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/query-issue288/query-issue288.3.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/query-issue288/query-issue288.3.ddl.sqlpp
@@ -18,6 +18,10 @@
*/
/*
* Description : This test case is to verify the fix for issue288
+ : https://code.google.com/p/asterixdb/issues/detail?id=288
+ * Expected Res : Success
+ * Date : 3th April 2013
+ */
use test;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/query-issue288/query-issue288.4.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/query-issue288/query-issue288.4.update.sqlpp
index 90b32fa..906ef10 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/query-issue288/query-issue288.4.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/query-issue288/query-issue288.4.update.sqlpp
@@ -18,6 +18,10 @@
*/
/*
* Description : This test case is to verify the fix for issue288
+ : https://code.google.com/p/asterixdb/issues/detail?id=288
+ * Expected Res : Success
+ * Date : 3th April 2013
+ */
use test;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/query-issue288/query-issue288.5.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/query-issue288/query-issue288.5.query.sqlpp
index 1c874d7..7d41229 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/query-issue288/query-issue288.5.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/query-issue288/query-issue288.5.query.sqlpp
@@ -18,6 +18,10 @@
*/
/*
* Description : This test case is to verify the fix for issue288
+ : https://code.google.com/p/asterixdb/issues/detail?id=288
+ * Expected Res : Success
+ * Date : 3th April 2013
+ */
use test;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/query-issue433/query-issue433.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/query-issue433/query-issue433.1.ddl.sqlpp
index c459a1b..ed51590 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/query-issue433/query-issue433.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/query-issue433/query-issue433.1.ddl.sqlpp
@@ -18,6 +18,10 @@
*/
/*
* Description : This test case is to verify the fix for issue433
+ : https://code.google.com/p/asterixdb/issues/detail?id=433
+ * Expected Res : Success
+ * Date : 3th April 2013
+ */
create database insertIssue;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/query-issue433/query-issue433.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/query-issue433/query-issue433.2.update.sqlpp
index 2e1fa3c..33d3a24 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/query-issue433/query-issue433.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/query-issue433/query-issue433.2.update.sqlpp
@@ -18,6 +18,10 @@
*/
/*
* Description : This test case is to verify the fix for issue433
+ : https://code.google.com/p/asterixdb/issues/detail?id=433
+ * Expected Res : Success
+ * Date : 3th April 2013
+ */
use insertIssue;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/query-issue433/query-issue433.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/query-issue433/query-issue433.3.query.sqlpp
index b3e659a..f2c8b56 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/query-issue433/query-issue433.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/query-issue433/query-issue433.3.query.sqlpp
@@ -18,6 +18,10 @@
*/
/*
* Description : This test case is to verify the fix for issue433
+ : https://code.google.com/p/asterixdb/issues/detail?id=433
+ * Expected Res : Success
+ * Date : 3th April 2013
+ */
use insertIssue;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-delete-btree-secondary-index-nullable/scan-delete-btree-secondary-index-nullable.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-delete-btree-secondary-index-nullable/scan-delete-btree-secondary-index-nullable.2.update.sqlpp
index 2dfbed0..d07a51a 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-delete-btree-secondary-index-nullable/scan-delete-btree-secondary-index-nullable.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-delete-btree-secondary-index-nullable/scan-delete-btree-secondary-index-nullable.2.update.sqlpp
@@ -16,9 +16,9 @@
* specific language governing permissions and limitations
* under the License.
*/
-/*
+/*
* Test case Name : scan-delete-btree-secondary-index-nullable.aql
- * Description : This test is intended to test deletion from secondary btree indexes that are built on nullable fields
+ * Description : This test is intended to test deletion from secondary btree indexes that are built on nullable fields
* Expected Result : Success
* Date : May 12 2012
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-delete-btree-secondary-index-nullable/scan-delete-btree-secondary-index-nullable.5.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-delete-btree-secondary-index-nullable/scan-delete-btree-secondary-index-nullable.5.query.sqlpp
index 9a1af15..8304dcf 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-delete-btree-secondary-index-nullable/scan-delete-btree-secondary-index-nullable.5.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-delete-btree-secondary-index-nullable/scan-delete-btree-secondary-index-nullable.5.query.sqlpp
@@ -16,9 +16,9 @@
* specific language governing permissions and limitations
* under the License.
*/
-/*
+/*
* Test case Name : scan-delete-btree-secondary-index-nullable.aql
- * Description : This test is intended to test deletion from secondary btree indexes that are built on nullable fields
+ * Description : This test is intended to test deletion from secondary btree indexes that are built on nullable fields
* Expected Result : Success
* Date : May 12 2012
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-delete-btree-secondary-index-open/scan-delete-btree-secondary-index-open.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-delete-btree-secondary-index-open/scan-delete-btree-secondary-index-open.1.ddl.sqlpp
index bd313ef..7d4c5bc 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-delete-btree-secondary-index-open/scan-delete-btree-secondary-index-open.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-delete-btree-secondary-index-open/scan-delete-btree-secondary-index-open.1.ddl.sqlpp
@@ -16,9 +16,9 @@
* specific language governing permissions and limitations
* under the License.
*/
-/*
+/*
* Test case Name : scan-delete-btree-secondary-index-open.aql
- * Description : This test is intended to test deletion from secondary btree indexes that are built on open fields
+ * Description : This test is intended to test deletion from secondary btree indexes that are built on open fields
* Expected Result : Success
* Date : Feb 13 2014
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-delete-btree-secondary-index-open/scan-delete-btree-secondary-index-open.5.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-delete-btree-secondary-index-open/scan-delete-btree-secondary-index-open.5.query.sqlpp
index 083cc98..3333d29 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-delete-btree-secondary-index-open/scan-delete-btree-secondary-index-open.5.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-delete-btree-secondary-index-open/scan-delete-btree-secondary-index-open.5.query.sqlpp
@@ -16,9 +16,9 @@
* specific language governing permissions and limitations
* under the License.
*/
-/*
+/*
* Test case Name : scan-delete-btree-secondary-index-open.aql
- * Description : This test is intended to test deletion from secondary btree indexes that are built on open fields
+ * Description : This test is intended to test deletion from secondary btree indexes that are built on open fields
* Expected Result : Success
* Date : Feb 13 2014
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-delete-inverted-index-ngram-secondary-index-nullable/scan-delete-inverted-index-ngram-secondary-index-nullable.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-delete-inverted-index-ngram-secondary-index-nullable/scan-delete-inverted-index-ngram-secondary-index-nullable.2.update.sqlpp
index c0062cf..cf0e813 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-delete-inverted-index-ngram-secondary-index-nullable/scan-delete-inverted-index-ngram-secondary-index-nullable.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-delete-inverted-index-ngram-secondary-index-nullable/scan-delete-inverted-index-ngram-secondary-index-nullable.2.update.sqlpp
@@ -16,9 +16,9 @@
* specific language governing permissions and limitations
* under the License.
*/
-/*
+/*
* Test case Name : scan-delete-inverted-index-ngram-secondary-index-nullable.aql
- * Description : This test is intended to test deletion from secondary ngram inverted index that are built on nullable fields.
+ * Description : This test is intended to test deletion from secondary ngram inverted index that are built on nullable fields.
* Expected Result : Success
* Date : March 31 2013
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-delete-inverted-index-ngram-secondary-index-nullable/scan-delete-inverted-index-ngram-secondary-index-nullable.3.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-delete-inverted-index-ngram-secondary-index-nullable/scan-delete-inverted-index-ngram-secondary-index-nullable.3.ddl.sqlpp
index 9d3626a..62dfbe2 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-delete-inverted-index-ngram-secondary-index-nullable/scan-delete-inverted-index-ngram-secondary-index-nullable.3.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-delete-inverted-index-ngram-secondary-index-nullable/scan-delete-inverted-index-ngram-secondary-index-nullable.3.ddl.sqlpp
@@ -16,9 +16,9 @@
* specific language governing permissions and limitations
* under the License.
*/
-/*
+/*
* Test case Name : scan-delete-inverted-index-ngram-secondary-index-nullable.aql
- * Description : This test is intended to test deletion from secondary ngram inverted index that are built on nullable fields.
+ * Description : This test is intended to test deletion from secondary ngram inverted index that are built on nullable fields.
* Expected Result : Success
* Date : March 31 2013
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-delete-inverted-index-ngram-secondary-index-nullable/scan-delete-inverted-index-ngram-secondary-index-nullable.4.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-delete-inverted-index-ngram-secondary-index-nullable/scan-delete-inverted-index-ngram-secondary-index-nullable.4.update.sqlpp
index 9a7d266..49d7527 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-delete-inverted-index-ngram-secondary-index-nullable/scan-delete-inverted-index-ngram-secondary-index-nullable.4.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-delete-inverted-index-ngram-secondary-index-nullable/scan-delete-inverted-index-ngram-secondary-index-nullable.4.update.sqlpp
@@ -16,9 +16,9 @@
* specific language governing permissions and limitations
* under the License.
*/
-/*
+/*
* Test case Name : scan-delete-inverted-index-ngram-secondary-index-nullable.aql
- * Description : This test is intended to test deletion from secondary ngram inverted index that are built on nullable fields.
+ * Description : This test is intended to test deletion from secondary ngram inverted index that are built on nullable fields.
* Expected Result : Success
* Date : March 31 2013
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-delete-inverted-index-ngram-secondary-index-nullable/scan-delete-inverted-index-ngram-secondary-index-nullable.5.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-delete-inverted-index-ngram-secondary-index-nullable/scan-delete-inverted-index-ngram-secondary-index-nullable.5.query.sqlpp
index 814987d..e73d736 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-delete-inverted-index-ngram-secondary-index-nullable/scan-delete-inverted-index-ngram-secondary-index-nullable.5.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-delete-inverted-index-ngram-secondary-index-nullable/scan-delete-inverted-index-ngram-secondary-index-nullable.5.query.sqlpp
@@ -16,9 +16,9 @@
* specific language governing permissions and limitations
* under the License.
*/
-/*
+/*
* Test case Name : scan-delete-inverted-index-ngram-secondary-index-nullable.aql
- * Description : This test is intended to test deletion from secondary ngram inverted index that are built on nullable fields.
+ * Description : This test is intended to test deletion from secondary ngram inverted index that are built on nullable fields.
* Expected Result : Success
* Date : March 31 2013
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-delete-inverted-index-ngram-secondary-index/scan-delete-inverted-index-ngram-secondary-index.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-delete-inverted-index-ngram-secondary-index/scan-delete-inverted-index-ngram-secondary-index.2.update.sqlpp
index b8dadec..9d06b9f 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-delete-inverted-index-ngram-secondary-index/scan-delete-inverted-index-ngram-secondary-index.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-delete-inverted-index-ngram-secondary-index/scan-delete-inverted-index-ngram-secondary-index.2.update.sqlpp
@@ -16,7 +16,7 @@
* specific language governing permissions and limitations
* under the License.
*/
-/*
+/*
* Test case Name : scan-delete-inverted-index-ngram-secondary-index.aql
* Description : This test is intended to test deletion from secondary ngram inverted index.
* Expected Result : Success
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-delete-inverted-index-ngram-secondary-index/scan-delete-inverted-index-ngram-secondary-index.3.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-delete-inverted-index-ngram-secondary-index/scan-delete-inverted-index-ngram-secondary-index.3.ddl.sqlpp
index e0e85b1..157d445 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-delete-inverted-index-ngram-secondary-index/scan-delete-inverted-index-ngram-secondary-index.3.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-delete-inverted-index-ngram-secondary-index/scan-delete-inverted-index-ngram-secondary-index.3.ddl.sqlpp
@@ -16,7 +16,7 @@
* specific language governing permissions and limitations
* under the License.
*/
-/*
+/*
* Test case Name : scan-delete-inverted-index-ngram-secondary-index.aql
* Description : This test is intended to test deletion from secondary ngram inverted index.
* Expected Result : Success
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-delete-inverted-index-ngram-secondary-index/scan-delete-inverted-index-ngram-secondary-index.4.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-delete-inverted-index-ngram-secondary-index/scan-delete-inverted-index-ngram-secondary-index.4.update.sqlpp
index 6381e04..bf8504e 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-delete-inverted-index-ngram-secondary-index/scan-delete-inverted-index-ngram-secondary-index.4.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-delete-inverted-index-ngram-secondary-index/scan-delete-inverted-index-ngram-secondary-index.4.update.sqlpp
@@ -16,7 +16,7 @@
* specific language governing permissions and limitations
* under the License.
*/
-/*
+/*
* Test case Name : scan-delete-inverted-index-ngram-secondary-index.aql
* Description : This test is intended to test deletion from secondary ngram inverted index.
* Expected Result : Success
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-delete-inverted-index-ngram-secondary-index/scan-delete-inverted-index-ngram-secondary-index.5.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-delete-inverted-index-ngram-secondary-index/scan-delete-inverted-index-ngram-secondary-index.5.query.sqlpp
index 1b01521..d3c8253 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-delete-inverted-index-ngram-secondary-index/scan-delete-inverted-index-ngram-secondary-index.5.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-delete-inverted-index-ngram-secondary-index/scan-delete-inverted-index-ngram-secondary-index.5.query.sqlpp
@@ -16,7 +16,7 @@
* specific language governing permissions and limitations
* under the License.
*/
-/*
+/*
* Test case Name : scan-delete-inverted-index-ngram-secondary-index.aql
* Description : This test is intended to test deletion from secondary ngram inverted index.
* Expected Result : Success
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-delete-inverted-index-word-secondary-index-nullable/scan-delete-inverted-index-word-secondary-index-nullable.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-delete-inverted-index-word-secondary-index-nullable/scan-delete-inverted-index-word-secondary-index-nullable.2.update.sqlpp
index 573d7f5..5ff2717 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-delete-inverted-index-word-secondary-index-nullable/scan-delete-inverted-index-word-secondary-index-nullable.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-delete-inverted-index-word-secondary-index-nullable/scan-delete-inverted-index-word-secondary-index-nullable.2.update.sqlpp
@@ -16,9 +16,9 @@
* specific language governing permissions and limitations
* under the License.
*/
-/*
+/*
* Test case Name : scan-delete-inverted-index-word-secondary-index-nullable.aql
- * Description : This test is intended to test deletion from secondary keyword inverted index that are built on nullable fields.
+ * Description : This test is intended to test deletion from secondary keyword inverted index that are built on nullable fields.
* Expected Result : Success
* Date : March 31 2013
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-delete-inverted-index-word-secondary-index-nullable/scan-delete-inverted-index-word-secondary-index-nullable.3.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-delete-inverted-index-word-secondary-index-nullable/scan-delete-inverted-index-word-secondary-index-nullable.3.ddl.sqlpp
index 32abe5b..e1ad586 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-delete-inverted-index-word-secondary-index-nullable/scan-delete-inverted-index-word-secondary-index-nullable.3.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-delete-inverted-index-word-secondary-index-nullable/scan-delete-inverted-index-word-secondary-index-nullable.3.ddl.sqlpp
@@ -16,9 +16,9 @@
* specific language governing permissions and limitations
* under the License.
*/
-/*
+/*
* Test case Name : scan-delete-inverted-index-word-secondary-index-nullable.aql
- * Description : This test is intended to test deletion from secondary keyword inverted index that are built on nullable fields.
+ * Description : This test is intended to test deletion from secondary keyword inverted index that are built on nullable fields.
* Expected Result : Success
* Date : March 31 2013
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-delete-inverted-index-word-secondary-index-nullable/scan-delete-inverted-index-word-secondary-index-nullable.4.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-delete-inverted-index-word-secondary-index-nullable/scan-delete-inverted-index-word-secondary-index-nullable.4.update.sqlpp
index eae0a3a..fc34d5c 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-delete-inverted-index-word-secondary-index-nullable/scan-delete-inverted-index-word-secondary-index-nullable.4.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-delete-inverted-index-word-secondary-index-nullable/scan-delete-inverted-index-word-secondary-index-nullable.4.update.sqlpp
@@ -16,7 +16,7 @@
* specific language governing permissions and limitations
* under the License.
*/
-/*
+/*
* Test case Name : scan-delete-inverted-index-word-secondary-index-nullable.aql
* Description : This test is intended to test deletion from secondary keyword inverted index that are built on nullable fields.
* Expected Result : Success
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-delete-inverted-index-word-secondary-index-nullable/scan-delete-inverted-index-word-secondary-index-nullable.5.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-delete-inverted-index-word-secondary-index-nullable/scan-delete-inverted-index-word-secondary-index-nullable.5.query.sqlpp
index c271ba0..74948ca 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-delete-inverted-index-word-secondary-index-nullable/scan-delete-inverted-index-word-secondary-index-nullable.5.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-delete-inverted-index-word-secondary-index-nullable/scan-delete-inverted-index-word-secondary-index-nullable.5.query.sqlpp
@@ -16,9 +16,9 @@
* specific language governing permissions and limitations
* under the License.
*/
-/*
+/*
* Test case Name : scan-delete-inverted-index-word-secondary-index-nullable.aql
- * Description : This test is intended to test deletion from secondary keyword inverted index that are built on nullable fields.
+ * Description : This test is intended to test deletion from secondary keyword inverted index that are built on nullable fields.
* Expected Result : Success
* Date : March 31 2013
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-delete-inverted-index-word-secondary-index/scan-delete-inverted-index-word-secondary-index.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-delete-inverted-index-word-secondary-index/scan-delete-inverted-index-word-secondary-index.2.update.sqlpp
index e0d1fca..4b84996 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-delete-inverted-index-word-secondary-index/scan-delete-inverted-index-word-secondary-index.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-delete-inverted-index-word-secondary-index/scan-delete-inverted-index-word-secondary-index.2.update.sqlpp
@@ -16,7 +16,7 @@
* specific language governing permissions and limitations
* under the License.
*/
-/*
+/*
* Test case Name : scan-delete-inverted-index-word-secondary-index.aql
* Description : This test is intended to test deletion from secondary keyword inverted index.
* Expected Result : Success
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-delete-inverted-index-word-secondary-index/scan-delete-inverted-index-word-secondary-index.3.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-delete-inverted-index-word-secondary-index/scan-delete-inverted-index-word-secondary-index.3.ddl.sqlpp
index 92bb54c..614465f 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-delete-inverted-index-word-secondary-index/scan-delete-inverted-index-word-secondary-index.3.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-delete-inverted-index-word-secondary-index/scan-delete-inverted-index-word-secondary-index.3.ddl.sqlpp
@@ -16,7 +16,7 @@
* specific language governing permissions and limitations
* under the License.
*/
-/*
+/*
* Test case Name : scan-delete-inverted-index-word-secondary-index.aql
* Description : This test is intended to test deletion from secondary keyword inverted index.
* Expected Result : Success
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-delete-inverted-index-word-secondary-index/scan-delete-inverted-index-word-secondary-index.4.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-delete-inverted-index-word-secondary-index/scan-delete-inverted-index-word-secondary-index.4.update.sqlpp
index 2722743..9d04a30 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-delete-inverted-index-word-secondary-index/scan-delete-inverted-index-word-secondary-index.4.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-delete-inverted-index-word-secondary-index/scan-delete-inverted-index-word-secondary-index.4.update.sqlpp
@@ -16,7 +16,7 @@
* specific language governing permissions and limitations
* under the License.
*/
-/*
+/*
* Test case Name : scan-delete-inverted-index-word-secondary-index.aql
* Description : This test is intended to test deletion from secondary keyword inverted index.
* Expected Result : Success
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-delete-inverted-index-word-secondary-index/scan-delete-inverted-index-word-secondary-index.5.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-delete-inverted-index-word-secondary-index/scan-delete-inverted-index-word-secondary-index.5.query.sqlpp
index 6767607..b796a3e 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-delete-inverted-index-word-secondary-index/scan-delete-inverted-index-word-secondary-index.5.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-delete-inverted-index-word-secondary-index/scan-delete-inverted-index-word-secondary-index.5.query.sqlpp
@@ -16,7 +16,7 @@
* specific language governing permissions and limitations
* under the License.
*/
-/*
+/*
* Test case Name : scan-delete-inverted-index-word-secondary-index.aql
* Description : This test is intended to test deletion from secondary keyword inverted index.
* Expected Result : Success
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-delete-rtree-secondary-index-nullable/scan-delete-rtree-secondary-index-nullable.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-delete-rtree-secondary-index-nullable/scan-delete-rtree-secondary-index-nullable.2.update.sqlpp
index 9a67722..49668a3 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-delete-rtree-secondary-index-nullable/scan-delete-rtree-secondary-index-nullable.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-delete-rtree-secondary-index-nullable/scan-delete-rtree-secondary-index-nullable.2.update.sqlpp
@@ -16,9 +16,9 @@
* specific language governing permissions and limitations
* under the License.
*/
-/*
+/*
* Test case Name : scan-delete-rtree-secondary-index-nullable.aql
- * Description : This test is intended to test deletion from secondary rtree indexes that are built on nullable fields
+ * Description : This test is intended to test deletion from secondary rtree indexes that are built on nullable fields
* Expected Result : Success
* Date : May 12 2012
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-delete-rtree-secondary-index-nullable/scan-delete-rtree-secondary-index-nullable.5.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-delete-rtree-secondary-index-nullable/scan-delete-rtree-secondary-index-nullable.5.query.sqlpp
index 74707da..28c1c6b 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-delete-rtree-secondary-index-nullable/scan-delete-rtree-secondary-index-nullable.5.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-delete-rtree-secondary-index-nullable/scan-delete-rtree-secondary-index-nullable.5.query.sqlpp
@@ -16,9 +16,9 @@
* specific language governing permissions and limitations
* under the License.
*/
-/*
+/*
* Test case Name : scan-delete-rtree-secondary-index-nullable.aql
- * Description : This test is intended to test deletion from secondary rtree indexes that are built on nullable fields
+ * Description : This test is intended to test deletion from secondary rtree indexes that are built on nullable fields
* Expected Result : Success
* Date : May 12 2012
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-insert-btree-secondary-index-nullable/scan-insert-btree-secondary-index-nullable.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-insert-btree-secondary-index-nullable/scan-insert-btree-secondary-index-nullable.2.update.sqlpp
index 726dd24..46efc85 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-insert-btree-secondary-index-nullable/scan-insert-btree-secondary-index-nullable.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-insert-btree-secondary-index-nullable/scan-insert-btree-secondary-index-nullable.2.update.sqlpp
@@ -16,9 +16,9 @@
* specific language governing permissions and limitations
* under the License.
*/
-/*
+/*
* Test case Name : scan-delete-btree-secondary-index-nullable.aql
- * Description : This test is intended to test insertion into secondary btree indexes that are built on nullable fields
+ * Description : This test is intended to test insertion into secondary btree indexes that are built on nullable fields
* Expected Result : Success
* Date : May 12 2012
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-insert-btree-secondary-index-nullable/scan-insert-btree-secondary-index-nullable.5.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-insert-btree-secondary-index-nullable/scan-insert-btree-secondary-index-nullable.5.query.sqlpp
index edeb1c9..e959656 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-insert-btree-secondary-index-nullable/scan-insert-btree-secondary-index-nullable.5.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-insert-btree-secondary-index-nullable/scan-insert-btree-secondary-index-nullable.5.query.sqlpp
@@ -16,9 +16,9 @@
* specific language governing permissions and limitations
* under the License.
*/
-/*
+/*
* Test case Name : scan-delete-btree-secondary-index-nullable.aql
- * Description : This test is intended to test insertion into secondary btree indexes that are built on nullable fields
+ * Description : This test is intended to test insertion into secondary btree indexes that are built on nullable fields
* Expected Result : Success
* Date : May 12 2012
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-insert-inverted-index-ngram-secondary-index-nullable/scan-insert-inverted-index-ngram-secondary-index-nullable.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-insert-inverted-index-ngram-secondary-index-nullable/scan-insert-inverted-index-ngram-secondary-index-nullable.2.update.sqlpp
index a52e7f9..20799d3 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-insert-inverted-index-ngram-secondary-index-nullable/scan-insert-inverted-index-ngram-secondary-index-nullable.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-insert-inverted-index-ngram-secondary-index-nullable/scan-insert-inverted-index-ngram-secondary-index-nullable.2.update.sqlpp
@@ -16,9 +16,9 @@
* specific language governing permissions and limitations
* under the License.
*/
-/*
+/*
* Test case Name : scan-insert-inverted-index-ngram-secondary-index-nullable.aql
- * Description : This test is intended to test insertion from secondary ngram inverted index that are built on nullable fields.
+ * Description : This test is intended to test insertion from secondary ngram inverted index that are built on nullable fields.
* Expected Result : Success
* Date : March 31 2013
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-insert-inverted-index-ngram-secondary-index-nullable/scan-insert-inverted-index-ngram-secondary-index-nullable.3.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-insert-inverted-index-ngram-secondary-index-nullable/scan-insert-inverted-index-ngram-secondary-index-nullable.3.ddl.sqlpp
index 866e2a8..b6edf47 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-insert-inverted-index-ngram-secondary-index-nullable/scan-insert-inverted-index-ngram-secondary-index-nullable.3.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-insert-inverted-index-ngram-secondary-index-nullable/scan-insert-inverted-index-ngram-secondary-index-nullable.3.ddl.sqlpp
@@ -16,9 +16,9 @@
* specific language governing permissions and limitations
* under the License.
*/
-/*
+/*
* Test case Name : scan-insert-inverted-index-ngram-secondary-index-nullable.aql
- * Description : This test is intended to test insertion from secondary ngram inverted index that are built on nullable fields.
+ * Description : This test is intended to test insertion from secondary ngram inverted index that are built on nullable fields.
* Expected Result : Success
* Date : March 31 2013
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-insert-inverted-index-ngram-secondary-index-nullable/scan-insert-inverted-index-ngram-secondary-index-nullable.4.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-insert-inverted-index-ngram-secondary-index-nullable/scan-insert-inverted-index-ngram-secondary-index-nullable.4.update.sqlpp
index 1d23b8f..e027679 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-insert-inverted-index-ngram-secondary-index-nullable/scan-insert-inverted-index-ngram-secondary-index-nullable.4.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-insert-inverted-index-ngram-secondary-index-nullable/scan-insert-inverted-index-ngram-secondary-index-nullable.4.update.sqlpp
@@ -16,9 +16,9 @@
* specific language governing permissions and limitations
* under the License.
*/
-/*
+/*
* Test case Name : scan-insert-inverted-index-ngram-secondary-index-nullable.aql
- * Description : This test is intended to test insertion from secondary ngram inverted index that are built on nullable fields.
+ * Description : This test is intended to test insertion from secondary ngram inverted index that are built on nullable fields.
* Expected Result : Success
* Date : March 31 2013
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-insert-inverted-index-ngram-secondary-index-nullable/scan-insert-inverted-index-ngram-secondary-index-nullable.5.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-insert-inverted-index-ngram-secondary-index-nullable/scan-insert-inverted-index-ngram-secondary-index-nullable.5.query.sqlpp
index 5d5608d..2a02c8e 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-insert-inverted-index-ngram-secondary-index-nullable/scan-insert-inverted-index-ngram-secondary-index-nullable.5.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-insert-inverted-index-ngram-secondary-index-nullable/scan-insert-inverted-index-ngram-secondary-index-nullable.5.query.sqlpp
@@ -16,9 +16,9 @@
* specific language governing permissions and limitations
* under the License.
*/
-/*
+/*
* Test case Name : scan-insert-inverted-index-ngram-secondary-index-nullable.aql
- * Description : This test is intended to test insertion from secondary ngram inverted index that are built on nullable fields.
+ * Description : This test is intended to test insertion from secondary ngram inverted index that are built on nullable fields.
* Expected Result : Success
* Date : March 31 2013
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-insert-inverted-index-ngram-secondary-index/scan-insert-inverted-index-ngram-secondary-index.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-insert-inverted-index-ngram-secondary-index/scan-insert-inverted-index-ngram-secondary-index.2.update.sqlpp
index f7f3e39..cb3dd40 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-insert-inverted-index-ngram-secondary-index/scan-insert-inverted-index-ngram-secondary-index.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-insert-inverted-index-ngram-secondary-index/scan-insert-inverted-index-ngram-secondary-index.2.update.sqlpp
@@ -16,9 +16,9 @@
* specific language governing permissions and limitations
* under the License.
*/
-/*
+/*
* Test case Name : scan-insert-inverted-index-ngram-secondary-index.aql
- * Description : This test is intended to test insertion from secondary ngram inverted index.
+ * Description : This test is intended to test insertion from secondary ngram inverted index.
* Expected Result : Success
* Date : March 31 2013
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-insert-inverted-index-ngram-secondary-index/scan-insert-inverted-index-ngram-secondary-index.3.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-insert-inverted-index-ngram-secondary-index/scan-insert-inverted-index-ngram-secondary-index.3.ddl.sqlpp
index 7afb639..d034b0f 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-insert-inverted-index-ngram-secondary-index/scan-insert-inverted-index-ngram-secondary-index.3.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-insert-inverted-index-ngram-secondary-index/scan-insert-inverted-index-ngram-secondary-index.3.ddl.sqlpp
@@ -16,9 +16,9 @@
* specific language governing permissions and limitations
* under the License.
*/
-/*
+/*
* Test case Name : scan-insert-inverted-index-ngram-secondary-index.aql
- * Description : This test is intended to test insertion from secondary ngram inverted index.
+ * Description : This test is intended to test insertion from secondary ngram inverted index.
* Expected Result : Success
* Date : March 31 2013
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-insert-inverted-index-ngram-secondary-index/scan-insert-inverted-index-ngram-secondary-index.4.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-insert-inverted-index-ngram-secondary-index/scan-insert-inverted-index-ngram-secondary-index.4.update.sqlpp
index 01ad425..9e7c24e 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-insert-inverted-index-ngram-secondary-index/scan-insert-inverted-index-ngram-secondary-index.4.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-insert-inverted-index-ngram-secondary-index/scan-insert-inverted-index-ngram-secondary-index.4.update.sqlpp
@@ -16,9 +16,9 @@
* specific language governing permissions and limitations
* under the License.
*/
-/*
+/*
* Test case Name : scan-insert-inverted-index-ngram-secondary-index.aql
- * Description : This test is intended to test insertion from secondary ngram inverted index.
+ * Description : This test is intended to test insertion from secondary ngram inverted index.
* Expected Result : Success
* Date : March 31 2013
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-insert-inverted-index-ngram-secondary-index/scan-insert-inverted-index-ngram-secondary-index.5.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-insert-inverted-index-ngram-secondary-index/scan-insert-inverted-index-ngram-secondary-index.5.query.sqlpp
index c8305e9..c0f9b7c 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-insert-inverted-index-ngram-secondary-index/scan-insert-inverted-index-ngram-secondary-index.5.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-insert-inverted-index-ngram-secondary-index/scan-insert-inverted-index-ngram-secondary-index.5.query.sqlpp
@@ -16,9 +16,9 @@
* specific language governing permissions and limitations
* under the License.
*/
-/*
+/*
* Test case Name : scan-insert-inverted-index-ngram-secondary-index.aql
- * Description : This test is intended to test insertion from secondary ngram inverted index.
+ * Description : This test is intended to test insertion from secondary ngram inverted index.
* Expected Result : Success
* Date : March 31 2013
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-insert-inverted-index-word-secondary-index-nullable/scan-insert-inverted-index-word-secondary-index-nullable.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-insert-inverted-index-word-secondary-index-nullable/scan-insert-inverted-index-word-secondary-index-nullable.2.update.sqlpp
index 39b7745..ff31c07 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-insert-inverted-index-word-secondary-index-nullable/scan-insert-inverted-index-word-secondary-index-nullable.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-insert-inverted-index-word-secondary-index-nullable/scan-insert-inverted-index-word-secondary-index-nullable.2.update.sqlpp
@@ -16,9 +16,9 @@
* specific language governing permissions and limitations
* under the License.
*/
-/*
+/*
* Test case Name : scan-insert-inverted-index-word-secondary-index-nullable.aql
- * Description : This test is intended to test insertion from secondary keyword inverted index that are built on nullable fields.
+ * Description : This test is intended to test insertion from secondary keyword inverted index that are built on nullable fields.
* Expected Result : Success
* Date : March 31 2013
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-insert-inverted-index-word-secondary-index-nullable/scan-insert-inverted-index-word-secondary-index-nullable.3.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-insert-inverted-index-word-secondary-index-nullable/scan-insert-inverted-index-word-secondary-index-nullable.3.ddl.sqlpp
index 7ad7925..c95f616 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-insert-inverted-index-word-secondary-index-nullable/scan-insert-inverted-index-word-secondary-index-nullable.3.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-insert-inverted-index-word-secondary-index-nullable/scan-insert-inverted-index-word-secondary-index-nullable.3.ddl.sqlpp
@@ -16,9 +16,9 @@
* specific language governing permissions and limitations
* under the License.
*/
-/*
+/*
* Test case Name : scan-insert-inverted-index-word-secondary-index-nullable.aql
- * Description : This test is intended to test insertion from secondary keyword inverted index that are built on nullable fields.
+ * Description : This test is intended to test insertion from secondary keyword inverted index that are built on nullable fields.
* Expected Result : Success
* Date : March 31 2013
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-insert-inverted-index-word-secondary-index-nullable/scan-insert-inverted-index-word-secondary-index-nullable.4.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-insert-inverted-index-word-secondary-index-nullable/scan-insert-inverted-index-word-secondary-index-nullable.4.update.sqlpp
index 724cd44..abd20e2 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-insert-inverted-index-word-secondary-index-nullable/scan-insert-inverted-index-word-secondary-index-nullable.4.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-insert-inverted-index-word-secondary-index-nullable/scan-insert-inverted-index-word-secondary-index-nullable.4.update.sqlpp
@@ -16,9 +16,9 @@
* specific language governing permissions and limitations
* under the License.
*/
-/*
+/*
* Test case Name : scan-insert-inverted-index-word-secondary-index-nullable.aql
- * Description : This test is intended to test insertion from secondary keyword inverted index that are built on nullable fields.
+ * Description : This test is intended to test insertion from secondary keyword inverted index that are built on nullable fields.
* Expected Result : Success
* Date : March 31 2013
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-insert-inverted-index-word-secondary-index-nullable/scan-insert-inverted-index-word-secondary-index-nullable.5.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-insert-inverted-index-word-secondary-index-nullable/scan-insert-inverted-index-word-secondary-index-nullable.5.query.sqlpp
index 072b732..9ca1c99 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-insert-inverted-index-word-secondary-index-nullable/scan-insert-inverted-index-word-secondary-index-nullable.5.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-insert-inverted-index-word-secondary-index-nullable/scan-insert-inverted-index-word-secondary-index-nullable.5.query.sqlpp
@@ -16,9 +16,9 @@
* specific language governing permissions and limitations
* under the License.
*/
-/*
+/*
* Test case Name : scan-insert-inverted-index-word-secondary-index-nullable.aql
- * Description : This test is intended to test insertion from secondary keyword inverted index that are built on nullable fields.
+ * Description : This test is intended to test insertion from secondary keyword inverted index that are built on nullable fields.
* Expected Result : Success
* Date : March 31 2013
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-insert-inverted-index-word-secondary-index/scan-insert-inverted-index-word-secondary-index.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-insert-inverted-index-word-secondary-index/scan-insert-inverted-index-word-secondary-index.2.update.sqlpp
index 7b57aa7..db87109 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-insert-inverted-index-word-secondary-index/scan-insert-inverted-index-word-secondary-index.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-insert-inverted-index-word-secondary-index/scan-insert-inverted-index-word-secondary-index.2.update.sqlpp
@@ -16,9 +16,9 @@
* specific language governing permissions and limitations
* under the License.
*/
-/*
+/*
* Test case Name : scan-insert-inverted-index-word-secondary-index.aql
- * Description : This test is intended to test insertion from secondary keyword inverted index.
+ * Description : This test is intended to test insertion from secondary keyword inverted index.
* Expected Result : Success
* Date : March 31 2013
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-insert-inverted-index-word-secondary-index/scan-insert-inverted-index-word-secondary-index.3.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-insert-inverted-index-word-secondary-index/scan-insert-inverted-index-word-secondary-index.3.ddl.sqlpp
index 16cf7fc..27c3e6c 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-insert-inverted-index-word-secondary-index/scan-insert-inverted-index-word-secondary-index.3.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-insert-inverted-index-word-secondary-index/scan-insert-inverted-index-word-secondary-index.3.ddl.sqlpp
@@ -16,9 +16,9 @@
* specific language governing permissions and limitations
* under the License.
*/
-/*
+/*
* Test case Name : scan-insert-inverted-index-word-secondary-index.aql
- * Description : This test is intended to test insertion from secondary keyword inverted index.
+ * Description : This test is intended to test insertion from secondary keyword inverted index.
* Expected Result : Success
* Date : March 31 2013
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-insert-inverted-index-word-secondary-index/scan-insert-inverted-index-word-secondary-index.4.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-insert-inverted-index-word-secondary-index/scan-insert-inverted-index-word-secondary-index.4.update.sqlpp
index dfd8db8..460e51e 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-insert-inverted-index-word-secondary-index/scan-insert-inverted-index-word-secondary-index.4.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-insert-inverted-index-word-secondary-index/scan-insert-inverted-index-word-secondary-index.4.update.sqlpp
@@ -16,9 +16,9 @@
* specific language governing permissions and limitations
* under the License.
*/
-/*
+/*
* Test case Name : scan-insert-inverted-index-word-secondary-index.aql
- * Description : This test is intended to test insertion from secondary keyword inverted index.
+ * Description : This test is intended to test insertion from secondary keyword inverted index.
* Expected Result : Success
* Date : March 31 2013
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-insert-inverted-index-word-secondary-index/scan-insert-inverted-index-word-secondary-index.5.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-insert-inverted-index-word-secondary-index/scan-insert-inverted-index-word-secondary-index.5.query.sqlpp
index c0e90f7..5155136 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-insert-inverted-index-word-secondary-index/scan-insert-inverted-index-word-secondary-index.5.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-insert-inverted-index-word-secondary-index/scan-insert-inverted-index-word-secondary-index.5.query.sqlpp
@@ -16,9 +16,9 @@
* specific language governing permissions and limitations
* under the License.
*/
-/*
+/*
* Test case Name : scan-insert-inverted-index-word-secondary-index.aql
- * Description : This test is intended to test insertion from secondary keyword inverted index.
+ * Description : This test is intended to test insertion from secondary keyword inverted index.
* Expected Result : Success
* Date : March 31 2013
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-insert-rtree-secondary-index-nullable/scan-insert-rtree-secondary-index-nullable.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-insert-rtree-secondary-index-nullable/scan-insert-rtree-secondary-index-nullable.2.update.sqlpp
index 992eab2..7b5d679 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-insert-rtree-secondary-index-nullable/scan-insert-rtree-secondary-index-nullable.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-insert-rtree-secondary-index-nullable/scan-insert-rtree-secondary-index-nullable.2.update.sqlpp
@@ -16,9 +16,9 @@
* specific language governing permissions and limitations
* under the License.
*/
-/*
+/*
* Test case Name : scan-insert-rtree-secondary-index-nullable.aql
- * Description : This test is intended to test insertion into secondary rtree indexes that are built on nullable fields
+ * Description : This test is intended to test insertion into secondary rtree indexes that are built on nullable fields
* Expected Result : Success
* Date : May 12 2012
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-insert-rtree-secondary-index-nullable/scan-insert-rtree-secondary-index-nullable.5.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-insert-rtree-secondary-index-nullable/scan-insert-rtree-secondary-index-nullable.5.query.sqlpp
index 6b0e051..e1b646d 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-insert-rtree-secondary-index-nullable/scan-insert-rtree-secondary-index-nullable.5.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-insert-rtree-secondary-index-nullable/scan-insert-rtree-secondary-index-nullable.5.query.sqlpp
@@ -16,9 +16,9 @@
* specific language governing permissions and limitations
* under the License.
*/
-/*
+/*
* Test case Name : scan-insert-rtree-secondary-index-nullable.aql
- * Description : This test is intended to test insertion into secondary rtree indexes that are built on nullable fields
+ * Description : This test is intended to test insertion into secondary rtree indexes that are built on nullable fields
* Expected Result : Success
* Date : May 12 2012
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-insert-rtree-secondary-index-open/scan-insert-rtree-secondary-index-open.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-insert-rtree-secondary-index-open/scan-insert-rtree-secondary-index-open.2.update.sqlpp
index b4c87a4..bf5a813 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-insert-rtree-secondary-index-open/scan-insert-rtree-secondary-index-open.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/dml/scan-insert-rtree-secondary-index-open/scan-insert-rtree-secondary-index-open.2.update.sqlpp
@@ -16,9 +16,9 @@
* specific language governing permissions and limitations
* under the License.
*/
-/*
+/*
* Test case Name : scan-insert-rtree-secondary-index-open.aql
- * Description : This test is intended to test insertion from secondary rtree index that is built on open field.
+ * Description : This test is intended to test insertion from secondary rtree index that is built on open field.
* Expected Result : Success
* Date : Feb 13 2014
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/external-indexing/leftouterjoin-rtree/leftouterjoin-rtree.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/external-indexing/leftouterjoin-rtree/leftouterjoin-rtree.3.query.sqlpp
index ecf5895..ffaca94 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/external-indexing/leftouterjoin-rtree/leftouterjoin-rtree.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/external-indexing/leftouterjoin-rtree/leftouterjoin-rtree.3.query.sqlpp
@@ -18,7 +18,7 @@
*/
/*
* Description : Test that left-outer-join may use two available indexes, one for primary index in prob subtree and another for secondary rtree index in index subtree.
- * Issue : 730, 741
+ * Issue : 730, 741
* Expected Res : Success
* Date : 8th May 2014
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/external-indexing/leftouterjoin/leftouterjoin.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/external-indexing/leftouterjoin/leftouterjoin.2.update.sqlpp
index 90607b2..df67ea3 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/external-indexing/leftouterjoin/leftouterjoin.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/external-indexing/leftouterjoin/leftouterjoin.2.update.sqlpp
@@ -18,7 +18,7 @@
*/
/*
* Description : Test that left-outer-join may use two available indexes, one for primary index in prob subtree and another for secondary btree index in index subtree.
- * Issue : 730, 741
+ * Issue : 730, 741
* Expected Res : Success
* Date : 8th May 2014
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/external-indexing/rc-format/rc-format.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/external-indexing/rc-format/rc-format.1.ddl.sqlpp
index ee39039..b14f3cb 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/external-indexing/rc-format/rc-format.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/external-indexing/rc-format/rc-format.1.ddl.sqlpp
@@ -17,7 +17,12 @@
* under the License.
*/
/*
-* Description : Create an external dataset that contains records stored with rc hdfs file format.
+ * Description : Create an external dataset that contains records stored with rc file format.
+ * Build an index over the external dataset age attribute
+ * Perform a query over the dataset using the index.
+ * Expected Res : Success
+ * Date : 3rd Jan 2014
+*/
drop database test if exists;
create database test;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/external-indexing/rc-format/rc-format.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/external-indexing/rc-format/rc-format.2.update.sqlpp
index 5531e02..e2d598f 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/external-indexing/rc-format/rc-format.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/external-indexing/rc-format/rc-format.2.update.sqlpp
@@ -17,5 +17,9 @@
* under the License.
*/
/*
-* Description : Create an external dataset that contains records stored with rc hdfs file format.
-
+ * Description : Create an external dataset that contains records stored with rc hdfs file format.
+ * Build an index over the external dataset age attribute
+ * Perform a query over the dataset using the index.
+ * Expected Res : Success
+ * Date : 3rd Jan 2014
+*/
\ No newline at end of file
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/external-indexing/rc-format/rc-format.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/external-indexing/rc-format/rc-format.3.query.sqlpp
index 0b3be95..58db233 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/external-indexing/rc-format/rc-format.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/external-indexing/rc-format/rc-format.3.query.sqlpp
@@ -17,7 +17,12 @@
* under the License.
*/
/*
-* Description : Create an external dataset that contains records stored with rc hdfs file format.
+ * Description : Create an external dataset that contains records stored with rc hdfs file format.
+ * Build an index over the external dataset age attribute
+ * Perform a query over the dataset using the index.
+ * Expected Res : Success
+ * Date : 3rd Jan 2014
+*/
use test;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/external-indexing/sequence-format/sequence-format.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/external-indexing/sequence-format/sequence-format.1.ddl.sqlpp
index 103b3c0..56e93da 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/external-indexing/sequence-format/sequence-format.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/external-indexing/sequence-format/sequence-format.1.ddl.sqlpp
@@ -17,7 +17,12 @@
* under the License.
*/
/*
-* Description : Create an external dataset that contains records stored with sequence hdfs file format.
+ * Description : Create an external dataset that contains records stored with sequence hdfs file format.
+ * Build an index over the external dataset age attribute
+ * Perform a query over the dataset using the index.
+ * Expected Res : Success
+ * Date : 3rd Jan 2014
+*/
drop database test if exists;
create database test;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/external-indexing/sequence-format/sequence-format.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/external-indexing/sequence-format/sequence-format.2.update.sqlpp
index ab6ae4c..bbb644e 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/external-indexing/sequence-format/sequence-format.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/external-indexing/sequence-format/sequence-format.2.update.sqlpp
@@ -17,5 +17,9 @@
* under the License.
*/
/*
-* Description : Create an external dataset that contains records stored with sequence hdfs file format.
-
+ * Description : Create an external dataset that contains records stored with sequence hdfs file format.
+ * Build an index over the external dataset age attribute
+ * Perform a query over the dataset using the index.
+ * Expected Res : Success
+ * Date : 3rd Jan 2014
+*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/external-indexing/sequence-format/sequence-format.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/external-indexing/sequence-format/sequence-format.3.query.sqlpp
index 487ceb2..477ad06 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/external-indexing/sequence-format/sequence-format.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/external-indexing/sequence-format/sequence-format.3.query.sqlpp
@@ -17,7 +17,12 @@
* under the License.
*/
/*
-* Description : Create an external dataset that contains records stored with sequence hdfs file format.
+ * Description : Create an external dataset that contains records stored with sequence hdfs file format.
+ * Build an index over the external dataset age attribute
+ * Perform a query over the dataset using the index.
+ * Expected Res : Success
+ * Date : 3rd Jan 2014
+*/
use test;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/external-indexing/text-format/text-format.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/external-indexing/text-format/text-format.1.ddl.sqlpp
index 453b14f..f980ba5 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/external-indexing/text-format/text-format.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/external-indexing/text-format/text-format.1.ddl.sqlpp
@@ -18,6 +18,11 @@
*/
/*
* Description : Create an external dataset that contains records stored with text hdfs file format.
+ Build an index over the external dataset age attribute
+ Perform a query over the dataset using the index.
+* Expected Res : Success
+* Date : 3rd Jan 2014
+*/
drop database test if exists;
create database test;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/external-indexing/text-format/text-format.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/external-indexing/text-format/text-format.2.update.sqlpp
index 5964b88..1c90e53 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/external-indexing/text-format/text-format.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/external-indexing/text-format/text-format.2.update.sqlpp
@@ -18,4 +18,9 @@
*/
/*
* Description : Create an external dataset that contains records stored with text hdfs file format.
+ Build an index over the external dataset age attribute
+ Perform a query over the dataset using the index.
+* Expected Res : Success
+* Date : 3rd Jan 2014
+*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/external-indexing/text-format/text-format.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/external-indexing/text-format/text-format.3.query.sqlpp
index 68f0c4c..b0ba55d 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/external-indexing/text-format/text-format.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/external-indexing/text-format/text-format.3.query.sqlpp
@@ -17,7 +17,12 @@
* under the License.
*/
/*
-* Description : Create an external dataset that contains records stored with text hdfs file format.
+ * Description : Create an external dataset that contains records stored with text hdfs file format.
+ * Build an index over the external dataset age attribute
+ * Perform a query over the dataset using the index.
+ * Expected Res : Success
+ * Date : 3rd Jan 2014
+*/
use test;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/feeds/feeds_02/feeds_02.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/feeds/feeds_02/feeds_02.1.ddl.sqlpp
index 16e40b1..9854409 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/feeds/feeds_02/feeds_02.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/feeds/feeds_02/feeds_02.1.ddl.sqlpp
@@ -17,7 +17,7 @@
* under the License.
*/
/*
- * Description : Create a feed dataset that uses the feed simulator adapter.
+ * Description : Create a feed dataset that uses the feed simulator adapter.
drop database feeds if exists;
create database feeds;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/feeds/feeds_02/feeds_02.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/feeds/feeds_02/feeds_02.2.update.sqlpp
index af5bb9b..6fd3c53 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/feeds/feeds_02/feeds_02.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/feeds/feeds_02/feeds_02.2.update.sqlpp
@@ -17,7 +17,7 @@
* under the License.
*/
/*
- * Description : Create a feed dataset that uses the feed simulator adapter.
+ * Description : Create a feed dataset that uses the feed simulator adapter.
use feeds;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/feeds/feeds_02/feeds_02.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/feeds/feeds_02/feeds_02.3.query.sqlpp
index bc54e72..b392ce8 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/feeds/feeds_02/feeds_02.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/feeds/feeds_02/feeds_02.3.query.sqlpp
@@ -17,7 +17,7 @@
* under the License.
*/
/*
- * Description : Create a feed dataset that uses the feed simulator adapter.
+ * Description : Create a feed dataset that uses the feed simulator adapter.
use feeds;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/feeds/feeds_04/feeds_04.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/feeds/feeds_04/feeds_04.1.ddl.sqlpp
index 1c97c03..8068c90 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/feeds/feeds_04/feeds_04.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/feeds/feeds_04/feeds_04.1.ddl.sqlpp
@@ -17,7 +17,7 @@
* under the License.
*/
/*
- * Description : Create a feed dataset that uses the feed simulator adapter.
+ * Description : Create a feed dataset that uses the feed simulator adapter.
drop database feeds if exists;
create database feeds;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/feeds/feeds_04/feeds_04.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/feeds/feeds_04/feeds_04.2.update.sqlpp
index af5bb9b..6fd3c53 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/feeds/feeds_04/feeds_04.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/feeds/feeds_04/feeds_04.2.update.sqlpp
@@ -17,7 +17,7 @@
* under the License.
*/
/*
- * Description : Create a feed dataset that uses the feed simulator adapter.
+ * Description : Create a feed dataset that uses the feed simulator adapter.
use feeds;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/feeds/feeds_04/feeds_04.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/feeds/feeds_04/feeds_04.3.query.sqlpp
index bc54e72..b392ce8 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/feeds/feeds_04/feeds_04.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/feeds/feeds_04/feeds_04.3.query.sqlpp
@@ -17,7 +17,7 @@
* under the License.
*/
/*
- * Description : Create a feed dataset that uses the feed simulator adapter.
+ * Description : Create a feed dataset that uses the feed simulator adapter.
use feeds;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/feeds/feeds_05/feeds_05.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/feeds/feeds_05/feeds_05.1.ddl.sqlpp
index 09cece7..9dde88b 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/feeds/feeds_05/feeds_05.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/feeds/feeds_05/feeds_05.1.ddl.sqlpp
@@ -17,7 +17,7 @@
* under the License.
*/
/*
- * Description : Create a feed dataset that uses the synthetic feed simulator adapter.
+ * Description : Create a feed dataset that uses the synthetic feed simulator adapter.
drop database feeds if exists;
create database feeds;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/feeds/feeds_06/feeds_06.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/feeds/feeds_06/feeds_06.1.ddl.sqlpp
index 40df61f..b713df6 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/feeds/feeds_06/feeds_06.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/feeds/feeds_06/feeds_06.1.ddl.sqlpp
@@ -17,7 +17,7 @@
* under the License.
*/
/*
- * Description : Create a feed dataset and a feed using the generic socket feed adapter.
+ * Description : Create a feed dataset and a feed using the generic socket feed adapter.
drop database feeds if exists;
create database feeds;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/feeds/feeds_07/feeds_07.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/feeds/feeds_07/feeds_07.1.ddl.sqlpp
index c20a4e4..c4df5b5 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/feeds/feeds_07/feeds_07.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/feeds/feeds_07/feeds_07.1.ddl.sqlpp
@@ -17,7 +17,7 @@
* under the License.
*/
/*
- * Description : Create a feed using the synthetic feed simulator adapter.
+ * Description : Create a feed using the synthetic feed simulator adapter.
drop database feeds if exists;
create database feeds;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/feeds/feeds_07/feeds_07.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/feeds/feeds_07/feeds_07.2.update.sqlpp
index 150f53d..b889d6c 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/feeds/feeds_07/feeds_07.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/feeds/feeds_07/feeds_07.2.update.sqlpp
@@ -17,7 +17,7 @@
* under the License.
*/
/*
- * Description : Create a feed using the synthetic feed simulator adapter.
+ * Description : Create a feed using the synthetic feed simulator adapter.
use feeds;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/feeds/feeds_07/feeds_07.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/feeds/feeds_07/feeds_07.3.query.sqlpp
index 18bed03..64e1181 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/feeds/feeds_07/feeds_07.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/feeds/feeds_07/feeds_07.3.query.sqlpp
@@ -17,7 +17,7 @@
* under the License.
*/
/*
- * Description : Create a feed using the synthetic feed simulator adapter.
+ * Description : Create a feed using the synthetic feed simulator adapter.
use feeds;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/feeds/feeds_08/feeds_08.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/feeds/feeds_08/feeds_08.1.ddl.sqlpp
index 76533da..93ee41d 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/feeds/feeds_08/feeds_08.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/feeds/feeds_08/feeds_08.1.ddl.sqlpp
@@ -17,7 +17,7 @@
* under the License.
*/
/*
- * Description : Create a feed using the synthetic feed simulator adapter.
+ * Description : Create a feed using the synthetic feed simulator adapter.
drop database feeds if exists;
create database feeds;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/feeds/feeds_08/feeds_08.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/feeds/feeds_08/feeds_08.2.update.sqlpp
index 150f53d..b889d6c 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/feeds/feeds_08/feeds_08.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/feeds/feeds_08/feeds_08.2.update.sqlpp
@@ -17,7 +17,7 @@
* under the License.
*/
/*
- * Description : Create a feed using the synthetic feed simulator adapter.
+ * Description : Create a feed using the synthetic feed simulator adapter.
use feeds;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/feeds/feeds_08/feeds_08.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/feeds/feeds_08/feeds_08.3.query.sqlpp
index 18bed03..64e1181 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/feeds/feeds_08/feeds_08.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/feeds/feeds_08/feeds_08.3.query.sqlpp
@@ -17,7 +17,7 @@
* under the License.
*/
/*
- * Description : Create a feed using the synthetic feed simulator adapter.
+ * Description : Create a feed using the synthetic feed simulator adapter.
use feeds;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/feeds/feeds_09/feeds_09.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/feeds/feeds_09/feeds_09.1.ddl.sqlpp
index cb6f2a8..faa6b1e 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/feeds/feeds_09/feeds_09.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/feeds/feeds_09/feeds_09.1.ddl.sqlpp
@@ -17,7 +17,7 @@
* under the License.
*/
/*
- * Description : Create a feed using the synthetic feed simulator adapter.
+ * Description : Create a feed using the synthetic feed simulator adapter.
drop database feeds_09 if exists;
create database feeds_09;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/feeds/feeds_09/feeds_09.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/feeds/feeds_09/feeds_09.2.update.sqlpp
index a556b0c..ce6d1bc 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/feeds/feeds_09/feeds_09.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/feeds/feeds_09/feeds_09.2.update.sqlpp
@@ -17,7 +17,7 @@
* under the License.
*/
/*
- * Description : Create a feed using the synthetic feed simulator adapter.
+ * Description : Create a feed using the synthetic feed simulator adapter.
use feeds_09;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/feeds/feeds_09/feeds_09.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/feeds/feeds_09/feeds_09.3.query.sqlpp
index dd270bc..e5d9ea5 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/feeds/feeds_09/feeds_09.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/feeds/feeds_09/feeds_09.3.query.sqlpp
@@ -17,7 +17,7 @@
* under the License.
*/
/*
- * Description : Create a feed using the synthetic feed simulator adapter.
+ * Description : Create a feed using the synthetic feed simulator adapter.
use feeds_09;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/feeds/feeds_11/feeds_11.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/feeds/feeds_11/feeds_11.1.ddl.sqlpp
index 16e40b1..9854409 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/feeds/feeds_11/feeds_11.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/feeds/feeds_11/feeds_11.1.ddl.sqlpp
@@ -17,7 +17,7 @@
* under the License.
*/
/*
- * Description : Create a feed dataset that uses the feed simulator adapter.
+ * Description : Create a feed dataset that uses the feed simulator adapter.
drop database feeds if exists;
create database feeds;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/feeds/feeds_11/feeds_11.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/feeds/feeds_11/feeds_11.2.update.sqlpp
index 6e6520a..7d29d72 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/feeds/feeds_11/feeds_11.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/feeds/feeds_11/feeds_11.2.update.sqlpp
@@ -17,7 +17,7 @@
* under the License.
*/
/*
- * Description : Create a feed dataset that uses the feed simulator adapter.
+ * Description : Create a feed dataset that uses the feed simulator adapter.
use feeds;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/feeds/feeds_11/feeds_11.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/feeds/feeds_11/feeds_11.3.query.sqlpp
index bc54e72..b392ce8 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/feeds/feeds_11/feeds_11.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/feeds/feeds_11/feeds_11.3.query.sqlpp
@@ -17,7 +17,7 @@
* under the License.
*/
/*
- * Description : Create a feed dataset that uses the feed simulator adapter.
+ * Description : Create a feed dataset that uses the feed simulator adapter.
use feeds;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/feeds/feeds_12/feeds_12.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/feeds/feeds_12/feeds_12.1.ddl.sqlpp
index ff550e1..bb5205b 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/feeds/feeds_12/feeds_12.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/feeds/feeds_12/feeds_12.1.ddl.sqlpp
@@ -17,7 +17,7 @@
* under the License.
*/
/*
- * Description : Create a feed from the contents of a file using a file_feed adaptor.
+ * Description : Create a feed from the contents of a file using a file_feed adaptor.
drop database feeds_12 if exists;
create database feeds_12;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/feeds/feeds_12/feeds_12.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/feeds/feeds_12/feeds_12.2.update.sqlpp
index 1210401..19a54a0 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/feeds/feeds_12/feeds_12.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/feeds/feeds_12/feeds_12.2.update.sqlpp
@@ -17,7 +17,7 @@
* under the License.
*/
/*
- * Description : Create a feed dataset that uses the feed simulator adapter.
+ * Description : Create a feed dataset that uses the feed simulator adapter.
use feeds_12;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/feeds/feeds_12/feeds_12.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/feeds/feeds_12/feeds_12.3.query.sqlpp
index 4b45439..ffaa57f 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/feeds/feeds_12/feeds_12.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/feeds/feeds_12/feeds_12.3.query.sqlpp
@@ -17,7 +17,7 @@
* under the License.
*/
/*
- * Description : Create a feed dataset that uses the feed simulator adapter.
+ * Description : Create a feed dataset that uses the feed simulator adapter.
use feeds_12;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/feeds/issue_230_feeds/issue_230_feeds.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/feeds/issue_230_feeds/issue_230_feeds.1.ddl.sqlpp
index 16e40b1..9854409 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/feeds/issue_230_feeds/issue_230_feeds.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/feeds/issue_230_feeds/issue_230_feeds.1.ddl.sqlpp
@@ -17,7 +17,7 @@
* under the License.
*/
/*
- * Description : Create a feed dataset that uses the feed simulator adapter.
+ * Description : Create a feed dataset that uses the feed simulator adapter.
drop database feeds if exists;
create database feeds;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/feeds/issue_230_feeds/issue_230_feeds.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/feeds/issue_230_feeds/issue_230_feeds.2.update.sqlpp
index 6e6520a..7d29d72 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/feeds/issue_230_feeds/issue_230_feeds.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/feeds/issue_230_feeds/issue_230_feeds.2.update.sqlpp
@@ -17,7 +17,7 @@
* under the License.
*/
/*
- * Description : Create a feed dataset that uses the feed simulator adapter.
+ * Description : Create a feed dataset that uses the feed simulator adapter.
use feeds;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/feeds/issue_230_feeds/issue_230_feeds.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/feeds/issue_230_feeds/issue_230_feeds.3.query.sqlpp
index bc54e72..b392ce8 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/feeds/issue_230_feeds/issue_230_feeds.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/feeds/issue_230_feeds/issue_230_feeds.3.query.sqlpp
@@ -17,7 +17,7 @@
* under the License.
*/
/*
- * Description : Create a feed dataset that uses the feed simulator adapter.
+ * Description : Create a feed dataset that uses the feed simulator adapter.
use feeds;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/at00/at00.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/at00/at00.3.query.sqlpp
index 3a2e884..752f607 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/at00/at00.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/at00/at00.3.query.sqlpp
@@ -27,10 +27,9 @@
select element {'partkey':gen0.partkey,'pid':p,'shipdate':j.l_shipdate}
from
- ( select element {'partkey':partkey,'i':i}
- from LineItem as i
+ ( select element {'partkey':partkey, 'i':i}
+ from (select element l from LineItem l order by l.l_partkey, l.l_shipdate) as i
group by i.l_partkey as partkey
) as gen0,
gen0.i as j at p
-where (p < 4)
-;
+where p < 4;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/at00/at00.4.asyncdefer.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/at00/at00.4.asyncdefer.sqlpp
index 3a2e884..aa145ff 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/at00/at00.4.asyncdefer.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/at00/at00.4.asyncdefer.sqlpp
@@ -27,10 +27,11 @@
select element {'partkey':gen0.partkey,'pid':p,'shipdate':j.l_shipdate}
from
- ( select element {'partkey':partkey,'i':i}
- from LineItem as i
+ ( select element {'partkey':partkey, 'i':i}
+ from (select element l from LineItem l order by l.l_partkey, l.l_shipdate) as i
group by i.l_partkey as partkey
) as gen0,
gen0.i as j at p
-where (p < 4)
-;
+where p < 4;
+
+
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/at00/at00.5.async.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/at00/at00.5.async.sqlpp
index 3a2e884..710ea9f 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/at00/at00.5.async.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/at00/at00.5.async.sqlpp
@@ -27,10 +27,10 @@
select element {'partkey':gen0.partkey,'pid':p,'shipdate':j.l_shipdate}
from
- ( select element {'partkey':partkey,'i':i}
- from LineItem as i
+ ( select element {'partkey':partkey, 'i':i}
+ from (select element l from LineItem l order by l.l_partkey, l.l_shipdate) as i
group by i.l_partkey as partkey
) as gen0,
gen0.i as j at p
-where (p < 4)
-;
+where p < 4;
+
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/at06/at06.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/at06/at06.3.query.sqlpp
index 881b15f..aace783 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/at06/at06.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/at06/at06.3.query.sqlpp
@@ -27,8 +27,8 @@
select element {'partkey':gen0.partkey,'pid':p,'shipdate':j.l_shipdate,'orderkey':j.l_orderkey}
from
- ( select element {'partkey':partkey,'i':i}
- from LineItem as i
+ ( select element {'i':i,'partkey':partkey}
+ from (select element l from LineItem l order by l.l_partkey) as i
group by i.l_partkey as partkey
) as gen0,
(
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let01/let01.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let01/let01.1.ddl.sqlpp
index e159713..94bbb7f 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let01/let01.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let01/let01.1.ddl.sqlpp
@@ -19,6 +19,6 @@
/*
* Description : Test let clause
* Expected Result : Success
- * Date : 6th July 2012
+ * Date : 6th July 2012
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let01/let01.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let01/let01.2.update.sqlpp
index e159713..94bbb7f 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let01/let01.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let01/let01.2.update.sqlpp
@@ -19,6 +19,6 @@
/*
* Description : Test let clause
* Expected Result : Success
- * Date : 6th July 2012
+ * Date : 6th July 2012
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let01/let01.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let01/let01.3.query.sqlpp
index f054fc1..0260382 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let01/let01.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let01/let01.3.query.sqlpp
@@ -19,7 +19,7 @@
/*
* Description : Test let clause
* Expected Result : Success
- * Date : 6th July 2012
+ * Date : 6th July 2012
*/
int64('92233720368547758');
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let02/let02.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let02/let02.1.ddl.sqlpp
index e159713..94bbb7f 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let02/let02.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let02/let02.1.ddl.sqlpp
@@ -19,6 +19,6 @@
/*
* Description : Test let clause
* Expected Result : Success
- * Date : 6th July 2012
+ * Date : 6th July 2012
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let02/let02.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let02/let02.2.update.sqlpp
index e159713..94bbb7f 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let02/let02.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let02/let02.2.update.sqlpp
@@ -19,6 +19,6 @@
/*
* Description : Test let clause
* Expected Result : Success
- * Date : 6th July 2012
+ * Date : 6th July 2012
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let02/let02.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let02/let02.3.query.sqlpp
index 34341d7..1534928 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let02/let02.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let02/let02.3.query.sqlpp
@@ -19,7 +19,7 @@
/*
* Description : Test let clause
* Expected Result : Success
- * Date : 6th July 2012
+ * Date : 6th July 2012
*/
92233720368547758;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let03/let03.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let03/let03.1.ddl.sqlpp
index e159713..94bbb7f 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let03/let03.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let03/let03.1.ddl.sqlpp
@@ -19,6 +19,6 @@
/*
* Description : Test let clause
* Expected Result : Success
- * Date : 6th July 2012
+ * Date : 6th July 2012
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let03/let03.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let03/let03.2.update.sqlpp
index e159713..94bbb7f 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let03/let03.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let03/let03.2.update.sqlpp
@@ -19,6 +19,6 @@
/*
* Description : Test let clause
* Expected Result : Success
- * Date : 6th July 2012
+ * Date : 6th July 2012
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let03/let03.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let03/let03.3.query.sqlpp
index 2b1f9d9..ff402b2 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let03/let03.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let03/let03.3.query.sqlpp
@@ -19,7 +19,7 @@
/*
* Description : Test let clause
* Expected Result : Success
- * Date : 6th July 2012
+ * Date : 6th July 2012
*/
(int64('92233720368547758') + 1);
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let04/let04.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let04/let04.1.ddl.sqlpp
index e159713..94bbb7f 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let04/let04.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let04/let04.1.ddl.sqlpp
@@ -19,6 +19,6 @@
/*
* Description : Test let clause
* Expected Result : Success
- * Date : 6th July 2012
+ * Date : 6th July 2012
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let04/let04.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let04/let04.2.update.sqlpp
index e159713..94bbb7f 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let04/let04.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let04/let04.2.update.sqlpp
@@ -19,6 +19,6 @@
/*
* Description : Test let clause
* Expected Result : Success
- * Date : 6th July 2012
+ * Date : 6th July 2012
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let04/let04.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let04/let04.3.query.sqlpp
index dee2e53..fec35f6 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let04/let04.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let04/let04.3.query.sqlpp
@@ -19,7 +19,7 @@
/*
* Description : Test let clause
* Expected Result : Success
- * Date : 6th July 2012
+ * Date : 6th July 2012
*/
double('1.7976931348623157E308');
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let05/let05.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let05/let05.1.ddl.sqlpp
index e159713..94bbb7f 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let05/let05.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let05/let05.1.ddl.sqlpp
@@ -19,6 +19,6 @@
/*
* Description : Test let clause
* Expected Result : Success
- * Date : 6th July 2012
+ * Date : 6th July 2012
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let05/let05.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let05/let05.2.update.sqlpp
index e159713..94bbb7f 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let05/let05.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let05/let05.2.update.sqlpp
@@ -19,6 +19,6 @@
/*
* Description : Test let clause
* Expected Result : Success
- * Date : 6th July 2012
+ * Date : 6th July 2012
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let05/let05.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let05/let05.3.query.sqlpp
index 32eac82..c224be4 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let05/let05.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let05/let05.3.query.sqlpp
@@ -19,7 +19,7 @@
/*
* Description : Test let clause
* Expected Result : Success
- * Date : 6th July 2012
+ * Date : 6th July 2012
*/
{'a':(1 + (1 * (100 / 20)))};
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let06/let06.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let06/let06.1.ddl.sqlpp
index e159713..94bbb7f 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let06/let06.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let06/let06.1.ddl.sqlpp
@@ -19,6 +19,6 @@
/*
* Description : Test let clause
* Expected Result : Success
- * Date : 6th July 2012
+ * Date : 6th July 2012
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let06/let06.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let06/let06.2.update.sqlpp
index e159713..94bbb7f 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let06/let06.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let06/let06.2.update.sqlpp
@@ -19,6 +19,6 @@
/*
* Description : Test let clause
* Expected Result : Success
- * Date : 6th July 2012
+ * Date : 6th July 2012
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let06/let06.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let06/let06.3.query.sqlpp
index e017b1e..7893d1c 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let06/let06.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let06/let06.3.query.sqlpp
@@ -19,7 +19,7 @@
/*
* Description : Test let clause
* Expected Result : Success
- * Date : 6th July 2012
+ * Date : 6th July 2012
*/
1;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let07/let07.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let07/let07.1.ddl.sqlpp
index e159713..94bbb7f 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let07/let07.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let07/let07.1.ddl.sqlpp
@@ -19,6 +19,6 @@
/*
* Description : Test let clause
* Expected Result : Success
- * Date : 6th July 2012
+ * Date : 6th July 2012
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let07/let07.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let07/let07.2.update.sqlpp
index e159713..94bbb7f 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let07/let07.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let07/let07.2.update.sqlpp
@@ -19,6 +19,6 @@
/*
* Description : Test let clause
* Expected Result : Success
- * Date : 6th July 2012
+ * Date : 6th July 2012
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let07/let07.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let07/let07.3.query.sqlpp
index 4dae497..1bd72a8 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let07/let07.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let07/let07.3.query.sqlpp
@@ -19,7 +19,7 @@
/*
* Description : Test let clause
* Expected Result : Success
- * Date : 6th July 2012
+ * Date : 6th July 2012
*/
(1 + 1);
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let08/let08.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let08/let08.1.ddl.sqlpp
index e159713..94bbb7f 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let08/let08.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let08/let08.1.ddl.sqlpp
@@ -19,6 +19,6 @@
/*
* Description : Test let clause
* Expected Result : Success
- * Date : 6th July 2012
+ * Date : 6th July 2012
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let08/let08.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let08/let08.2.update.sqlpp
index e159713..94bbb7f 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let08/let08.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let08/let08.2.update.sqlpp
@@ -19,6 +19,6 @@
/*
* Description : Test let clause
* Expected Result : Success
- * Date : 6th July 2012
+ * Date : 6th July 2012
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let08/let08.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let08/let08.3.query.sqlpp
index fd7d650..6a30a36 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let08/let08.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let08/let08.3.query.sqlpp
@@ -19,7 +19,7 @@
/*
* Description : Test let clause
* Expected Result : Success
- * Date : 6th July 2012
+ * Date : 6th July 2012
*/
with x as [1,2,3]
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let09/let09.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let09/let09.1.ddl.sqlpp
index e159713..94bbb7f 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let09/let09.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let09/let09.1.ddl.sqlpp
@@ -19,6 +19,6 @@
/*
* Description : Test let clause
* Expected Result : Success
- * Date : 6th July 2012
+ * Date : 6th July 2012
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let09/let09.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let09/let09.2.update.sqlpp
index e159713..94bbb7f 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let09/let09.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let09/let09.2.update.sqlpp
@@ -19,6 +19,6 @@
/*
* Description : Test let clause
* Expected Result : Success
- * Date : 6th July 2012
+ * Date : 6th July 2012
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let09/let09.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let09/let09.3.query.sqlpp
index a317a5f..d2c72cc 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let09/let09.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let09/let09.3.query.sqlpp
@@ -19,7 +19,7 @@
/*
* Description : Test let clause
* Expected Result : Success
- * Date : 6th July 2012
+ * Date : 6th July 2012
*/
select element a
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let10/let10.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let10/let10.1.ddl.sqlpp
index e159713..94bbb7f 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let10/let10.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let10/let10.1.ddl.sqlpp
@@ -19,6 +19,6 @@
/*
* Description : Test let clause
* Expected Result : Success
- * Date : 6th July 2012
+ * Date : 6th July 2012
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let10/let10.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let10/let10.2.update.sqlpp
index e159713..94bbb7f 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let10/let10.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let10/let10.2.update.sqlpp
@@ -19,6 +19,6 @@
/*
* Description : Test let clause
* Expected Result : Success
- * Date : 6th July 2012
+ * Date : 6th July 2012
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let10/let10.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let10/let10.3.query.sqlpp
index 67d1c90..097c7f7d 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let10/let10.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let10/let10.3.query.sqlpp
@@ -19,7 +19,7 @@
/*
* Description : Test let clause
* Expected Result : Success
- * Date : 6th July 2012
+ * Date : 6th July 2012
*/
with x as [1,2,3,4,5,6,7,8,9,10,11,14,15,17,19,24,35,56,67,77,89,60,35,25,60]
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let11/let11.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let11/let11.1.ddl.sqlpp
index e159713..94bbb7f 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let11/let11.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let11/let11.1.ddl.sqlpp
@@ -19,6 +19,6 @@
/*
* Description : Test let clause
* Expected Result : Success
- * Date : 6th July 2012
+ * Date : 6th July 2012
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let11/let11.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let11/let11.2.update.sqlpp
index e159713..94bbb7f 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let11/let11.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let11/let11.2.update.sqlpp
@@ -19,6 +19,6 @@
/*
* Description : Test let clause
* Expected Result : Success
- * Date : 6th July 2012
+ * Date : 6th July 2012
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let11/let11.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let11/let11.3.query.sqlpp
index f88d240..b449937 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let11/let11.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let11/let11.3.query.sqlpp
@@ -19,7 +19,7 @@
/*
* Description : Test let clause
* Expected Result : Success
- * Date : 6th July 2012
+ * Date : 6th July 2012
*/
['a',{'i':1},'b',{'j':2},'c',{'k':3}];
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let12/let12.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let12/let12.1.ddl.sqlpp
index e159713..94bbb7f 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let12/let12.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let12/let12.1.ddl.sqlpp
@@ -19,6 +19,6 @@
/*
* Description : Test let clause
* Expected Result : Success
- * Date : 6th July 2012
+ * Date : 6th July 2012
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let12/let12.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let12/let12.2.update.sqlpp
index e159713..94bbb7f 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let12/let12.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let12/let12.2.update.sqlpp
@@ -19,6 +19,6 @@
/*
* Description : Test let clause
* Expected Result : Success
- * Date : 6th July 2012
+ * Date : 6th July 2012
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let12/let12.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let12/let12.3.query.sqlpp
index 4dae497..1bd72a8 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let12/let12.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let12/let12.3.query.sqlpp
@@ -19,7 +19,7 @@
/*
* Description : Test let clause
* Expected Result : Success
- * Date : 6th July 2012
+ * Date : 6th July 2012
*/
(1 + 1);
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let13/let13.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let13/let13.1.ddl.sqlpp
index 40c8314..447e798 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let13/let13.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let13/let13.1.ddl.sqlpp
@@ -19,6 +19,6 @@
/*
* Description : Test let clause
* Expected Result : Failure - Negative test
- * Date : 6th July 2012
+ * Date : 6th July 2012
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let13/let13.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let13/let13.2.update.sqlpp
index 40c8314..447e798 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let13/let13.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let13/let13.2.update.sqlpp
@@ -19,6 +19,6 @@
/*
* Description : Test let clause
* Expected Result : Failure - Negative test
- * Date : 6th July 2012
+ * Date : 6th July 2012
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let13/let13.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let13/let13.3.query.sqlpp
index 40c8314..447e798 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let13/let13.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let13/let13.3.query.sqlpp
@@ -19,6 +19,6 @@
/*
* Description : Test let clause
* Expected Result : Failure - Negative test
- * Date : 6th July 2012
+ * Date : 6th July 2012
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let14/let14.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let14/let14.1.ddl.sqlpp
index e159713..94bbb7f 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let14/let14.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let14/let14.1.ddl.sqlpp
@@ -19,6 +19,6 @@
/*
* Description : Test let clause
* Expected Result : Success
- * Date : 6th July 2012
+ * Date : 6th July 2012
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let14/let14.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let14/let14.2.update.sqlpp
index e159713..94bbb7f 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let14/let14.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let14/let14.2.update.sqlpp
@@ -19,6 +19,6 @@
/*
* Description : Test let clause
* Expected Result : Success
- * Date : 6th July 2012
+ * Date : 6th July 2012
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let14/let14.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let14/let14.3.query.sqlpp
index 13bb4a3..8258b9e 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let14/let14.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let14/let14.3.query.sqlpp
@@ -19,7 +19,7 @@
/*
* Description : Test let clause
* Expected Result : Success
- * Date : 6th July 2012
+ * Date : 6th July 2012
*/
[[[[[[[[[[[[1,2,3,4,5,6,7,8,9,10],[3,4,5,6,7,8,9,0,0],int64('9222872036854775809')]]]]]]]]]]];
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let15/let15.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let15/let15.1.ddl.sqlpp
index e159713..94bbb7f 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let15/let15.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let15/let15.1.ddl.sqlpp
@@ -19,6 +19,6 @@
/*
* Description : Test let clause
* Expected Result : Success
- * Date : 6th July 2012
+ * Date : 6th July 2012
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let15/let15.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let15/let15.2.update.sqlpp
index e159713..94bbb7f 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let15/let15.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let15/let15.2.update.sqlpp
@@ -19,6 +19,6 @@
/*
* Description : Test let clause
* Expected Result : Success
- * Date : 6th July 2012
+ * Date : 6th July 2012
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let15/let15.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let15/let15.3.query.sqlpp
index 0d99f57..7b56ee1 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let15/let15.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let15/let15.3.query.sqlpp
@@ -19,7 +19,7 @@
/*
* Description : Test let clause
* Expected Result : Success
- * Date : 6th July 2012
+ * Date : 6th July 2012
*/
[[[[[[[[[[[int64('9222872036854775809')]]]]]]]]]]];
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let16/let16.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let16/let16.1.ddl.sqlpp
index e159713..94bbb7f 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let16/let16.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let16/let16.1.ddl.sqlpp
@@ -19,6 +19,6 @@
/*
* Description : Test let clause
* Expected Result : Success
- * Date : 6th July 2012
+ * Date : 6th July 2012
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let16/let16.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let16/let16.2.update.sqlpp
index e159713..94bbb7f 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let16/let16.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let16/let16.2.update.sqlpp
@@ -19,6 +19,6 @@
/*
* Description : Test let clause
* Expected Result : Success
- * Date : 6th July 2012
+ * Date : 6th July 2012
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let16/let16.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let16/let16.3.query.sqlpp
index 3b9d783..773ab87 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let16/let16.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let16/let16.3.query.sqlpp
@@ -19,7 +19,7 @@
/*
* Description : Test let clause
* Expected Result : Success
- * Date : 6th July 2012
+ * Date : 6th July 2012
*/
[[[[[[[[[[[int64('9222872036854775809'),int64('9222872036854775809'),int64('9222872036854775809'),int64('9222872036854775809'),int64('9222872036854775809'),int64('9222872036854775809'),int64('9222872036854775809'),int64('9222872036854775809'),int64('9222872036854775809'),int64('9222872036854775809'),int64('9222872036854775809'),int64('9222872036854775809'),int64('9222872036854775809'),int64('9222872036854775809'),int64('9222872036854775809'),int64('9222872036854775809'),int64('9222872036854775809'),int64('9222872036854775809'),int64('9222872036854775809'),int64('9222872036854775809'),int64('9222872036854775809'),int64('9222872036854775809')]]]]]]]]]]];
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let17/let17.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let17/let17.1.ddl.sqlpp
index e159713..94bbb7f 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let17/let17.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let17/let17.1.ddl.sqlpp
@@ -19,6 +19,6 @@
/*
* Description : Test let clause
* Expected Result : Success
- * Date : 6th July 2012
+ * Date : 6th July 2012
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let17/let17.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let17/let17.2.update.sqlpp
index e159713..94bbb7f 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let17/let17.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let17/let17.2.update.sqlpp
@@ -19,6 +19,6 @@
/*
* Description : Test let clause
* Expected Result : Success
- * Date : 6th July 2012
+ * Date : 6th July 2012
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let17/let17.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let17/let17.3.query.sqlpp
index 5a051c7..0e05278 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let17/let17.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let17/let17.3.query.sqlpp
@@ -19,7 +19,7 @@
/*
* Description : Test let clause
* Expected Result : Success
- * Date : 6th July 2012
+ * Date : 6th July 2012
*/
['and','here','we','are',['this is new','stuff']];
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let18/let18.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let18/let18.1.ddl.sqlpp
index e159713..94bbb7f 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let18/let18.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let18/let18.1.ddl.sqlpp
@@ -19,6 +19,6 @@
/*
* Description : Test let clause
* Expected Result : Success
- * Date : 6th July 2012
+ * Date : 6th July 2012
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let18/let18.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let18/let18.2.update.sqlpp
index e159713..94bbb7f 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let18/let18.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let18/let18.2.update.sqlpp
@@ -19,6 +19,6 @@
/*
* Description : Test let clause
* Expected Result : Success
- * Date : 6th July 2012
+ * Date : 6th July 2012
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let18/let18.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let18/let18.3.query.sqlpp
index 1b87708..26c69ff 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let18/let18.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let18/let18.3.query.sqlpp
@@ -19,7 +19,7 @@
/*
* Description : Test let clause
* Expected Result : Success
- * Date : 6th July 2012
+ * Date : 6th July 2012
*/
[{{'John Doe',45,'HR',60000,'Separation'}}];
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let19/let19.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let19/let19.1.ddl.sqlpp
index e159713..94bbb7f 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let19/let19.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let19/let19.1.ddl.sqlpp
@@ -19,6 +19,6 @@
/*
* Description : Test let clause
* Expected Result : Success
- * Date : 6th July 2012
+ * Date : 6th July 2012
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let19/let19.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let19/let19.2.update.sqlpp
index e159713..94bbb7f 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let19/let19.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let19/let19.2.update.sqlpp
@@ -19,6 +19,6 @@
/*
* Description : Test let clause
* Expected Result : Success
- * Date : 6th July 2012
+ * Date : 6th July 2012
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let19/let19.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let19/let19.3.query.sqlpp
index 11a5546..d0f597d 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let19/let19.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let19/let19.3.query.sqlpp
@@ -19,7 +19,7 @@
/*
* Description : Test let clause
* Expected Result : Success
- * Date : 6th July 2012
+ * Date : 6th July 2012
*/
{{'John Doe',45,'HR',60000,'Separation'}};
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let20/let20.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let20/let20.1.ddl.sqlpp
index e159713..94bbb7f 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let20/let20.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let20/let20.1.ddl.sqlpp
@@ -19,6 +19,6 @@
/*
* Description : Test let clause
* Expected Result : Success
- * Date : 6th July 2012
+ * Date : 6th July 2012
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let20/let20.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let20/let20.2.update.sqlpp
index e159713..94bbb7f 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let20/let20.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let20/let20.2.update.sqlpp
@@ -19,6 +19,6 @@
/*
* Description : Test let clause
* Expected Result : Success
- * Date : 6th July 2012
+ * Date : 6th July 2012
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let20/let20.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let20/let20.3.query.sqlpp
index caff622..1274205 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let20/let20.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let20/let20.3.query.sqlpp
@@ -19,7 +19,7 @@
/*
* Description : Test let clause
* Expected Result : Success
- * Date : 6th July 2012
+ * Date : 6th July 2012
*/
[{{'John Doe',45,'HR',60000,'Separation'}},{'name':'Roger Sanders','age':50,'dept':'DB2-Books','designatin':'Author'},['DB2 for Z/OS','DB2 for LUW','DB2 9 Application Development','DB2 9 DBA','DB2 for Dummies']];
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let22/let22.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let22/let22.1.ddl.sqlpp
index e7ea9f7..469eb92 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let22/let22.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let22/let22.1.ddl.sqlpp
@@ -17,7 +17,7 @@
* under the License.
*/
/*
- * Description : Test length of null returned by len() function
+ * Description : Test length of null returned by len() function
* Expected Result : Success
* Date : 23rd July 2012
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let22/let22.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let22/let22.2.update.sqlpp
index e7ea9f7..469eb92 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let22/let22.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let22/let22.2.update.sqlpp
@@ -17,7 +17,7 @@
* under the License.
*/
/*
- * Description : Test length of null returned by len() function
+ * Description : Test length of null returned by len() function
* Expected Result : Success
* Date : 23rd July 2012
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let22/let22.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let22/let22.3.query.sqlpp
index e51f25b..c1b1b2b 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let22/let22.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let22/let22.3.query.sqlpp
@@ -17,7 +17,7 @@
* under the License.
*/
/*
- * Description : Test length of null returned by len() function
+ * Description : Test length of null returned by len() function
* Expected Result : Success
* Date : 23rd July 2012
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let26/let26.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let26/let26.1.ddl.sqlpp
index bf0b8bb..685f9dd 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let26/let26.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let26/let26.1.ddl.sqlpp
@@ -17,8 +17,8 @@
* under the License.
*/
/*
- * Description : Test let clause
- * Expected Result : Success
+ * Description : Test let clause
+ * Expected Result : Success
* Date : 23rd July 2012
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let26/let26.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let26/let26.2.update.sqlpp
index bf0b8bb..685f9dd 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let26/let26.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let26/let26.2.update.sqlpp
@@ -17,8 +17,8 @@
* under the License.
*/
/*
- * Description : Test let clause
- * Expected Result : Success
+ * Description : Test let clause
+ * Expected Result : Success
* Date : 23rd July 2012
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let26/let26.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let26/let26.3.query.sqlpp
index 5c3d742..c51a9f7 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let26/let26.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let26/let26.3.query.sqlpp
@@ -17,8 +17,8 @@
* under the License.
*/
/*
- * Description : Test let clause
- * Expected Result : Success
+ * Description : Test let clause
+ * Expected Result : Success
* Date : 23rd July 2012
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let27/let27.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let27/let27.1.ddl.sqlpp
index f2e0716..685f9dd 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let27/let27.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let27/let27.1.ddl.sqlpp
@@ -17,8 +17,8 @@
* under the License.
*/
/*
- * Description : Test let clause
- * Expected Result : Success
- * Date : 23rd July 2012
+ * Description : Test let clause
+ * Expected Result : Success
+ * Date : 23rd July 2012
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let27/let27.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let27/let27.2.update.sqlpp
index f2e0716..685f9dd 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let27/let27.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let27/let27.2.update.sqlpp
@@ -17,8 +17,8 @@
* under the License.
*/
/*
- * Description : Test let clause
- * Expected Result : Success
- * Date : 23rd July 2012
+ * Description : Test let clause
+ * Expected Result : Success
+ * Date : 23rd July 2012
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let27/let27.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let27/let27.3.query.sqlpp
index 23f6331..448bbe8 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let27/let27.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/let27/let27.3.query.sqlpp
@@ -17,9 +17,9 @@
* under the License.
*/
/*
- * Description : Test let clause
- * Expected Result : Success
- * Date : 23rd July 2012
+ * Description : Test let clause
+ * Expected Result : Success
+ * Date : 23rd July 2012
*/
[(100 + 100),(100 - 100),(100 * 100),(100 / 100),(100 % 10)];
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/ret-03/ret-03.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/ret-03/ret-03.1.ddl.sqlpp
index e03d8ea..79fa584 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/ret-03/ret-03.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/ret-03/ret-03.1.ddl.sqlpp
@@ -18,7 +18,7 @@
*/
/*
* Description : Test return clause of the FLWOR expression
- * : Tes if expression then expression else expression in the return clause
+ * : Tes if expression then expression else expression in the return clause
* Expected Result : Success
* Date : 26th July 2012
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/ret-03/ret-03.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/ret-03/ret-03.2.update.sqlpp
index e03d8ea..79fa584 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/ret-03/ret-03.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/ret-03/ret-03.2.update.sqlpp
@@ -18,7 +18,7 @@
*/
/*
* Description : Test return clause of the FLWOR expression
- * : Tes if expression then expression else expression in the return clause
+ * : Tes if expression then expression else expression in the return clause
* Expected Result : Success
* Date : 26th July 2012
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/ret-03/ret-03.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/ret-03/ret-03.3.query.sqlpp
index d9006e7..906492e 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/ret-03/ret-03.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/flwor/ret-03/ret-03.3.query.sqlpp
@@ -18,7 +18,7 @@
*/
/*
* Description : Test return clause of the FLWOR expression
- * : Tes if expression then expression else expression in the return clause
+ * : Tes if expression then expression else expression in the return clause
* Expected Result : Success
* Date : 26th July 2012
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/hdfs/hdfs_02/hdfs_02.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/hdfs/hdfs_02/hdfs_02.1.ddl.sqlpp
index 8cb8ca6..4f7f1ec 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/hdfs/hdfs_02/hdfs_02.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/hdfs/hdfs_02/hdfs_02.1.ddl.sqlpp
@@ -18,6 +18,10 @@
*/
/*
* Description : Create an external dataset that contains a tuples, the lines from a (*sequence*) file in HDFS.
+ Perform a word-count over the data in the dataset.
+* Expected Res : Success
+* Date : 7th Jan 2013
+*/
drop database test if exists;
create database test;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/hdfs/hdfs_02/hdfs_02.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/hdfs/hdfs_02/hdfs_02.2.update.sqlpp
index 7054391..7c1f36b 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/hdfs/hdfs_02/hdfs_02.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/hdfs/hdfs_02/hdfs_02.2.update.sqlpp
@@ -18,4 +18,7 @@
*/
/*
* Description : Create an external dataset that contains a tuples, the lines from a (*sequence*) file in HDFS.
-
+ Perform a word-count over the data in the dataset.
+* Expected Res : Success
+* Date : 7th Jan 2013
+*/
\ No newline at end of file
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/hdfs/hdfs_02/hdfs_02.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/hdfs/hdfs_02/hdfs_02.3.query.sqlpp
index 7892d6c..04c502a 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/hdfs/hdfs_02/hdfs_02.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/hdfs/hdfs_02/hdfs_02.3.query.sqlpp
@@ -18,14 +18,17 @@
*/
/*
* Description : Create an external dataset that contains a tuples, the lines from a (*sequence*) file in HDFS.
+ Perform a word-count over the data in the dataset.
+* Expected Res : Success
+* Date : 7th Jan 2013
+*/
use test;
select element {'word':tok,'count':test.count(token)}
from TextDataset as line,
- tokens as token
-with tokens as test."word-tokens"(line.content)
+ test."word-tokens"(line.content) as token
group by token as tok
order by tok
;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/hdfs/hdfs_03/hdfs_03.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/hdfs/hdfs_03/hdfs_03.1.ddl.sqlpp
index 5172723..66be7f4 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/hdfs/hdfs_03/hdfs_03.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/hdfs/hdfs_03/hdfs_03.1.ddl.sqlpp
@@ -18,6 +18,12 @@
*/
/*
* Description : Create an external dataset that contains a tuples, the lines from a large (35kb) text file in HDFS.
+ The input file is sufficiently large to guarantee that # of bytes > than internal buffer of size 8192.
+ This causes a record to span across the buffer size boundaries.
+ Perform a word-count over the data in the dataset.
+* Expected Res : Success
+* Date : 7th Jan 2013
+*/
drop database test if exists;
create database test;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/hdfs/hdfs_03/hdfs_03.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/hdfs/hdfs_03/hdfs_03.2.update.sqlpp
index ab3c52e..8ccb895 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/hdfs/hdfs_03/hdfs_03.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/hdfs/hdfs_03/hdfs_03.2.update.sqlpp
@@ -18,4 +18,9 @@
*/
/*
* Description : Create an external dataset that contains a tuples, the lines from a large (35kb) text file in HDFS.
-
+ The input file is sufficiently large to guarantee that # of bytes > than internal buffer of size 8192.
+ This causes a record to span across the buffer size boundaries.
+ Perform a word-count over the data in the dataset.
+* Expected Res : Success
+* Date : 7th Jan 2013
+*/
\ No newline at end of file
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/hdfs/hdfs_03/hdfs_03.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/hdfs/hdfs_03/hdfs_03.3.query.sqlpp
index 066dd06..a83f6b9 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/hdfs/hdfs_03/hdfs_03.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/hdfs/hdfs_03/hdfs_03.3.query.sqlpp
@@ -18,14 +18,19 @@
*/
/*
* Description : Create an external dataset that contains a tuples, the lines from a large (35kb) text file in HDFS.
+ The input file is sufficiently large to guarantee that # of bytes > than internal buffer of size 8192.
+ This causes a record to span across the buffer size boundaries.
+ Perform a word-count over the data in the dataset.
+* Expected Res : Success
+* Date : 7th Jan 2013
+*/
use test;
select element {'word':tok,'count':test.count(token)}
from TextDataset as line,
- tokens as token
-with tokens as test."word-tokens"(line.content)
+ test."word-tokens"(line.content) as token
group by token as tok
order by tok
;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/hdfs/hdfs_shortcircuit/hdfs_shortcircuit.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/hdfs/hdfs_shortcircuit/hdfs_shortcircuit.1.ddl.sqlpp
index 07d9acc..7e1795f 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/hdfs/hdfs_shortcircuit/hdfs_shortcircuit.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/hdfs/hdfs_shortcircuit/hdfs_shortcircuit.1.ddl.sqlpp
@@ -18,6 +18,11 @@
*/
/*
* Description : Create an external dataset that contains a tuples, the lines from a (*sequence*) file in HDFS.
+ Perform a word-count over the data in the dataset.
+ The external dataset is set to perform local reads (but this is not checked)
+* Expected Res : Success
+* Date : 6th Mar 2015
+*/
drop database test if exists;
create database test;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/hdfs/hdfs_shortcircuit/hdfs_shortcircuit.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/hdfs/hdfs_shortcircuit/hdfs_shortcircuit.2.update.sqlpp
index 7054391..3153060 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/hdfs/hdfs_shortcircuit/hdfs_shortcircuit.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/hdfs/hdfs_shortcircuit/hdfs_shortcircuit.2.update.sqlpp
@@ -18,4 +18,8 @@
*/
/*
* Description : Create an external dataset that contains a tuples, the lines from a (*sequence*) file in HDFS.
-
+ Perform a word-count over the data in the dataset.
+ The external dataset is set to perform local reads (but this is not checked)
+* Expected Res : Success
+* Date : 6th Mar 2015
+*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/hdfs/hdfs_shortcircuit/hdfs_shortcircuit.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/hdfs/hdfs_shortcircuit/hdfs_shortcircuit.3.query.sqlpp
index 7892d6c..158e312 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/hdfs/hdfs_shortcircuit/hdfs_shortcircuit.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/hdfs/hdfs_shortcircuit/hdfs_shortcircuit.3.query.sqlpp
@@ -18,14 +18,18 @@
*/
/*
* Description : Create an external dataset that contains a tuples, the lines from a (*sequence*) file in HDFS.
+ Perform a word-count over the data in the dataset.
+ The external dataset is set to perform local reads (but this is not checked)
+* Expected Res : Success
+* Date : 6th Mar 2015
+*/
use test;
select element {'word':tok,'count':test.count(token)}
from TextDataset as line,
- tokens as token
-with tokens as test."word-tokens"(line.content)
+ test."word-tokens"(line.content) as token
group by token as tok
order by tok
;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/hdfs/issue_245_hdfs/issue_245_hdfs.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/hdfs/issue_245_hdfs/issue_245_hdfs.1.ddl.sqlpp
index 0b5fe8e..63fb848 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/hdfs/issue_245_hdfs/issue_245_hdfs.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/hdfs/issue_245_hdfs/issue_245_hdfs.1.ddl.sqlpp
@@ -18,6 +18,11 @@
*/
/*
* Description : Create an external dataset that contains a tuples, the lines from a file in HDFS.
+* Iterate over the contained tuples.
+* Expected Res : Success
+* Issue : 245
+* Date : 7th Jan 2013
+*/
drop database test if exists;
create database test;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/hdfs/issue_245_hdfs/issue_245_hdfs.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/hdfs/issue_245_hdfs/issue_245_hdfs.2.update.sqlpp
index df4b793..04aa961 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/hdfs/issue_245_hdfs/issue_245_hdfs.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/hdfs/issue_245_hdfs/issue_245_hdfs.2.update.sqlpp
@@ -18,4 +18,8 @@
*/
/*
* Description : Create an external dataset that contains a tuples, the lines from a file in HDFS.
-
+* Iterate over the contained tuples.
+* Expected Res : Success
+* Issue : 245
+* Date : 7th Jan 2013
+*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/hdfs/issue_245_hdfs/issue_245_hdfs.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/hdfs/issue_245_hdfs/issue_245_hdfs.3.query.sqlpp
index 5313e23..1e8f10c 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/hdfs/issue_245_hdfs/issue_245_hdfs.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/hdfs/issue_245_hdfs/issue_245_hdfs.3.query.sqlpp
@@ -18,6 +18,11 @@
*/
/*
* Description : Create an external dataset that contains a tuples, the lines from a file in HDFS.
+* Iterate over the contained tuples.
+* Expected Res : Success
+* Issue : 245
+* Date : 7th Jan 2013
+*/
use test;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/hints/issue_251_dataset_hint_5/issue_251_dataset_hint_5.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/hints/issue_251_dataset_hint_5/issue_251_dataset_hint_5.1.ddl.sqlpp
index 07bd38c..0709713 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/hints/issue_251_dataset_hint_5/issue_251_dataset_hint_5.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/hints/issue_251_dataset_hint_5/issue_251_dataset_hint_5.1.ddl.sqlpp
@@ -18,6 +18,10 @@
*/
/*
* Description : Create an dataset and load it from two file splits
+ Use hint (cardinality) for the created dataset.
+* Expected Res : Success
+* Date : 30th Jan 2013
+*/
drop database test if exists;
create database test;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/hints/issue_251_dataset_hint_5/issue_251_dataset_hint_5.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/hints/issue_251_dataset_hint_5/issue_251_dataset_hint_5.2.update.sqlpp
index 188926c..21bfc1b 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/hints/issue_251_dataset_hint_5/issue_251_dataset_hint_5.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/hints/issue_251_dataset_hint_5/issue_251_dataset_hint_5.2.update.sqlpp
@@ -17,7 +17,11 @@
* under the License.
*/
/*
-* Description : Create an dataset and load it from two file splits
+* Description : Create an dataset and load it from two file splits
+ Use hint (cardinality) for the created dataset.
+* Expected Res : Success
+* Date : 30th Jan 2013
+*/
use test;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/hints/issue_251_dataset_hint_5/issue_251_dataset_hint_5.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/hints/issue_251_dataset_hint_5/issue_251_dataset_hint_5.3.query.sqlpp
index 453305f..3480193 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/hints/issue_251_dataset_hint_5/issue_251_dataset_hint_5.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/hints/issue_251_dataset_hint_5/issue_251_dataset_hint_5.3.query.sqlpp
@@ -17,7 +17,11 @@
* under the License.
*/
/*
-* Description : Create an dataset and load it from two file splits
+* Description : Create an dataset and load it from two file splits
+ Use hint (cardinality) for the created dataset.
+* Expected Res : Success
+* Date : 30th Jan 2013
+*/
use test;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/hints/issue_251_dataset_hint_6/issue_251_dataset_hint_6.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/hints/issue_251_dataset_hint_6/issue_251_dataset_hint_6.1.ddl.sqlpp
index ba890d2..a12c1a1 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/hints/issue_251_dataset_hint_6/issue_251_dataset_hint_6.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/hints/issue_251_dataset_hint_6/issue_251_dataset_hint_6.1.ddl.sqlpp
@@ -18,6 +18,11 @@
*/
/*
* Description : Create an external dataset that contains a tuples, the lines from a (*sequence*) file in HDFS.
+ Provide hint(cardinality) when creating the dataset.
+ Perform a word-count over the data in the dataset.
+* Expected Res : Success
+* Date : 30th Jan 2013
+*/
drop database test if exists;
create database test;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/hints/issue_251_dataset_hint_6/issue_251_dataset_hint_6.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/hints/issue_251_dataset_hint_6/issue_251_dataset_hint_6.2.update.sqlpp
index 7054391..901cc6c 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/hints/issue_251_dataset_hint_6/issue_251_dataset_hint_6.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/hints/issue_251_dataset_hint_6/issue_251_dataset_hint_6.2.update.sqlpp
@@ -18,4 +18,8 @@
*/
/*
* Description : Create an external dataset that contains a tuples, the lines from a (*sequence*) file in HDFS.
-
+ Provide hint(cardinality) when creating the dataset.
+ Perform a word-count over the data in the dataset.
+* Expected Res : Success
+* Date : 30th Jan 2013
+*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/hints/issue_251_dataset_hint_6/issue_251_dataset_hint_6.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/hints/issue_251_dataset_hint_6/issue_251_dataset_hint_6.3.query.sqlpp
index 7892d6c..8c3eff1 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/hints/issue_251_dataset_hint_6/issue_251_dataset_hint_6.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/hints/issue_251_dataset_hint_6/issue_251_dataset_hint_6.3.query.sqlpp
@@ -18,14 +18,18 @@
*/
/*
* Description : Create an external dataset that contains a tuples, the lines from a (*sequence*) file in HDFS.
+ Provide hint(cardinality) when creating the dataset.
+ Perform a word-count over the data in the dataset.
+* Expected Res : Success
+* Date : 30th Jan 2013
+*/
use test;
select element {'word':tok,'count':test.count(token)}
from TextDataset as line,
- tokens as token
-with tokens as test."word-tokens"(line.content)
+ test."word-tokens"(line.content) as token
group by token as tok
order by tok
;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/hints/issue_251_dataset_hint_7/issue_251_dataset_hint_7.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/hints/issue_251_dataset_hint_7/issue_251_dataset_hint_7.1.ddl.sqlpp
index 6856b54..dab7ee7 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/hints/issue_251_dataset_hint_7/issue_251_dataset_hint_7.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/hints/issue_251_dataset_hint_7/issue_251_dataset_hint_7.1.ddl.sqlpp
@@ -17,7 +17,12 @@
* under the License.
*/
/*
- * Description : Create a feed dataset that uses the feed simulator adapter.
+ * Description : Create a feed dataset that uses the feed simulator adapter.
+ Use hint (cardinality) for the feed dataset.
+ Begin ingestion using a fully qualified name and verify contents of the dataset post completion.
+ * Expected Res : Success
+ * Date : 30th Jan 2013
+ */
drop database feeds if exists;
create database feeds;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/hints/issue_251_dataset_hint_7/issue_251_dataset_hint_7.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/hints/issue_251_dataset_hint_7/issue_251_dataset_hint_7.2.update.sqlpp
index af5bb9b..a3378fd 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/hints/issue_251_dataset_hint_7/issue_251_dataset_hint_7.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/hints/issue_251_dataset_hint_7/issue_251_dataset_hint_7.2.update.sqlpp
@@ -17,7 +17,12 @@
* under the License.
*/
/*
- * Description : Create a feed dataset that uses the feed simulator adapter.
+ * Description : Create a feed dataset that uses the feed simulator adapter.
+ Use hint (cardinality) for the feed dataset.
+ Begin ingestion using a fully qualified name and verify contents of the dataset post completion.
+ * Expected Res : Success
+ * Date : 30th Jan 2013
+ */
use feeds;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/hints/issue_251_dataset_hint_7/issue_251_dataset_hint_7.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/hints/issue_251_dataset_hint_7/issue_251_dataset_hint_7.3.query.sqlpp
index bc54e72..a77bf95 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/hints/issue_251_dataset_hint_7/issue_251_dataset_hint_7.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/hints/issue_251_dataset_hint_7/issue_251_dataset_hint_7.3.query.sqlpp
@@ -17,8 +17,12 @@
* under the License.
*/
/*
- * Description : Create a feed dataset that uses the feed simulator adapter.
-
+ * Description : Create a feed dataset that uses the feed simulator adapter.
+ Use hint (cardinality) for the feed dataset.
+ Begin ingestion using a fully qualified name and verify contents of the dataset post completion.
+ * Expected Res : Success
+ * Date : 30th Jan 2013
+ */
use feeds;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/index-join/rtree-spatial-intersect-point/rtree-spatial-intersect-point.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/index-join/rtree-spatial-intersect-point/rtree-spatial-intersect-point.2.update.sqlpp
index ac337aa..3648f33 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/index-join/rtree-spatial-intersect-point/rtree-spatial-intersect-point.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/index-join/rtree-spatial-intersect-point/rtree-spatial-intersect-point.2.update.sqlpp
@@ -18,7 +18,7 @@
*/
/*
* Description : Joins two datasets on the intersection of their point attributes.
- * The dataset 'MyData1' has an RTree index, and we expect the
+ * The dataset 'MyData1' has an RTree index, and we expect the
* join to be transformed into an indexed nested-loop join.
* Success : Yes
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/index-join/rtree-spatial-intersect-point/rtree-spatial-intersect-point.3.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/index-join/rtree-spatial-intersect-point/rtree-spatial-intersect-point.3.ddl.sqlpp
index 19e5310..01943c7 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/index-join/rtree-spatial-intersect-point/rtree-spatial-intersect-point.3.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/index-join/rtree-spatial-intersect-point/rtree-spatial-intersect-point.3.ddl.sqlpp
@@ -18,7 +18,7 @@
*/
/*
* Description : Joins two datasets on the intersection of their point attributes.
- * The dataset 'MyData1' has an RTree index, and we expect the
+ * The dataset 'MyData1' has an RTree index, and we expect the
* join to be transformed into an indexed nested-loop join.
* Success : Yes
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/index-join/rtree-spatial-intersect-point/rtree-spatial-intersect-point.4.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/index-join/rtree-spatial-intersect-point/rtree-spatial-intersect-point.4.query.sqlpp
index 7d0ad26..21572db 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/index-join/rtree-spatial-intersect-point/rtree-spatial-intersect-point.4.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/index-join/rtree-spatial-intersect-point/rtree-spatial-intersect-point.4.query.sqlpp
@@ -18,7 +18,7 @@
*/
/*
* Description : Joins two datasets on the intersection of their point attributes.
- * The dataset 'MyData1' has an RTree index, and we expect the
+ * The dataset 'MyData1' has an RTree index, and we expect the
* join to be transformed into an indexed nested-loop join.
* Success : Yes
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/index-leftouterjoin/probe-pidx-with-join-btree-sidx1/probe-pidx-with-join-btree-sidx1.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/index-leftouterjoin/probe-pidx-with-join-btree-sidx1/probe-pidx-with-join-btree-sidx1.2.update.sqlpp
index 537e280..69bb2ae 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/index-leftouterjoin/probe-pidx-with-join-btree-sidx1/probe-pidx-with-join-btree-sidx1.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/index-leftouterjoin/probe-pidx-with-join-btree-sidx1/probe-pidx-with-join-btree-sidx1.2.update.sqlpp
@@ -18,7 +18,7 @@
*/
/*
* Description : Test that left-outer-join may use two available indexes, one for primary index in prob subtree and another for secondary btree index in index subtree.
- * Issue : 730, 741
+ * Issue : 730, 741
* Expected Res : Success
* Date : 8th May 2014
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/index-leftouterjoin/probe-pidx-with-join-btree-sidx1/probe-pidx-with-join-btree-sidx1.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/index-leftouterjoin/probe-pidx-with-join-btree-sidx1/probe-pidx-with-join-btree-sidx1.3.query.sqlpp
index 2f0dd73..7c26c1a 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/index-leftouterjoin/probe-pidx-with-join-btree-sidx1/probe-pidx-with-join-btree-sidx1.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/index-leftouterjoin/probe-pidx-with-join-btree-sidx1/probe-pidx-with-join-btree-sidx1.3.query.sqlpp
@@ -18,7 +18,7 @@
*/
/*
* Description : Test that left-outer-join may use two available indexes, one for primary index in prob subtree and another for secondary btree index in index subtree.
- * Issue : 730, 741
+ * Issue : 730, 741
* Expected Res : Success
* Date : 8th May 2014
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/index-leftouterjoin/probe-pidx-with-join-btree-sidx2/probe-pidx-with-join-btree-sidx2.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/index-leftouterjoin/probe-pidx-with-join-btree-sidx2/probe-pidx-with-join-btree-sidx2.2.update.sqlpp
index 537e280..69bb2ae 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/index-leftouterjoin/probe-pidx-with-join-btree-sidx2/probe-pidx-with-join-btree-sidx2.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/index-leftouterjoin/probe-pidx-with-join-btree-sidx2/probe-pidx-with-join-btree-sidx2.2.update.sqlpp
@@ -18,7 +18,7 @@
*/
/*
* Description : Test that left-outer-join may use two available indexes, one for primary index in prob subtree and another for secondary btree index in index subtree.
- * Issue : 730, 741
+ * Issue : 730, 741
* Expected Res : Success
* Date : 8th May 2014
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/index-leftouterjoin/probe-pidx-with-join-btree-sidx2/probe-pidx-with-join-btree-sidx2.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/index-leftouterjoin/probe-pidx-with-join-btree-sidx2/probe-pidx-with-join-btree-sidx2.3.query.sqlpp
index d2b114f..7f1e799 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/index-leftouterjoin/probe-pidx-with-join-btree-sidx2/probe-pidx-with-join-btree-sidx2.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/index-leftouterjoin/probe-pidx-with-join-btree-sidx2/probe-pidx-with-join-btree-sidx2.3.query.sqlpp
@@ -18,7 +18,7 @@
*/
/*
* Description : Test that left-outer-join may use two available indexes, one for primary index in prob subtree and another for secondary btree index in index subtree.
- * Issue : 730, 741
+ * Issue : 730, 741
* Expected Res : Success
* Date : 8th May 2014
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/index-leftouterjoin/probe-pidx-with-join-invidx-sidx1/probe-pidx-with-join-invidx-sidx1.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/index-leftouterjoin/probe-pidx-with-join-invidx-sidx1/probe-pidx-with-join-invidx-sidx1.2.update.sqlpp
index 537e280..69bb2ae 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/index-leftouterjoin/probe-pidx-with-join-invidx-sidx1/probe-pidx-with-join-invidx-sidx1.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/index-leftouterjoin/probe-pidx-with-join-invidx-sidx1/probe-pidx-with-join-invidx-sidx1.2.update.sqlpp
@@ -18,7 +18,7 @@
*/
/*
* Description : Test that left-outer-join may use two available indexes, one for primary index in prob subtree and another for secondary btree index in index subtree.
- * Issue : 730, 741
+ * Issue : 730, 741
* Expected Res : Success
* Date : 8th May 2014
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/index-leftouterjoin/probe-pidx-with-join-invidx-sidx1/probe-pidx-with-join-invidx-sidx1.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/index-leftouterjoin/probe-pidx-with-join-invidx-sidx1/probe-pidx-with-join-invidx-sidx1.3.query.sqlpp
index 661261f..5cf344b 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/index-leftouterjoin/probe-pidx-with-join-invidx-sidx1/probe-pidx-with-join-invidx-sidx1.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/index-leftouterjoin/probe-pidx-with-join-invidx-sidx1/probe-pidx-with-join-invidx-sidx1.3.query.sqlpp
@@ -18,7 +18,7 @@
*/
/*
* Description : Test that left-outer-join may use two available indexes, one for primary index in prob subtree and another for secondary keyword inverted index in index subtree.
- * Issue : 730, 741
+ * Issue : 730, 741
* Expected Res : Success
* Date : 16th May 2014
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/index-leftouterjoin/probe-pidx-with-join-invidx-sidx2/probe-pidx-with-join-invidx-sidx2.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/index-leftouterjoin/probe-pidx-with-join-invidx-sidx2/probe-pidx-with-join-invidx-sidx2.2.update.sqlpp
index 537e280..69bb2ae 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/index-leftouterjoin/probe-pidx-with-join-invidx-sidx2/probe-pidx-with-join-invidx-sidx2.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/index-leftouterjoin/probe-pidx-with-join-invidx-sidx2/probe-pidx-with-join-invidx-sidx2.2.update.sqlpp
@@ -18,7 +18,7 @@
*/
/*
* Description : Test that left-outer-join may use two available indexes, one for primary index in prob subtree and another for secondary btree index in index subtree.
- * Issue : 730, 741
+ * Issue : 730, 741
* Expected Res : Success
* Date : 8th May 2014
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/index-leftouterjoin/probe-pidx-with-join-invidx-sidx2/probe-pidx-with-join-invidx-sidx2.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/index-leftouterjoin/probe-pidx-with-join-invidx-sidx2/probe-pidx-with-join-invidx-sidx2.3.query.sqlpp
index 8ee9785..78119a0 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/index-leftouterjoin/probe-pidx-with-join-invidx-sidx2/probe-pidx-with-join-invidx-sidx2.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/index-leftouterjoin/probe-pidx-with-join-invidx-sidx2/probe-pidx-with-join-invidx-sidx2.3.query.sqlpp
@@ -18,7 +18,7 @@
*/
/*
* Description : Test that left-outer-join may use two available indexes, one for primary index in prob subtree and another for secondary keyword inverted index in index subtree.
- * Issue : 730, 741
+ * Issue : 730, 741
* Expected Res : Success
* Date : 16th May 2014
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/index-leftouterjoin/probe-pidx-with-join-rtree-sidx1/probe-pidx-with-join-rtree-sidx1.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/index-leftouterjoin/probe-pidx-with-join-rtree-sidx1/probe-pidx-with-join-rtree-sidx1.2.update.sqlpp
index 05f0740..8e4fa2a 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/index-leftouterjoin/probe-pidx-with-join-rtree-sidx1/probe-pidx-with-join-rtree-sidx1.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/index-leftouterjoin/probe-pidx-with-join-rtree-sidx1/probe-pidx-with-join-rtree-sidx1.2.update.sqlpp
@@ -18,7 +18,7 @@
*/
/*
* Description : Test that left-outer-join may use two available indexes, one for primary index in prob subtree and another for secondary rtree index in index subtree.
- * Issue : 730, 741
+ * Issue : 730, 741
* Expected Res : Success
* Date : 8th May 2014
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/index-leftouterjoin/probe-pidx-with-join-rtree-sidx1/probe-pidx-with-join-rtree-sidx1.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/index-leftouterjoin/probe-pidx-with-join-rtree-sidx1/probe-pidx-with-join-rtree-sidx1.3.query.sqlpp
index ecf5895..ffaca94 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/index-leftouterjoin/probe-pidx-with-join-rtree-sidx1/probe-pidx-with-join-rtree-sidx1.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/index-leftouterjoin/probe-pidx-with-join-rtree-sidx1/probe-pidx-with-join-rtree-sidx1.3.query.sqlpp
@@ -18,7 +18,7 @@
*/
/*
* Description : Test that left-outer-join may use two available indexes, one for primary index in prob subtree and another for secondary rtree index in index subtree.
- * Issue : 730, 741
+ * Issue : 730, 741
* Expected Res : Success
* Date : 8th May 2014
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/index-leftouterjoin/probe-pidx-with-join-rtree-sidx2/probe-pidx-with-join-rtree-sidx2.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/index-leftouterjoin/probe-pidx-with-join-rtree-sidx2/probe-pidx-with-join-rtree-sidx2.2.update.sqlpp
index 05f0740..8e4fa2a 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/index-leftouterjoin/probe-pidx-with-join-rtree-sidx2/probe-pidx-with-join-rtree-sidx2.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/index-leftouterjoin/probe-pidx-with-join-rtree-sidx2/probe-pidx-with-join-rtree-sidx2.2.update.sqlpp
@@ -18,7 +18,7 @@
*/
/*
* Description : Test that left-outer-join may use two available indexes, one for primary index in prob subtree and another for secondary rtree index in index subtree.
- * Issue : 730, 741
+ * Issue : 730, 741
* Expected Res : Success
* Date : 8th May 2014
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/index-leftouterjoin/probe-pidx-with-join-rtree-sidx2/probe-pidx-with-join-rtree-sidx2.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/index-leftouterjoin/probe-pidx-with-join-rtree-sidx2/probe-pidx-with-join-rtree-sidx2.3.query.sqlpp
index b88abe7..80b518a 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/index-leftouterjoin/probe-pidx-with-join-rtree-sidx2/probe-pidx-with-join-rtree-sidx2.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/index-leftouterjoin/probe-pidx-with-join-rtree-sidx2/probe-pidx-with-join-rtree-sidx2.3.query.sqlpp
@@ -18,7 +18,7 @@
*/
/*
* Description : Test that left-outer-join may use two available indexes, one for primary index in prob subtree and another for secondary rtree index in index subtree.
- * Issue : 730, 741
+ * Issue : 730, 741
* Expected Res : Success
* Date : 8th May 2014
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/index-selection/btree-index-composite-key-mixed-intervals/btree-index-composite-key-mixed-intervals.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/index-selection/btree-index-composite-key-mixed-intervals/btree-index-composite-key-mixed-intervals.1.ddl.sqlpp
index ea7c83f..b77e73b 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/index-selection/btree-index-composite-key-mixed-intervals/btree-index-composite-key-mixed-intervals.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/index-selection/btree-index-composite-key-mixed-intervals/btree-index-composite-key-mixed-intervals.1.ddl.sqlpp
@@ -20,7 +20,7 @@
* Description : Test that BTree index is used in query plan
* : define the BTree index on a composite key (fname,lanme)
* : predicate => where $l.fname > "Julio" and $l.lname > "Mattocks" and
- * $l.fname <= "Micco" and $l.lname < "Vangieson"
+ * $l.fname <= "Micco" and $l.lname < "Vangieson"
* Expected Result : Success
* Issue : Issue 174
* Date : 5th Feb, 2013
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/index-selection/btree-index-composite-key-mixed-intervals/btree-index-composite-key-mixed-intervals.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/index-selection/btree-index-composite-key-mixed-intervals/btree-index-composite-key-mixed-intervals.2.update.sqlpp
index e1103ad..d43b2f4 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/index-selection/btree-index-composite-key-mixed-intervals/btree-index-composite-key-mixed-intervals.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/index-selection/btree-index-composite-key-mixed-intervals/btree-index-composite-key-mixed-intervals.2.update.sqlpp
@@ -20,7 +20,7 @@
* Description : Test that BTree index is used in query plan
* : define the BTree index on a composite key (fname,lanme)
* : predicate => where $l.fname > "Julio" and $l.lname > "Mattocks" and
- * $l.fname <= "Micco" and $l.lname < "Vangieson"
+ * $l.fname <= "Micco" and $l.lname < "Vangieson"
* Expected Result : Success
* Issue : Issue 174
* Date : 5th Feb, 2013
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/index-selection/btree-index-composite-key-mixed-intervals/btree-index-composite-key-mixed-intervals.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/index-selection/btree-index-composite-key-mixed-intervals/btree-index-composite-key-mixed-intervals.3.query.sqlpp
index 3976e04..a1711de 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/index-selection/btree-index-composite-key-mixed-intervals/btree-index-composite-key-mixed-intervals.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/index-selection/btree-index-composite-key-mixed-intervals/btree-index-composite-key-mixed-intervals.3.query.sqlpp
@@ -20,7 +20,7 @@
* Description : Test that BTree index is used in query plan
* : define the BTree index on a composite key (fname,lanme)
* : predicate => where $l.fname > "Julio" and $l.lname > "Mattocks" and
- * $l.fname <= "Micco" and $l.lname < "Vangieson"
+ * $l.fname <= "Micco" and $l.lname < "Vangieson"
* Expected Result : Success
* Issue : Issue 174
* Date : 5th Feb, 2013
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/index-selection/inverted-index-ngram-contains/inverted-index-ngram-contains.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/index-selection/inverted-index-ngram-contains/inverted-index-ngram-contains.1.ddl.sqlpp
index 83def9f..0f74b37 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/index-selection/inverted-index-ngram-contains/inverted-index-ngram-contains.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/index-selection/inverted-index-ngram-contains/inverted-index-ngram-contains.1.ddl.sqlpp
@@ -32,7 +32,7 @@
misc : string
}
-create nodegroup group1 if not exists on
+create nodegroup group1 if not exists on
nc1,
nc2
;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/index-selection/inverted-index-ngram-edit-distance-contains/inverted-index-ngram-edit-distance-contains.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/index-selection/inverted-index-ngram-edit-distance-contains/inverted-index-ngram-edit-distance-contains.1.ddl.sqlpp
index 83def9f..0f74b37 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/index-selection/inverted-index-ngram-edit-distance-contains/inverted-index-ngram-edit-distance-contains.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/index-selection/inverted-index-ngram-edit-distance-contains/inverted-index-ngram-edit-distance-contains.1.ddl.sqlpp
@@ -32,7 +32,7 @@
misc : string
}
-create nodegroup group1 if not exists on
+create nodegroup group1 if not exists on
nc1,
nc2
;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/index-selection/inverted-index-ngram-edit-distance-panic/inverted-index-ngram-edit-distance-panic.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/index-selection/inverted-index-ngram-edit-distance-panic/inverted-index-ngram-edit-distance-panic.1.ddl.sqlpp
index 83def9f..0f74b37 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/index-selection/inverted-index-ngram-edit-distance-panic/inverted-index-ngram-edit-distance-panic.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/index-selection/inverted-index-ngram-edit-distance-panic/inverted-index-ngram-edit-distance-panic.1.ddl.sqlpp
@@ -32,7 +32,7 @@
misc : string
}
-create nodegroup group1 if not exists on
+create nodegroup group1 if not exists on
nc1,
nc2
;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/index-selection/inverted-index-ngram-edit-distance-word-tokens/inverted-index-ngram-edit-distance-word-tokens.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/index-selection/inverted-index-ngram-edit-distance-word-tokens/inverted-index-ngram-edit-distance-word-tokens.1.ddl.sqlpp
index 83def9f..0f74b37 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/index-selection/inverted-index-ngram-edit-distance-word-tokens/inverted-index-ngram-edit-distance-word-tokens.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/index-selection/inverted-index-ngram-edit-distance-word-tokens/inverted-index-ngram-edit-distance-word-tokens.1.ddl.sqlpp
@@ -32,7 +32,7 @@
misc : string
}
-create nodegroup group1 if not exists on
+create nodegroup group1 if not exists on
nc1,
nc2
;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/index-selection/inverted-index-ngram-edit-distance/inverted-index-ngram-edit-distance.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/index-selection/inverted-index-ngram-edit-distance/inverted-index-ngram-edit-distance.1.ddl.sqlpp
index 83def9f..0f74b37 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/index-selection/inverted-index-ngram-edit-distance/inverted-index-ngram-edit-distance.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/index-selection/inverted-index-ngram-edit-distance/inverted-index-ngram-edit-distance.1.ddl.sqlpp
@@ -32,7 +32,7 @@
misc : string
}
-create nodegroup group1 if not exists on
+create nodegroup group1 if not exists on
nc1,
nc2
;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/index-selection/inverted-index-ngram-jaccard/inverted-index-ngram-jaccard.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/index-selection/inverted-index-ngram-jaccard/inverted-index-ngram-jaccard.1.ddl.sqlpp
index 83def9f..0f74b37 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/index-selection/inverted-index-ngram-jaccard/inverted-index-ngram-jaccard.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/index-selection/inverted-index-ngram-jaccard/inverted-index-ngram-jaccard.1.ddl.sqlpp
@@ -32,7 +32,7 @@
misc : string
}
-create nodegroup group1 if not exists on
+create nodegroup group1 if not exists on
nc1,
nc2
;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/index-selection/inverted-index-olist-edit-distance-panic/inverted-index-olist-edit-distance-panic.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/index-selection/inverted-index-olist-edit-distance-panic/inverted-index-olist-edit-distance-panic.1.ddl.sqlpp
index 9d759f9..4bf9670 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/index-selection/inverted-index-olist-edit-distance-panic/inverted-index-olist-edit-distance-panic.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/index-selection/inverted-index-olist-edit-distance-panic/inverted-index-olist-edit-distance-panic.1.ddl.sqlpp
@@ -44,7 +44,7 @@
]
}
-create nodegroup group1 if not exists on
+create nodegroup group1 if not exists on
nc1
;
create table Customers(CustomerType) primary key cid on group1;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/index-selection/inverted-index-olist-edit-distance/inverted-index-olist-edit-distance.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/index-selection/inverted-index-olist-edit-distance/inverted-index-olist-edit-distance.1.ddl.sqlpp
index 9d759f9..4bf9670 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/index-selection/inverted-index-olist-edit-distance/inverted-index-olist-edit-distance.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/index-selection/inverted-index-olist-edit-distance/inverted-index-olist-edit-distance.1.ddl.sqlpp
@@ -44,7 +44,7 @@
]
}
-create nodegroup group1 if not exists on
+create nodegroup group1 if not exists on
nc1
;
create table Customers(CustomerType) primary key cid on group1;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/index-selection/inverted-index-olist-jaccard/inverted-index-olist-jaccard.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/index-selection/inverted-index-olist-jaccard/inverted-index-olist-jaccard.1.ddl.sqlpp
index 9d759f9..4bf9670 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/index-selection/inverted-index-olist-jaccard/inverted-index-olist-jaccard.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/index-selection/inverted-index-olist-jaccard/inverted-index-olist-jaccard.1.ddl.sqlpp
@@ -44,7 +44,7 @@
]
}
-create nodegroup group1 if not exists on
+create nodegroup group1 if not exists on
nc1
;
create table Customers(CustomerType) primary key cid on group1;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/index-selection/inverted-index-ulist-jaccard/inverted-index-ulist-jaccard.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/index-selection/inverted-index-ulist-jaccard/inverted-index-ulist-jaccard.1.ddl.sqlpp
index 0e848c3..201b7a7 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/index-selection/inverted-index-ulist-jaccard/inverted-index-ulist-jaccard.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/index-selection/inverted-index-ulist-jaccard/inverted-index-ulist-jaccard.1.ddl.sqlpp
@@ -44,7 +44,7 @@
]
}
-create nodegroup group1 if not exists on
+create nodegroup group1 if not exists on
nc1
;
create table Customers(CustomerType) primary key cid on group1;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/index-selection/inverted-index-word-contains/inverted-index-word-contains.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/index-selection/inverted-index-word-contains/inverted-index-word-contains.1.ddl.sqlpp
index 83def9f..0f74b37 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/index-selection/inverted-index-word-contains/inverted-index-word-contains.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/index-selection/inverted-index-word-contains/inverted-index-word-contains.1.ddl.sqlpp
@@ -32,7 +32,7 @@
misc : string
}
-create nodegroup group1 if not exists on
+create nodegroup group1 if not exists on
nc1,
nc2
;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/index-selection/inverted-index-word-jaccard/inverted-index-word-jaccard.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/index-selection/inverted-index-word-jaccard/inverted-index-word-jaccard.1.ddl.sqlpp
index 83def9f..0f74b37 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/index-selection/inverted-index-word-jaccard/inverted-index-word-jaccard.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/index-selection/inverted-index-word-jaccard/inverted-index-word-jaccard.1.ddl.sqlpp
@@ -32,7 +32,7 @@
misc : string
}
-create nodegroup group1 if not exists on
+create nodegroup group1 if not exists on
nc1,
nc2
;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/index-selection/orders-index-custkey-open/orders-index-custkey-open.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/index-selection/orders-index-custkey-open/orders-index-custkey-open.1.ddl.sqlpp
index c2a5bc4..43a2f64 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/index-selection/orders-index-custkey-open/orders-index-custkey-open.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/index-selection/orders-index-custkey-open/orders-index-custkey-open.1.ddl.sqlpp
@@ -36,7 +36,7 @@
o_comment : string
}
-create nodegroup group1 if not exists on
+create nodegroup group1 if not exists on
nc1,
nc2
;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/leftouterjoin/query_issue285-2/query_issue285-2.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/leftouterjoin/query_issue285-2/query_issue285-2.3.query.sqlpp
index bdd287e..f89a2e5 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/leftouterjoin/query_issue285-2/query_issue285-2.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/leftouterjoin/query_issue285-2/query_issue285-2.3.query.sqlpp
@@ -18,13 +18,13 @@
*/
/*
* Description : Left-outer joins two datasets, DBLP and CSX, based on their title.
- * DBLP has a secondary btree index on title, and given the 'indexnl' hint
+ * DBLP has a secondary btree index on title, and given the 'indexnl' hint
* we expect the join to be transformed into an indexed nested-loop join.
*
- * TODO(@Sattam): given the 'indexnl' hint
+ * TODO(@Sattam): given the 'indexnl' hint
* we expect the join to be transformed into an indexed nested-loop join.
- *
- * regression test 2 for issue 285--having an order by and limit for the outer loop relation
+ *
+ * regression test 2 for issue 285--having an order by and limit for the outer loop relation
*
* Success : Yes
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/leftouterjoin/query_issue285/query_issue285.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/leftouterjoin/query_issue285/query_issue285.3.query.sqlpp
index 0b5a434..f58e462 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/leftouterjoin/query_issue285/query_issue285.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/leftouterjoin/query_issue285/query_issue285.3.query.sqlpp
@@ -18,13 +18,13 @@
*/
/*
* Description : Left-outer joins two datasets, DBLP and CSX, based on their title.
- * DBLP has a secondary btree index on title, and given the 'indexnl' hint
+ * DBLP has a secondary btree index on title, and given the 'indexnl' hint
* we expect the join to be transformed into an indexed nested-loop join.
*
- * TODO(@Sattam): given the 'indexnl' hint
+ * TODO(@Sattam): given the 'indexnl' hint
* we expect the join to be transformed into an indexed nested-loop join.
- *
- * regression test for issue 285--having an order by for the outer loop relation
+ *
+ * regression test for issue 285--having an order by for the outer loop relation
* Success : Yes
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/list/listify_01/listify_01.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/list/listify_01/listify_01.3.query.sqlpp
index fe54bab..79d1c29 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/list/listify_01/listify_01.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/list/listify_01/listify_01.3.query.sqlpp
@@ -20,6 +20,6 @@
use test;
-select element token
-from [1,2,3] as token
-;
+let token_list =
+ (from [1, 2, 3] as token select element token)
+select element token_list;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/list/listify_02/listify_02.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/list/listify_02/listify_02.3.query.sqlpp
index 31b5eaf..2876797 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/list/listify_02/listify_02.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/list/listify_02/listify_02.3.query.sqlpp
@@ -20,6 +20,6 @@
use test;
-select element token
-from ['foo','bar'] as token
-;
+let token_list =
+ (from ['foo', 'bar'] as token select element token)
+select element token_list;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/list/query-issue428/query-issue428.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/list/query-issue428/query-issue428.3.query.sqlpp
index 1d3925d..e9afb2f 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/list/query-issue428/query-issue428.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/list/query-issue428/query-issue428.3.query.sqlpp
@@ -18,6 +18,10 @@
*/
/*
* Description : This test case is to verify the fix for issue400
+ : https://code.google.com/p/asterixdb/issues/detail?id=400
+ * Expected Res : Success
+ * Date : 8th May 2013
+ */
select element some a1 in a,
b1 in b satisfies (a1 < b1)
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/misc/groupby-orderby-count/groupby-orderby-count.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/misc/groupby-orderby-count/groupby-orderby-count.3.query.sqlpp
index 9a10d27..3ff8376 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/misc/groupby-orderby-count/groupby-orderby-count.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/misc/groupby-orderby-count/groupby-orderby-count.3.query.sqlpp
@@ -22,8 +22,7 @@
select element {'word':tok,'count':twitter.count(token)}
from TwitterData as t,
- tokens as token
-with tokens as twitter."word-tokens"(t.text)
+ twitter."word-tokens"(t.text) as token
group by token as tok
order by twitter.count(token) desc,tok
;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-index-dml/delete-from-loaded-dataset-with-index/delete-from-loaded-dataset-with-index.5.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-index-dml/delete-from-loaded-dataset-with-index/delete-from-loaded-dataset-with-index.5.query.sqlpp
index 71b8ac8..8ff571c 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-index-dml/delete-from-loaded-dataset-with-index/delete-from-loaded-dataset-with-index.5.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-index-dml/delete-from-loaded-dataset-with-index/delete-from-loaded-dataset-with-index.5.query.sqlpp
@@ -23,4 +23,5 @@
select element c
from TweetMessages as c
where (c.user.statuses_count < 473)
+order by c.tweetid
;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-index-dml/insert-into-loaded-dataset-with-index_02/insert-into-loaded-dataset-with-index_02.5.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-index-dml/insert-into-loaded-dataset-with-index_02/insert-into-loaded-dataset-with-index_02.5.query.sqlpp
index 0311edd..f551c93 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-index-dml/insert-into-loaded-dataset-with-index_02/insert-into-loaded-dataset-with-index_02.5.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-index-dml/insert-into-loaded-dataset-with-index_02/insert-into-loaded-dataset-with-index_02.5.query.sqlpp
@@ -23,4 +23,5 @@
select element c
from TweetMessages as c
where ((c.user.name < 'Nathan Giesen') and (c.user.statuses_count < 473))
+order by c.tweetid
;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-index/external-indexing/adm-format/adm-format.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-index/external-indexing/adm-format/adm-format.1.ddl.sqlpp
index edc8dee..6f69b8b 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-index/external-indexing/adm-format/adm-format.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-index/external-indexing/adm-format/adm-format.1.ddl.sqlpp
@@ -18,6 +18,11 @@
*/
/*
* Description : Create an external dataset that contains records stored with text hdfs file format.
+ Build an index over the external dataset age attribute
+ Perform a query over the dataset using the index.
+* Expected Res : Success
+* Date : 3rd Jan 2014
+*/
drop database test if exists;
create database test;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-index/external-indexing/adm-format/adm-format.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-index/external-indexing/adm-format/adm-format.2.update.sqlpp
index 5964b88..7b2e6a3 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-index/external-indexing/adm-format/adm-format.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-index/external-indexing/adm-format/adm-format.2.update.sqlpp
@@ -18,4 +18,8 @@
*/
/*
* Description : Create an external dataset that contains records stored with text hdfs file format.
-
+ Build an index over the external dataset age attribute
+ Perform a query over the dataset using the index.
+* Expected Res : Success
+* Date : 3rd Jan 2014
+*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-index/external-indexing/adm-format/adm-format.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-index/external-indexing/adm-format/adm-format.3.query.sqlpp
index 6f0d270..59ea084 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-index/external-indexing/adm-format/adm-format.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-index/external-indexing/adm-format/adm-format.3.query.sqlpp
@@ -18,6 +18,11 @@
*/
/*
* Description : Create an external dataset that contains records stored with text hdfs file format.
+ Build an index over the external dataset age attribute
+ Perform a query over the dataset using the index.
+* Expected Res : Success
+* Date : 3rd Jan 2014
+*/
use test;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-index/external-indexing/leftouterjoin-rtree/leftouterjoin-rtree.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-index/external-indexing/leftouterjoin-rtree/leftouterjoin-rtree.1.ddl.sqlpp
index 9e32a84..c2f0062 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-index/external-indexing/leftouterjoin-rtree/leftouterjoin-rtree.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-index/external-indexing/leftouterjoin-rtree/leftouterjoin-rtree.1.ddl.sqlpp
@@ -18,7 +18,7 @@
*/
/*
* Description : Test that left-outer-join may use two available indexes, one for primary index in prob subtree and another for secondary rtree index in index subtree.
- * Issue : 730, 741
+ * Issue : 730, 741
* Expected Res : Success
* Date : 8th May 2014
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-index/external-indexing/leftouterjoin-rtree/leftouterjoin-rtree.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-index/external-indexing/leftouterjoin-rtree/leftouterjoin-rtree.3.query.sqlpp
index 222d5d8..e52aba9 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-index/external-indexing/leftouterjoin-rtree/leftouterjoin-rtree.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-index/external-indexing/leftouterjoin-rtree/leftouterjoin-rtree.3.query.sqlpp
@@ -18,7 +18,7 @@
*/
/*
* Description : Test that left-outer-join may use two available indexes, one for primary index in prob subtree and another for secondary rtree index in index subtree.
- * Issue : 730, 741
+ * Issue : 730, 741
* Expected Res : Success
* Date : 8th May 2014
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-index/external-indexing/leftouterjoin/leftouterjoin.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-index/external-indexing/leftouterjoin/leftouterjoin.1.ddl.sqlpp
index 92ff6da..4031626 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-index/external-indexing/leftouterjoin/leftouterjoin.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-index/external-indexing/leftouterjoin/leftouterjoin.1.ddl.sqlpp
@@ -18,7 +18,7 @@
*/
/*
* Description : Test that left-outer-join may use two available indexes, one for primary index in prob subtree and another for secondary btree index in index subtree.
- * Issue : 730, 741
+ * Issue : 730, 741
* Expected Res : Success
* Date : 8th May 2014
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-index/external-indexing/leftouterjoin/leftouterjoin.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-index/external-indexing/leftouterjoin/leftouterjoin.2.update.sqlpp
index 90607b2..df67ea3 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-index/external-indexing/leftouterjoin/leftouterjoin.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-index/external-indexing/leftouterjoin/leftouterjoin.2.update.sqlpp
@@ -18,7 +18,7 @@
*/
/*
* Description : Test that left-outer-join may use two available indexes, one for primary index in prob subtree and another for secondary btree index in index subtree.
- * Issue : 730, 741
+ * Issue : 730, 741
* Expected Res : Success
* Date : 8th May 2014
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-index/index-selection/btree-index-composite-key-mixed-intervals/btree-index-composite-key-mixed-intervals.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-index/index-selection/btree-index-composite-key-mixed-intervals/btree-index-composite-key-mixed-intervals.1.ddl.sqlpp
index 00e6a3f..90f4191 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-index/index-selection/btree-index-composite-key-mixed-intervals/btree-index-composite-key-mixed-intervals.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-index/index-selection/btree-index-composite-key-mixed-intervals/btree-index-composite-key-mixed-intervals.1.ddl.sqlpp
@@ -20,7 +20,7 @@
* Description : Test that BTree index is used in query plan
* : define the BTree index on a composite key (fname,lanme)
* : predicate => where $l.fname > "Julio" and $l.lname > "Mattocks" and
- * $l.fname <= "Micco" and $l.lname < "Vangieson"
+ * $l.fname <= "Micco" and $l.lname < "Vangieson"
* Expected Result : Success
* Issue : Issue 174
* Date : 5th Feb, 2013
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-index/index-selection/btree-index-composite-key-mixed-intervals/btree-index-composite-key-mixed-intervals.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-index/index-selection/btree-index-composite-key-mixed-intervals/btree-index-composite-key-mixed-intervals.2.update.sqlpp
index 51175a8..5933518 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-index/index-selection/btree-index-composite-key-mixed-intervals/btree-index-composite-key-mixed-intervals.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-index/index-selection/btree-index-composite-key-mixed-intervals/btree-index-composite-key-mixed-intervals.2.update.sqlpp
@@ -20,7 +20,7 @@
* Description : Test that BTree index is used in query plan
* : define the BTree index on a composite key (fname,lanme)
* : predicate => where $l.fname > "Julio" and $l.lname > "Mattocks" and
- * $l.fname <= "Micco" and $l.lname < "Vangieson"
+ * $l.fname <= "Micco" and $l.lname < "Vangieson"
* Expected Result : Success
* Issue : Issue 174
* Date : 5th Feb, 2013
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-index/index-selection/btree-index-composite-key-mixed-intervals/btree-index-composite-key-mixed-intervals.4.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-index/index-selection/btree-index-composite-key-mixed-intervals/btree-index-composite-key-mixed-intervals.4.query.sqlpp
index a3ed473..0d2122c 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-index/index-selection/btree-index-composite-key-mixed-intervals/btree-index-composite-key-mixed-intervals.4.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-index/index-selection/btree-index-composite-key-mixed-intervals/btree-index-composite-key-mixed-intervals.4.query.sqlpp
@@ -20,7 +20,7 @@
* Description : Test that BTree index is used in query plan
* : define the BTree index on a composite key (fname,lanme)
* : predicate => where $l.fname > "Julio" and $l.lname > "Mattocks" and
- * $l.fname <= "Micco" and $l.lname < "Vangieson"
+ * $l.fname <= "Micco" and $l.lname < "Vangieson"
* Expected Result : Success
* Issue : Issue 174
* Date : 5th Feb, 2013
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-index/index-selection/inverted-index-ngram-contains/inverted-index-ngram-contains.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-index/index-selection/inverted-index-ngram-contains/inverted-index-ngram-contains.1.ddl.sqlpp
index bf81d41..295e868 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-index/index-selection/inverted-index-ngram-contains/inverted-index-ngram-contains.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-index/index-selection/inverted-index-ngram-contains/inverted-index-ngram-contains.1.ddl.sqlpp
@@ -37,7 +37,7 @@
nested : DBLPTypetmp
}
-create nodegroup group1 if not exists on
+create nodegroup group1 if not exists on
nc1,
nc2
;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-index/index-selection/inverted-index-ngram-edit-distance-contains/inverted-index-ngram-edit-distance-contains.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-index/index-selection/inverted-index-ngram-edit-distance-contains/inverted-index-ngram-edit-distance-contains.1.ddl.sqlpp
index 850bbdf..9c5352e 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-index/index-selection/inverted-index-ngram-edit-distance-contains/inverted-index-ngram-edit-distance-contains.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-index/index-selection/inverted-index-ngram-edit-distance-contains/inverted-index-ngram-edit-distance-contains.1.ddl.sqlpp
@@ -32,7 +32,7 @@
misc : string
}
-create nodegroup group1 if not exists on
+create nodegroup group1 if not exists on
nc1,
nc2
;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-index/index-selection/inverted-index-ngram-edit-distance-panic/inverted-index-ngram-edit-distance-panic.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-index/index-selection/inverted-index-ngram-edit-distance-panic/inverted-index-ngram-edit-distance-panic.1.ddl.sqlpp
index bf81d41..295e868 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-index/index-selection/inverted-index-ngram-edit-distance-panic/inverted-index-ngram-edit-distance-panic.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-index/index-selection/inverted-index-ngram-edit-distance-panic/inverted-index-ngram-edit-distance-panic.1.ddl.sqlpp
@@ -37,7 +37,7 @@
nested : DBLPTypetmp
}
-create nodegroup group1 if not exists on
+create nodegroup group1 if not exists on
nc1,
nc2
;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-index/index-selection/inverted-index-ngram-edit-distance-word-tokens/inverted-index-ngram-edit-distance-word-tokens.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-index/index-selection/inverted-index-ngram-edit-distance-word-tokens/inverted-index-ngram-edit-distance-word-tokens.1.ddl.sqlpp
index e204dd1..aa07828 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-index/index-selection/inverted-index-ngram-edit-distance-word-tokens/inverted-index-ngram-edit-distance-word-tokens.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-index/index-selection/inverted-index-ngram-edit-distance-word-tokens/inverted-index-ngram-edit-distance-word-tokens.1.ddl.sqlpp
@@ -32,7 +32,7 @@
misc : string
}
-create nodegroup group1 if not exists on
+create nodegroup group1 if not exists on
nc1,
nc2
;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-index/index-selection/inverted-index-ngram-edit-distance/inverted-index-ngram-edit-distance.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-index/index-selection/inverted-index-ngram-edit-distance/inverted-index-ngram-edit-distance.1.ddl.sqlpp
index bf81d41..295e868 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-index/index-selection/inverted-index-ngram-edit-distance/inverted-index-ngram-edit-distance.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-index/index-selection/inverted-index-ngram-edit-distance/inverted-index-ngram-edit-distance.1.ddl.sqlpp
@@ -37,7 +37,7 @@
nested : DBLPTypetmp
}
-create nodegroup group1 if not exists on
+create nodegroup group1 if not exists on
nc1,
nc2
;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-index/index-selection/inverted-index-ngram-jaccard/inverted-index-ngram-jaccard.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-index/index-selection/inverted-index-ngram-jaccard/inverted-index-ngram-jaccard.1.ddl.sqlpp
index bf81d41..295e868 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-index/index-selection/inverted-index-ngram-jaccard/inverted-index-ngram-jaccard.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-index/index-selection/inverted-index-ngram-jaccard/inverted-index-ngram-jaccard.1.ddl.sqlpp
@@ -37,7 +37,7 @@
nested : DBLPTypetmp
}
-create nodegroup group1 if not exists on
+create nodegroup group1 if not exists on
nc1,
nc2
;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-index/index-selection/inverted-index-olist-edit-distance-panic/inverted-index-olist-edit-distance-panic.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-index/index-selection/inverted-index-olist-edit-distance-panic/inverted-index-olist-edit-distance-panic.1.ddl.sqlpp
index 7596762..e9f27e4 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-index/index-selection/inverted-index-olist-edit-distance-panic/inverted-index-olist-edit-distance-panic.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-index/index-selection/inverted-index-olist-edit-distance-panic/inverted-index-olist-edit-distance-panic.1.ddl.sqlpp
@@ -49,7 +49,7 @@
nested : CustomerTypetmp
}
-create nodegroup group1 if not exists on
+create nodegroup group1 if not exists on
nc1
;
create table Customerstmp(CustomerTypetmp) primary key cid on group1;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-index/index-selection/inverted-index-olist-edit-distance/inverted-index-olist-edit-distance.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-index/index-selection/inverted-index-olist-edit-distance/inverted-index-olist-edit-distance.1.ddl.sqlpp
index 7596762..e9f27e4 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-index/index-selection/inverted-index-olist-edit-distance/inverted-index-olist-edit-distance.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-index/index-selection/inverted-index-olist-edit-distance/inverted-index-olist-edit-distance.1.ddl.sqlpp
@@ -49,7 +49,7 @@
nested : CustomerTypetmp
}
-create nodegroup group1 if not exists on
+create nodegroup group1 if not exists on
nc1
;
create table Customerstmp(CustomerTypetmp) primary key cid on group1;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-index/index-selection/inverted-index-olist-jaccard/inverted-index-olist-jaccard.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-index/index-selection/inverted-index-olist-jaccard/inverted-index-olist-jaccard.1.ddl.sqlpp
index 7596762..e9f27e4 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-index/index-selection/inverted-index-olist-jaccard/inverted-index-olist-jaccard.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-index/index-selection/inverted-index-olist-jaccard/inverted-index-olist-jaccard.1.ddl.sqlpp
@@ -49,7 +49,7 @@
nested : CustomerTypetmp
}
-create nodegroup group1 if not exists on
+create nodegroup group1 if not exists on
nc1
;
create table Customerstmp(CustomerTypetmp) primary key cid on group1;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-index/index-selection/inverted-index-ulist-jaccard/inverted-index-ulist-jaccard.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-index/index-selection/inverted-index-ulist-jaccard/inverted-index-ulist-jaccard.1.ddl.sqlpp
index af3d325..f18a587 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-index/index-selection/inverted-index-ulist-jaccard/inverted-index-ulist-jaccard.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-index/index-selection/inverted-index-ulist-jaccard/inverted-index-ulist-jaccard.1.ddl.sqlpp
@@ -49,7 +49,7 @@
nested : CustomerTypetmp
}
-create nodegroup group1 if not exists on
+create nodegroup group1 if not exists on
nc1
;
create table Customerstmp(CustomerTypetmp) primary key cid on group1;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-index/index-selection/inverted-index-word-contains/inverted-index-word-contains.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-index/index-selection/inverted-index-word-contains/inverted-index-word-contains.1.ddl.sqlpp
index bf81d41..295e868 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-index/index-selection/inverted-index-word-contains/inverted-index-word-contains.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-index/index-selection/inverted-index-word-contains/inverted-index-word-contains.1.ddl.sqlpp
@@ -37,7 +37,7 @@
nested : DBLPTypetmp
}
-create nodegroup group1 if not exists on
+create nodegroup group1 if not exists on
nc1,
nc2
;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-index/index-selection/inverted-index-word-jaccard/inverted-index-word-jaccard.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-index/index-selection/inverted-index-word-jaccard/inverted-index-word-jaccard.1.ddl.sqlpp
index bf81d41..295e868 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-index/index-selection/inverted-index-word-jaccard/inverted-index-word-jaccard.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-index/index-selection/inverted-index-word-jaccard/inverted-index-word-jaccard.1.ddl.sqlpp
@@ -37,7 +37,7 @@
nested : DBLPTypetmp
}
-create nodegroup group1 if not exists on
+create nodegroup group1 if not exists on
nc1,
nc2
;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/external-indexing/adm-format/adm-format.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/external-indexing/adm-format/adm-format.1.ddl.sqlpp
index ffac14b..549036b 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/external-indexing/adm-format/adm-format.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/external-indexing/adm-format/adm-format.1.ddl.sqlpp
@@ -18,7 +18,11 @@
*/
/*
* Description : Create an external dataset that contains records stored with text hdfs file format.
-
+ Build an index over the external dataset age attribute
+ Perform a query over the dataset using the index.
+* Expected Res : Success
+* Date : 3rd Jan 2014
+*/
drop database test if exists;
create database test;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/external-indexing/adm-format/adm-format.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/external-indexing/adm-format/adm-format.2.update.sqlpp
index 5964b88..026742b 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/external-indexing/adm-format/adm-format.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/external-indexing/adm-format/adm-format.2.update.sqlpp
@@ -18,4 +18,8 @@
*/
/*
* Description : Create an external dataset that contains records stored with text hdfs file format.
-
+ Build an index over the external dataset age attribute
+ Perform a query over the dataset using the index.
+* Expected Res : Success
+* Date : 3rd Jan 2014
+*/
\ No newline at end of file
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/external-indexing/adm-format/adm-format.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/external-indexing/adm-format/adm-format.3.query.sqlpp
index 6f0d270..59ea084 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/external-indexing/adm-format/adm-format.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/external-indexing/adm-format/adm-format.3.query.sqlpp
@@ -18,6 +18,11 @@
*/
/*
* Description : Create an external dataset that contains records stored with text hdfs file format.
+ Build an index over the external dataset age attribute
+ Perform a query over the dataset using the index.
+* Expected Res : Success
+* Date : 3rd Jan 2014
+*/
use test;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/external-indexing/leftouterjoin-rtree/leftouterjoin-rtree.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/external-indexing/leftouterjoin-rtree/leftouterjoin-rtree.1.ddl.sqlpp
index 3c905e5..d48035e 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/external-indexing/leftouterjoin-rtree/leftouterjoin-rtree.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/external-indexing/leftouterjoin-rtree/leftouterjoin-rtree.1.ddl.sqlpp
@@ -18,7 +18,7 @@
*/
/*
* Description : Test that left-outer-join may use two available indexes, one for primary index in prob subtree and another for secondary rtree index in index subtree.
- * Issue : 730, 741
+ * Issue : 730, 741
* Expected Res : Success
* Date : 8th May 2014
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/external-indexing/leftouterjoin-rtree/leftouterjoin-rtree.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/external-indexing/leftouterjoin-rtree/leftouterjoin-rtree.3.query.sqlpp
index 222d5d8..e52aba9 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/external-indexing/leftouterjoin-rtree/leftouterjoin-rtree.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/external-indexing/leftouterjoin-rtree/leftouterjoin-rtree.3.query.sqlpp
@@ -18,7 +18,7 @@
*/
/*
* Description : Test that left-outer-join may use two available indexes, one for primary index in prob subtree and another for secondary rtree index in index subtree.
- * Issue : 730, 741
+ * Issue : 730, 741
* Expected Res : Success
* Date : 8th May 2014
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/external-indexing/leftouterjoin/leftouterjoin.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/external-indexing/leftouterjoin/leftouterjoin.1.ddl.sqlpp
index 24011dd..6c4603b 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/external-indexing/leftouterjoin/leftouterjoin.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/external-indexing/leftouterjoin/leftouterjoin.1.ddl.sqlpp
@@ -18,7 +18,7 @@
*/
/*
* Description : Test that left-outer-join may use two available indexes, one for primary index in prob subtree and another for secondary btree index in index subtree.
- * Issue : 730, 741
+ * Issue : 730, 741
* Expected Res : Success
* Date : 8th May 2014
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/external-indexing/leftouterjoin/leftouterjoin.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/external-indexing/leftouterjoin/leftouterjoin.2.update.sqlpp
index 90607b2..df67ea3 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/external-indexing/leftouterjoin/leftouterjoin.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/external-indexing/leftouterjoin/leftouterjoin.2.update.sqlpp
@@ -18,7 +18,7 @@
*/
/*
* Description : Test that left-outer-join may use two available indexes, one for primary index in prob subtree and another for secondary btree index in index subtree.
- * Issue : 730, 741
+ * Issue : 730, 741
* Expected Res : Success
* Date : 8th May 2014
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/highly-open-highly-nested/bottom-closed-top-closed/bottom-closed-top-closed.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/highly-open-highly-nested/bottom-closed-top-closed/bottom-closed-top-closed.1.ddl.sqlpp
index 99a8166..709c3ec 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/highly-open-highly-nested/bottom-closed-top-closed/bottom-closed-top-closed.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/highly-open-highly-nested/bottom-closed-top-closed/bottom-closed-top-closed.1.ddl.sqlpp
@@ -18,6 +18,12 @@
*/
/*
* Description : Create a highly nested datastructure that uses opened and closed datasets
+ at different levels. Use open-nested indexes at every level
+ to copy from one data set upwards
+ check the final result to see if copies were successful all the way up
+* Expected Res : Success
+* Date : 20 Oct 2014
+*/
drop database test if exists;
create database test;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/highly-open-highly-nested/bottom-closed-top-closed/bottom-closed-top-closed.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/highly-open-highly-nested/bottom-closed-top-closed/bottom-closed-top-closed.2.update.sqlpp
index f5277f6..edff2b7 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/highly-open-highly-nested/bottom-closed-top-closed/bottom-closed-top-closed.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/highly-open-highly-nested/bottom-closed-top-closed/bottom-closed-top-closed.2.update.sqlpp
@@ -18,6 +18,12 @@
*/
/*
* Description : Create a highly nested datastructure that uses opened and closed datasets
+ at different levels. Use open-nested indexes at every level
+ to copy from one data set upwards
+ check the final result to see if copies were successful all the way up
+* Expected Res : Success
+* Date : 20 Oct 2014
+*/
use test;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/highly-open-highly-nested/bottom-closed-top-closed/bottom-closed-top-closed.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/highly-open-highly-nested/bottom-closed-top-closed/bottom-closed-top-closed.3.query.sqlpp
index 59c0496..59ae01f 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/highly-open-highly-nested/bottom-closed-top-closed/bottom-closed-top-closed.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/highly-open-highly-nested/bottom-closed-top-closed/bottom-closed-top-closed.3.query.sqlpp
@@ -18,6 +18,12 @@
*/
/*
* Description : Create a highly nested datastructure that uses opened and closed datasets
+ at different levels. Use open-nested indexes at every level
+ to copy from one data set upwards
+ check the final result to see if copies were successful all the way up
+* Expected Res : Success
+* Date : 20 Oct 2014
+*/
use test;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/highly-open-highly-nested/bottom-closed-top-open/bottom-closed-top-open.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/highly-open-highly-nested/bottom-closed-top-open/bottom-closed-top-open.1.ddl.sqlpp
index f5d7d9e..900babc 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/highly-open-highly-nested/bottom-closed-top-open/bottom-closed-top-open.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/highly-open-highly-nested/bottom-closed-top-open/bottom-closed-top-open.1.ddl.sqlpp
@@ -18,6 +18,12 @@
*/
/*
* Description : Create a highly nested datastructure that uses opened and closed datasets
+ at different levels. Use open-nested indexes at every level
+ to copy from one data set upwards
+ check the final result to see if copies were successful all the way up
+* Expected Res : Success
+* Date : 20 Oct 2014
+*/
drop database test if exists;
create database test;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/highly-open-highly-nested/bottom-closed-top-open/bottom-closed-top-open.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/highly-open-highly-nested/bottom-closed-top-open/bottom-closed-top-open.2.update.sqlpp
index f5277f6..edff2b7 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/highly-open-highly-nested/bottom-closed-top-open/bottom-closed-top-open.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/highly-open-highly-nested/bottom-closed-top-open/bottom-closed-top-open.2.update.sqlpp
@@ -18,6 +18,12 @@
*/
/*
* Description : Create a highly nested datastructure that uses opened and closed datasets
+ at different levels. Use open-nested indexes at every level
+ to copy from one data set upwards
+ check the final result to see if copies were successful all the way up
+* Expected Res : Success
+* Date : 20 Oct 2014
+*/
use test;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/highly-open-highly-nested/bottom-closed-top-open/bottom-closed-top-open.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/highly-open-highly-nested/bottom-closed-top-open/bottom-closed-top-open.3.query.sqlpp
index 59c0496..59ae01f 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/highly-open-highly-nested/bottom-closed-top-open/bottom-closed-top-open.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/highly-open-highly-nested/bottom-closed-top-open/bottom-closed-top-open.3.query.sqlpp
@@ -18,6 +18,12 @@
*/
/*
* Description : Create a highly nested datastructure that uses opened and closed datasets
+ at different levels. Use open-nested indexes at every level
+ to copy from one data set upwards
+ check the final result to see if copies were successful all the way up
+* Expected Res : Success
+* Date : 20 Oct 2014
+*/
use test;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/highly-open-highly-nested/bottom-open-top-closed/bottom-open-top-closed.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/highly-open-highly-nested/bottom-open-top-closed/bottom-open-top-closed.1.ddl.sqlpp
index c2837cb..a8d670a 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/highly-open-highly-nested/bottom-open-top-closed/bottom-open-top-closed.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/highly-open-highly-nested/bottom-open-top-closed/bottom-open-top-closed.1.ddl.sqlpp
@@ -18,6 +18,12 @@
*/
/*
* Description : Create a highly nested datastructure that uses opened and closed datasets
+ at different levels. Use open-nested indexes at every level
+ to copy from one data set upwards
+ check the final result to see if copies were successful all the way up
+* Expected Res : Success
+* Date : 20 Oct 2014
+*/
drop database test if exists;
create database test;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/highly-open-highly-nested/bottom-open-top-closed/bottom-open-top-closed.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/highly-open-highly-nested/bottom-open-top-closed/bottom-open-top-closed.2.update.sqlpp
index f5277f6..edff2b7 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/highly-open-highly-nested/bottom-open-top-closed/bottom-open-top-closed.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/highly-open-highly-nested/bottom-open-top-closed/bottom-open-top-closed.2.update.sqlpp
@@ -18,6 +18,12 @@
*/
/*
* Description : Create a highly nested datastructure that uses opened and closed datasets
+ at different levels. Use open-nested indexes at every level
+ to copy from one data set upwards
+ check the final result to see if copies were successful all the way up
+* Expected Res : Success
+* Date : 20 Oct 2014
+*/
use test;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/highly-open-highly-nested/bottom-open-top-closed/bottom-open-top-closed.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/highly-open-highly-nested/bottom-open-top-closed/bottom-open-top-closed.3.query.sqlpp
index 59c0496..59ae01f 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/highly-open-highly-nested/bottom-open-top-closed/bottom-open-top-closed.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/highly-open-highly-nested/bottom-open-top-closed/bottom-open-top-closed.3.query.sqlpp
@@ -18,6 +18,12 @@
*/
/*
* Description : Create a highly nested datastructure that uses opened and closed datasets
+ at different levels. Use open-nested indexes at every level
+ to copy from one data set upwards
+ check the final result to see if copies were successful all the way up
+* Expected Res : Success
+* Date : 20 Oct 2014
+*/
use test;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/highly-open-highly-nested/bottom-open-top-open/bottom-open-top-open.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/highly-open-highly-nested/bottom-open-top-open/bottom-open-top-open.1.ddl.sqlpp
index 7b3ff12..3b00450 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/highly-open-highly-nested/bottom-open-top-open/bottom-open-top-open.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/highly-open-highly-nested/bottom-open-top-open/bottom-open-top-open.1.ddl.sqlpp
@@ -18,6 +18,12 @@
*/
/*
* Description : Create a highly nested datastructure that uses opened and closed datasets
+ at different levels. Use open-nested indexes at every level
+ to copy from one data set upwards
+ check the final result to see if copies were successful all the way up
+* Expected Res : Success
+* Date : 20 Oct 2014
+*/
drop database test if exists;
create database test;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/highly-open-highly-nested/bottom-open-top-open/bottom-open-top-open.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/highly-open-highly-nested/bottom-open-top-open/bottom-open-top-open.2.update.sqlpp
index f5277f6..edff2b7 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/highly-open-highly-nested/bottom-open-top-open/bottom-open-top-open.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/highly-open-highly-nested/bottom-open-top-open/bottom-open-top-open.2.update.sqlpp
@@ -18,6 +18,12 @@
*/
/*
* Description : Create a highly nested datastructure that uses opened and closed datasets
+ at different levels. Use open-nested indexes at every level
+ to copy from one data set upwards
+ check the final result to see if copies were successful all the way up
+* Expected Res : Success
+* Date : 20 Oct 2014
+*/
use test;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/highly-open-highly-nested/bottom-open-top-open/bottom-open-top-open.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/highly-open-highly-nested/bottom-open-top-open/bottom-open-top-open.3.query.sqlpp
index 59c0496..59ae01f 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/highly-open-highly-nested/bottom-open-top-open/bottom-open-top-open.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/highly-open-highly-nested/bottom-open-top-open/bottom-open-top-open.3.query.sqlpp
@@ -18,6 +18,12 @@
*/
/*
* Description : Create a highly nested datastructure that uses opened and closed datasets
+ at different levels. Use open-nested indexes at every level
+ to copy from one data set upwards
+ check the final result to see if copies were successful all the way up
+* Expected Res : Success
+* Date : 20 Oct 2014
+*/
use test;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/index-join/rtree-spatial-intersect-point/rtree-spatial-intersect-point.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/index-join/rtree-spatial-intersect-point/rtree-spatial-intersect-point.2.update.sqlpp
index d9c2f5c..471059d 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/index-join/rtree-spatial-intersect-point/rtree-spatial-intersect-point.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/index-join/rtree-spatial-intersect-point/rtree-spatial-intersect-point.2.update.sqlpp
@@ -18,7 +18,7 @@
*/
/*
* Description : Joins two datasets on the intersection of their point attributes.
- * The dataset 'MyData1' has an open enforced RTree index, and we expect the
+ * The dataset 'MyData1' has an open enforced RTree index, and we expect the
* join to be transformed into an indexed nested-loop join.
* Success : Yes
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/index-leftouterjoin/probe-pidx-with-join-invidx-sidx2/probe-pidx-with-join-invidx-sidx2.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/index-leftouterjoin/probe-pidx-with-join-invidx-sidx2/probe-pidx-with-join-invidx-sidx2.1.ddl.sqlpp
index 7745385..9645e33 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/index-leftouterjoin/probe-pidx-with-join-invidx-sidx2/probe-pidx-with-join-invidx-sidx2.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/index-leftouterjoin/probe-pidx-with-join-invidx-sidx2/probe-pidx-with-join-invidx-sidx2.1.ddl.sqlpp
@@ -18,7 +18,7 @@
*/
/*
* Description : Test that left-outer-join may use two available indexes, one for primary index in prob subtree and another for secondary btree index in index subtree.
- * Issue : 730, 741
+ * Issue : 730, 741
* Expected Res : Success
* Date : 8th May 2014
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/index-selection/btree-index-composite-key-mixed-intervals/btree-index-composite-key-mixed-intervals.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/index-selection/btree-index-composite-key-mixed-intervals/btree-index-composite-key-mixed-intervals.1.ddl.sqlpp
index 7693a91..b7fac3a 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/index-selection/btree-index-composite-key-mixed-intervals/btree-index-composite-key-mixed-intervals.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/index-selection/btree-index-composite-key-mixed-intervals/btree-index-composite-key-mixed-intervals.1.ddl.sqlpp
@@ -20,7 +20,7 @@
* Description : Test that BTree index is used in query plan
* : define the BTree index on a composite key (fname,lanme)
* : predicate => where $l.fname > "Julio" and $l.lname > "Mattocks" and
- * $l.fname <= "Micco" and $l.lname < "Vangieson"
+ * $l.fname <= "Micco" and $l.lname < "Vangieson"
* Expected Result : Success
* Issue : Issue 174
* Date : 5th Feb, 2013
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/index-selection/btree-index-composite-key-mixed-intervals/btree-index-composite-key-mixed-intervals.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/index-selection/btree-index-composite-key-mixed-intervals/btree-index-composite-key-mixed-intervals.2.update.sqlpp
index ba8da01..90694a2 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/index-selection/btree-index-composite-key-mixed-intervals/btree-index-composite-key-mixed-intervals.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/index-selection/btree-index-composite-key-mixed-intervals/btree-index-composite-key-mixed-intervals.2.update.sqlpp
@@ -20,7 +20,7 @@
* Description : Test that BTree index is used in query plan
* : define the BTree index on a composite key (fname,lanme)
* : predicate => where $l.fname > "Julio" and $l.lname > "Mattocks" and
- * $l.fname <= "Micco" and $l.lname < "Vangieson"
+ * $l.fname <= "Micco" and $l.lname < "Vangieson"
* Expected Result : Success
* Issue : Issue 174
* Date : 5th Feb, 2013
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/index-selection/btree-index-composite-key-mixed-intervals/btree-index-composite-key-mixed-intervals.3.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/index-selection/btree-index-composite-key-mixed-intervals/btree-index-composite-key-mixed-intervals.3.ddl.sqlpp
index 30b4bd4..93c831d 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/index-selection/btree-index-composite-key-mixed-intervals/btree-index-composite-key-mixed-intervals.3.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/index-selection/btree-index-composite-key-mixed-intervals/btree-index-composite-key-mixed-intervals.3.ddl.sqlpp
@@ -20,7 +20,7 @@
* Description : Test that BTree index is used in query plan
* : define the BTree index on a composite key (fname,lanme)
* : predicate => where $l.fname > "Julio" and $l.lname > "Mattocks" and
- * $l.fname <= "Micco" and $l.lname < "Vangieson"
+ * $l.fname <= "Micco" and $l.lname < "Vangieson"
* Expected Result : Success
* Issue : Issue 174
* Date : 5th Feb, 2013
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/index-selection/btree-index-composite-key-mixed-intervals/btree-index-composite-key-mixed-intervals.4.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/index-selection/btree-index-composite-key-mixed-intervals/btree-index-composite-key-mixed-intervals.4.query.sqlpp
index a3ed473..0d2122c 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/index-selection/btree-index-composite-key-mixed-intervals/btree-index-composite-key-mixed-intervals.4.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/index-selection/btree-index-composite-key-mixed-intervals/btree-index-composite-key-mixed-intervals.4.query.sqlpp
@@ -20,7 +20,7 @@
* Description : Test that BTree index is used in query plan
* : define the BTree index on a composite key (fname,lanme)
* : predicate => where $l.fname > "Julio" and $l.lname > "Mattocks" and
- * $l.fname <= "Micco" and $l.lname < "Vangieson"
+ * $l.fname <= "Micco" and $l.lname < "Vangieson"
* Expected Result : Success
* Issue : Issue 174
* Date : 5th Feb, 2013
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/index-selection/inverted-index-ngram-contains/inverted-index-ngram-contains.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/index-selection/inverted-index-ngram-contains/inverted-index-ngram-contains.1.ddl.sqlpp
index e70dcf9..72e58cb 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/index-selection/inverted-index-ngram-contains/inverted-index-ngram-contains.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/index-selection/inverted-index-ngram-contains/inverted-index-ngram-contains.1.ddl.sqlpp
@@ -45,7 +45,7 @@
nested : DBLPOpenType
}
-create nodegroup group1 if not exists on
+create nodegroup group1 if not exists on
nc1,
nc2
;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/index-selection/inverted-index-ngram-edit-distance-contains/inverted-index-ngram-edit-distance-contains.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/index-selection/inverted-index-ngram-edit-distance-contains/inverted-index-ngram-edit-distance-contains.1.ddl.sqlpp
index 3c2893a..fc4795f 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/index-selection/inverted-index-ngram-edit-distance-contains/inverted-index-ngram-edit-distance-contains.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/index-selection/inverted-index-ngram-edit-distance-contains/inverted-index-ngram-edit-distance-contains.1.ddl.sqlpp
@@ -40,7 +40,7 @@
misc : string
}
-create nodegroup group1 if not exists on
+create nodegroup group1 if not exists on
nc1,
nc2
;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/index-selection/inverted-index-ngram-edit-distance-panic/inverted-index-ngram-edit-distance-panic.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/index-selection/inverted-index-ngram-edit-distance-panic/inverted-index-ngram-edit-distance-panic.1.ddl.sqlpp
index cc16f57..ea2dd11 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/index-selection/inverted-index-ngram-edit-distance-panic/inverted-index-ngram-edit-distance-panic.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/index-selection/inverted-index-ngram-edit-distance-panic/inverted-index-ngram-edit-distance-panic.1.ddl.sqlpp
@@ -45,7 +45,7 @@
nested : DBLPOpenType
}
-create nodegroup group1 if not exists on
+create nodegroup group1 if not exists on
nc1,
nc2
;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/index-selection/inverted-index-ngram-edit-distance-word-tokens/inverted-index-ngram-edit-distance-word-tokens.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/index-selection/inverted-index-ngram-edit-distance-word-tokens/inverted-index-ngram-edit-distance-word-tokens.1.ddl.sqlpp
index 3c2893a..fc4795f 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/index-selection/inverted-index-ngram-edit-distance-word-tokens/inverted-index-ngram-edit-distance-word-tokens.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/index-selection/inverted-index-ngram-edit-distance-word-tokens/inverted-index-ngram-edit-distance-word-tokens.1.ddl.sqlpp
@@ -40,7 +40,7 @@
misc : string
}
-create nodegroup group1 if not exists on
+create nodegroup group1 if not exists on
nc1,
nc2
;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/index-selection/inverted-index-ngram-edit-distance/inverted-index-ngram-edit-distance.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/index-selection/inverted-index-ngram-edit-distance/inverted-index-ngram-edit-distance.1.ddl.sqlpp
index cc16f57..ea2dd11 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/index-selection/inverted-index-ngram-edit-distance/inverted-index-ngram-edit-distance.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/index-selection/inverted-index-ngram-edit-distance/inverted-index-ngram-edit-distance.1.ddl.sqlpp
@@ -45,7 +45,7 @@
nested : DBLPOpenType
}
-create nodegroup group1 if not exists on
+create nodegroup group1 if not exists on
nc1,
nc2
;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/index-selection/inverted-index-ngram-jaccard/inverted-index-ngram-jaccard.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/index-selection/inverted-index-ngram-jaccard/inverted-index-ngram-jaccard.1.ddl.sqlpp
index e70dcf9..72e58cb 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/index-selection/inverted-index-ngram-jaccard/inverted-index-ngram-jaccard.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/index-selection/inverted-index-ngram-jaccard/inverted-index-ngram-jaccard.1.ddl.sqlpp
@@ -45,7 +45,7 @@
nested : DBLPOpenType
}
-create nodegroup group1 if not exists on
+create nodegroup group1 if not exists on
nc1,
nc2
;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/index-selection/inverted-index-word-contains/inverted-index-word-contains.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/index-selection/inverted-index-word-contains/inverted-index-word-contains.1.ddl.sqlpp
index e70dcf9..72e58cb 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/index-selection/inverted-index-word-contains/inverted-index-word-contains.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/index-selection/inverted-index-word-contains/inverted-index-word-contains.1.ddl.sqlpp
@@ -45,7 +45,7 @@
nested : DBLPOpenType
}
-create nodegroup group1 if not exists on
+create nodegroup group1 if not exists on
nc1,
nc2
;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/index-selection/inverted-index-word-jaccard/inverted-index-word-jaccard.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/index-selection/inverted-index-word-jaccard/inverted-index-word-jaccard.1.ddl.sqlpp
index e70dcf9..72e58cb 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/index-selection/inverted-index-word-jaccard/inverted-index-word-jaccard.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/nested-open-index/index-selection/inverted-index-word-jaccard/inverted-index-word-jaccard.1.ddl.sqlpp
@@ -45,7 +45,7 @@
nested : DBLPOpenType
}
-create nodegroup group1 if not exists on
+create nodegroup group1 if not exists on
nc1,
nc2
;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/nestrecords/nestrecord/nestrecord.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/nestrecords/nestrecord/nestrecord.1.ddl.sqlpp
index a31dbc5..f24ceaa 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/nestrecords/nestrecord/nestrecord.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/nestrecords/nestrecord/nestrecord.1.ddl.sqlpp
@@ -16,9 +16,9 @@
* specific language governing permissions and limitations
* under the License.
*/
-/*
+/*
* Test case Name : nestrecord.aql
- * Description : verify the static casting of nest record constants
+ * Description : verify the static casting of nest record constants
* Expected Result : Success
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/nestrecords/nestrecord/nestrecord.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/nestrecords/nestrecord/nestrecord.2.update.sqlpp
index c66d98a..381f24f 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/nestrecords/nestrecord/nestrecord.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/nestrecords/nestrecord/nestrecord.2.update.sqlpp
@@ -16,9 +16,9 @@
* specific language governing permissions and limitations
* under the License.
*/
-/*
+/*
* Test case Name : nestrecord.aql
- * Description : verify the static casting of nest record constants
+ * Description : verify the static casting of nest record constants
* Expected Result : Success
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/nestrecords/nestrecord/nestrecord.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/nestrecords/nestrecord/nestrecord.3.query.sqlpp
index 3bd908c..b8f210d 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/nestrecords/nestrecord/nestrecord.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/nestrecords/nestrecord/nestrecord.3.query.sqlpp
@@ -16,9 +16,9 @@
* specific language governing permissions and limitations
* under the License.
*/
-/*
+/*
* Test case Name : nestrecord.aql
- * Description : verify the static casting of nest record constants
+ * Description : verify the static casting of nest record constants
* Expected Result : Success
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/heterog-list-ordered01/heterog-list-ordered01.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/heterog-list-ordered01/heterog-list-ordered01.2.update.sqlpp
index 1cb1bb7..426f4b9 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/heterog-list-ordered01/heterog-list-ordered01.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/heterog-list-ordered01/heterog-list-ordered01.2.update.sqlpp
@@ -18,7 +18,7 @@
*/
/*
* Test case Name : heterog-list01.aql
- * Description : To test insertion of an array of objects into internal dataset.
+ * Description : To test insertion of an array of objects into internal dataset.
* : Heterogenous list construction.
* Success : Yes
* Date : 14th April 2012
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/heterog-list-ordered01/heterog-list-ordered01.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/heterog-list-ordered01/heterog-list-ordered01.3.query.sqlpp
index 7c8f5fe..e6cc421 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/heterog-list-ordered01/heterog-list-ordered01.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/heterog-list-ordered01/heterog-list-ordered01.3.query.sqlpp
@@ -18,7 +18,7 @@
*/
/*
* Test case Name : heterog-list01.aql
- * Description : To test insertion of an array of objects into internal dataset.
+ * Description : To test insertion of an array of objects into internal dataset.
* : Heterogenous list construction.
* Success : Yes
* Date : 14th April 2012
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/heterog-list01/heterog-list01.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/heterog-list01/heterog-list01.2.update.sqlpp
index a6adfa8..b95d695 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/heterog-list01/heterog-list01.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/heterog-list01/heterog-list01.2.update.sqlpp
@@ -18,7 +18,7 @@
*/
/*
* Test case Name : heterog-list01.aql
- * Description : To test insertion of an array of objects into internal dataset.
+ * Description : To test insertion of an array of objects into internal dataset.
* : Heterogenous list construction.
* Success : Yes
* Date : 14th April 2012
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/heterog-list01/heterog-list01.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/heterog-list01/heterog-list01.3.query.sqlpp
index 7c8f5fe..e6cc421 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/heterog-list01/heterog-list01.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/heterog-list01/heterog-list01.3.query.sqlpp
@@ -18,7 +18,7 @@
*/
/*
* Test case Name : heterog-list01.aql
- * Description : To test insertion of an array of objects into internal dataset.
+ * Description : To test insertion of an array of objects into internal dataset.
* : Heterogenous list construction.
* Success : Yes
* Date : 14th April 2012
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/heterog-list02/heterog-list02.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/heterog-list02/heterog-list02.1.ddl.sqlpp
index 50b7ddf..c9eba28 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/heterog-list02/heterog-list02.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/heterog-list02/heterog-list02.1.ddl.sqlpp
@@ -18,7 +18,7 @@
*/
/*
* Test case Name : heterog-list02.aql
- * Description : To test insertion of an array of arrays into internal dataset.
+ * Description : To test insertion of an array of arrays into internal dataset.
* : Heterogenous list construction.
* Success : Yes
* Date : 28th May 2012
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/heterog-list02/heterog-list02.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/heterog-list02/heterog-list02.2.update.sqlpp
index b6fa3f2..b61adec 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/heterog-list02/heterog-list02.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/heterog-list02/heterog-list02.2.update.sqlpp
@@ -18,7 +18,7 @@
*/
/*
* Test case Name : heterog-list02.aql
- * Description : To test insertion of an array of arrays into internal dataset.
+ * Description : To test insertion of an array of arrays into internal dataset.
* : Heterogenous list construction.
* Success : Yes
* Date : 28th May 2012
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/heterog-list02/heterog-list02.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/heterog-list02/heterog-list02.3.query.sqlpp
index 2c2ba4f..3f6de95 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/heterog-list02/heterog-list02.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/heterog-list02/heterog-list02.3.query.sqlpp
@@ -18,7 +18,7 @@
*/
/*
* Test case Name : heterog-list02.aql
- * Description : To test insertion of an array of arrays into internal dataset.
+ * Description : To test insertion of an array of arrays into internal dataset.
* : Heterogenous list construction.
* Success : Yes
* Date : 28th May 2012
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/heterog-list03/heterog-list03.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/heterog-list03/heterog-list03.1.ddl.sqlpp
index aad4c08..43fd32c 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/heterog-list03/heterog-list03.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/heterog-list03/heterog-list03.1.ddl.sqlpp
@@ -18,7 +18,7 @@
*/
/*
* Test case Name : heterog-list03.aql
- * Description : To test insertion of an array of arrays into internal dataset.
+ * Description : To test insertion of an array of arrays into internal dataset.
* : batters field is optional in this scenario.
* : Heterogenous list construction.
* Success : Yes
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/heterog-list03/heterog-list03.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/heterog-list03/heterog-list03.2.update.sqlpp
index 7962aec..856c0b7 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/heterog-list03/heterog-list03.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/heterog-list03/heterog-list03.2.update.sqlpp
@@ -18,7 +18,7 @@
*/
/*
* Test case Name : heterog-list03.aql
- * Description : To test insertion of an array of arrays into internal dataset.
+ * Description : To test insertion of an array of arrays into internal dataset.
* : batters field is optional in this scenario.
* : Heterogenous list construction.
* Success : Yes
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/heterog-list03/heterog-list03.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/heterog-list03/heterog-list03.3.query.sqlpp
index 54b03f6..dc17c0f 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/heterog-list03/heterog-list03.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/heterog-list03/heterog-list03.3.query.sqlpp
@@ -18,7 +18,7 @@
*/
/*
* Test case Name : heterog-list03.aql
- * Description : To test insertion of an array of arrays into internal dataset.
+ * Description : To test insertion of an array of arrays into internal dataset.
* : batters field is optional in this scenario.
* : Heterogenous list construction.
* Success : Yes
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/open-closed-01/open-closed-01.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/open-closed-01/open-closed-01.2.update.sqlpp
index c586545..940029a 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/open-closed-01/open-closed-01.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/open-closed-01/open-closed-01.2.update.sqlpp
@@ -16,9 +16,9 @@
* specific language governing permissions and limitations
* under the License.
*/
-/*
+/*
* Test case Name : open-closed-01.aql
- * Description : This test is intended to test insertion of additional data into an open type
+ * Description : This test is intended to test insertion of additional data into an open type
* Expected Result : Success
* Date : April 2 2012
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/open-closed-01/open-closed-01.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/open-closed-01/open-closed-01.3.query.sqlpp
index 618b04a..fe1aadf 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/open-closed-01/open-closed-01.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/open-closed-01/open-closed-01.3.query.sqlpp
@@ -16,9 +16,9 @@
* specific language governing permissions and limitations
* under the License.
*/
-/*
+/*
* Test case Name : open-closed-01.aql
- * Description : This test is intended to test insertion of additional data into an open type
+ * Description : This test is intended to test insertion of additional data into an open type
* Expected Result : Success
* Date : April 2 2012
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/open-closed-15/open-closed-15.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/open-closed-15/open-closed-15.1.ddl.sqlpp
index 04c4d4c..286e95e 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/open-closed-15/open-closed-15.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/open-closed-15/open-closed-15.1.ddl.sqlpp
@@ -17,7 +17,7 @@
* under the License.
*/
/*
- * Testcase Name : open-closed-15.aql
+ * Testcase Name : open-closed-15.aql
* Description : Test closed type dataset (with primitives).
* : Create Index on int 32 field
* : Insert data into primitives and retrieve data.
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/open-closed-15/open-closed-15.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/open-closed-15/open-closed-15.2.update.sqlpp
index 1fbb0c4..34ecbdf 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/open-closed-15/open-closed-15.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/open-closed-15/open-closed-15.2.update.sqlpp
@@ -17,7 +17,7 @@
* under the License.
*/
/*
- * Testcase Name : open-closed-15.aql
+ * Testcase Name : open-closed-15.aql
* Description : Test closed type dataset (with primitives).
* : Create Index on int 32 field
* : Insert data into primitives and retrieve data.
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/open-closed-15/open-closed-15.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/open-closed-15/open-closed-15.3.query.sqlpp
index c4d0946..e190e4d 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/open-closed-15/open-closed-15.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/open-closed-15/open-closed-15.3.query.sqlpp
@@ -17,7 +17,7 @@
* under the License.
*/
/*
- * Testcase Name : open-closed-15.aql
+ * Testcase Name : open-closed-15.aql
* Description : Test closed type dataset (with primitives).
* : Create Index on int 32 field
* : Insert data into primitives and retrieve data.
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/open-closed-16/open-closed-16.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/open-closed-16/open-closed-16.1.ddl.sqlpp
index 04167bc..4283cff 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/open-closed-16/open-closed-16.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/open-closed-16/open-closed-16.1.ddl.sqlpp
@@ -17,7 +17,7 @@
* under the License.
*/
/*
- * Testcase Name : open-closed-16.aql
+ * Testcase Name : open-closed-16.aql
* Description : Test open type dataset (with primitives).
* : Create Index on int 32 field
* : Insert data into primitives and retrieve data.
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/open-closed-16/open-closed-16.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/open-closed-16/open-closed-16.2.update.sqlpp
index ff0405a..ec885d8 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/open-closed-16/open-closed-16.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/open-closed-16/open-closed-16.2.update.sqlpp
@@ -17,7 +17,7 @@
* under the License.
*/
/*
- * Testcase Name : open-closed-16.aql
+ * Testcase Name : open-closed-16.aql
* Description : Test open type dataset (with primitives).
* : Create Index on int 32 field
* : Insert data into primitives and retrieve data.
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/open-closed-16/open-closed-16.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/open-closed-16/open-closed-16.3.query.sqlpp
index dce3c8f..1a2556e 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/open-closed-16/open-closed-16.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/open-closed-16/open-closed-16.3.query.sqlpp
@@ -17,7 +17,7 @@
* under the License.
*/
/*
- * Testcase Name : open-closed-16.aql
+ * Testcase Name : open-closed-16.aql
* Description : Test open type dataset (with primitives).
* : Create Index on int 32 field
* : Insert data into primitives and retrieve data.
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/open-closed-24/open-closed-24.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/open-closed-24/open-closed-24.2.update.sqlpp
index dfb639b..5f8401c 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/open-closed-24/open-closed-24.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/open-closed-24/open-closed-24.2.update.sqlpp
@@ -18,7 +18,7 @@
*/
/*
* Testcase Name : open-closed-24.aql
- * Description : Test use of additional data(open) field in create type statement
+ * Description : Test use of additional data(open) field in create type statement
* Success : Yes
* Date : 29th May 2012
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/open-closed-24/open-closed-24.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/open-closed-24/open-closed-24.3.query.sqlpp
index 9e6b3a4..c57ea70 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/open-closed-24/open-closed-24.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/open-closed-24/open-closed-24.3.query.sqlpp
@@ -18,7 +18,7 @@
*/
/*
* Testcase Name : open-closed-24.aql
- * Description : Test use of additional data(open) field in create type statement
+ * Description : Test use of additional data(open) field in create type statement
* Success : Yes
* Date : 29th May 2012
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/open-closed-25/open-closed-25.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/open-closed-25/open-closed-25.2.update.sqlpp
index ba78fb8..739feff 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/open-closed-25/open-closed-25.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/open-closed-25/open-closed-25.2.update.sqlpp
@@ -18,7 +18,7 @@
*/
/*
* Testcase Name : open-closed-25.aql
- * Description : Test use of additional data(open) optional field in create type statement
+ * Description : Test use of additional data(open) optional field in create type statement
* Success : Yes
* Date : 29th May 2012
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/open-closed-25/open-closed-25.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/open-closed-25/open-closed-25.3.query.sqlpp
index 10954f4..423f015 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/open-closed-25/open-closed-25.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/open-closed-25/open-closed-25.3.query.sqlpp
@@ -18,7 +18,7 @@
*/
/*
* Testcase Name : open-closed-25.aql
- * Description : Test use of additional data(open) optional field in create type statement
+ * Description : Test use of additional data(open) optional field in create type statement
* Success : Yes
* Date : 29th May 2012
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/open-closed-26/open-closed-26.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/open-closed-26/open-closed-26.2.update.sqlpp
index f7d51f6..a17d621 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/open-closed-26/open-closed-26.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/open-closed-26/open-closed-26.2.update.sqlpp
@@ -18,7 +18,7 @@
*/
/*
* Testcase Name : open-closed-26.aql
- * Description : Test use of additional data(open) optional field in create type statement
+ * Description : Test use of additional data(open) optional field in create type statement
* : No additional data is inserted (as it is declared as optional) from the insert statement.
* Success : Yes
* Date : 29th May 2012
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/open-closed-26/open-closed-26.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/open-closed-26/open-closed-26.3.query.sqlpp
index f309b1b..44c6315 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/open-closed-26/open-closed-26.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/open-closed-26/open-closed-26.3.query.sqlpp
@@ -18,7 +18,7 @@
*/
/*
* Testcase Name : open-closed-26.aql
- * Description : Test use of additional data(open) optional field in create type statement
+ * Description : Test use of additional data(open) optional field in create type statement
* : No additional data is inserted (as it is declared as optional) from the insert statement.
* Success : Yes
* Date : 29th May 2012
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/open-closed-31/open-closed-31.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/open-closed-31/open-closed-31.1.ddl.sqlpp
index 9102111..8b4cf68 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/open-closed-31/open-closed-31.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/open-closed-31/open-closed-31.1.ddl.sqlpp
@@ -18,7 +18,7 @@
*/
/*
* Test case Name : open-closed-31.aql
- * Description :
+ * Description :
* Success : Yes
* Date : 31st May 2012
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/open-closed-31/open-closed-31.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/open-closed-31/open-closed-31.2.update.sqlpp
index 209df99..a4f622f 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/open-closed-31/open-closed-31.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/open-closed-31/open-closed-31.2.update.sqlpp
@@ -18,7 +18,7 @@
*/
/*
* Test case Name : open-closed-31.aql
- * Description :
+ * Description :
* Success : Yes
* Date : 31st May 2012
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/open-closed-31/open-closed-31.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/open-closed-31/open-closed-31.3.query.sqlpp
index 9c2cf08..007420b 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/open-closed-31/open-closed-31.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/open-closed-31/open-closed-31.3.query.sqlpp
@@ -18,7 +18,7 @@
*/
/*
* Test case Name : open-closed-31.aql
- * Description :
+ * Description :
* Success : Yes
* Date : 31st May 2012
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/open-closed-32/open-closed-32.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/open-closed-32/open-closed-32.1.ddl.sqlpp
index 967ce00..4547e9d 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/open-closed-32/open-closed-32.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/open-closed-32/open-closed-32.1.ddl.sqlpp
@@ -18,7 +18,7 @@
*/
/*
* Test case Name : open-closed-32.aql
- * Description : INSERT into target (closed type) internal dataset by doing SELECT on (closed type) source internal dataset
+ * Description : INSERT into target (closed type) internal dataset by doing SELECT on (closed type) source internal dataset
* : then query the target internal dataset for data enclosed within {{ }} braces, in this case interests field.
* Success : Yes
* Date : 31st May 2012
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/open-closed-32/open-closed-32.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/open-closed-32/open-closed-32.2.update.sqlpp
index 6ce2059..b332714 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/open-closed-32/open-closed-32.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/open-closed-32/open-closed-32.2.update.sqlpp
@@ -18,7 +18,7 @@
*/
/*
* Test case Name : open-closed-32.aql
- * Description : INSERT into target (closed type) internal dataset by doing SELECT on (closed type) source internal dataset
+ * Description : INSERT into target (closed type) internal dataset by doing SELECT on (closed type) source internal dataset
* : then query the target internal dataset for data enclosed within {{ }} braces, in this case interests field.
* Success : Yes
* Date : 31st May 2012
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/open-closed-32/open-closed-32.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/open-closed-32/open-closed-32.3.query.sqlpp
index 8519bf5..efc9316 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/open-closed-32/open-closed-32.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/open-closed-32/open-closed-32.3.query.sqlpp
@@ -18,7 +18,7 @@
*/
/*
* Test case Name : open-closed-32.aql
- * Description : INSERT into target (closed type) internal dataset by doing SELECT on (closed type) source internal dataset
+ * Description : INSERT into target (closed type) internal dataset by doing SELECT on (closed type) source internal dataset
* : then query the target internal dataset for data enclosed within {{ }} braces, in this case interests field.
* Success : Yes
* Date : 31st May 2012
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue134/query-issue134.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue134/query-issue134.1.ddl.sqlpp
index c4119e0..5d2eb69 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue134/query-issue134.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue134/query-issue134.1.ddl.sqlpp
@@ -18,4 +18,8 @@
*/
/*
* Description : This test case is to verify the fix for issue134
+ : https://code.google.com/p/asterixdb/issues/detail?id=134
+ * Expected Res : Success
+ * Date : 26th November 2012
+ */
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue134/query-issue134.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue134/query-issue134.2.update.sqlpp
index c4119e0..5d2eb69 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue134/query-issue134.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue134/query-issue134.2.update.sqlpp
@@ -18,4 +18,8 @@
*/
/*
* Description : This test case is to verify the fix for issue134
+ : https://code.google.com/p/asterixdb/issues/detail?id=134
+ * Expected Res : Success
+ * Date : 26th November 2012
+ */
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue134/query-issue134.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue134/query-issue134.3.query.sqlpp
index 76c4d51..ff0c718 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue134/query-issue134.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue134/query-issue134.3.query.sqlpp
@@ -18,5 +18,9 @@
*/
/*
* Description : This test case is to verify the fix for issue134
+ : https://code.google.com/p/asterixdb/issues/detail?id=134
+ * Expected Res : Success
+ * Date : 26th November 2012
+ */
{{[1,2,3,4,5],[6,5,3,8,9],[44,22,66,-1,0,99.9]}};
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue166/query-issue166.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue166/query-issue166.1.ddl.sqlpp
index 3546886..0b8f376 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue166/query-issue166.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue166/query-issue166.1.ddl.sqlpp
@@ -18,4 +18,8 @@
*/
/*
* Description : This test case is to verify the fix for issue166
+ : https://code.google.com/p/asterixdb/issues/detail?id=166
+ * Expected Res : Success
+ * Date : 26th November 2012
+ */
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue166/query-issue166.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue166/query-issue166.2.update.sqlpp
index 3546886..0b8f376 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue166/query-issue166.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue166/query-issue166.2.update.sqlpp
@@ -18,4 +18,8 @@
*/
/*
* Description : This test case is to verify the fix for issue166
+ : https://code.google.com/p/asterixdb/issues/detail?id=166
+ * Expected Res : Success
+ * Date : 26th November 2012
+ */
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue166/query-issue166.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue166/query-issue166.3.query.sqlpp
index 3c3a983..6096a5e 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue166/query-issue166.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue166/query-issue166.3.query.sqlpp
@@ -18,5 +18,9 @@
*/
/*
* Description : This test case is to verify the fix for issue166
+ : https://code.google.com/p/asterixdb/issues/detail?id=166
+ * Expected Res : Success
+ * Date : 26th November 2012
+ */
[[1,2,3],[4,5,6,7]][1];
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue196/query-issue196.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue196/query-issue196.1.ddl.sqlpp
index 6831a3a..8ba635d 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue196/query-issue196.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue196/query-issue196.1.ddl.sqlpp
@@ -18,6 +18,10 @@
*/
/*
* Description : This test case is to verify the fix for issue196
+ : https://code.google.com/p/asterixdb/issues/detail?id=196
+ * Expected Res : Success
+ * Date : 5th May 2013
+ */
drop database test if exists;
create database test;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue196/query-issue196.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue196/query-issue196.2.update.sqlpp
index e1492e1..8145d0e 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue196/query-issue196.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue196/query-issue196.2.update.sqlpp
@@ -18,6 +18,10 @@
*/
/*
* Description : This test case is to verify the fix for issue196
+ : https://code.google.com/p/asterixdb/issues/detail?id=196
+ * Expected Res : Success
+ * Date : 5th May 2013
+ */
use test;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue196/query-issue196.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue196/query-issue196.3.query.sqlpp
index 7093721..d5fc1f0 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue196/query-issue196.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue196/query-issue196.3.query.sqlpp
@@ -18,6 +18,10 @@
*/
/*
* Description : This test case is to verify the fix for issue196
+ : https://code.google.com/p/asterixdb/issues/detail?id=196
+ * Expected Res : Success
+ * Date : 5th May 2013
+ */
use test;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue208/query-issue208.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue208/query-issue208.1.ddl.sqlpp
index 404bc01..4e0bbf8 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue208/query-issue208.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue208/query-issue208.1.ddl.sqlpp
@@ -18,6 +18,10 @@
*/
/*
* Description : This test case is to verify the fix for issue208
+ : https://code.google.com/p/asterixdb/issues/detail?id=208
+ * Expected Res : Success
+ * Date : 26th November 2012
+ */
drop database OpenSocialNetworkData if exists;
create database OpenSocialNetworkData;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue208/query-issue208.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue208/query-issue208.2.update.sqlpp
index c16c39b..b17d68e 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue208/query-issue208.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue208/query-issue208.2.update.sqlpp
@@ -18,6 +18,10 @@
*/
/*
* Description : This test case is to verify the fix for issue208
+ : https://code.google.com/p/asterixdb/issues/detail?id=208
+ * Expected Res : Success
+ * Date : 26th November 2012
+ */
use OpenSocialNetworkData;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue208/query-issue208.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue208/query-issue208.3.query.sqlpp
index 5d074da..3804f40 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue208/query-issue208.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue208/query-issue208.3.query.sqlpp
@@ -18,6 +18,10 @@
*/
/*
* Description : This test case is to verify the fix for issue208
+ : https://code.google.com/p/asterixdb/issues/detail?id=208
+ * Expected Res : Success
+ * Date : 26th November 2012
+ */
use OpenSocialNetworkData;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue236/query-issue236.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue236/query-issue236.1.ddl.sqlpp
index f1362c6..3d5b418 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue236/query-issue236.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue236/query-issue236.1.ddl.sqlpp
@@ -18,6 +18,10 @@
*/
/*
* Description : This test case is to verify the fix for issue236
+ : https://code.google.com/p/asterixdb/issues/detail?id=236
+ * Expected Res : Success
+ * Date : 20 Dec. 2012
+ */
drop database SocialNetworkData if exists;
create database SocialNetworkData;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue236/query-issue236.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue236/query-issue236.2.update.sqlpp
index 16c829b..165e53b 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue236/query-issue236.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue236/query-issue236.2.update.sqlpp
@@ -18,6 +18,10 @@
*/
/*
* Description : This test case is to verify the fix for issue236
+ : https://code.google.com/p/asterixdb/issues/detail?id=236
+ * Expected Res : Success
+ * Date : 20 Dec. 2012
+ */
use SocialNetworkData;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue236/query-issue236.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue236/query-issue236.3.query.sqlpp
index 9e40771..4da6325 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue236/query-issue236.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue236/query-issue236.3.query.sqlpp
@@ -18,6 +18,10 @@
*/
/*
* Description : This test case is to verify the fix for issue236
+ : https://code.google.com/p/asterixdb/issues/detail?id=236
+ * Expected Res : Success
+ * Date : 20 Dec. 2012
+ */
use SocialNetworkData;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue258/query-issue258.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue258/query-issue258.1.ddl.sqlpp
index 6801460..b439f65 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue258/query-issue258.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue258/query-issue258.1.ddl.sqlpp
@@ -18,6 +18,10 @@
*/
/*
* Description : This test case is to verify the fix for issue258
+ : https://code.google.com/p/asterixdb/issues/detail?id=258
+ * Expected Res : Success
+ * Date : 21 May 2013
+ */
drop database test if exists;
create database test if not exists ;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue258/query-issue258.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue258/query-issue258.2.update.sqlpp
index 97bda95..16c53eb 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue258/query-issue258.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue258/query-issue258.2.update.sqlpp
@@ -18,6 +18,10 @@
*/
/*
* Description : This test case is to verify the fix for issue258
+ : https://code.google.com/p/asterixdb/issues/detail?id=258
+ * Expected Res : Success
+ * Date : 21 May 2013
+ */
use test;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue258/query-issue258.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue258/query-issue258.3.query.sqlpp
index dfa1ef1..c00db42 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue258/query-issue258.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue258/query-issue258.3.query.sqlpp
@@ -18,6 +18,10 @@
*/
/*
* Description : This test case is to verify the fix for issue258
+ : https://code.google.com/p/asterixdb/issues/detail?id=258
+ * Expected Res : Success
+ * Date : 21 May 2013
+ */
use test;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue29/query-issue29.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue29/query-issue29.1.ddl.sqlpp
index 165cbd3..b371a74 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue29/query-issue29.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue29/query-issue29.1.ddl.sqlpp
@@ -18,4 +18,8 @@
*/
/*
* Description : This test case is to verify the fix for issue29
+ : https://code.google.com/p/asterixdb/issues/detail?id=29
+ * Expected Res : Success
+ * Date : 26th November 2012
+ */
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue29/query-issue29.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue29/query-issue29.2.update.sqlpp
index 165cbd3..b371a74 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue29/query-issue29.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue29/query-issue29.2.update.sqlpp
@@ -18,4 +18,8 @@
*/
/*
* Description : This test case is to verify the fix for issue29
+ : https://code.google.com/p/asterixdb/issues/detail?id=29
+ * Expected Res : Success
+ * Date : 26th November 2012
+ */
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue29/query-issue29.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue29/query-issue29.3.query.sqlpp
index 5de1402..dcec48c 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue29/query-issue29.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue29/query-issue29.3.query.sqlpp
@@ -18,5 +18,9 @@
*/
/*
* Description : This test case is to verify the fix for issue29
+ : https://code.google.com/p/asterixdb/issues/detail?id=29
+ * Expected Res : Success
+ * Date : 26th November 2012
+ */
{{{'tweetid':'1023','user':{'screen-name':'dflynn24','lang':'en','friends_count':46,'statuses_count':987,'name':'danielle flynn','followers_count':47},'sender-location':'40.904177,-72.958996','send-time':'2010-02-21T11:56:02-05:00','referred-topics':{{'verizon'}},'message-text':'i need a #verizon phone like nowwwww! :('},{'tweetid':'1024','user':{'screen-name':'miriamorous','lang':'en','friends_count':69,'statuses_count':1068,'name':'Miriam Songco','followers_count':78},'send-time':'2010-02-21T11:11:43-08:00','referred-topics':{{'commercials','verizon','att'}},'message-text':'#verizon & #att #commercials, so competitive'},{'tweetid':'1025','user':{'screen-name':'dj33','lang':'en','friends_count':96,'statuses_count':1696,'name':'Don Jango','followers_count':22},'send-time':'2010-02-21T12:38:44-05:00','referred-topics':{{'charlotte'}},'message-text':'Chillin at dca waiting for 900am flight to #charlotte and from there to providenciales'},{'tweetid':'1026','user':{'screen-name':'reallyleila','lang':'en','friends_count':106,'statuses_count':107,'name':'Leila Samii','followers_count':52},'send-time':'2010-02-21T21:31:57-06:00','referred-topics':{{'verizon','at&t','iphone'}},'message-text':'I think a switch from #verizon to #at&t may be in my near future... my smartphone is like a land line compared to the #iphone!'}}};
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue343-2/query-issue343-2.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue343-2/query-issue343-2.1.ddl.sqlpp
index 23f9c00..6a13abb 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue343-2/query-issue343-2.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue343-2/query-issue343-2.1.ddl.sqlpp
@@ -18,6 +18,10 @@
*/
/*
* Description : This test case is to verify the fix for issue343. It is a more general case.
+ : https://code.google.com/p/asterixdb/issues/detail?id=343
+ * Expected Res : Success
+ * Date : 30th April 2013
+ */
drop database test if exists;
create database test;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue343-2/query-issue343-2.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue343-2/query-issue343-2.2.update.sqlpp
index 898e8a8..6f8f3b6 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue343-2/query-issue343-2.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue343-2/query-issue343-2.2.update.sqlpp
@@ -18,6 +18,10 @@
*/
/*
* Description : This test case is to verify the fix for issue343. It is a more general case.
+ : https://code.google.com/p/asterixdb/issues/detail?id=343
+ * Expected Res : Success
+ * Date : 30th April 2013
+ */
use test;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue343-2/query-issue343-2.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue343-2/query-issue343-2.3.query.sqlpp
index 5636223..353c3e9 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue343-2/query-issue343-2.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue343-2/query-issue343-2.3.query.sqlpp
@@ -18,6 +18,10 @@
*/
/*
* Description : This test case is to verify the fix for issue343. It is a more general case.
+ : https://code.google.com/p/asterixdb/issues/detail?id=343
+ * Expected Res : Success
+ * Date : 30th April 2013
+ */
use test;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue343/query-issue343.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue343/query-issue343.1.ddl.sqlpp
index 1b54be1..f122228 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue343/query-issue343.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue343/query-issue343.1.ddl.sqlpp
@@ -18,6 +18,10 @@
*/
/*
* Description : This test case is to verify the fix for issue343
+ : https://code.google.com/p/asterixdb/issues/detail?id=343
+ * Expected Res : Success
+ * Date : 30th April 2013
+ */
drop database test if exists;
create database test;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue343/query-issue343.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue343/query-issue343.2.update.sqlpp
index b9390d9..17ac737 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue343/query-issue343.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue343/query-issue343.2.update.sqlpp
@@ -18,6 +18,10 @@
*/
/*
* Description : This test case is to verify the fix for issue343
+ : https://code.google.com/p/asterixdb/issues/detail?id=343
+ * Expected Res : Success
+ * Date : 30th April 2013
+ */
use test;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue343/query-issue343.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue343/query-issue343.3.query.sqlpp
index 6c85182..82a9ffe 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue343/query-issue343.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue343/query-issue343.3.query.sqlpp
@@ -18,6 +18,10 @@
*/
/*
* Description : This test case is to verify the fix for issue343
+ : https://code.google.com/p/asterixdb/issues/detail?id=343
+ * Expected Res : Success
+ * Date : 30th April 2013
+ */
use test;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue350-2/query-issue350-2.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue350-2/query-issue350-2.1.ddl.sqlpp
index 95555d4..f937981 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue350-2/query-issue350-2.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue350-2/query-issue350-2.1.ddl.sqlpp
@@ -18,6 +18,10 @@
*/
/*
* Description : This test case is to verify the fix for issue350
+ : https://code.google.com/p/asterixdb/issues/detail?id=350
+ * Expected Res : Success
+ * Date : 28th April 2013
+ */
drop database TinySocial if exists;
create database TinySocial;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue350-2/query-issue350-2.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue350-2/query-issue350-2.2.update.sqlpp
index 3137476..09c10ff 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue350-2/query-issue350-2.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue350-2/query-issue350-2.2.update.sqlpp
@@ -18,6 +18,10 @@
*/
/*
* Description : This test case is to verify the fix for issue350
+ : https://code.google.com/p/asterixdb/issues/detail?id=350
+ * Expected Res : Success
+ * Date : 28th April 2013
+ */
use TinySocial;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue350-2/query-issue350-2.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue350-2/query-issue350-2.3.query.sqlpp
index 0028458..7f30e1e 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue350-2/query-issue350-2.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue350-2/query-issue350-2.3.query.sqlpp
@@ -18,6 +18,10 @@
*/
/*
* Description : This test case is to verify the fix for issue350
+ : https://code.google.com/p/asterixdb/issues/detail?id=350
+ * Expected Res : Success
+ * Date : 28th April 2013
+ */
use TinySocial;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue350/query-issue350.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue350/query-issue350.1.ddl.sqlpp
index 95555d4..f937981 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue350/query-issue350.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue350/query-issue350.1.ddl.sqlpp
@@ -18,6 +18,10 @@
*/
/*
* Description : This test case is to verify the fix for issue350
+ : https://code.google.com/p/asterixdb/issues/detail?id=350
+ * Expected Res : Success
+ * Date : 28th April 2013
+ */
drop database TinySocial if exists;
create database TinySocial;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue350/query-issue350.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue350/query-issue350.2.update.sqlpp
index 3137476..09c10ff 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue350/query-issue350.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue350/query-issue350.2.update.sqlpp
@@ -18,6 +18,10 @@
*/
/*
* Description : This test case is to verify the fix for issue350
+ : https://code.google.com/p/asterixdb/issues/detail?id=350
+ * Expected Res : Success
+ * Date : 28th April 2013
+ */
use TinySocial;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue350/query-issue350.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue350/query-issue350.3.query.sqlpp
index 1094285..e1f2fc2 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue350/query-issue350.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue350/query-issue350.3.query.sqlpp
@@ -18,6 +18,10 @@
*/
/*
* Description : This test case is to verify the fix for issue350
+ : https://code.google.com/p/asterixdb/issues/detail?id=350
+ * Expected Res : Success
+ * Date : 28th April 2013
+ */
use TinySocial;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue377/query-issue377.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue377/query-issue377.1.ddl.sqlpp
index 8768002..ef1a86f 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue377/query-issue377.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue377/query-issue377.1.ddl.sqlpp
@@ -18,6 +18,10 @@
*/
/*
* Description : This test case is to verify the fix for issue377
+ : https://code.google.com/p/asterixdb/issues/detail?id=377
+ * Expected Res : Success
+ * Date : 11th May 2013
+ */
drop database TinySocial if exists;
create database TinySocial;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue377/query-issue377.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue377/query-issue377.2.update.sqlpp
index 55a6b12..9f7809d 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue377/query-issue377.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue377/query-issue377.2.update.sqlpp
@@ -18,6 +18,10 @@
*/
/*
* Description : This test case is to verify the fix for issue377
+ : https://code.google.com/p/asterixdb/issues/detail?id=377
+ * Expected Res : Success
+ * Date : 11th May 2013
+ */
use TinySocial;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue377/query-issue377.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue377/query-issue377.3.query.sqlpp
index 813b766..439834a 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue377/query-issue377.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue377/query-issue377.3.query.sqlpp
@@ -18,6 +18,10 @@
*/
/*
* Description : This test case is to verify the fix for issue377
+ : https://code.google.com/p/asterixdb/issues/detail?id=377
+ * Expected Res : Success
+ * Date : 11th May 2013
+ */
use TinySocial;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue410/query-issue410.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue410/query-issue410.1.ddl.sqlpp
index dc10c8a..182da2b 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue410/query-issue410.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue410/query-issue410.1.ddl.sqlpp
@@ -18,6 +18,10 @@
*/
/*
* Description : This test case is to verify the fix for issue410
+ : https://code.google.com/p/asterixdb/issues/detail?id=410
+ * Expected Res : Fail
+ * Date : 13th May 2013
+ */
drop database test if exists;
create database test;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue410/query-issue410.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue410/query-issue410.2.update.sqlpp
index 96ed046..db35aec 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue410/query-issue410.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue410/query-issue410.2.update.sqlpp
@@ -18,6 +18,10 @@
*/
/*
* Description : This test case is to verify the fix for issue410
+ : https://code.google.com/p/asterixdb/issues/detail?id=410
+ * Expected Res : Fail
+ * Date : 11th May 2013
+ */
use test;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue410/query-issue410.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue410/query-issue410.3.query.sqlpp
index b02636f..29b9f89 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue410/query-issue410.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue410/query-issue410.3.query.sqlpp
@@ -18,6 +18,10 @@
*/
/*
* Description : This test case is to verify the fix for issue410
+ : https://code.google.com/p/asterixdb/issues/detail?id=410
+ * Expected Res : Fail
+ * Date : 11th May 2013
+ */
use test;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue423-2/query-issue423-2.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue423-2/query-issue423-2.1.ddl.sqlpp
index 3f8fac1..d780c96 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue423-2/query-issue423-2.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue423-2/query-issue423-2.1.ddl.sqlpp
@@ -18,6 +18,11 @@
*/
/*
* Description : This test case is to verify the fix for issue423
+ (Specifically for NLJ case)
+ : https://code.google.com/p/asterixdb/issues/detail?id=423
+ * Expected Res : Success
+ * Date : 29th May 2013
+ */
drop database test if exists;
create database test;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue423-2/query-issue423-2.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue423-2/query-issue423-2.2.update.sqlpp
index 218435a..f3d074c 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue423-2/query-issue423-2.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue423-2/query-issue423-2.2.update.sqlpp
@@ -18,6 +18,11 @@
*/
/*
* Description : This test case is to verify the fix for issue423
+ (Specifically for NLJ case)
+ : https://code.google.com/p/asterixdb/issues/detail?id=423
+ * Expected Res : Success
+ * Date : 29th May 2013
+ */
use test;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue423-2/query-issue423-2.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue423-2/query-issue423-2.3.query.sqlpp
index 6eca3fe..a729049 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue423-2/query-issue423-2.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue423-2/query-issue423-2.3.query.sqlpp
@@ -18,6 +18,11 @@
*/
/*
* Description : This test case is to verify the fix for issue423
+ (Specifically for NLJ case)
+ : https://code.google.com/p/asterixdb/issues/detail?id=423
+ * Expected Res : Success
+ * Date : 29th May 2013
+ */
use test;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue423/query-issue423.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue423/query-issue423.1.ddl.sqlpp
index 3f8fac1..3fcbaa0 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue423/query-issue423.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue423/query-issue423.1.ddl.sqlpp
@@ -18,6 +18,11 @@
*/
/*
* Description : This test case is to verify the fix for issue423
+ (Specifically for HHJ case)
+ : https://code.google.com/p/asterixdb/issues/detail?id=423
+ * Expected Res : Success
+ * Date : 29th May 2013
+ */
drop database test if exists;
create database test;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue423/query-issue423.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue423/query-issue423.2.update.sqlpp
index 218435a..52c098b 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue423/query-issue423.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue423/query-issue423.2.update.sqlpp
@@ -18,6 +18,11 @@
*/
/*
* Description : This test case is to verify the fix for issue423
+ (Specifically for HHJ case)
+ : https://code.google.com/p/asterixdb/issues/detail?id=423
+ * Expected Res : Success
+ * Date : 29th May 2013
+ */
use test;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue423/query-issue423.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue423/query-issue423.3.query.sqlpp
index cec7b78..cd41ec8 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue423/query-issue423.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue423/query-issue423.3.query.sqlpp
@@ -18,6 +18,11 @@
*/
/*
* Description : This test case is to verify the fix for issue423
+ (Specifically for HHJ case)
+ : https://code.google.com/p/asterixdb/issues/detail?id=423
+ * Expected Res : Success
+ * Date : 29th May 2013
+ */
use test;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue442/query-issue442.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue442/query-issue442.3.query.sqlpp
index 76bb659..86cad0d 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue442/query-issue442.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue442/query-issue442.3.query.sqlpp
@@ -18,6 +18,10 @@
*/
/*
* Description : This test case is to verify the fix for issue442
+ : https://code.google.com/p/asterixdb/issues/detail?id=442
+ * Expected Res : Fail
+ * Date : 22th May 2013
+ */
select element a
from [{'f':100},{'f':0},{'f':-1},{'f':null},{'f':999999},{'f':1},{'f':'zzzzz'}] as a
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue453-2/query-issue453-2.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue453-2/query-issue453-2.1.ddl.sqlpp
index caf137a..8cbb0b6 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue453-2/query-issue453-2.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue453-2/query-issue453-2.1.ddl.sqlpp
@@ -18,6 +18,10 @@
*/
/*
* Description : This test case is to verify the fix for issue453
+ : https://code.google.com/p/asterixdb/issues/detail?id=453
+ * Expected Res : SUCCESS
+ * Date : 18th May 2013
+ */
drop database test if exists;
create database test;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue453-2/query-issue453-2.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue453-2/query-issue453-2.2.update.sqlpp
index 953307c..92e966a 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue453-2/query-issue453-2.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue453-2/query-issue453-2.2.update.sqlpp
@@ -18,6 +18,10 @@
*/
/*
* Description : This test case is to verify the fix for issue453
+ : https://code.google.com/p/asterixdb/issues/detail?id=453
+ * Expected Res : SUCCESS
+ * Date : 18th May 2013
+ */
use test;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue453-2/query-issue453-2.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue453-2/query-issue453-2.3.query.sqlpp
index d483474..31e68b0 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue453-2/query-issue453-2.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue453-2/query-issue453-2.3.query.sqlpp
@@ -18,6 +18,10 @@
*/
/*
* Description : This test case is to verify the fix for issue453
+ : https://code.google.com/p/asterixdb/issues/detail?id=453
+ * Expected Res : SUCCESS
+ * Date : 18th May 2013
+ */
use test;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue453/query-issue453.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue453/query-issue453.1.ddl.sqlpp
index caf137a..8cbb0b6 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue453/query-issue453.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue453/query-issue453.1.ddl.sqlpp
@@ -18,6 +18,10 @@
*/
/*
* Description : This test case is to verify the fix for issue453
+ : https://code.google.com/p/asterixdb/issues/detail?id=453
+ * Expected Res : SUCCESS
+ * Date : 18th May 2013
+ */
drop database test if exists;
create database test;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue453/query-issue453.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue453/query-issue453.2.update.sqlpp
index 9efab99..56af100 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue453/query-issue453.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue453/query-issue453.2.update.sqlpp
@@ -18,6 +18,10 @@
*/
/*
* Description : This test case is to verify the fix for issue453
+ : https://code.google.com/p/asterixdb/issues/detail?id=453
+ * Expected Res : SUCCESS
+ * Date : 18th May 2013
+ */
use test;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue453/query-issue453.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue453/query-issue453.3.query.sqlpp
index d483474..31e68b0 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue453/query-issue453.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue453/query-issue453.3.query.sqlpp
@@ -18,6 +18,10 @@
*/
/*
* Description : This test case is to verify the fix for issue453
+ : https://code.google.com/p/asterixdb/issues/detail?id=453
+ * Expected Res : SUCCESS
+ * Date : 18th May 2013
+ */
use test;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue456/query-issue456.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue456/query-issue456.2.update.sqlpp
index daebe28..249e78b 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue456/query-issue456.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue456/query-issue456.2.update.sqlpp
@@ -17,7 +17,7 @@
* under the License.
*/
/*
- * Description : This test case is to verify the fix for issue456:
+ * Description : This test case is to verify the fix for issue456:
* https://code.google.com/p/asterixdb/issues/detail?id=456
* Expected Res : SUCCESS
* Date : 3rd June 2013
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue456/query-issue456.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue456/query-issue456.3.query.sqlpp
index dd08a0a..04b753e 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue456/query-issue456.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue456/query-issue456.3.query.sqlpp
@@ -17,7 +17,7 @@
* under the License.
*/
/*
- * Description : This test case is to verify the fix for issue456:
+ * Description : This test case is to verify the fix for issue456:
* https://code.google.com/p/asterixdb/issues/detail?id=456
* Expected Res : SUCCESS
* Date : 3rd June 2013
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue465/query-issue465.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue465/query-issue465.1.ddl.sqlpp
index 4f3a0fd..b284952 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue465/query-issue465.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue465/query-issue465.1.ddl.sqlpp
@@ -17,7 +17,7 @@
* under the License.
*/
/*
- * Description : This test case is to verify the fix for issue465:
+ * Description : This test case is to verify the fix for issue465:
* https://code.google.com/p/asterixdb/issues/detail?id=465
* Expected Res : SUCCESS
* Date : 3rd June 2013
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue465/query-issue465.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue465/query-issue465.2.update.sqlpp
index 4f3a0fd..b284952 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue465/query-issue465.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue465/query-issue465.2.update.sqlpp
@@ -17,7 +17,7 @@
* under the License.
*/
/*
- * Description : This test case is to verify the fix for issue465:
+ * Description : This test case is to verify the fix for issue465:
* https://code.google.com/p/asterixdb/issues/detail?id=465
* Expected Res : SUCCESS
* Date : 3rd June 2013
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue465/query-issue465.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue465/query-issue465.3.query.sqlpp
index a3d2c7f..dccfa34 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue465/query-issue465.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue465/query-issue465.3.query.sqlpp
@@ -17,7 +17,7 @@
* under the License.
*/
/*
- * Description : This test case is to verify the fix for issue465:
+ * Description : This test case is to verify the fix for issue465:
* https://code.google.com/p/asterixdb/issues/detail?id=465
* Expected Res : SUCCESS
* Date : 3rd June 2013
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue487/query-issue487.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue487/query-issue487.1.ddl.sqlpp
index a20a6cd..0de9e2e 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue487/query-issue487.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue487/query-issue487.1.ddl.sqlpp
@@ -18,6 +18,10 @@
*/
/*
* Description : This test case is to verify the fix for issue487
+ : https://code.google.com/p/asterixdb/issues/detail?id=487
+ * Expected Res : FAIL
+ * Date : 30th May 2013
+ */
drop database test if exists;
create database test;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue487/query-issue487.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue487/query-issue487.2.update.sqlpp
index 2ece321..8639b38 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue487/query-issue487.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue487/query-issue487.2.update.sqlpp
@@ -18,6 +18,10 @@
*/
/*
* Description : This test case is to verify the fix for issue487
+ : https://code.google.com/p/asterixdb/issues/detail?id=487
+ * Expected Res : FAIL
+ * Date : 30th May 2013
+ */
use test;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue487/query-issue487.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue487/query-issue487.3.query.sqlpp
index d5bfbf5..9ec51da 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue487/query-issue487.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue487/query-issue487.3.query.sqlpp
@@ -18,6 +18,10 @@
*/
/*
* Description : This test case is to verify the fix for issue487
+ : https://code.google.com/p/asterixdb/issues/detail?id=487
+ * Expected Res : FAIL
+ * Date : 30th May 2013
+ */
use test;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue55-1/query-issue55-1.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue55-1/query-issue55-1.1.ddl.sqlpp
index 9701d84..2034bfa 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue55-1/query-issue55-1.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue55-1/query-issue55-1.1.ddl.sqlpp
@@ -18,4 +18,8 @@
*/
/*
* Description : This test case is to verify the fix for issue55 query 1
+ : https://code.google.com/p/asterixdb/issues/detail?id=55
+ * Expected Res : Success
+ * Date : 26th November 2012
+ */
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue55-1/query-issue55-1.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue55-1/query-issue55-1.2.update.sqlpp
index 9701d84..2034bfa 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue55-1/query-issue55-1.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue55-1/query-issue55-1.2.update.sqlpp
@@ -18,4 +18,8 @@
*/
/*
* Description : This test case is to verify the fix for issue55 query 1
+ : https://code.google.com/p/asterixdb/issues/detail?id=55
+ * Expected Res : Success
+ * Date : 26th November 2012
+ */
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue55-1/query-issue55-1.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue55-1/query-issue55-1.3.query.sqlpp
index 0e5d9c2..333c963 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue55-1/query-issue55-1.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue55-1/query-issue55-1.3.query.sqlpp
@@ -18,6 +18,10 @@
*/
/*
* Description : This test case is to verify the fix for issue55 query 1
+ : https://code.google.com/p/asterixdb/issues/detail?id=55
+ * Expected Res : Success
+ * Date : 26th November 2012
+ */
with l as [1.100000f,1.000000f,1.200000f,0.9,1.3,1,2]
select element [i,j,'=',(i = j),'<',(i < j),'<=',(i <= j),'>',(i > j),'>=',(i >= j)]
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue55/query-issue55.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue55/query-issue55.1.ddl.sqlpp
index b6d007e..0d95350 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue55/query-issue55.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue55/query-issue55.1.ddl.sqlpp
@@ -18,4 +18,8 @@
*/
/*
* Description : This test case is to verify the fix for issue55 query 2
+ : https://code.google.com/p/asterixdb/issues/detail?id=55
+ * Expected Res : Success
+ * Date : 26th November 2012
+ */
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue55/query-issue55.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue55/query-issue55.2.update.sqlpp
index b6d007e..0d95350 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue55/query-issue55.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue55/query-issue55.2.update.sqlpp
@@ -18,4 +18,8 @@
*/
/*
* Description : This test case is to verify the fix for issue55 query 2
+ : https://code.google.com/p/asterixdb/issues/detail?id=55
+ * Expected Res : Success
+ * Date : 26th November 2012
+ */
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue55/query-issue55.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue55/query-issue55.3.query.sqlpp
index ab17239..b53407a 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue55/query-issue55.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-closed/query-issue55/query-issue55.3.query.sqlpp
@@ -18,6 +18,10 @@
*/
/*
* Description : This test case is to verify the fix for issue55 query 2
+ : https://code.google.com/p/asterixdb/issues/detail?id=55
+ * Expected Res : Success
+ * Date : 26th November 2012
+ */
select element x
from [[1,3],[4,5,2],[-1,-3,0],['a']] as x
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-index-enforced/external-indexing/adm-format/adm-format.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-index-enforced/external-indexing/adm-format/adm-format.1.ddl.sqlpp
index 31789be..c48bb4a 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-index-enforced/external-indexing/adm-format/adm-format.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-index-enforced/external-indexing/adm-format/adm-format.1.ddl.sqlpp
@@ -18,6 +18,11 @@
*/
/*
* Description : Create an external dataset that contains records stored with text hdfs file format.
+ Build an index over the external dataset age attribute
+ Perform a query over the dataset using the index.
+* Expected Res : Success
+* Date : 3rd Jan 2014
+*/
drop database test if exists;
create database test;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-index-enforced/external-indexing/adm-format/adm-format.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-index-enforced/external-indexing/adm-format/adm-format.2.update.sqlpp
index 5964b88..7b2e6a3 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-index-enforced/external-indexing/adm-format/adm-format.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-index-enforced/external-indexing/adm-format/adm-format.2.update.sqlpp
@@ -18,4 +18,8 @@
*/
/*
* Description : Create an external dataset that contains records stored with text hdfs file format.
-
+ Build an index over the external dataset age attribute
+ Perform a query over the dataset using the index.
+* Expected Res : Success
+* Date : 3rd Jan 2014
+*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-index-enforced/external-indexing/adm-format/adm-format.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-index-enforced/external-indexing/adm-format/adm-format.3.query.sqlpp
index 4e05340..dfa9fe3 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-index-enforced/external-indexing/adm-format/adm-format.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-index-enforced/external-indexing/adm-format/adm-format.3.query.sqlpp
@@ -18,7 +18,11 @@
*/
/*
* Description : Create an external dataset that contains records stored with text hdfs file format.
-
+ Build an index over the external dataset age attribute
+ Perform a query over the dataset using the index.
+* Expected Res : Success
+* Date : 3rd Jan 2014
+*/
use test;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-index-enforced/external-indexing/leftouterjoin-rtree/leftouterjoin-rtree.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-index-enforced/external-indexing/leftouterjoin-rtree/leftouterjoin-rtree.1.ddl.sqlpp
index 7e06403..84c5400 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-index-enforced/external-indexing/leftouterjoin-rtree/leftouterjoin-rtree.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-index-enforced/external-indexing/leftouterjoin-rtree/leftouterjoin-rtree.1.ddl.sqlpp
@@ -18,7 +18,7 @@
*/
/*
* Description : Test that left-outer-join may use two available indexes, one for primary index in prob subtree and another for secondary rtree index in index subtree.
- * Issue : 730, 741
+ * Issue : 730, 741
* Expected Res : Success
* Date : 8th May 2014
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-index-enforced/external-indexing/leftouterjoin-rtree/leftouterjoin-rtree.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-index-enforced/external-indexing/leftouterjoin-rtree/leftouterjoin-rtree.3.query.sqlpp
index ecf5895..ffaca94 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-index-enforced/external-indexing/leftouterjoin-rtree/leftouterjoin-rtree.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-index-enforced/external-indexing/leftouterjoin-rtree/leftouterjoin-rtree.3.query.sqlpp
@@ -18,7 +18,7 @@
*/
/*
* Description : Test that left-outer-join may use two available indexes, one for primary index in prob subtree and another for secondary rtree index in index subtree.
- * Issue : 730, 741
+ * Issue : 730, 741
* Expected Res : Success
* Date : 8th May 2014
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-index-enforced/external-indexing/leftouterjoin/leftouterjoin.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-index-enforced/external-indexing/leftouterjoin/leftouterjoin.1.ddl.sqlpp
index 83ec5f0..67ac407 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-index-enforced/external-indexing/leftouterjoin/leftouterjoin.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-index-enforced/external-indexing/leftouterjoin/leftouterjoin.1.ddl.sqlpp
@@ -18,7 +18,7 @@
*/
/*
* Description : Test that left-outer-join may use two available indexes, one for primary index in prob subtree and another for secondary btree index in index subtree.
- * Issue : 730, 741
+ * Issue : 730, 741
* Expected Res : Success
* Date : 8th May 2014
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-index-enforced/external-indexing/leftouterjoin/leftouterjoin.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-index-enforced/external-indexing/leftouterjoin/leftouterjoin.2.update.sqlpp
index 90607b2..df67ea3 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-index-enforced/external-indexing/leftouterjoin/leftouterjoin.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-index-enforced/external-indexing/leftouterjoin/leftouterjoin.2.update.sqlpp
@@ -18,7 +18,7 @@
*/
/*
* Description : Test that left-outer-join may use two available indexes, one for primary index in prob subtree and another for secondary btree index in index subtree.
- * Issue : 730, 741
+ * Issue : 730, 741
* Expected Res : Success
* Date : 8th May 2014
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-index-enforced/index-selection/btree-index-composite-key-mixed-intervals/btree-index-composite-key-mixed-intervals.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-index-enforced/index-selection/btree-index-composite-key-mixed-intervals/btree-index-composite-key-mixed-intervals.1.ddl.sqlpp
index 69b3b31..8613428 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-index-enforced/index-selection/btree-index-composite-key-mixed-intervals/btree-index-composite-key-mixed-intervals.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-index-enforced/index-selection/btree-index-composite-key-mixed-intervals/btree-index-composite-key-mixed-intervals.1.ddl.sqlpp
@@ -20,7 +20,7 @@
* Description : Test that BTree enforced open index is used in query plan
* : define the BTree enforced open index on a composite key (fname,lanme)
* : predicate => where $l.fname > "Julio" and $l.lname > "Mattocks" and
- * $l.fname <= "Micco" and $l.lname < "Vangieson"
+ * $l.fname <= "Micco" and $l.lname < "Vangieson"
* Expected Result : Success
* Issue : Issue 174
* Date : 27th March, 2014
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-index-enforced/index-selection/btree-index-composite-key-mixed-intervals/btree-index-composite-key-mixed-intervals.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-index-enforced/index-selection/btree-index-composite-key-mixed-intervals/btree-index-composite-key-mixed-intervals.2.update.sqlpp
index e9c1b8f..87d243e 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-index-enforced/index-selection/btree-index-composite-key-mixed-intervals/btree-index-composite-key-mixed-intervals.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-index-enforced/index-selection/btree-index-composite-key-mixed-intervals/btree-index-composite-key-mixed-intervals.2.update.sqlpp
@@ -20,7 +20,7 @@
* Description : Test that BTree enforced open index is used in query plan
* : define the BTree enforced open index on a composite key (fname,lanme)
* : predicate => where $l.fname > "Julio" and $l.lname > "Mattocks" and
- * $l.fname <= "Micco" and $l.lname < "Vangieson"
+ * $l.fname <= "Micco" and $l.lname < "Vangieson"
* Expected Result : Success
* Issue : Issue 174
* Date : 27th March, 2014
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-index-enforced/index-selection/btree-index-composite-key-mixed-intervals/btree-index-composite-key-mixed-intervals.3.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-index-enforced/index-selection/btree-index-composite-key-mixed-intervals/btree-index-composite-key-mixed-intervals.3.ddl.sqlpp
index 02cd53a..f6f2e41 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-index-enforced/index-selection/btree-index-composite-key-mixed-intervals/btree-index-composite-key-mixed-intervals.3.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-index-enforced/index-selection/btree-index-composite-key-mixed-intervals/btree-index-composite-key-mixed-intervals.3.ddl.sqlpp
@@ -20,7 +20,7 @@
* Description : Test that BTree enforced open index is used in query plan
* : define the BTree enforced open index on a composite key (fname,lanme)
* : predicate => where $l.fname > "Julio" and $l.lname > "Mattocks" and
- * $l.fname <= "Micco" and $l.lname < "Vangieson"
+ * $l.fname <= "Micco" and $l.lname < "Vangieson"
* Expected Result : Success
* Issue : Issue 174
* Date : 27th March, 2014
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-index-enforced/index-selection/btree-index-composite-key-mixed-intervals/btree-index-composite-key-mixed-intervals.4.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-index-enforced/index-selection/btree-index-composite-key-mixed-intervals/btree-index-composite-key-mixed-intervals.4.query.sqlpp
index 247f543..537e7c4 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-index-enforced/index-selection/btree-index-composite-key-mixed-intervals/btree-index-composite-key-mixed-intervals.4.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-index-enforced/index-selection/btree-index-composite-key-mixed-intervals/btree-index-composite-key-mixed-intervals.4.query.sqlpp
@@ -20,7 +20,7 @@
* Description : Test that BTree enforced open index is used in query plan
* : define the BTree enforced open index on a composite key (fname,lanme)
* : predicate => where $l.fname > "Julio" and $l.lname > "Mattocks" and
- * $l.fname <= "Micco" and $l.lname < "Vangieson"
+ * $l.fname <= "Micco" and $l.lname < "Vangieson"
* Expected Result : Success
* Issue : Issue 174
* Date : 27th March, 2014
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-index-enforced/index-selection/inverted-index-ngram-contains/inverted-index-ngram-contains.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-index-enforced/index-selection/inverted-index-ngram-contains/inverted-index-ngram-contains.1.ddl.sqlpp
index 76a02da..7af3591 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-index-enforced/index-selection/inverted-index-ngram-contains/inverted-index-ngram-contains.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-index-enforced/index-selection/inverted-index-ngram-contains/inverted-index-ngram-contains.1.ddl.sqlpp
@@ -40,7 +40,7 @@
misc : string
}
-create nodegroup group1 if not exists on
+create nodegroup group1 if not exists on
nc1,
nc2
;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-index-enforced/index-selection/inverted-index-ngram-edit-distance-contains/inverted-index-ngram-edit-distance-contains.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-index-enforced/index-selection/inverted-index-ngram-edit-distance-contains/inverted-index-ngram-edit-distance-contains.1.ddl.sqlpp
index dc9800e..afeed93 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-index-enforced/index-selection/inverted-index-ngram-edit-distance-contains/inverted-index-ngram-edit-distance-contains.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-index-enforced/index-selection/inverted-index-ngram-edit-distance-contains/inverted-index-ngram-edit-distance-contains.1.ddl.sqlpp
@@ -40,7 +40,7 @@
misc : string
}
-create nodegroup group1 if not exists on
+create nodegroup group1 if not exists on
nc1,
nc2
;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-index-enforced/index-selection/inverted-index-ngram-edit-distance-panic/inverted-index-ngram-edit-distance-panic.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-index-enforced/index-selection/inverted-index-ngram-edit-distance-panic/inverted-index-ngram-edit-distance-panic.1.ddl.sqlpp
index 0a85095..35648a4 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-index-enforced/index-selection/inverted-index-ngram-edit-distance-panic/inverted-index-ngram-edit-distance-panic.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-index-enforced/index-selection/inverted-index-ngram-edit-distance-panic/inverted-index-ngram-edit-distance-panic.1.ddl.sqlpp
@@ -40,7 +40,7 @@
misc : string
}
-create nodegroup group1 if not exists on
+create nodegroup group1 if not exists on
nc1,
nc2
;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-index-enforced/index-selection/inverted-index-ngram-edit-distance-word-tokens/inverted-index-ngram-edit-distance-word-tokens.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-index-enforced/index-selection/inverted-index-ngram-edit-distance-word-tokens/inverted-index-ngram-edit-distance-word-tokens.1.ddl.sqlpp
index dc9800e..afeed93 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-index-enforced/index-selection/inverted-index-ngram-edit-distance-word-tokens/inverted-index-ngram-edit-distance-word-tokens.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-index-enforced/index-selection/inverted-index-ngram-edit-distance-word-tokens/inverted-index-ngram-edit-distance-word-tokens.1.ddl.sqlpp
@@ -40,7 +40,7 @@
misc : string
}
-create nodegroup group1 if not exists on
+create nodegroup group1 if not exists on
nc1,
nc2
;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-index-enforced/index-selection/inverted-index-ngram-edit-distance/inverted-index-ngram-edit-distance.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-index-enforced/index-selection/inverted-index-ngram-edit-distance/inverted-index-ngram-edit-distance.1.ddl.sqlpp
index 0a85095..35648a4 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-index-enforced/index-selection/inverted-index-ngram-edit-distance/inverted-index-ngram-edit-distance.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-index-enforced/index-selection/inverted-index-ngram-edit-distance/inverted-index-ngram-edit-distance.1.ddl.sqlpp
@@ -40,7 +40,7 @@
misc : string
}
-create nodegroup group1 if not exists on
+create nodegroup group1 if not exists on
nc1,
nc2
;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-index-enforced/index-selection/inverted-index-ngram-jaccard/inverted-index-ngram-jaccard.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-index-enforced/index-selection/inverted-index-ngram-jaccard/inverted-index-ngram-jaccard.1.ddl.sqlpp
index 76a02da..7af3591 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-index-enforced/index-selection/inverted-index-ngram-jaccard/inverted-index-ngram-jaccard.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-index-enforced/index-selection/inverted-index-ngram-jaccard/inverted-index-ngram-jaccard.1.ddl.sqlpp
@@ -40,7 +40,7 @@
misc : string
}
-create nodegroup group1 if not exists on
+create nodegroup group1 if not exists on
nc1,
nc2
;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-index-enforced/index-selection/inverted-index-word-contains/inverted-index-word-contains.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-index-enforced/index-selection/inverted-index-word-contains/inverted-index-word-contains.1.ddl.sqlpp
index 76a02da..7af3591 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-index-enforced/index-selection/inverted-index-word-contains/inverted-index-word-contains.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-index-enforced/index-selection/inverted-index-word-contains/inverted-index-word-contains.1.ddl.sqlpp
@@ -40,7 +40,7 @@
misc : string
}
-create nodegroup group1 if not exists on
+create nodegroup group1 if not exists on
nc1,
nc2
;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-index-enforced/index-selection/inverted-index-word-jaccard/inverted-index-word-jaccard.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-index-enforced/index-selection/inverted-index-word-jaccard/inverted-index-word-jaccard.1.ddl.sqlpp
index 76a02da..7af3591 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-index-enforced/index-selection/inverted-index-word-jaccard/inverted-index-word-jaccard.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/open-index-enforced/index-selection/inverted-index-word-jaccard/inverted-index-word-jaccard.1.ddl.sqlpp
@@ -40,7 +40,7 @@
misc : string
}
-create nodegroup group1 if not exists on
+create nodegroup group1 if not exists on
nc1,
nc2
;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/quantifiers/everysat_02/everysat_02.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/quantifiers/everysat_02/everysat_02.1.ddl.sqlpp
index 5fb980f..bab85e2 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/quantifiers/everysat_02/everysat_02.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/quantifiers/everysat_02/everysat_02.1.ddl.sqlpp
@@ -17,7 +17,7 @@
* under the License.
*/
/*
- * Description : Test Quantified Expressions
+ * Description : Test Quantified Expressions
* : every <variable-name> in [ordered-list], <variable-name> in [ordered-list] satisfies expression
* Expected Result : Success
* Date : 5th July 2012
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/quantifiers/everysat_02/everysat_02.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/quantifiers/everysat_02/everysat_02.2.update.sqlpp
index 5fb980f..bab85e2 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/quantifiers/everysat_02/everysat_02.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/quantifiers/everysat_02/everysat_02.2.update.sqlpp
@@ -17,7 +17,7 @@
* under the License.
*/
/*
- * Description : Test Quantified Expressions
+ * Description : Test Quantified Expressions
* : every <variable-name> in [ordered-list], <variable-name> in [ordered-list] satisfies expression
* Expected Result : Success
* Date : 5th July 2012
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/quantifiers/everysat_02/everysat_02.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/quantifiers/everysat_02/everysat_02.3.query.sqlpp
index 6e52da3..804257b 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/quantifiers/everysat_02/everysat_02.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/quantifiers/everysat_02/everysat_02.3.query.sqlpp
@@ -17,7 +17,7 @@
* under the License.
*/
/*
- * Description : Test Quantified Expressions
+ * Description : Test Quantified Expressions
* : every <variable-name> in [ordered-list], <variable-name> in [ordered-list] satisfies expression
* Expected Result : Success
* Date : 5th July 2012
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/quantifiers/everysat_03/everysat_03.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/quantifiers/everysat_03/everysat_03.1.ddl.sqlpp
index 5fb980f..bab85e2 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/quantifiers/everysat_03/everysat_03.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/quantifiers/everysat_03/everysat_03.1.ddl.sqlpp
@@ -17,7 +17,7 @@
* under the License.
*/
/*
- * Description : Test Quantified Expressions
+ * Description : Test Quantified Expressions
* : every <variable-name> in [ordered-list], <variable-name> in [ordered-list] satisfies expression
* Expected Result : Success
* Date : 5th July 2012
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/quantifiers/everysat_03/everysat_03.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/quantifiers/everysat_03/everysat_03.2.update.sqlpp
index 5fb980f..bab85e2 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/quantifiers/everysat_03/everysat_03.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/quantifiers/everysat_03/everysat_03.2.update.sqlpp
@@ -17,7 +17,7 @@
* under the License.
*/
/*
- * Description : Test Quantified Expressions
+ * Description : Test Quantified Expressions
* : every <variable-name> in [ordered-list], <variable-name> in [ordered-list] satisfies expression
* Expected Result : Success
* Date : 5th July 2012
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/quantifiers/everysat_03/everysat_03.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/quantifiers/everysat_03/everysat_03.3.query.sqlpp
index 67f08ac..04e7bfa 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/quantifiers/everysat_03/everysat_03.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/quantifiers/everysat_03/everysat_03.3.query.sqlpp
@@ -17,7 +17,7 @@
* under the License.
*/
/*
- * Description : Test Quantified Expressions
+ * Description : Test Quantified Expressions
* : every <variable-name> in [ordered-list], <variable-name> in [ordered-list] satisfies expression
* Expected Result : Success
* Date : 5th July 2012
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/quantifiers/somesat_05/somesat_05.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/quantifiers/somesat_05/somesat_05.1.ddl.sqlpp
index 546f4af..7056230 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/quantifiers/somesat_05/somesat_05.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/quantifiers/somesat_05/somesat_05.1.ddl.sqlpp
@@ -17,7 +17,7 @@
* under the License.
*/
/*
- * Description : Test Quantified Expressions
+ * Description : Test Quantified Expressions
* : some <variable-name> in [ordered-list], <variable-name> in [ordered-list] satisfies function expression
* Expected Result : Success
* Date : 5th July 2012
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/quantifiers/somesat_05/somesat_05.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/quantifiers/somesat_05/somesat_05.2.update.sqlpp
index 546f4af..7056230 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/quantifiers/somesat_05/somesat_05.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/quantifiers/somesat_05/somesat_05.2.update.sqlpp
@@ -17,7 +17,7 @@
* under the License.
*/
/*
- * Description : Test Quantified Expressions
+ * Description : Test Quantified Expressions
* : some <variable-name> in [ordered-list], <variable-name> in [ordered-list] satisfies function expression
* Expected Result : Success
* Date : 5th July 2012
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/quantifiers/somesat_05/somesat_05.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/quantifiers/somesat_05/somesat_05.3.query.sqlpp
index aa96f35..7c7ee74 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/quantifiers/somesat_05/somesat_05.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/quantifiers/somesat_05/somesat_05.3.query.sqlpp
@@ -17,7 +17,7 @@
* under the License.
*/
/*
- * Description : Test Quantified Expressions
+ * Description : Test Quantified Expressions
* : some <variable-name> in [ordered-list], <variable-name> in [ordered-list] satisfies function expression
* Expected Result : Success
* Date : 5th July 2012
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/scan/invalid-scan-syntax.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/scan/invalid-scan-syntax.sqlpp
index ee0500c..7086d39 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/scan/invalid-scan-syntax.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/scan/invalid-scan-syntax.sqlpp
@@ -19,7 +19,7 @@
/*
* Description : Tests syntax error for the changed dataset access syntax
* Expected Result: Syntax Error from parser
- * Date: March 6th 2013
+ * Date: March 6th 2013
*/
drop database test if exists;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/scan/invalid-scan-syntax/invalid-scan-syntax.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/scan/invalid-scan-syntax/invalid-scan-syntax.1.ddl.sqlpp
index 81fdf4c..4a8f642 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/scan/invalid-scan-syntax/invalid-scan-syntax.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/scan/invalid-scan-syntax/invalid-scan-syntax.1.ddl.sqlpp
@@ -19,7 +19,7 @@
/*
* Description : Tests syntax error for the changed dataset access syntax
* Expected Result: Syntax Error from parser
- * Date: March 6th 2013
+ * Date: March 6th 2013
*/
drop database test if exists;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/scan/invalid-scan-syntax/invalid-scan-syntax.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/scan/invalid-scan-syntax/invalid-scan-syntax.2.update.sqlpp
index 409e19c..443fcb6 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/scan/invalid-scan-syntax/invalid-scan-syntax.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/scan/invalid-scan-syntax/invalid-scan-syntax.2.update.sqlpp
@@ -19,7 +19,7 @@
/*
* Description : Tests syntax error for the changed dataset access syntax
* Expected Result: Syntax Error from parser
- * Date: March 6th 2013
+ * Date: March 6th 2013
*/
use test;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/scan/invalid-scan-syntax/invalid-scan-syntax.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/scan/invalid-scan-syntax/invalid-scan-syntax.3.query.sqlpp
index fc65160..661a471 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/scan/invalid-scan-syntax/invalid-scan-syntax.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/scan/invalid-scan-syntax/invalid-scan-syntax.3.query.sqlpp
@@ -19,7 +19,7 @@
/*
* Description : Tests syntax error for the changed dataset access syntax
* Expected Result: Syntax Error from parser
- * Date: March 6th 2013
+ * Date: March 6th 2013
*/
use test;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/scan/issue238_query_1/issue238_query_1.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/scan/issue238_query_1/issue238_query_1.1.ddl.sqlpp
index 2f65563..2dfe8e6 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/scan/issue238_query_1/issue238_query_1.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/scan/issue238_query_1/issue238_query_1.1.ddl.sqlpp
@@ -18,6 +18,13 @@
*/
/*
* Description : Create an dataset and load it from two file splits
+ Include whitespace between the elements in the comma-separated list of file paths.
+* Expected Res : Success
+* Issue : 238
+* Date : 7th Jan 2013
+*/
+
+/* scan and print an ADM file as a dataset of closed records */
drop database test if exists;
create database test;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/scan/issue238_query_1/issue238_query_1.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/scan/issue238_query_1/issue238_query_1.2.update.sqlpp
index 2186211..aac36eb 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/scan/issue238_query_1/issue238_query_1.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/scan/issue238_query_1/issue238_query_1.2.update.sqlpp
@@ -17,7 +17,14 @@
* under the License.
*/
/*
-* Description : Create an dataset and load it from two file splits
+* Description : Create an dataset and load it from two file splits
+ Include whitespace between the elements in the comma-separated list of file paths.
+* Expected Res : Success
+* Issue : 238
+* Date : 7th Jan 2013
+*/
+
+/* scan and print an ADM file as a dataset of closed records */
use test;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/scan/issue238_query_1/issue238_query_1.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/scan/issue238_query_1/issue238_query_1.3.query.sqlpp
index 453305f..3366ac7 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/scan/issue238_query_1/issue238_query_1.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/scan/issue238_query_1/issue238_query_1.3.query.sqlpp
@@ -17,7 +17,15 @@
* under the License.
*/
/*
-* Description : Create an dataset and load it from two file splits
+* Description : Create an dataset and load it from two file splits
+ Include whitespace between the elements in the comma-separated list of file paths.
+* Expected Res : Success
+* Issue : 238
+* Date : 7th Jan 2013
+*/
+
+/* scan and print an ADM file as a dataset of closed records */
+
use test;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/scan/issue238_query_2/issue238_query_2.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/scan/issue238_query_2/issue238_query_2.1.ddl.sqlpp
index 2f65563..d87d851 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/scan/issue238_query_2/issue238_query_2.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/scan/issue238_query_2/issue238_query_2.1.ddl.sqlpp
@@ -18,6 +18,13 @@
*/
/*
* Description : Create an dataset and load it from two file splits
+ Include newline between the elements in the comma-separated list of file paths.
+* Expected Res : Success
+* Issue : 238
+* Date : 7th Jan 2013
+*/
+
+/* scan and print an ADM file as a dataset of closed records */
drop database test if exists;
create database test;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/scan/issue238_query_2/issue238_query_2.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/scan/issue238_query_2/issue238_query_2.2.update.sqlpp
index d7618b9..21ab47c 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/scan/issue238_query_2/issue238_query_2.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/scan/issue238_query_2/issue238_query_2.2.update.sqlpp
@@ -17,7 +17,14 @@
* under the License.
*/
/*
-* Description : Create an dataset and load it from two file splits
+* Description : Create an dataset and load it from two file splits
+ Include newline between the elements in the comma-separated list of file paths.
+* Expected Res : Success
+* Issue : 238
+* Date : 7th Jan 2013
+*/
+
+/* scan and print an ADM file as a dataset of closed records */
use test;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/scan/issue238_query_2/issue238_query_2.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/scan/issue238_query_2/issue238_query_2.3.query.sqlpp
index 453305f..bc53dca 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/scan/issue238_query_2/issue238_query_2.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/scan/issue238_query_2/issue238_query_2.3.query.sqlpp
@@ -17,7 +17,14 @@
* under the License.
*/
/*
-* Description : Create an dataset and load it from two file splits
+* Description : Create an dataset and load it from two file splits
+ Include newline between the elements in the comma-separated list of file paths.
+* Expected Res : Success
+* Issue : 238
+* Date : 7th Jan 2013
+*/
+
+/* scan and print an ADM file as a dataset of closed records */
use test;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/similarity/fuzzyeq-edit-distance/fuzzyeq-edit-distance.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/similarity/fuzzyeq-edit-distance/fuzzyeq-edit-distance.1.ddl.sqlpp
index 83def9f..0f74b37 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/similarity/fuzzyeq-edit-distance/fuzzyeq-edit-distance.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/similarity/fuzzyeq-edit-distance/fuzzyeq-edit-distance.1.ddl.sqlpp
@@ -32,7 +32,7 @@
misc : string
}
-create nodegroup group1 if not exists on
+create nodegroup group1 if not exists on
nc1,
nc2
;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/similarity/fuzzyeq-similarity-jaccard/fuzzyeq-similarity-jaccard.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/similarity/fuzzyeq-similarity-jaccard/fuzzyeq-similarity-jaccard.1.ddl.sqlpp
index 83def9f..0f74b37 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/similarity/fuzzyeq-similarity-jaccard/fuzzyeq-similarity-jaccard.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/similarity/fuzzyeq-similarity-jaccard/fuzzyeq-similarity-jaccard.1.ddl.sqlpp
@@ -32,7 +32,7 @@
misc : string
}
-create nodegroup group1 if not exists on
+create nodegroup group1 if not exists on
nc1,
nc2
;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/similarity/similarity-jaccard-check_query/similarity-jaccard-check_query.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/similarity/similarity-jaccard-check_query/similarity-jaccard-check_query.1.ddl.sqlpp
index 83def9f..0f74b37 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/similarity/similarity-jaccard-check_query/similarity-jaccard-check_query.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/similarity/similarity-jaccard-check_query/similarity-jaccard-check_query.1.ddl.sqlpp
@@ -32,7 +32,7 @@
misc : string
}
-create nodegroup group1 if not exists on
+create nodegroup group1 if not exists on
nc1,
nc2
;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/similarity/similarity-jaccard-sorted-check_query/similarity-jaccard-sorted-check_query.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/similarity/similarity-jaccard-sorted-check_query/similarity-jaccard-sorted-check_query.1.ddl.sqlpp
index 97714cf..98cd4a5 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/similarity/similarity-jaccard-sorted-check_query/similarity-jaccard-sorted-check_query.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/similarity/similarity-jaccard-sorted-check_query/similarity-jaccard-sorted-check_query.1.ddl.sqlpp
@@ -29,7 +29,7 @@
misc : string
}
-create nodegroup group1 if not exists on
+create nodegroup group1 if not exists on
nc1,
nc2
;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/similarity/similarity-jaccard-sorted_query/similarity-jaccard-sorted_query.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/similarity/similarity-jaccard-sorted_query/similarity-jaccard-sorted_query.1.ddl.sqlpp
index 83def9f..0f74b37 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/similarity/similarity-jaccard-sorted_query/similarity-jaccard-sorted_query.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/similarity/similarity-jaccard-sorted_query/similarity-jaccard-sorted_query.1.ddl.sqlpp
@@ -32,7 +32,7 @@
misc : string
}
-create nodegroup group1 if not exists on
+create nodegroup group1 if not exists on
nc1,
nc2
;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/similarity/similarity-jaccard_query/similarity-jaccard_query.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/similarity/similarity-jaccard_query/similarity-jaccard_query.1.ddl.sqlpp
index 83def9f..0f74b37 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/similarity/similarity-jaccard_query/similarity-jaccard_query.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/similarity/similarity-jaccard_query/similarity-jaccard_query.1.ddl.sqlpp
@@ -32,7 +32,7 @@
misc : string
}
-create nodegroup group1 if not exists on
+create nodegroup group1 if not exists on
nc1,
nc2
;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/spatial/cell-aggregation-with-filtering/cell-aggregation-with-filtering.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/spatial/cell-aggregation-with-filtering/cell-aggregation-with-filtering.1.ddl.sqlpp
index fadcc09..291f535 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/spatial/cell-aggregation-with-filtering/cell-aggregation-with-filtering.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/spatial/cell-aggregation-with-filtering/cell-aggregation-with-filtering.1.ddl.sqlpp
@@ -32,7 +32,7 @@
text : string
}
-create nodegroup group1 if not exists on
+create nodegroup group1 if not exists on
nc1,
nc2
;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/cpttostr01/cpttostr01.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/cpttostr01/cpttostr01.1.ddl.sqlpp
index 36b2503..29706a3 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/cpttostr01/cpttostr01.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/cpttostr01/cpttostr01.1.ddl.sqlpp
@@ -19,7 +19,7 @@
/*
* Test case Name : cpttostr01.aql
* Description : Test codepoint-to-string(codepoint) function.
- * : Pass the codepoints which are in the internal dataset to the function.
+ * : Pass the codepoints which are in the internal dataset to the function.
* Success : Yes
* Date : 16th April 2012
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/cpttostr01/cpttostr01.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/cpttostr01/cpttostr01.2.update.sqlpp
index 6f84b11..9e96f25 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/cpttostr01/cpttostr01.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/cpttostr01/cpttostr01.2.update.sqlpp
@@ -19,7 +19,7 @@
/*
* Test case Name : cpttostr01.aql
* Description : Test codepoint-to-string(codepoint) function.
- * : Pass the codepoints which are in the internal dataset to the function.
+ * : Pass the codepoints which are in the internal dataset to the function.
* Success : Yes
* Date : 16th April 2012
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/cpttostr01/cpttostr01.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/cpttostr01/cpttostr01.3.query.sqlpp
index 41d8e71..82bbf04 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/cpttostr01/cpttostr01.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/cpttostr01/cpttostr01.3.query.sqlpp
@@ -19,7 +19,7 @@
/*
* Test case Name : cpttostr01.aql
* Description : Test codepoint-to-string(codepoint) function.
- * : Pass the codepoints which are in the internal dataset to the function.
+ * : Pass the codepoints which are in the internal dataset to the function.
* Success : Yes
* Date : 16th April 2012
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/end-with1/end-with1.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/end-with1/end-with1.3.query.sqlpp
deleted file mode 100644
index 019e3ff..0000000
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/end-with1/end-with1.3.query.sqlpp
+++ /dev/null
@@ -1,23 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
-use test;
-
-
-{'result1':test."end-with"('hello world','werld')};
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/end-with2/end-with2.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/end-with2/end-with2.3.query.sqlpp
deleted file mode 100644
index edc45ed..0000000
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/end-with2/end-with2.3.query.sqlpp
+++ /dev/null
@@ -1,23 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
-use test;
-
-
-{'result1':test."end-with"('hello world',' world')};
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/end-with3/end-with3.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/end-with3/end-with3.3.query.sqlpp
deleted file mode 100644
index a9b5573..0000000
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/end-with3/end-with3.3.query.sqlpp
+++ /dev/null
@@ -1,23 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
-use test;
-
-
-{'result1':test."end-with"('ends','')};
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/end-with4/end-with4.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/end-with4/end-with4.3.query.sqlpp
deleted file mode 100644
index 3d84a3a..0000000
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/end-with4/end-with4.3.query.sqlpp
+++ /dev/null
@@ -1,23 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
-use test;
-
-
-{'result1':test."end-with"('ends','ss')};
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/end-with5/end-with5.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/end-with5/end-with5.3.query.sqlpp
deleted file mode 100644
index 2f1012e..0000000
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/end-with5/end-with5.3.query.sqlpp
+++ /dev/null
@@ -1,23 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
-use test;
-
-
-{'f1':test."end-with"('ends','s'),'f2':test."end-with"('start',null),'f3':test."end-with"(null,null),'f4':test."end-with"('',null),'f5':test."end-with"('',''),'f6':test."end-with"(null,'')};
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/end-with1/end-with1.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/ends-with1/ends-with1.1.ddl.sqlpp
similarity index 100%
rename from asterix-app/src/test/resources/runtimets/queries_sqlpp/string/end-with1/end-with1.1.ddl.sqlpp
rename to asterix-app/src/test/resources/runtimets/queries_sqlpp/string/ends-with1/ends-with1.1.ddl.sqlpp
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/end-with1/end-with1.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/ends-with1/ends-with1.2.update.sqlpp
similarity index 100%
rename from asterix-app/src/test/resources/runtimets/queries_sqlpp/string/end-with1/end-with1.2.update.sqlpp
rename to asterix-app/src/test/resources/runtimets/queries_sqlpp/string/ends-with1/ends-with1.2.update.sqlpp
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/start-with3/start-with3.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/ends-with1/ends-with1.3.query.sqlpp
similarity index 93%
copy from asterix-app/src/test/resources/runtimets/queries_sqlpp/string/start-with3/start-with3.3.query.sqlpp
copy to asterix-app/src/test/resources/runtimets/queries_sqlpp/string/ends-with1/ends-with1.3.query.sqlpp
index 2adc661..2cb183d 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/start-with3/start-with3.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/ends-with1/ends-with1.3.query.sqlpp
@@ -20,4 +20,4 @@
use test;
-{'result1':test."start-with"('start','start')};
+{'result1':test."ends-with"('hello world','werld')};
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/end-with2/end-with2.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/ends-with2/ends-with2.1.ddl.sqlpp
similarity index 100%
rename from asterix-app/src/test/resources/runtimets/queries_sqlpp/string/end-with2/end-with2.1.ddl.sqlpp
rename to asterix-app/src/test/resources/runtimets/queries_sqlpp/string/ends-with2/ends-with2.1.ddl.sqlpp
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/end-with2/end-with2.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/ends-with2/ends-with2.2.update.sqlpp
similarity index 100%
rename from asterix-app/src/test/resources/runtimets/queries_sqlpp/string/end-with2/end-with2.2.update.sqlpp
rename to asterix-app/src/test/resources/runtimets/queries_sqlpp/string/ends-with2/ends-with2.2.update.sqlpp
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/start-with3/start-with3.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/ends-with2/ends-with2.3.query.sqlpp
similarity index 93%
copy from asterix-app/src/test/resources/runtimets/queries_sqlpp/string/start-with3/start-with3.3.query.sqlpp
copy to asterix-app/src/test/resources/runtimets/queries_sqlpp/string/ends-with2/ends-with2.3.query.sqlpp
index 2adc661..8b2b601 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/start-with3/start-with3.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/ends-with2/ends-with2.3.query.sqlpp
@@ -20,4 +20,4 @@
use test;
-{'result1':test."start-with"('start','start')};
+{'result1':test."ends-with"('hello world',' world')};
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/end-with3/end-with3.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/ends-with3/ends-with3.1.ddl.sqlpp
similarity index 100%
rename from asterix-app/src/test/resources/runtimets/queries_sqlpp/string/end-with3/end-with3.1.ddl.sqlpp
rename to asterix-app/src/test/resources/runtimets/queries_sqlpp/string/ends-with3/ends-with3.1.ddl.sqlpp
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/end-with3/end-with3.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/ends-with3/ends-with3.2.update.sqlpp
similarity index 100%
rename from asterix-app/src/test/resources/runtimets/queries_sqlpp/string/end-with3/end-with3.2.update.sqlpp
rename to asterix-app/src/test/resources/runtimets/queries_sqlpp/string/ends-with3/ends-with3.2.update.sqlpp
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/start-with3/start-with3.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/ends-with3/ends-with3.3.query.sqlpp
similarity index 94%
copy from asterix-app/src/test/resources/runtimets/queries_sqlpp/string/start-with3/start-with3.3.query.sqlpp
copy to asterix-app/src/test/resources/runtimets/queries_sqlpp/string/ends-with3/ends-with3.3.query.sqlpp
index 2adc661..ba6f636 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/start-with3/start-with3.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/ends-with3/ends-with3.3.query.sqlpp
@@ -20,4 +20,4 @@
use test;
-{'result1':test."start-with"('start','start')};
+{'result1':test."ends-with"('ends','')};
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/end-with4/end-with4.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/ends-with4/ends-with4.1.ddl.sqlpp
similarity index 100%
rename from asterix-app/src/test/resources/runtimets/queries_sqlpp/string/end-with4/end-with4.1.ddl.sqlpp
rename to asterix-app/src/test/resources/runtimets/queries_sqlpp/string/ends-with4/ends-with4.1.ddl.sqlpp
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/end-with4/end-with4.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/ends-with4/ends-with4.2.update.sqlpp
similarity index 100%
rename from asterix-app/src/test/resources/runtimets/queries_sqlpp/string/end-with4/end-with4.2.update.sqlpp
rename to asterix-app/src/test/resources/runtimets/queries_sqlpp/string/ends-with4/ends-with4.2.update.sqlpp
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/start-with3/start-with3.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/ends-with4/ends-with4.3.query.sqlpp
similarity index 94%
copy from asterix-app/src/test/resources/runtimets/queries_sqlpp/string/start-with3/start-with3.3.query.sqlpp
copy to asterix-app/src/test/resources/runtimets/queries_sqlpp/string/ends-with4/ends-with4.3.query.sqlpp
index 2adc661..8d356bd 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/start-with3/start-with3.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/ends-with4/ends-with4.3.query.sqlpp
@@ -20,4 +20,4 @@
use test;
-{'result1':test."start-with"('start','start')};
+{'result1':test."ends-with"('ends','ss')};
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/end-with5/end-with5.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/ends-with5/ends-with5.1.ddl.sqlpp
similarity index 100%
rename from asterix-app/src/test/resources/runtimets/queries_sqlpp/string/end-with5/end-with5.1.ddl.sqlpp
rename to asterix-app/src/test/resources/runtimets/queries_sqlpp/string/ends-with5/ends-with5.1.ddl.sqlpp
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/end-with5/end-with5.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/ends-with5/ends-with5.2.update.sqlpp
similarity index 100%
rename from asterix-app/src/test/resources/runtimets/queries_sqlpp/string/end-with5/end-with5.2.update.sqlpp
rename to asterix-app/src/test/resources/runtimets/queries_sqlpp/string/ends-with5/ends-with5.2.update.sqlpp
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/start-with3/start-with3.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/ends-with5/ends-with5.3.query.sqlpp
similarity index 80%
copy from asterix-app/src/test/resources/runtimets/queries_sqlpp/string/start-with3/start-with3.3.query.sqlpp
copy to asterix-app/src/test/resources/runtimets/queries_sqlpp/string/ends-with5/ends-with5.3.query.sqlpp
index 2adc661..1cd8038 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/start-with3/start-with3.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/ends-with5/ends-with5.3.query.sqlpp
@@ -20,4 +20,4 @@
use test;
-{'result1':test."start-with"('start','start')};
+{'f1':test."ends-with"('ends','s'),'f2':test."ends-with"('start',null),'f3':test."ends-with"(null,null),'f4':test."ends-with"('',null),'f5':test."ends-with"('',''),'f6':test."ends-with"(null,'')};
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/end-with1/end-with1.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/ends-with6/ends-with6.1.ddl.sqlpp
similarity index 100%
copy from asterix-app/src/test/resources/runtimets/queries_sqlpp/string/end-with1/end-with1.1.ddl.sqlpp
copy to asterix-app/src/test/resources/runtimets/queries_sqlpp/string/ends-with6/ends-with6.1.ddl.sqlpp
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/end-with1/end-with1.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/ends-with6/ends-with6.2.update.sqlpp
similarity index 100%
copy from asterix-app/src/test/resources/runtimets/queries_sqlpp/string/end-with1/end-with1.2.update.sqlpp
copy to asterix-app/src/test/resources/runtimets/queries_sqlpp/string/ends-with6/ends-with6.2.update.sqlpp
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/ends-with_01/ends-with_01.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/ends-with6/ends-with6.3.query.sqlpp
similarity index 100%
rename from asterix-app/src/test/resources/runtimets/queries_sqlpp/string/ends-with_01/ends-with_01.3.query.sqlpp
rename to asterix-app/src/test/resources/runtimets/queries_sqlpp/string/ends-with6/ends-with6.3.query.sqlpp
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/endwith02/endwith02.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/ends-with7/ends-with7.1.ddl.sqlpp
similarity index 100%
rename from asterix-app/src/test/resources/runtimets/queries_sqlpp/string/endwith02/endwith02.1.ddl.sqlpp
rename to asterix-app/src/test/resources/runtimets/queries_sqlpp/string/ends-with7/ends-with7.1.ddl.sqlpp
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/endwith02/endwith02.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/ends-with7/ends-with7.2.update.sqlpp
similarity index 100%
rename from asterix-app/src/test/resources/runtimets/queries_sqlpp/string/endwith02/endwith02.2.update.sqlpp
rename to asterix-app/src/test/resources/runtimets/queries_sqlpp/string/ends-with7/ends-with7.2.update.sqlpp
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/endwith02/endwith02.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/ends-with7/ends-with7.3.query.sqlpp
similarity index 77%
rename from asterix-app/src/test/resources/runtimets/queries_sqlpp/string/endwith02/endwith02.3.query.sqlpp
rename to asterix-app/src/test/resources/runtimets/queries_sqlpp/string/ends-with7/ends-with7.3.query.sqlpp
index d1881cd..87390ea 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/endwith02/endwith02.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/ends-with7/ends-with7.3.query.sqlpp
@@ -24,5 +24,5 @@
*/
select element a
-from ["end-with"('aBCDEFghIa',"codepoint-to-string"([41])),"end-with"('AbCDEFghIA',"codepoint-to-string"([41])),"end-with"('AbCdEfGhIjKlMnOpQrStUvWxYz','xYz'),"end-with"('abcdef',lowercase('ABCDEf')),"end-with"('abcdef','abcdef'),"end-with"('abcdef123','ef123')] as a
+from ["ends-with"('aBCDEFghIa',"codepoint-to-string"([41])),"ends-with"('AbCDEFghIA',"codepoint-to-string"([41])),"ends-with"('AbCdEfGhIjKlMnOpQrStUvWxYz','xYz'),"ends-with"('abcdef',lowercase('ABCDEf')),"ends-with"('abcdef','abcdef'),"ends-with"('abcdef123','ef123')] as a
;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/endwith03/endwith03.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/ends-with8/ends-with8.1.ddl.sqlpp
similarity index 100%
rename from asterix-app/src/test/resources/runtimets/queries_sqlpp/string/endwith03/endwith03.1.ddl.sqlpp
rename to asterix-app/src/test/resources/runtimets/queries_sqlpp/string/ends-with8/ends-with8.1.ddl.sqlpp
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/endwith03/endwith03.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/ends-with8/ends-with8.2.update.sqlpp
similarity index 100%
rename from asterix-app/src/test/resources/runtimets/queries_sqlpp/string/endwith03/endwith03.2.update.sqlpp
rename to asterix-app/src/test/resources/runtimets/queries_sqlpp/string/ends-with8/ends-with8.2.update.sqlpp
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/endwith03/endwith03.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/ends-with8/ends-with8.3.query.sqlpp
similarity index 95%
rename from asterix-app/src/test/resources/runtimets/queries_sqlpp/string/endwith03/endwith03.3.query.sqlpp
rename to asterix-app/src/test/resources/runtimets/queries_sqlpp/string/ends-with8/ends-with8.3.query.sqlpp
index f691356..d0009ec 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/endwith03/endwith03.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/ends-with8/ends-with8.3.query.sqlpp
@@ -28,6 +28,6 @@
select element l
from testds as l
-where test."end-with"(l.name,'Jones')
+where test."ends-with"(l.name,'Jones')
order by l.name
;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/ends-with_01/ends-with_01.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/ends-with_01/ends-with_01.1.ddl.sqlpp
deleted file mode 100644
index 15f980b..0000000
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/ends-with_01/ends-with_01.1.ddl.sqlpp
+++ /dev/null
@@ -1,22 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
-drop database test if exists;
-create database test;
-
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/ends-with_01/ends-with_01.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/ends-with_01/ends-with_01.2.update.sqlpp
deleted file mode 100644
index bd244d0..0000000
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/ends-with_01/ends-with_01.2.update.sqlpp
+++ /dev/null
@@ -1,19 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/matches11/matches11.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/matches11/matches11.3.query.sqlpp
index 35099a4..dd0a7fc 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/matches11/matches11.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/matches11/matches11.3.query.sqlpp
@@ -24,5 +24,5 @@
*/
select element a
-from [matches('hello',null),matches('hello','helllo'),matches('hello',' '),matches(null,'hello'),matches('hello','[^a-z]')] as a
+from [null,matches('hello',null),matches('hello','helllo'),matches('hello',' '),matches(null,'hello'),matches('hello','[^a-z]')] as a
;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/start-with1/start-with1.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/start-with1/start-with1.3.query.sqlpp
deleted file mode 100644
index 8f14b3a..0000000
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/start-with1/start-with1.3.query.sqlpp
+++ /dev/null
@@ -1,23 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
-use test;
-
-
-{'result1':test."start-with"('start','st')};
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/start-with2/start-with2.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/start-with2/start-with2.3.query.sqlpp
deleted file mode 100644
index 61473d4..0000000
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/start-with2/start-with2.3.query.sqlpp
+++ /dev/null
@@ -1,23 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
-use test;
-
-
-{'result1':test."start-with"('start','t')};
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/start-with4/start-with4.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/start-with4/start-with4.3.query.sqlpp
deleted file mode 100644
index 0b1abea..0000000
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/start-with4/start-with4.3.query.sqlpp
+++ /dev/null
@@ -1,23 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
-use test;
-
-
-{'f1':test."start-with"('start',''),'f2':test."start-with"('start',null),'f3':test."start-with"(null,null),'f4':test."start-with"('',null),'f5':test."start-with"('',''),'f6':test."start-with"(null,'')};
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/start-with1/start-with1.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/starts-with1/starts-with1.1.ddl.sqlpp
similarity index 100%
rename from asterix-app/src/test/resources/runtimets/queries_sqlpp/string/start-with1/start-with1.1.ddl.sqlpp
rename to asterix-app/src/test/resources/runtimets/queries_sqlpp/string/starts-with1/starts-with1.1.ddl.sqlpp
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/start-with1/start-with1.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/starts-with1/starts-with1.2.update.sqlpp
similarity index 100%
rename from asterix-app/src/test/resources/runtimets/queries_sqlpp/string/start-with1/start-with1.2.update.sqlpp
rename to asterix-app/src/test/resources/runtimets/queries_sqlpp/string/starts-with1/starts-with1.2.update.sqlpp
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/start-with3/start-with3.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/starts-with1/starts-with1.3.query.sqlpp
similarity index 94%
rename from asterix-app/src/test/resources/runtimets/queries_sqlpp/string/start-with3/start-with3.3.query.sqlpp
rename to asterix-app/src/test/resources/runtimets/queries_sqlpp/string/starts-with1/starts-with1.3.query.sqlpp
index 2adc661..f860c56 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/start-with3/start-with3.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/starts-with1/starts-with1.3.query.sqlpp
@@ -20,4 +20,4 @@
use test;
-{'result1':test."start-with"('start','start')};
+{'result1':test."starts-with"('start','st')};
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/start-with2/start-with2.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/starts-with2/starts-with2.1.ddl.sqlpp
similarity index 100%
rename from asterix-app/src/test/resources/runtimets/queries_sqlpp/string/start-with2/start-with2.1.ddl.sqlpp
rename to asterix-app/src/test/resources/runtimets/queries_sqlpp/string/starts-with2/starts-with2.1.ddl.sqlpp
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/start-with2/start-with2.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/starts-with2/starts-with2.2.update.sqlpp
similarity index 100%
rename from asterix-app/src/test/resources/runtimets/queries_sqlpp/string/start-with2/start-with2.2.update.sqlpp
rename to asterix-app/src/test/resources/runtimets/queries_sqlpp/string/starts-with2/starts-with2.2.update.sqlpp
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/start-with3/start-with3.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/starts-with2/starts-with2.3.query.sqlpp
similarity index 94%
copy from asterix-app/src/test/resources/runtimets/queries_sqlpp/string/start-with3/start-with3.3.query.sqlpp
copy to asterix-app/src/test/resources/runtimets/queries_sqlpp/string/starts-with2/starts-with2.3.query.sqlpp
index 2adc661..da076a6 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/start-with3/start-with3.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/starts-with2/starts-with2.3.query.sqlpp
@@ -20,4 +20,4 @@
use test;
-{'result1':test."start-with"('start','start')};
+{'result1':test."starts-with"('start','t')};
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/start-with3/start-with3.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/starts-with3/starts-with3.1.ddl.sqlpp
similarity index 100%
rename from asterix-app/src/test/resources/runtimets/queries_sqlpp/string/start-with3/start-with3.1.ddl.sqlpp
rename to asterix-app/src/test/resources/runtimets/queries_sqlpp/string/starts-with3/starts-with3.1.ddl.sqlpp
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/start-with3/start-with3.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/starts-with3/starts-with3.2.update.sqlpp
similarity index 100%
rename from asterix-app/src/test/resources/runtimets/queries_sqlpp/string/start-with3/start-with3.2.update.sqlpp
rename to asterix-app/src/test/resources/runtimets/queries_sqlpp/string/starts-with3/starts-with3.2.update.sqlpp
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/start-with3/start-with3.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/starts-with3/starts-with3.3.query.sqlpp
similarity index 94%
copy from asterix-app/src/test/resources/runtimets/queries_sqlpp/string/start-with3/start-with3.3.query.sqlpp
copy to asterix-app/src/test/resources/runtimets/queries_sqlpp/string/starts-with3/starts-with3.3.query.sqlpp
index 2adc661..a16ba45 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/start-with3/start-with3.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/starts-with3/starts-with3.3.query.sqlpp
@@ -20,4 +20,4 @@
use test;
-{'result1':test."start-with"('start','start')};
+{'result1':test."starts-with"('start','start')};
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/start-with4/start-with4.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/starts-with4/starts-with4.1.ddl.sqlpp
similarity index 100%
rename from asterix-app/src/test/resources/runtimets/queries_sqlpp/string/start-with4/start-with4.1.ddl.sqlpp
rename to asterix-app/src/test/resources/runtimets/queries_sqlpp/string/starts-with4/starts-with4.1.ddl.sqlpp
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/start-with4/start-with4.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/starts-with4/starts-with4.2.update.sqlpp
similarity index 100%
rename from asterix-app/src/test/resources/runtimets/queries_sqlpp/string/start-with4/start-with4.2.update.sqlpp
rename to asterix-app/src/test/resources/runtimets/queries_sqlpp/string/starts-with4/starts-with4.2.update.sqlpp
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/start-with3/start-with3.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/starts-with4/starts-with4.3.query.sqlpp
similarity index 79%
copy from asterix-app/src/test/resources/runtimets/queries_sqlpp/string/start-with3/start-with3.3.query.sqlpp
copy to asterix-app/src/test/resources/runtimets/queries_sqlpp/string/starts-with4/starts-with4.3.query.sqlpp
index 2adc661..304f9cd 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/start-with3/start-with3.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/starts-with4/starts-with4.3.query.sqlpp
@@ -20,4 +20,4 @@
use test;
-{'result1':test."start-with"('start','start')};
+{'f1':test."starts-with"('start',''),'f2':test."starts-with"('start',null),'f3':test."starts-with"(null,null),'f4':test."starts-with"('',null),'f5':test."starts-with"('',''),'f6':test."starts-with"(null,'')};
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/start-with5/start-with5.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/starts-with5/starts-with5.1.ddl.sqlpp
similarity index 100%
rename from asterix-app/src/test/resources/runtimets/queries_sqlpp/string/start-with5/start-with5.1.ddl.sqlpp
rename to asterix-app/src/test/resources/runtimets/queries_sqlpp/string/starts-with5/starts-with5.1.ddl.sqlpp
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/start-with5/start-with5.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/starts-with5/starts-with5.2.update.sqlpp
similarity index 100%
rename from asterix-app/src/test/resources/runtimets/queries_sqlpp/string/start-with5/start-with5.2.update.sqlpp
rename to asterix-app/src/test/resources/runtimets/queries_sqlpp/string/starts-with5/starts-with5.2.update.sqlpp
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/start-with5/start-with5.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/starts-with5/starts-with5.3.query.sqlpp
similarity index 95%
rename from asterix-app/src/test/resources/runtimets/queries_sqlpp/string/start-with5/start-with5.3.query.sqlpp
rename to asterix-app/src/test/resources/runtimets/queries_sqlpp/string/starts-with5/starts-with5.3.query.sqlpp
index dc2b654..46a3da9 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/start-with5/start-with5.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/starts-with5/starts-with5.3.query.sqlpp
@@ -20,4 +20,4 @@
use test;
-{'result1':test."start-with"('','s')};
+{'result1':test."starts-with"('','s')};
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/start-with1/start-with1.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/starts-with6/starts-with6.1.ddl.sqlpp
similarity index 100%
copy from asterix-app/src/test/resources/runtimets/queries_sqlpp/string/start-with1/start-with1.1.ddl.sqlpp
copy to asterix-app/src/test/resources/runtimets/queries_sqlpp/string/starts-with6/starts-with6.1.ddl.sqlpp
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/start-with1/start-with1.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/starts-with6/starts-with6.2.update.sqlpp
similarity index 100%
copy from asterix-app/src/test/resources/runtimets/queries_sqlpp/string/start-with1/start-with1.2.update.sqlpp
copy to asterix-app/src/test/resources/runtimets/queries_sqlpp/string/starts-with6/starts-with6.2.update.sqlpp
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/starts-with_01/starts-with_01.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/starts-with6/starts-with6.3.query.sqlpp
similarity index 100%
rename from asterix-app/src/test/resources/runtimets/queries_sqlpp/string/starts-with_01/starts-with_01.3.query.sqlpp
rename to asterix-app/src/test/resources/runtimets/queries_sqlpp/string/starts-with6/starts-with6.3.query.sqlpp
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/startwith02/startwith02.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/starts-with7/starts-with7.1.ddl.sqlpp
similarity index 100%
rename from asterix-app/src/test/resources/runtimets/queries_sqlpp/string/startwith02/startwith02.1.ddl.sqlpp
rename to asterix-app/src/test/resources/runtimets/queries_sqlpp/string/starts-with7/starts-with7.1.ddl.sqlpp
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/startwith02/startwith02.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/starts-with7/starts-with7.2.update.sqlpp
similarity index 100%
rename from asterix-app/src/test/resources/runtimets/queries_sqlpp/string/startwith02/startwith02.2.update.sqlpp
rename to asterix-app/src/test/resources/runtimets/queries_sqlpp/string/starts-with7/starts-with7.2.update.sqlpp
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/startwith02/startwith02.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/starts-with7/starts-with7.3.query.sqlpp
similarity index 65%
rename from asterix-app/src/test/resources/runtimets/queries_sqlpp/string/startwith02/startwith02.3.query.sqlpp
rename to asterix-app/src/test/resources/runtimets/queries_sqlpp/string/starts-with7/starts-with7.3.query.sqlpp
index 60b1d60..e6a4414 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/startwith02/startwith02.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/starts-with7/starts-with7.3.query.sqlpp
@@ -24,5 +24,5 @@
*/
select element a
-from ["start-with"('Hello','H'),"start-with"('Hello',lowercase('He')),"start-with"('Hello',''),"start-with"('Hello',' '),"start-with"('Hello',null),"start-with"('abcdef',lowercase('ABCDEf')),"start-with"('abcdef','abcdef'),"start-with"('abcdef','abc '),"start-with"('abc\\tdef','abc\\t'),"start-with"(' abcdef','abc'),"start-with"('0x1FF','0'),"start-with"('<ID>','<'),"start-with"('aBCDEFghI',"codepoint-to-string"([41])),"start-with"('AbCDEFghI',"codepoint-to-string"([41]))] as a
+from [null,"starts-with"('Hello','H'),"starts-with"('Hello',lowercase('He')),"starts-with"('Hello',''),"starts-with"('Hello',' '),"starts-with"('Hello',null),"starts-with"('abcdef',lowercase('ABCDEf')),"starts-with"('abcdef','abcdef'),"starts-with"('abcdef','abc '),"starts-with"('abc\\tdef','abc\\t'),"starts-with"(' abcdef','abc'),"starts-with"('0x1FF','0'),"starts-with"('<ID>','<'),"starts-with"('aBCDEFghI',"codepoint-to-string"([41])),"starts-with"('AbCDEFghI',"codepoint-to-string"([41]))] as a
;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/startwith03/startwith03.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/starts-with8/starts-with8.1.ddl.sqlpp
similarity index 100%
rename from asterix-app/src/test/resources/runtimets/queries_sqlpp/string/startwith03/startwith03.1.ddl.sqlpp
rename to asterix-app/src/test/resources/runtimets/queries_sqlpp/string/starts-with8/starts-with8.1.ddl.sqlpp
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/startwith03/startwith03.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/starts-with8/starts-with8.2.update.sqlpp
similarity index 100%
rename from asterix-app/src/test/resources/runtimets/queries_sqlpp/string/startwith03/startwith03.2.update.sqlpp
rename to asterix-app/src/test/resources/runtimets/queries_sqlpp/string/starts-with8/starts-with8.2.update.sqlpp
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/startwith03/startwith03.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/starts-with8/starts-with8.3.query.sqlpp
similarity index 95%
rename from asterix-app/src/test/resources/runtimets/queries_sqlpp/string/startwith03/startwith03.3.query.sqlpp
rename to asterix-app/src/test/resources/runtimets/queries_sqlpp/string/starts-with8/starts-with8.3.query.sqlpp
index 3e74a08..049e502 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/startwith03/startwith03.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/starts-with8/starts-with8.3.query.sqlpp
@@ -28,6 +28,6 @@
select element l
from testds as l
-where test."start-with"(l.name,'John')
+where test."starts-with"(l.name,'John')
order by l.name
;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/starts-with_01/starts-with_01.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/starts-with_01/starts-with_01.1.ddl.sqlpp
deleted file mode 100644
index 15f980b..0000000
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/starts-with_01/starts-with_01.1.ddl.sqlpp
+++ /dev/null
@@ -1,22 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
-drop database test if exists;
-create database test;
-
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/starts-with_01/starts-with_01.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/starts-with_01/starts-with_01.2.update.sqlpp
deleted file mode 100644
index bd244d0..0000000
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/starts-with_01/starts-with_01.2.update.sqlpp
+++ /dev/null
@@ -1,19 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
-
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/strconcat01/strconcat01.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/strconcat01/strconcat01.1.ddl.sqlpp
index 6426040..533ebc8 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/strconcat01/strconcat01.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/strconcat01/strconcat01.1.ddl.sqlpp
@@ -19,7 +19,7 @@
/*
* Test case Name : strconcat01.aql
* Description : Test string-concat([string]) function.
- * : Pass the strings(which are in internal dataset) to string-concat function for concatenation.
+ * : Pass the strings(which are in internal dataset) to string-concat function for concatenation.
* Success : Yes
* Date : 16th April 2012
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/strconcat01/strconcat01.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/strconcat01/strconcat01.2.update.sqlpp
index dca3990..7574f32 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/strconcat01/strconcat01.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/strconcat01/strconcat01.2.update.sqlpp
@@ -19,7 +19,7 @@
/*
* Test case Name : strconcat01.aql
* Description : Test string-concat([string]) function.
- * : Pass the strings(which are in internal dataset) to string-concat function for concatenation.
+ * : Pass the strings(which are in internal dataset) to string-concat function for concatenation.
* Success : Yes
* Date : 16th April 2012
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/strconcat01/strconcat01.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/strconcat01/strconcat01.3.query.sqlpp
index 66577ec..34f481b 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/strconcat01/strconcat01.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/strconcat01/strconcat01.3.query.sqlpp
@@ -19,7 +19,7 @@
/*
* Test case Name : strconcat01.aql
* Description : Test string-concat([string]) function.
- * : Pass the strings(which are in internal dataset) to string-concat function for concatenation.
+ * : Pass the strings(which are in internal dataset) to string-concat function for concatenation.
* Success : Yes
* Date : 16th April 2012
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/strlen02/strlen02.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/strlen02/strlen02.1.ddl.sqlpp
index 39dcbd5..1d8498e 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/strlen02/strlen02.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/strlen02/strlen02.1.ddl.sqlpp
@@ -17,7 +17,7 @@
* under the License.
*/
/*
- * Description : Test string-length(string) function
+ * Description : Test string-length(string) function
* Success : Yes
* Date : 19th April 2012
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/strlen02/strlen02.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/strlen02/strlen02.2.update.sqlpp
index 39dcbd5..1d8498e 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/strlen02/strlen02.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/strlen02/strlen02.2.update.sqlpp
@@ -17,7 +17,7 @@
* under the License.
*/
/*
- * Description : Test string-length(string) function
+ * Description : Test string-length(string) function
* Success : Yes
* Date : 19th April 2012
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/strlen02/strlen02.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/strlen02/strlen02.3.query.sqlpp
index 370740f..27305bb 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/strlen02/strlen02.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/strlen02/strlen02.3.query.sqlpp
@@ -17,7 +17,7 @@
* under the License.
*/
/*
- * Description : Test string-length(string) function
+ * Description : Test string-length(string) function
* Success : Yes
* Date : 19th April 2012
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/strlen03/strlen03.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/strlen03/strlen03.1.ddl.sqlpp
index a5136ee..006a648 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/strlen03/strlen03.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/strlen03/strlen03.1.ddl.sqlpp
@@ -17,7 +17,7 @@
* under the License.
*/
/*
- * Description : Test string-length(string) function
+ * Description : Test string-length(string) function
* Expected Res : Success
* Date : 19th April 2012
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/strlen03/strlen03.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/strlen03/strlen03.2.update.sqlpp
index 7093b4b..62840f0 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/strlen03/strlen03.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/strlen03/strlen03.2.update.sqlpp
@@ -17,7 +17,7 @@
* under the License.
*/
/*
- * Description : Test string-length(string) function
+ * Description : Test string-length(string) function
* Expected Res : Success
* Date : 19th April 2012
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/strlen03/strlen03.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/strlen03/strlen03.3.query.sqlpp
index 532239e..d639642 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/strlen03/strlen03.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/strlen03/strlen03.3.query.sqlpp
@@ -17,7 +17,7 @@
* under the License.
*/
/*
- * Description : Test string-length(string) function
+ * Description : Test string-length(string) function
* Expected Res : Success
* Date : 19th April 2012
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/strtocpt02/strtocpt02.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/strtocpt02/strtocpt02.1.ddl.sqlpp
index e488bbd..d86cb6c 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/strtocpt02/strtocpt02.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/strtocpt02/strtocpt02.1.ddl.sqlpp
@@ -17,7 +17,7 @@
* under the License.
*/
/*
- * Description : Test string to codepoint function with special characters
+ * Description : Test string to codepoint function with special characters
* Expected Res : Success
* Date : 7th Aug 2012
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/strtocpt02/strtocpt02.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/strtocpt02/strtocpt02.2.update.sqlpp
index e488bbd..d86cb6c 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/strtocpt02/strtocpt02.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/strtocpt02/strtocpt02.2.update.sqlpp
@@ -17,7 +17,7 @@
* under the License.
*/
/*
- * Description : Test string to codepoint function with special characters
+ * Description : Test string to codepoint function with special characters
* Expected Res : Success
* Date : 7th Aug 2012
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/strtocpt02/strtocpt02.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/strtocpt02/strtocpt02.3.query.sqlpp
index 586c19e..704376a 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/strtocpt02/strtocpt02.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/strtocpt02/strtocpt02.3.query.sqlpp
@@ -17,7 +17,7 @@
* under the License.
*/
/*
- * Description : Test string to codepoint function with special characters
+ * Description : Test string to codepoint function with special characters
* Expected Res : Success
* Date : 7th Aug 2012
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/strtocpt03/strtocpt03.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/strtocpt03/strtocpt03.1.ddl.sqlpp
index e488bbd..d86cb6c 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/strtocpt03/strtocpt03.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/strtocpt03/strtocpt03.1.ddl.sqlpp
@@ -17,7 +17,7 @@
* under the License.
*/
/*
- * Description : Test string to codepoint function with special characters
+ * Description : Test string to codepoint function with special characters
* Expected Res : Success
* Date : 7th Aug 2012
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/strtocpt03/strtocpt03.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/strtocpt03/strtocpt03.2.update.sqlpp
index e488bbd..d86cb6c 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/strtocpt03/strtocpt03.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/strtocpt03/strtocpt03.2.update.sqlpp
@@ -17,7 +17,7 @@
* under the License.
*/
/*
- * Description : Test string to codepoint function with special characters
+ * Description : Test string to codepoint function with special characters
* Expected Res : Success
* Date : 7th Aug 2012
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/strtocpt03/strtocpt03.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/strtocpt03/strtocpt03.3.query.sqlpp
index d72077f..2971749 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/strtocpt03/strtocpt03.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/strtocpt03/strtocpt03.3.query.sqlpp
@@ -17,7 +17,7 @@
* under the License.
*/
/*
- * Description : Test string to codepoint function with special characters
+ * Description : Test string to codepoint function with special characters
* Expected Res : Success
* Date : 7th Aug 2012
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/toLowerCase03/toLowerCase03.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/toLowerCase03/toLowerCase03.1.ddl.sqlpp
index 1d43382..2b79373 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/toLowerCase03/toLowerCase03.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/toLowerCase03/toLowerCase03.1.ddl.sqlpp
@@ -18,7 +18,7 @@
*/
/*
* Test case Name : toLowerCas03.aql
- * Description : Test lowercase(string) function
+ * Description : Test lowercase(string) function
* : This test case covers Positive tests
* Success : Yes
* Date : 19th April 2012
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/toLowerCase03/toLowerCase03.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/toLowerCase03/toLowerCase03.2.update.sqlpp
index 75ede9f..6ffbb07 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/toLowerCase03/toLowerCase03.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/toLowerCase03/toLowerCase03.2.update.sqlpp
@@ -18,7 +18,7 @@
*/
/*
* Test case Name : toLowerCas03.aql
- * Description : Test lowercase(string) function
+ * Description : Test lowercase(string) function
* : This test case covers Positive tests
* Success : Yes
* Date : 19th April 2012
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/toLowerCase03/toLowerCase03.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/toLowerCase03/toLowerCase03.3.query.sqlpp
index d5c84b5..ff17839 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/toLowerCase03/toLowerCase03.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/toLowerCase03/toLowerCase03.3.query.sqlpp
@@ -18,7 +18,7 @@
*/
/*
* Test case Name : toLowerCas03.aql
- * Description : Test lowercase(string) function
+ * Description : Test lowercase(string) function
* : This test case covers Positive tests
* Success : Yes
* Date : 19th April 2012
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/toLowerCase04/toLowerCase04.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/toLowerCase04/toLowerCase04.1.ddl.sqlpp
index 100fd24..d6cb17f 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/toLowerCase04/toLowerCase04.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/toLowerCase04/toLowerCase04.1.ddl.sqlpp
@@ -18,7 +18,7 @@
*/
/*
* Test case Name : toLowerCas04.aql
- * Description : Test lowercase(string) function
+ * Description : Test lowercase(string) function
* : Convert all upper case english alphabets A-Z to lower case a-z
* Success : Yes
* Date : 19th April 2012
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/toLowerCase04/toLowerCase04.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/toLowerCase04/toLowerCase04.2.update.sqlpp
index 100fd24..d6cb17f 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/toLowerCase04/toLowerCase04.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/toLowerCase04/toLowerCase04.2.update.sqlpp
@@ -18,7 +18,7 @@
*/
/*
* Test case Name : toLowerCas04.aql
- * Description : Test lowercase(string) function
+ * Description : Test lowercase(string) function
* : Convert all upper case english alphabets A-Z to lower case a-z
* Success : Yes
* Date : 19th April 2012
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/toLowerCase04/toLowerCase04.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/toLowerCase04/toLowerCase04.3.query.sqlpp
index 6a62192..a983dd9 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/toLowerCase04/toLowerCase04.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/toLowerCase04/toLowerCase04.3.query.sqlpp
@@ -18,7 +18,7 @@
*/
/*
* Test case Name : toLowerCas04.aql
- * Description : Test lowercase(string) function
+ * Description : Test lowercase(string) function
* : Convert all upper case english alphabets A-Z to lower case a-z
* Success : Yes
* Date : 19th April 2012
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/end-with1/end-with1.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/varlen-encoding/varlen-encoding.1.ddl.sqlpp
similarity index 100%
copy from asterix-app/src/test/resources/runtimets/queries_sqlpp/string/end-with1/end-with1.2.update.sqlpp
copy to asterix-app/src/test/resources/runtimets/queries_sqlpp/string/varlen-encoding/varlen-encoding.1.ddl.sqlpp
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/end-with1/end-with1.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/varlen-encoding/varlen-encoding.2.update.sqlpp
similarity index 100%
copy from asterix-app/src/test/resources/runtimets/queries_sqlpp/string/end-with1/end-with1.2.update.sqlpp
copy to asterix-app/src/test/resources/runtimets/queries_sqlpp/string/varlen-encoding/varlen-encoding.2.update.sqlpp
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/varlen-encoding/varlen-encoding.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/varlen-encoding/varlen-encoding.3.query.sqlpp
new file mode 100644
index 0000000..57c9a52
--- /dev/null
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/string/varlen-encoding/varlen-encoding.3.query.sqlpp
@@ -0,0 +1,35 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+let str127 = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx'
+, str128 = "string-concat"([ 'y', str127 ])
+, str256 = "string-concat"([ str128, str128 ])
+, str1024 = "string-concat"([ str256, str256, str256, str256 ])
+, str4096 = "string-concat"([ str1024, str1024, str1024, str1024])
+, str16384 = "string-concat"([ str4096, str4096, str4096, str4096]) // 16k
+, str65536 = "string-concat"([ str16384, str16384, str16384, str16384]) // 64k
+, str262144 = "string-concat"([ str65536, str65536, str65536, str65536]) // 256k
+, str1048576 = "string-concat"([ str262144, str262144, str262144, str262144]) // 1M
+, str4194304 = "string-concat"([ str1048576, str1048576, str1048576, str1048576]) // 4M
+, str16777216 = "string-concat"([ str4194304, str4194304 , str4194304, str4194304]) // 16M
+
+select element [ "string-length"(str127), "string-length"(str128), "string-length"(str256),
+"string-length"(str1024), "string-length"(str4096), "string-length"(str16384),
+"string-length"(str65536), "string-length"(str262144), "string-length"(str1048576),
+"string-length"(str4194304), "string-length"(str16777216) ];
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/temp-dataset/insert-and-scan-dataset/insert-and-scan-dataset.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/temp-dataset/insert-and-scan-dataset/insert-and-scan-dataset.2.update.sqlpp
index f8f5747..a28a10a 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/temp-dataset/insert-and-scan-dataset/insert-and-scan-dataset.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/temp-dataset/insert-and-scan-dataset/insert-and-scan-dataset.2.update.sqlpp
@@ -16,7 +16,7 @@
* specific language governing permissions and limitations
* under the License.
*/
-/*
+/*
* Test case Name : insert-and-scan-dataset.aql
* Description : This test is intended to test inserting into a temporary dataset and scan it at the same time
* where we insert a materializing to prevent the possibility of deadlatch.
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/temp-dataset/insert-and-scan-dataset/insert-and-scan-dataset.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/temp-dataset/insert-and-scan-dataset/insert-and-scan-dataset.3.query.sqlpp
index 68ccab0..4418b67 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/temp-dataset/insert-and-scan-dataset/insert-and-scan-dataset.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/temp-dataset/insert-and-scan-dataset/insert-and-scan-dataset.3.query.sqlpp
@@ -16,7 +16,7 @@
* specific language governing permissions and limitations
* under the License.
*/
-/*
+/*
* Test case Name : insert-and-scan-dataset.aql
* Description : This test is intended to test inserting into a temporary dataset and scan it at the same time
* where we insert a materializing to prevent the possibility of deadlatch.
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/temp-dataset/scan-insert-persistent-to-temp/scan-insert-persistent-to-temp.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/temp-dataset/scan-insert-persistent-to-temp/scan-insert-persistent-to-temp.1.ddl.sqlpp
index 817f9cb..8651e4d 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/temp-dataset/scan-insert-persistent-to-temp/scan-insert-persistent-to-temp.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/temp-dataset/scan-insert-persistent-to-temp/scan-insert-persistent-to-temp.1.ddl.sqlpp
@@ -17,7 +17,7 @@
* under the License.
*/
/*
- * Description : Port data from a persistent dataset into a temporary dataset.
+ * Description : Port data from a persistent dataset into a temporary dataset.
* Both datasets have R-tree indexes.
* Expected Result : Success
* Date : March 27 2015
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/temp-dataset/scan-insert-persistent-to-temp/scan-insert-persistent-to-temp.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/temp-dataset/scan-insert-persistent-to-temp/scan-insert-persistent-to-temp.2.update.sqlpp
index 32ecf79..6d0aeb6 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/temp-dataset/scan-insert-persistent-to-temp/scan-insert-persistent-to-temp.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/temp-dataset/scan-insert-persistent-to-temp/scan-insert-persistent-to-temp.2.update.sqlpp
@@ -17,7 +17,7 @@
* under the License.
*/
/*
- * Description : Port data from a temporary dataset into yet-another temporary dataset.
+ * Description : Port data from a temporary dataset into yet-another temporary dataset.
* Both datasets have R-tree indexes.
* Expected Result : Success
* Date : March 27 2015
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/temp-dataset/scan-insert-persistent-to-temp/scan-insert-persistent-to-temp.3.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/temp-dataset/scan-insert-persistent-to-temp/scan-insert-persistent-to-temp.3.ddl.sqlpp
index db4816a..98bfaf8 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/temp-dataset/scan-insert-persistent-to-temp/scan-insert-persistent-to-temp.3.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/temp-dataset/scan-insert-persistent-to-temp/scan-insert-persistent-to-temp.3.ddl.sqlpp
@@ -17,7 +17,7 @@
* under the License.
*/
/*
- * Description : Port data from a temporary dataset into yet-another temporary dataset.
+ * Description : Port data from a temporary dataset into yet-another temporary dataset.
* Both datasets have R-tree indexes.
* Expected Result : Success
* Date : March 27 2015
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/temp-dataset/scan-insert-persistent-to-temp/scan-insert-persistent-to-temp.4.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/temp-dataset/scan-insert-persistent-to-temp/scan-insert-persistent-to-temp.4.update.sqlpp
index 0cf9215..7ab14fe 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/temp-dataset/scan-insert-persistent-to-temp/scan-insert-persistent-to-temp.4.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/temp-dataset/scan-insert-persistent-to-temp/scan-insert-persistent-to-temp.4.update.sqlpp
@@ -17,7 +17,7 @@
* under the License.
*/
/*
- * Description : Port data from a temporary dataset into yet-another temporary dataset.
+ * Description : Port data from a temporary dataset into yet-another temporary dataset.
* Both datasets have R-tree indexes.
* Expected Result : Success
* Date : March 27 2015
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/temp-dataset/scan-insert-persistent-to-temp/scan-insert-persistent-to-temp.5.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/temp-dataset/scan-insert-persistent-to-temp/scan-insert-persistent-to-temp.5.query.sqlpp
index 37bbc10..3526ef3 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/temp-dataset/scan-insert-persistent-to-temp/scan-insert-persistent-to-temp.5.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/temp-dataset/scan-insert-persistent-to-temp/scan-insert-persistent-to-temp.5.query.sqlpp
@@ -17,7 +17,7 @@
* under the License.
*/
/*
- * Description : Port data from a temporary dataset into yet-another temporary dataset.
+ * Description : Port data from a temporary dataset into yet-another temporary dataset.
* Both datasets have R-tree indexes.
* Expected Result : Success
* Date : March 27 2015
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/temp-dataset/scan-insert-rtree-secondary-index/scan-insert-rtree-secondary-index.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/temp-dataset/scan-insert-rtree-secondary-index/scan-insert-rtree-secondary-index.1.ddl.sqlpp
index d1b5109..2112a71 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/temp-dataset/scan-insert-rtree-secondary-index/scan-insert-rtree-secondary-index.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/temp-dataset/scan-insert-rtree-secondary-index/scan-insert-rtree-secondary-index.1.ddl.sqlpp
@@ -17,7 +17,7 @@
* under the License.
*/
/*
- * Description : Port data from a temporary dataset into yet-another temporary dataset.
+ * Description : Port data from a temporary dataset into yet-another temporary dataset.
* Both datasets have R-tree indexes.
* Expected Result : Success
* Date : March 27 2015
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/temp-dataset/scan-insert-rtree-secondary-index/scan-insert-rtree-secondary-index.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/temp-dataset/scan-insert-rtree-secondary-index/scan-insert-rtree-secondary-index.2.update.sqlpp
index 32ecf79..6d0aeb6 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/temp-dataset/scan-insert-rtree-secondary-index/scan-insert-rtree-secondary-index.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/temp-dataset/scan-insert-rtree-secondary-index/scan-insert-rtree-secondary-index.2.update.sqlpp
@@ -17,7 +17,7 @@
* under the License.
*/
/*
- * Description : Port data from a temporary dataset into yet-another temporary dataset.
+ * Description : Port data from a temporary dataset into yet-another temporary dataset.
* Both datasets have R-tree indexes.
* Expected Result : Success
* Date : March 27 2015
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/temp-dataset/scan-insert-rtree-secondary-index/scan-insert-rtree-secondary-index.3.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/temp-dataset/scan-insert-rtree-secondary-index/scan-insert-rtree-secondary-index.3.ddl.sqlpp
index db4816a..98bfaf8 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/temp-dataset/scan-insert-rtree-secondary-index/scan-insert-rtree-secondary-index.3.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/temp-dataset/scan-insert-rtree-secondary-index/scan-insert-rtree-secondary-index.3.ddl.sqlpp
@@ -17,7 +17,7 @@
* under the License.
*/
/*
- * Description : Port data from a temporary dataset into yet-another temporary dataset.
+ * Description : Port data from a temporary dataset into yet-another temporary dataset.
* Both datasets have R-tree indexes.
* Expected Result : Success
* Date : March 27 2015
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/temp-dataset/scan-insert-rtree-secondary-index/scan-insert-rtree-secondary-index.4.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/temp-dataset/scan-insert-rtree-secondary-index/scan-insert-rtree-secondary-index.4.update.sqlpp
index 0cf9215..7ab14fe 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/temp-dataset/scan-insert-rtree-secondary-index/scan-insert-rtree-secondary-index.4.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/temp-dataset/scan-insert-rtree-secondary-index/scan-insert-rtree-secondary-index.4.update.sqlpp
@@ -17,7 +17,7 @@
* under the License.
*/
/*
- * Description : Port data from a temporary dataset into yet-another temporary dataset.
+ * Description : Port data from a temporary dataset into yet-another temporary dataset.
* Both datasets have R-tree indexes.
* Expected Result : Success
* Date : March 27 2015
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/temp-dataset/scan-insert-rtree-secondary-index/scan-insert-rtree-secondary-index.5.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/temp-dataset/scan-insert-rtree-secondary-index/scan-insert-rtree-secondary-index.5.query.sqlpp
index 37bbc10..3526ef3 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/temp-dataset/scan-insert-rtree-secondary-index/scan-insert-rtree-secondary-index.5.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/temp-dataset/scan-insert-rtree-secondary-index/scan-insert-rtree-secondary-index.5.query.sqlpp
@@ -17,7 +17,7 @@
* under the License.
*/
/*
- * Description : Port data from a temporary dataset into yet-another temporary dataset.
+ * Description : Port data from a temporary dataset into yet-another temporary dataset.
* Both datasets have R-tree indexes.
* Expected Result : Success
* Date : March 27 2015
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/temp-dataset/scan-insert-temp-to-persistent/scan-insert-temp-to-persistent.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/temp-dataset/scan-insert-temp-to-persistent/scan-insert-temp-to-persistent.1.ddl.sqlpp
index a4415fe..59c7c8c 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/temp-dataset/scan-insert-temp-to-persistent/scan-insert-temp-to-persistent.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/temp-dataset/scan-insert-temp-to-persistent/scan-insert-temp-to-persistent.1.ddl.sqlpp
@@ -17,7 +17,7 @@
* under the License.
*/
/*
- * Description : Port data from a temporary dataset into a persistent dataset.
+ * Description : Port data from a temporary dataset into a persistent dataset.
* Both datasets have R-tree indexes.
* Expected Result : Success
* Date : March 27 2015
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/temp-dataset/scan-insert-temp-to-persistent/scan-insert-temp-to-persistent.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/temp-dataset/scan-insert-temp-to-persistent/scan-insert-temp-to-persistent.2.update.sqlpp
index 32ecf79..6d0aeb6 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/temp-dataset/scan-insert-temp-to-persistent/scan-insert-temp-to-persistent.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/temp-dataset/scan-insert-temp-to-persistent/scan-insert-temp-to-persistent.2.update.sqlpp
@@ -17,7 +17,7 @@
* under the License.
*/
/*
- * Description : Port data from a temporary dataset into yet-another temporary dataset.
+ * Description : Port data from a temporary dataset into yet-another temporary dataset.
* Both datasets have R-tree indexes.
* Expected Result : Success
* Date : March 27 2015
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/temp-dataset/scan-insert-temp-to-persistent/scan-insert-temp-to-persistent.3.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/temp-dataset/scan-insert-temp-to-persistent/scan-insert-temp-to-persistent.3.ddl.sqlpp
index db4816a..98bfaf8 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/temp-dataset/scan-insert-temp-to-persistent/scan-insert-temp-to-persistent.3.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/temp-dataset/scan-insert-temp-to-persistent/scan-insert-temp-to-persistent.3.ddl.sqlpp
@@ -17,7 +17,7 @@
* under the License.
*/
/*
- * Description : Port data from a temporary dataset into yet-another temporary dataset.
+ * Description : Port data from a temporary dataset into yet-another temporary dataset.
* Both datasets have R-tree indexes.
* Expected Result : Success
* Date : March 27 2015
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/temp-dataset/scan-insert-temp-to-persistent/scan-insert-temp-to-persistent.4.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/temp-dataset/scan-insert-temp-to-persistent/scan-insert-temp-to-persistent.4.update.sqlpp
index 0cf9215..7ab14fe 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/temp-dataset/scan-insert-temp-to-persistent/scan-insert-temp-to-persistent.4.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/temp-dataset/scan-insert-temp-to-persistent/scan-insert-temp-to-persistent.4.update.sqlpp
@@ -17,7 +17,7 @@
* under the License.
*/
/*
- * Description : Port data from a temporary dataset into yet-another temporary dataset.
+ * Description : Port data from a temporary dataset into yet-another temporary dataset.
* Both datasets have R-tree indexes.
* Expected Result : Success
* Date : March 27 2015
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/temp-dataset/scan-insert-temp-to-persistent/scan-insert-temp-to-persistent.5.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/temp-dataset/scan-insert-temp-to-persistent/scan-insert-temp-to-persistent.5.query.sqlpp
index 37bbc10..3526ef3 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/temp-dataset/scan-insert-temp-to-persistent/scan-insert-temp-to-persistent.5.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/temp-dataset/scan-insert-temp-to-persistent/scan-insert-temp-to-persistent.5.query.sqlpp
@@ -17,7 +17,7 @@
* under the License.
*/
/*
- * Description : Port data from a temporary dataset into yet-another temporary dataset.
+ * Description : Port data from a temporary dataset into yet-another temporary dataset.
* Both datasets have R-tree indexes.
* Expected Result : Success
* Date : March 27 2015
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/temporal/interval_bin_gby_0/interval_bin_gby_0.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/temporal/interval_bin_gby_0/interval_bin_gby_0.2.update.sqlpp
index 39790ee..0936a4c 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/temporal/interval_bin_gby_0/interval_bin_gby_0.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/temporal/interval_bin_gby_0/interval_bin_gby_0.2.update.sqlpp
@@ -25,26 +25,26 @@
insert into tsdata
-select element {'id':1,'timestamp':test.datetime('-1987-11-19T23:49:23.938')};
+{'id':1,'timestamp':test.datetime('-1987-11-19T23:49:23.938')};
insert into tsdata
-select element {'id':2,'timestamp':test.datetime('-1987-11-20T00:27:13.432')};
+{'id':2,'timestamp':test.datetime('-1987-11-20T00:27:13.432')};
insert into tsdata
-select element {'id':3,'timestamp':test.datetime('-1987-11-18T18:00:00')};
+{'id':3,'timestamp':test.datetime('-1987-11-18T18:00:00')};
insert into tsdata
-select element {'id':4,'timestamp':test.datetime('19871119T234923938')};
+{'id':4,'timestamp':test.datetime('19871119T234923938')};
insert into tsdata
-select element {'id':5,'timestamp':test.datetime('1987-11-19T23:58:17.038')};
+{'id':5,'timestamp':test.datetime('1987-11-19T23:58:17.038')};
insert into tsdata
-select element {'id':6,'timestamp':test.datetime('1987-11-19T23:30:00')};
+{'id':6,'timestamp':test.datetime('1987-11-19T23:30:00')};
insert into tsdata
-select element {'id':7,'timestamp':test.datetime('1987-11-19T23:22:38')};
+{'id':7,'timestamp':test.datetime('1987-11-19T23:22:38')};
insert into tsdata
-select element {'id':8,'timestamp':test.datetime('1988-01-21T17:28:13.900')};
+{'id':8,'timestamp':test.datetime('1988-01-21T17:28:13.900')};
insert into tsdata
-select element {'id':9,'timestamp':test.datetime('-1987-11-19T23:49:23.938')};
+{'id':9,'timestamp':test.datetime('-1987-11-19T23:49:23.938')};
insert into tsdata
-select element {'id':10,'timestamp':test.datetime('-0987-07-01T09:35:28.039')};
+{'id':10,'timestamp':test.datetime('-0987-07-01T09:35:28.039')};
insert into tsdata
-select element {'id':11,'timestamp':test.datetime('2012-11-19T23:49:23.938')};
+{'id':11,'timestamp':test.datetime('2012-11-19T23:49:23.938')};
insert into tsdata
-select element {'id':12,'timestamp':test.datetime('2013-11-19T23:49:23.938')};
+{'id':12,'timestamp':test.datetime('2013-11-19T23:49:23.938')};
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/temporal/interval_functions/interval_functions.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/temporal/interval_functions/interval_functions.3.query.sqlpp
index e5167ec1..bf5fd67 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/temporal/interval_functions/interval_functions.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/temporal/interval_functions/interval_functions.3.query.sqlpp
@@ -4,14 +4,14 @@
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
+ * 'License'); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * 'AS IS' BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
@@ -19,5 +19,55 @@
use test;
+let itv1 = "interval-from-date"('2010-10-30', '2010-12-21')
+,itv2 = "interval-from-date"('2011-10-30', '2012-10-21')
+, itv3 = "interval-from-date"('2010-12-21', '2013-01-01')
+, blnBefore1 = "interval-before"(itv1, itv2)
+, blnAfter1 = "interval-after"(itv2, itv1)
+, blnBefore2 = "interval-before"(itv1, itv3)
+, blnAfter2 = "interval-after"(itv3, itv1)
-{'before1':test."interval-before"(test."interval-from-date"('2010-10-30','2010-12-21'),test."interval-from-date"('2011-10-30','2012-10-21')),'before2':test."interval-before"(test."interval-from-date"('2010-10-30','2010-12-21'),test."interval-from-date"('2010-12-21','2013-01-01')),'after1':test."interval-after"(test."interval-from-date"('2011-10-30','2012-10-21'),test."interval-from-date"('2010-10-30','2010-12-21')),'after2':test."interval-after"(test."interval-from-date"('2010-12-21','2013-01-01'),test."interval-from-date"('2010-10-30','2010-12-21')),'meet1':test."interval-meets"(test."interval-from-datetime"('2012-06-26T01:01:01.111','2012-07-27T02:02:02.222'),test."interval-from-datetime"('20120727T020202222','2013-08-08T03:03:03.333')),'meet2':test."interval-meets"(test."interval-from-datetime"('19000707T020202222','2013-08-07T03:03:03.333'),test."interval-from-datetime"('2012-06-26T01:01:01.111','2012-07-27T02:02:02.222')),'metby1':test."interval-met-by"(test."interval-from-datetime"('20120727T020202222','2013-08-08T03:03:03.333'),test."interval-from-datetime"('2012-06-26T01:01:01.111','2012-07-27T02:02:02.222')),'metby2':test."interval-met-by"(test."interval-from-datetime"('19000707T020202222','2013-08-07T03:03:03.333'),test."interval-from-datetime"('2012-06-26T01:01:01.111','2012-07-27T02:02:02.222')),'overlaps1':test."interval-overlaps"(test."interval-from-time"('12:32:38','20:29:20'),test."interval-from-time"('17:48:19','22:19:49')),'overlaps2':test."interval-overlaps"(test."interval-from-time"('01:32:49','17:48:19'),test."interval-from-time"('17:48:19','22:19:49')),'overlapped1':test."interval-overlapped-by"(test."interval-from-time"('17:48:19','22:19:49'),test."interval-from-time"('12:32:38','20:29:20')),'overlapped2':test."interval-overlapped-by"(test."interval-from-time"('17:48:19','22:19:49'),test."interval-from-time"('01:32:49','17:48:19')),'overlap1':test."interval-overlapping"(test."interval-from-time"('01:32:49','17:48:19'),test."interval-from-time"('12:32:38','20:29:20')),'overlap2':test."interval-overlapping"(test."interval-from-time"('01:32:49','17:48:19'),test."interval-from-time"('17:48:19','22:19:49')),'starts1':test."interval-starts"(test."interval-from-date"('2010-10-30','2010-11-30'),test."interval-from-date"('2010-10-30','2010-12-21')),'starts2':test."interval-starts"(test."interval-from-date"('2010-10-30','2010-11-30'),test."interval-from-date"('2011-10-30','2012-10-21')),'startedby1':test."interval-started-by"(test."interval-from-date"('2010-10-30','2010-12-21'),test."interval-from-date"('2010-10-30','2010-11-30')),'startedby2':test."interval-started-by"(test."interval-from-date"('2010-10-30','2010-11-30'),test."interval-from-date"('2011-10-30','2012-10-21')),'covers1':test."interval-covers"(test."interval-from-date"('2010-10-30','2010-11-30'),test."interval-from-datetime"('19990707T020202222','2013-08-07T03:03:03.333')),'covers2':test."interval-covers"(test."interval-from-date"('2010-10-30','2010-11-30'),test."interval-from-datetime"('-19990707T020202222','2013-08-07T03:03:03.333')),'coveredby1':test."interval-covered-by"(test."interval-from-datetime"('19990707T020202222','2013-08-07T03:03:03.333'),test."interval-from-date"('2010-10-30','2010-11-30')),'coveredby2':test."interval-covered-by"(test."interval-from-datetime"('-19990707T020202222','2013-08-07T03:03:03.333'),test."interval-from-date"('2010-10-30','2010-11-30')),'ends1':test."interval-ends"(test."interval-from-datetime"('19990707T020202222','2013-08-07T03:03:03.333'),test."interval-from-time"('12:32:38','20:29:20')),'ends2':test."interval-ends"(test."interval-from-datetime"('19990707T020202222','2013-08-07T03:03:03.333'),test."interval-from-time"('17:48:19','22:19:49')),'endedby1':test."interval-ended-by"(test."interval-from-time"('12:32:38','20:29:20'),test."interval-from-datetime"('19990707T020202222','2013-08-07T03:03:03.333')),'endedby2':test."interval-ended-by"(test."interval-from-time"('17:48:19','22:19:49'),test."interval-from-datetime"('19990707T020202222','2013-08-07T03:03:03.333')),'null1':test."interval-before"(null,test."interval-from-date"('2011-10-30','2012-10-21')),'null2':test."interval-covered-by"(test."interval-from-datetime"('19990707T020202222','2013-08-07T03:03:03.333'),null),'null3':test."interval-overlapping"(null,null)};
+, itv4 = "interval-from-datetime"('2012-06-26T01:01:01.111', '2012-07-27T02:02:02.222')
+, itv5 = "interval-from-datetime"('20120727T020202222', '2013-08-08T03:03:03.333')
+, itv6 = "interval-from-datetime"('19000707T020202222', '2013-08-07T03:03:03.333')
+, blnMeet1 = "interval-meets"(itv4, itv5)
+, blnMetBy1 = "interval-met-by"(itv5, itv4)
+, blnMeet2 = "interval-meets"(itv6, itv4)
+, blnMetBy2 = "interval-met-by"(itv6, itv4)
+
+, itv7 = "interval-from-time"('12:32:38', '20:29:20')
+, itv8 = "interval-from-time"('17:48:19', '22:19:49')
+, itv9 = "interval-from-time"('01:32:49', '17:48:19')
+, blnOverlaps1 = "interval-overlaps"(itv7, itv8)
+, blnOverlapped1 = "interval-overlapped-by"(itv8, itv7)
+, blnOverlaps2 = "interval-overlaps"(itv9, itv8)
+, blnOverlapped2 = "interval-overlapped-by"(itv8, itv9)
+, blnOverlap1 = "interval-overlapping"(itv9, itv7)
+, blnOverlap2 = "interval-overlapping"(itv9, itv8)
+
+, itv10 = "interval-from-date"('2010-10-30', '2010-11-30')
+, blnStarts1 = "interval-starts"(itv10, itv1)
+, blnStarts2 = "interval-starts"(itv10, itv2)
+, blnStartedBy1 = "interval-started-by"(itv1, itv10)
+, blnStartedBy2 = "interval-started-by"(itv10, itv2)
+
+, itv10 = "interval-from-datetime"('19000707T020202222', '2013-08-07T03:03:03.333')
+, itv11 = "interval-from-datetime"('19990707T020202222', '2013-08-07T03:03:03.333')
+, itv12 = "interval-from-datetime"('-19990707T020202222', '2013-08-07T03:03:03.333')
+, blnCovers1 = "interval-covers"(itv10, itv11)
+, blnCovers2 = "interval-covers"(itv10, itv12)
+, blnCoveredBy1 = "interval-covered-by"(itv11, itv10)
+, blnCoveredBy2 = "interval-covered-by"(itv12, itv10)
+
+, itv11 = "interval-from-time"('19:00:00.009', '20:29:20.000')
+, blnEnds1 = "interval-ends"(itv11, itv7)
+, blnEnds2 = "interval-ends"(itv11, itv8)
+, blnEndedBy1 = "interval-ended-by"(itv7, itv11)
+, blnEndedBy2 = "interval-ended-by"(itv8, itv11)
+
+, null1 = "interval-before"(null, itv2)
+, null2 = "interval-covered-by"(itv11, null)
+, null3 = "interval-overlapping"(null, null)
+
+select element { 'before1' : blnBefore1, 'before2' : blnBefore2, 'after1' : blnAfter1, 'after2' : blnAfter2, 'meet1' : blnMeet1, 'meet2' : blnMeet2, 'metby1' : blnMetBy1, 'metby2' : blnMetBy2, 'overlaps1' : blnOverlaps1, 'overlaps2' : blnOverlaps2, 'overlapped1' : blnOverlapped1, 'overlapped2' : blnOverlapped2, 'overlap1' : blnOverlap1, 'overlap2' : blnOverlap2, 'starts1' : blnStarts1, 'starts2' : blnStarts2, 'startedby1' : blnStartedBy1, 'startedby2' : blnStartedBy2, 'covers1' : blnCovers1, 'covers2' : blnCovers2, 'coveredby1' : blnCoveredBy1, 'coveredby2' : blnCoveredBy2, 'ends1' : blnEnds1, 'ends2' : blnEnds2, 'endedby1' : blnEndedBy1, 'endedby2' : blnEndedBy2, 'null1': null1, 'null2': null2, 'null3': null3 }
+;
\ No newline at end of file
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/temporal/overlap_bins_gby_0/overlap_bins_gby_0.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/temporal/overlap_bins_gby_0/overlap_bins_gby_0.3.query.sqlpp
index 2fa66bb..4b29b6a 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/temporal/overlap_bins_gby_0/overlap_bins_gby_0.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/temporal/overlap_bins_gby_0/overlap_bins_gby_0.3.query.sqlpp
@@ -26,12 +26,12 @@
select element {'tbin':gen0.bin,'interval':itv,'overlap':test."get-overlapping-interval"(gen0.bin,itv)}
from
- ( select element {'i':i,'bin':bin}
- from tsdata as i,
+ ( select element {'bin':bin,'i':i}
+ from (select element i from tsdata as i order by i.time) as i,
test."overlap-bins"(test."interval-start-from-time"(i.time,i.duration),test.time('00:00:00'),test."day-time-duration"('PT1H30M')) as j
group by j as bin
- order by test."get-interval-start"(bin)
+ order by "get-interval-start"(bin)
) as gen0,
gen0.i as x
with itv as test."interval-start-from-time"(x.time,x.duration)
-;
+order by test."get-interval-start"(gen0.bin);
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/tinysocial/tinysocial-suite/tinysocial-suite.11.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/tinysocial/tinysocial-suite/tinysocial-suite.11.query.sqlpp
index 8783e8f..a9bcc12 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/tinysocial/tinysocial-suite/tinysocial-suite.11.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/tinysocial/tinysocial-suite/tinysocial-suite.11.query.sqlpp
@@ -17,7 +17,7 @@
* under the License.
*/
/**
-* Query 5 - Fuzzy Join
+* Query 5 - Fuzzy Join
*/
use TinySocial;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/tinysocial/tinysocial-suite/tinysocial-suite.6.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/tinysocial/tinysocial-suite/tinysocial-suite.6.query.sqlpp
index ae35240..47266db 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/tinysocial/tinysocial-suite/tinysocial-suite.6.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/tinysocial/tinysocial-suite/tinysocial-suite.6.query.sqlpp
@@ -17,7 +17,7 @@
* under the License.
*/
/**
-* Query 1 - Other Query Filters
+* Query 1 - Other Query Filters
*/
use TinySocial;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/tpch-sql-like/q04_order_priority/q04_order_priority.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/tpch-sql-like/q04_order_priority/q04_order_priority.3.query.sqlpp
index 1e5c50e..faca581 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/tpch-sql-like/q04_order_priority/q04_order_priority.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/tpch-sql-like/q04_order_priority/q04_order_priority.3.query.sqlpp
@@ -22,7 +22,7 @@
declare function tmp() {
(
- select element {'o_orderkey':l.l_orderkey}
+ select distinct element {'o_orderkey':l.l_orderkey}
from LineItem as l
where (l.l_commitdate < l.l_receiptdate)
)
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/tpch-sql-like/q17_small_quantity_order_revenue/q17_small_quantity_order_revenue.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/tpch-sql-like/q17_small_quantity_order_revenue/q17_small_quantity_order_revenue.3.query.sqlpp
index 2a24bd9..5aa971e 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/tpch-sql-like/q17_small_quantity_order_revenue/q17_small_quantity_order_revenue.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/tpch-sql-like/q17_small_quantity_order_revenue/q17_small_quantity_order_revenue.3.query.sqlpp
@@ -30,6 +30,7 @@
group by l.l_partkey as l_partkey
)
};
+
select element (tpch.sum((
select element l.l_extendedprice
from LineItem as l,
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/tpch-sql-like/q20_potential_part_promotion/q20_potential_part_promotion.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/tpch-sql-like/q20_potential_part_promotion/q20_potential_part_promotion.3.query.sqlpp
index 31810e8..0657ad3 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/tpch-sql-like/q20_potential_part_promotion/q20_potential_part_promotion.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/tpch-sql-like/q20_potential_part_promotion/q20_potential_part_promotion.3.query.sqlpp
@@ -22,7 +22,7 @@
select element {'s_name':t4.s_name,'s_address':t4.s_address}
from (
- select element {'ps_suppkey':pst1.ps_suppkey}
+ select distinct element {'ps_suppkey':pst1.ps_suppkey}
from (
select element {'l_partkey':l_partkey,'l_suppkey':l_suppkey,'sum_quantity':(0.5 * tpch.sum((
select element i.l_quantity
@@ -35,7 +35,7 @@
select element {'ps_suppkey':ps.ps_suppkey,'ps_partkey':ps.ps_partkey,'ps_availqty':ps.ps_availqty}
from Partsupp as ps,
(
- select element {'p_partkey':p.p_partkey}
+ select distinct element {'p_partkey':p.p_partkey}
from Part as p
) as t1
where (ps.ps_partkey = t1.p_partkey)
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/tpch/distinct_by/distinct_by.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/tpch/distinct_by/distinct_by.3.query.sqlpp
index 1bf1990..da0745e 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/tpch/distinct_by/distinct_by.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/tpch/distinct_by/distinct_by.3.query.sqlpp
@@ -20,7 +20,7 @@
use tpch;
-select element {'l_returnflag':l.l_returnflag,'l_linestatus':l.l_linestatus,'l_shipmode':l.l_shipmode}
+select distinct element {'l_returnflag':l.l_returnflag,'l_linestatus':l.l_linestatus,'l_shipmode':l.l_shipmode}
from LineItem as l
order by l.l_returnflag,l.l_linestatus,l.l_shipmode
;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/tpch/nest_aggregate/nest_aggregate.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/tpch/nest_aggregate/nest_aggregate.3.query.sqlpp
index ade2173..3a015ae 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/tpch/nest_aggregate/nest_aggregate.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/tpch/nest_aggregate/nest_aggregate.3.query.sqlpp
@@ -41,5 +41,6 @@
)}
from Nation as nation,
SelectedNation as sn
-where (nation.n_nationkey = sn.n_nationkey)
+where (nation.n_nationkey /*+ indexnl */ = sn.n_nationkey)
+order by nation.n_nationkey
;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/tpch/q04_order_priority/q04_order_priority.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/tpch/q04_order_priority/q04_order_priority.3.query.sqlpp
index 1e5c50e..f693ba3 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/tpch/q04_order_priority/q04_order_priority.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/tpch/q04_order_priority/q04_order_priority.3.query.sqlpp
@@ -22,15 +22,15 @@
declare function tmp() {
(
- select element {'o_orderkey':l.l_orderkey}
+ select distinct element {'o_orderkey':l.l_orderkey}
from LineItem as l
where (l.l_commitdate < l.l_receiptdate)
)
};
-select element {'order_priority':o_orderpriority,'count':tpch.count(o)}
-from Orders as o,
- tpch.tmp() as t
-where ((o.o_orderkey = t.o_orderkey) and (o.o_orderdate >= '1993-07-01') and (o.o_orderdate < '1993-10-01'))
+select element {'order_priority':o_orderpriority,'count':count(o)}
+from Orders as o join
+ tpch.tmp() as t on o.o_orderkey = t.o_orderkey
+where o.o_orderdate >= '1993-07-01' and o.o_orderdate < '1993-10-01'
group by o.o_orderpriority as o_orderpriority
order by o_orderpriority
;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/tpch/q09_product_type_profit_nt/q09_product_type_profit_nt.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/tpch/q09_product_type_profit_nt/q09_product_type_profit_nt.3.query.sqlpp
index f7e2e8f..b7e5e4b 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/tpch/q09_product_type_profit_nt/q09_product_type_profit_nt.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/tpch/q09_product_type_profit_nt/q09_product_type_profit_nt.3.query.sqlpp
@@ -29,10 +29,10 @@
from Orders as o,
(
select element {'l_extendedprice':l2.l_extendedprice,'l_discount':l2.l_discount,'l_quantity':l2.l_quantity,'l_orderkey':l2.l_orderkey,'n_name':l2.n_name,'ps_supplycost':l2.ps_supplycost}
- from Part as p,
+ from Part as p join
(
select element {'l_extendedprice':l1.l_extendedprice,'l_discount':l1.l_discount,'l_quantity':l1.l_quantity,'l_partkey':l1.l_partkey,'l_orderkey':l1.l_orderkey,'n_name':l1.n_name,'ps_supplycost':ps.ps_supplycost}
- from Partsupp as ps,
+ from Partsupp as ps join
(
select element {'l_suppkey':l.l_suppkey,'l_extendedprice':l.l_extendedprice,'l_discount':l.l_discount,'l_quantity':l.l_quantity,'l_partkey':l.l_partkey,'l_orderkey':l.l_orderkey,'n_name':s1.n_name}
from (
@@ -40,13 +40,13 @@
from Supplier as s,
Nation as n
where (n.n_nationkey = s.s_nationkey)
- ) as s1,
+ ) as s1 join
LineItem as l
- where (s1.s_suppkey = l.l_suppkey)
+ on (s1.s_suppkey = l.l_suppkey)
) as l1
- where ((ps.ps_suppkey = l1.l_suppkey) and (ps.ps_partkey = l1.l_partkey))
+ on ((ps.ps_suppkey = l1.l_suppkey) and (ps.ps_partkey = l1.l_partkey))
) as l2
- where (tpch.contains(p.p_name,'green') and (p.p_partkey = l2.l_partkey))
+ on (tpch.contains(p.p_name,'green') and (p.p_partkey = l2.l_partkey))
) as l3
with amount as ((l3.l_extendedprice * (1 - l3.l_discount)) - (l3.ps_supplycost * l3.l_quantity)),
o_year as tpch."get-year"(o.o_orderdate)
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/tpch/q17_small_quantity_order_revenue/q17_small_quantity_order_revenue.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/tpch/q17_small_quantity_order_revenue/q17_small_quantity_order_revenue.3.query.sqlpp
index 2a24bd9..79c397c 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/tpch/q17_small_quantity_order_revenue/q17_small_quantity_order_revenue.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/tpch/q17_small_quantity_order_revenue/q17_small_quantity_order_revenue.3.query.sqlpp
@@ -30,10 +30,11 @@
group by l.l_partkey as l_partkey
)
};
+
select element (tpch.sum((
select element l.l_extendedprice
- from LineItem as l,
- Part as p,
- tpch.tmp() as t
- where (((p.p_partkey = l.l_partkey) and (p.p_container = 'MED BOX')) and ((l.l_partkey = t.t_partkey) and (l.l_quantity < t.t_avg_quantity)))
+ from tpch.tmp() as t,
+ LineItem as l,
+ Part as p
+ where p.p_partkey = l.l_partkey and p.p_container = 'MED BOX' and l.l_partkey = t.t_partkey and l.l_quantity < t.t_avg_quantity
)) / 7.0);
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/tpch/q18_large_volume_customer/q18_large_volume_customer.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/tpch/q18_large_volume_customer/q18_large_volume_customer.3.query.sqlpp
index 15081ff..89ff8f8 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/tpch/q18_large_volume_customer/q18_large_volume_customer.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/tpch/q18_large_volume_customer/q18_large_volume_customer.3.query.sqlpp
@@ -35,7 +35,7 @@
group by l.l_orderkey as l_orderkey
) as t,
LineItem as l
-where ((c.c_custkey = o.o_custkey) and ((o.o_orderkey = t.l_orderkey) and (t.t_sum_quantity > 30)) and (l.l_orderkey = o.o_orderkey))
+where ((c.c_custkey = o.o_custkey) and (o.o_orderkey = t.l_orderkey) and (t.t_sum_quantity > 30) and (l.l_orderkey = t.l_orderkey))
group by c.c_name as c_name,c.c_custkey as c_custkey,o.o_orderkey as o_orderkey,o.o_orderdate as o_orderdate,o.o_totalprice as o_totalprice
order by o_totalprice desc,o_orderdate
limit 100
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/tpch/q20_potential_part_promotion/q20_potential_part_promotion.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/tpch/q20_potential_part_promotion/q20_potential_part_promotion.3.query.sqlpp
index 31810e8..0657ad3 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/tpch/q20_potential_part_promotion/q20_potential_part_promotion.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/tpch/q20_potential_part_promotion/q20_potential_part_promotion.3.query.sqlpp
@@ -22,7 +22,7 @@
select element {'s_name':t4.s_name,'s_address':t4.s_address}
from (
- select element {'ps_suppkey':pst1.ps_suppkey}
+ select distinct element {'ps_suppkey':pst1.ps_suppkey}
from (
select element {'l_partkey':l_partkey,'l_suppkey':l_suppkey,'sum_quantity':(0.5 * tpch.sum((
select element i.l_quantity
@@ -35,7 +35,7 @@
select element {'ps_suppkey':ps.ps_suppkey,'ps_partkey':ps.ps_partkey,'ps_availqty':ps.ps_availqty}
from Partsupp as ps,
(
- select element {'p_partkey':p.p_partkey}
+ select distinct element {'p_partkey':p.p_partkey}
from Part as p
) as t1
where (ps.ps_partkey = t1.p_partkey)
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/tpch/q21_suppliers_who_kept_orders_waiting/q21_suppliers_who_kept_orders_waiting.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/tpch/q21_suppliers_who_kept_orders_waiting/q21_suppliers_who_kept_orders_waiting.3.query.sqlpp
index 5382019..f91068d 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/tpch/q21_suppliers_who_kept_orders_waiting/q21_suppliers_who_kept_orders_waiting.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/tpch/q21_suppliers_who_kept_orders_waiting/q21_suppliers_who_kept_orders_waiting.3.query.sqlpp
@@ -59,19 +59,19 @@
from (
select element {'s_name':t3.s_name,'l_suppkey':t3.l_suppkey,'l_orderkey':t2.l_orderkey,'count_suppkey':t2.count_suppkey,'max_suppkey':t2.max_suppkey}
from (
- select element {'s_name':ns.s_name,'l_orderkey':t1.l_orderkey,'l_suppkey':l.l_suppkey}
- from LineItem as l,
- (
- select element {'s_name':s.s_name,'s_suppkey':s.s_suppkey}
- from Nation as n,
- Supplier as s
- where (s.s_nationkey = n.n_nationkey)
- ) as ns,
- Orders as o,
- tpch.tmp1() as t1
- where (((ns.s_suppkey = l.l_suppkey) and (l.l_receiptdate > l.l_commitdate)) and (o.o_orderkey = l.l_orderkey) and (l.l_orderkey = t1.l_orderkey))
+ select element {'s_name':ns.s_name,'l_orderkey':t1.l_orderkey,'l_suppkey':l.l_suppkey}
+ from LineItem as l,
+ (
+ select element {'s_name':s.s_name,'s_suppkey':s.s_suppkey}
+ from Nation as n,
+ Supplier as s
+ where (s.s_nationkey = n.n_nationkey)
+ ) as ns,
+ Orders as o,
+ tpch.tmp1() as t1
+ where ns.s_suppkey = l.l_suppkey and l.l_receiptdate > l.l_commitdate and o.o_orderkey = l.l_orderkey and l.l_orderkey = t1.l_orderkey
) as t3,
- tpch.tmp2() as t2
+ tpch.tmp2() as t2
where ((t2.count_suppkey >= 0) and (t3.l_orderkey = t2.l_orderkey))
) as t4
group by t4.s_name as s_name
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/query-issue172/query-issue172.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/query-issue172/query-issue172.1.ddl.sqlpp
index 4055b6b..7fbf189 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/query-issue172/query-issue172.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/query-issue172/query-issue172.1.ddl.sqlpp
@@ -18,4 +18,8 @@
*/
/*
* Description : This test case is to verify the fix for issue172
+ : https://code.google.com/p/asterixdb/issues/detail?id=172
+ * Expected Res : Success
+ * Date : 19th May 2013
+ */
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/query-issue172/query-issue172.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/query-issue172/query-issue172.2.update.sqlpp
index 4055b6b..7fbf189 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/query-issue172/query-issue172.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/query-issue172/query-issue172.2.update.sqlpp
@@ -18,4 +18,8 @@
*/
/*
* Description : This test case is to verify the fix for issue172
+ : https://code.google.com/p/asterixdb/issues/detail?id=172
+ * Expected Res : Success
+ * Date : 19th May 2013
+ */
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/query-issue172/query-issue172.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/query-issue172/query-issue172.3.query.sqlpp
index efc282e..eea05873 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/query-issue172/query-issue172.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/query-issue172/query-issue172.3.query.sqlpp
@@ -18,5 +18,9 @@
*/
/*
* Description : This test case is to verify the fix for issue172
+ : https://code.google.com/p/asterixdb/issues/detail?id=172
+ * Expected Res : Success
+ * Date : 19th May 2013
+ */
"string-length"("string-concat"(['this is a ','test string']));
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/query-issue201/query-issue201.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/query-issue201/query-issue201.1.ddl.sqlpp
index d0baf5c..29c52be 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/query-issue201/query-issue201.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/query-issue201/query-issue201.1.ddl.sqlpp
@@ -18,4 +18,8 @@
*/
/*
* Description : This test case is to verify the fix for issue201
+ : https://code.google.com/p/asterixdb/issues/detail?id=201
+ * Expected Res : Success
+ * Date : 26th November 2012
+ */
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/query-issue201/query-issue201.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/query-issue201/query-issue201.2.update.sqlpp
index d0baf5c..29c52be 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/query-issue201/query-issue201.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/query-issue201/query-issue201.2.update.sqlpp
@@ -18,4 +18,8 @@
*/
/*
* Description : This test case is to verify the fix for issue201
+ : https://code.google.com/p/asterixdb/issues/detail?id=201
+ * Expected Res : Success
+ * Date : 26th November 2012
+ */
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/query-issue201/query-issue201.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/query-issue201/query-issue201.3.query.sqlpp
index 13599da..aee20fe 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/query-issue201/query-issue201.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/query-issue201/query-issue201.3.query.sqlpp
@@ -18,6 +18,10 @@
*/
/*
* Description : This test case is to verify the fix for issue201
+ : https://code.google.com/p/asterixdb/issues/detail?id=201
+ * Expected Res : Success
+ * Date : 26th November 2012
+ */
set "import-private-functions" "true";
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/query-issue218-2/query-issue218-2.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/query-issue218-2/query-issue218-2.1.ddl.sqlpp
index d096df2..f535ffe 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/query-issue218-2/query-issue218-2.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/query-issue218-2/query-issue218-2.1.ddl.sqlpp
@@ -18,4 +18,18 @@
*/
/*
* Description : This test case is to verify the fix for issue218
+ : https://code.google.com/p/asterixdb/issues/detail?id=218
+ * Expected Res : Success
+ * Date : 5th June 2013
+ */
+drop database test if exists;
+create database test;
+
+create function test.computeBonus(pbcRating,salary)
+{
+ if (pbcRating = 1) then
+ salary * 0.25
+ else
+ salary * 0.10
+}
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/query-issue218-2/query-issue218-2.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/query-issue218-2/query-issue218-2.2.update.sqlpp
index d096df2..def8b22 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/query-issue218-2/query-issue218-2.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/query-issue218-2/query-issue218-2.2.update.sqlpp
@@ -18,4 +18,8 @@
*/
/*
* Description : This test case is to verify the fix for issue218
+ : https://code.google.com/p/asterixdb/issues/detail?id=218
+ * Expected Res : Success
+ * Date : 5th June 2013
+ */
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/query-issue218-2/query-issue218-2.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/query-issue218-2/query-issue218-2.3.query.sqlpp
index cd4b50b..8a642f2 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/query-issue218-2/query-issue218-2.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/query-issue218-2/query-issue218-2.3.query.sqlpp
@@ -18,5 +18,9 @@
*/
/*
* Description : This test case is to verify the fix for issue218
+ : https://code.google.com/p/asterixdb/issues/detail?id=218
+ * Expected Res : Success
+ * Date : 5th June 2013
+ */
select element test.computeBonus(-1,-1);
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/query-issue218/query-issue218.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/query-issue218/query-issue218.1.ddl.sqlpp
index d096df2..bc22967 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/query-issue218/query-issue218.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/query-issue218/query-issue218.1.ddl.sqlpp
@@ -18,4 +18,18 @@
*/
/*
* Description : This test case is to verify the fix for issue218
+ : https://code.google.com/p/asterixdb/issues/detail?id=218
+ * Expected Res : Success
+ * Date : 5th June 2013
+ */
+drop database test if exists;
+create database test;
+
+create function test.computeBonus(pbcRating, salary)
+{
+ if (pbcRating = 1) then
+ salary * 0.25
+ else
+ salary * 0.10
+}
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/query-issue218/query-issue218.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/query-issue218/query-issue218.2.update.sqlpp
index d096df2..def8b22 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/query-issue218/query-issue218.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/query-issue218/query-issue218.2.update.sqlpp
@@ -18,4 +18,8 @@
*/
/*
* Description : This test case is to verify the fix for issue218
+ : https://code.google.com/p/asterixdb/issues/detail?id=218
+ * Expected Res : Success
+ * Date : 5th June 2013
+ */
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/query-issue218/query-issue218.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/query-issue218/query-issue218.3.query.sqlpp
index d79091d..b2d3597 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/query-issue218/query-issue218.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/query-issue218/query-issue218.3.query.sqlpp
@@ -18,5 +18,9 @@
*/
/*
* Description : This test case is to verify the fix for issue218
+ : https://code.google.com/p/asterixdb/issues/detail?id=218
+ * Expected Res : Success
+ * Date : 5th June 2013
+ */
1;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/query-issue244/query-issue244.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/query-issue244/query-issue244.1.ddl.sqlpp
index 459920d..024da44 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/query-issue244/query-issue244.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/query-issue244/query-issue244.1.ddl.sqlpp
@@ -18,4 +18,26 @@
*/
/*
* Description : This test case is to verify the fix for issue244
+ : https://code.google.com/p/asterixdb/issues/detail?id=244
+ * Expected Res : Success
+ * Date : 4th June 2013
+ */
+
+drop database test if exists;
+create database test;
+
+use test;
+
+create type TypeA as open {
+ id : int64,
+ name : string
+}
+
+create table t1(TypeA) primary key id;
+
+create table t2(TypeA) primary key id;
+
+create function f1(){
+(from t1 as m select element m)
+};
\ No newline at end of file
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/query-issue244/query-issue244.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/query-issue244/query-issue244.2.update.sqlpp
index f33d37d..44d833d 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/query-issue244/query-issue244.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/query-issue244/query-issue244.2.update.sqlpp
@@ -18,19 +18,28 @@
*/
/*
* Description : This test case is to verify the fix for issue244
+ : https://code.google.com/p/asterixdb/issues/detail?id=244
+ * Expected Res : Success
+ * Date : 4th June 2013
+ */
use test;
insert into t1
-select element {'id':21,'name':'John'};
+({'id':21,'name':'John'});
+
insert into t1
-select element {'id':34,'name':'Bill'};
+({'id':34,'name':'Bill'});
+
insert into t1
-select element {'id':41,'name':'Joy'};
+{'id':41,'name':'Joy'};
+
insert into t1
-select element {'id':16,'name':'Sam'};
+{'id':16,'name':'Sam'};
+
insert into t1
-select element {'id':67,'name':'Ravi'};
+{'id':67,'name':'Ravi'};
+
insert into t2
-select element test.f1();
+test.f1();
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/query-issue244/query-issue244.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/query-issue244/query-issue244.3.query.sqlpp
index 70465cb..9b020a3 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/query-issue244/query-issue244.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/query-issue244/query-issue244.3.query.sqlpp
@@ -18,6 +18,10 @@
*/
/*
* Description : This test case is to verify the fix for issue244
+ : https://code.google.com/p/asterixdb/issues/detail?id=244
+ * Expected Res : Success
+ * Date : 4th June 2013
+ */
use test;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/query-issue455/query-issue455.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/query-issue455/query-issue455.1.ddl.sqlpp
index 01967d2..e0f9431 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/query-issue455/query-issue455.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/query-issue455/query-issue455.1.ddl.sqlpp
@@ -18,4 +18,16 @@
*/
/*
* Description : This test case is to verify the fix for issue 455
+ : https://code.google.com/p/asterixdb/issues/detail?id=455
+ * Expected Res : Failure
+ * Date : 19th May November 2013
+ */
+
+drop database test if exists;
+create test;
+
+create function printName()
+{
+"AsterixDB Shared nothing parallel BDMS"
+}
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/query-issue455/query-issue455.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/query-issue455/query-issue455.2.update.sqlpp
index 01967d2..fa09c2f 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/query-issue455/query-issue455.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/query-issue455/query-issue455.2.update.sqlpp
@@ -18,4 +18,8 @@
*/
/*
* Description : This test case is to verify the fix for issue 455
+ : https://code.google.com/p/asterixdb/issues/detail?id=455
+ * Expected Res : Failure
+ * Date : 19th May 2013
+ */
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/query-issue455/query-issue455.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/query-issue455/query-issue455.3.query.sqlpp
index d781753..3da03e9 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/query-issue455/query-issue455.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/query-issue455/query-issue455.3.query.sqlpp
@@ -18,5 +18,9 @@
*/
/*
* Description : This test case is to verify the fix for issue 455
+ : https://code.google.com/p/asterixdb/issues/detail?id=455
+ * Expected Res : Failure
+ * Date : 19th May 2013
+ */
select element printName();
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/query-issue455/query-issue455.4.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/query-issue455/query-issue455.4.ddl.sqlpp
index 487fd1c..8cb4580 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/query-issue455/query-issue455.4.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/query-issue455/query-issue455.4.ddl.sqlpp
@@ -18,5 +18,9 @@
*/
/*
* Description : This test case is to verify the fix for issue 455
+ : https://code.google.com/p/asterixdb/issues/detail?id=455
+ * Expected Res : Failure
+ * Date : 19th May 2013
+ */
drop function test.printName@0;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/query-issue455/query-issue455.5.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/query-issue455/query-issue455.5.query.sqlpp
index 7abd45d..a1e4407 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/query-issue455/query-issue455.5.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/query-issue455/query-issue455.5.query.sqlpp
@@ -18,6 +18,10 @@
*/
/*
* Description : This test case is to verify the fix for issue 455
+ : https://code.google.com/p/asterixdb/issues/detail?id=455
+ * Expected Res : Failure
+ * Date : 19th May 2013
+ */
select element l
from "Metadata.Function" as l
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/query-issue489/query-issue489.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/query-issue489/query-issue489.1.ddl.sqlpp
index c1f21ae..504f3ac 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/query-issue489/query-issue489.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/query-issue489/query-issue489.1.ddl.sqlpp
@@ -18,4 +18,21 @@
*/
/*
* Description : This test case is to verify the fix for issue 489
+ https://code.google.com/p/asterixdb/issues/detail?id=489
+ * Expected Res : Success
+ * Date : 31st May 2013
+ */
+drop database test if exists;
+create database test;
+use test;
+
+create function f1()
+{
+"function with no input"
+}
+
+create function f1(a)
+{
+"function with input"
+}
\ No newline at end of file
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/query-issue489/query-issue489.2.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/query-issue489/query-issue489.2.query.sqlpp
index 658e62f..420933a 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/query-issue489/query-issue489.2.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/query-issue489/query-issue489.2.query.sqlpp
@@ -18,6 +18,10 @@
*/
/*
* Description : This test case is to verify the fix for issue 489
+ https://code.google.com/p/asterixdb/issues/detail?id=489
+ * Expected Res : Success
+ * Date : 31st May 2013
+ */
select element count((
select element x
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/query-issue489/query-issue489.3.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/query-issue489/query-issue489.3.ddl.sqlpp
index 7125d8d..89eb9dc 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/query-issue489/query-issue489.3.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/query-issue489/query-issue489.3.ddl.sqlpp
@@ -18,6 +18,10 @@
*/
/*
* Description : This test case is to verify the fix for issue 489
+ https://code.google.com/p/asterixdb/issues/detail?id=489
+ * Expected Res : Success
+ * Date : 31st May 2013
+ */
drop database test if exists;
create database test;
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/query-issue489/query-issue489.4.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/query-issue489/query-issue489.4.query.sqlpp
index 658e62f..420933a 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/query-issue489/query-issue489.4.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/query-issue489/query-issue489.4.query.sqlpp
@@ -18,6 +18,10 @@
*/
/*
* Description : This test case is to verify the fix for issue 489
+ https://code.google.com/p/asterixdb/issues/detail?id=489
+ * Expected Res : Success
+ * Date : 31st May 2013
+ */
select element count((
select element x
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf01/udf01.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf01/udf01.1.ddl.sqlpp
index 12226f6..3d0edfc 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf01/udf01.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf01/udf01.1.ddl.sqlpp
@@ -23,3 +23,13 @@
* Date : 4th September 2012
*/
+
+drop database test if exists;
+create database test;
+
+use test;
+
+create function test.echo(list){
+list
+}
+
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf02/udf02.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf02/udf02.1.ddl.sqlpp
index 4019738..8aa1d23 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf02/udf02.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf02/udf02.1.ddl.sqlpp
@@ -22,3 +22,11 @@
* Date : 4th September 2012
*/
+drop database test if exists;
+create database test;
+
+use test;
+
+create function test.getFirst(list){
+list[0]
+}
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf03/udf03.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf03/udf03.1.ddl.sqlpp
index d5fe961..703dbb3 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf03/udf03.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf03/udf03.1.ddl.sqlpp
@@ -23,3 +23,14 @@
* Ignored : Not part of test build due to Issue 200
*/
+
+// This test is returning NPE... Issue 200
+
+drop database test if exists;
+create database test;
+
+use test;
+
+create function test.echo(list){
+list
+}
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf04/udf04.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf04/udf04.1.ddl.sqlpp
index 25cb292..b1ab215 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf04/udf04.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf04/udf04.1.ddl.sqlpp
@@ -22,3 +22,11 @@
* Date : 4th September 2012
*/
+drop database test if exists;
+create database test;
+
+use test;
+
+create function test.echo(list){
+list
+}
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf05/udf05.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf05/udf05.1.ddl.sqlpp
index abf4af3..82bafda 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf05/udf05.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf05/udf05.1.ddl.sqlpp
@@ -22,3 +22,11 @@
* Date : Sep 4th 2012
*/
+
+drop database test if exists;
+create database test;
+use test;
+
+create function test.echo(a){
+a
+}
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf06/udf06.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf06/udf06.1.ddl.sqlpp
index befcd67..0d41cd2 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf06/udf06.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf06/udf06.1.ddl.sqlpp
@@ -22,3 +22,12 @@
* Date : 4th September 2012
*/
+
+drop database test if exists;
+create database test;
+
+use test;
+
+create function test.echo(a){
+a
+}
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf07/udf07.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf07/udf07.1.ddl.sqlpp
index ae66d5d..5078a03 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf07/udf07.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf07/udf07.1.ddl.sqlpp
@@ -22,3 +22,11 @@
* Date : Sep 4th 2012
*/
+drop database test if exists;
+create database test;
+
+use test;
+
+create function test.echo(a){
+a
+}
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf08/udf08.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf08/udf08.1.ddl.sqlpp
index 36bf955..f70a1eb 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf08/udf08.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf08/udf08.1.ddl.sqlpp
@@ -22,3 +22,11 @@
* Date : 4th September 2012
*/
+drop database test if exists;
+create database test;
+
+use test;
+
+create function test.echo(a){
+a
+}
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf09/udf09.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf09/udf09.1.ddl.sqlpp
index 414d6d2..3ae6afe 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf09/udf09.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf09/udf09.1.ddl.sqlpp
@@ -22,3 +22,17 @@
* Date : Sep 4th 2012
*/
+drop database test if exists;
+create database test;
+
+use test;
+
+create type test.TestType as open {
+id : int64
+}
+
+create table test.t1(TestType) primary key id;
+
+create function test.readDataset(a) {
+a
+}
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf09/udf09.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf09/udf09.2.update.sqlpp
index 2fd8a28..f02cdd9 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf09/udf09.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf09/udf09.2.update.sqlpp
@@ -17,7 +17,7 @@
* under the License.
*/
/*
- * Description : Create UDF to read from internal dataset
+ * Description : Create UDF to read from internal dataset
* Expected Res : Success
* Date : Sep 4th 2012
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf09/udf09.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf09/udf09.3.query.sqlpp
index 66e1db3..5d46eb3 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf09/udf09.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf09/udf09.3.query.sqlpp
@@ -17,7 +17,7 @@
* under the License.
*/
/*
- * Description : Create UDF to read from internal dataset
+ * Description : Create UDF to read from internal dataset
* Expected Res : Success
* Date : Sep 4th 2012
*/
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf10/udf10.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf10/udf10.1.ddl.sqlpp
index aa78721..7d2836e 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf10/udf10.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf10/udf10.1.ddl.sqlpp
@@ -22,3 +22,11 @@
* Date : 4th September 2012
*/
+drop database test if exists;
+create database test;
+
+use test;
+
+create function test.echo(uolist){
+uolist
+}
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf11/udf11.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf11/udf11.1.ddl.sqlpp
index 9170318..06e7cdb 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf11/udf11.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf11/udf11.1.ddl.sqlpp
@@ -22,3 +22,12 @@
* Date : Sep 4th 2012
*/
+
+drop database test if exists;
+create database test;
+
+use test;
+
+create function test.OList(){
+[1,2,3,4,5,6,7,8,9,10]
+}
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf12/udf12.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf12/udf12.1.ddl.sqlpp
index 26f68f9..f67bc3a 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf12/udf12.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf12/udf12.1.ddl.sqlpp
@@ -22,3 +22,12 @@
* Date : 4th September 2012
*/
+
+drop database test if exists;
+create database test;
+
+use test;
+
+create function test.foo(a,b) {
+a+b
+}
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf13/udf13.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf13/udf13.1.ddl.sqlpp
index 4b35b6c..a6e4d54 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf13/udf13.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf13/udf13.1.ddl.sqlpp
@@ -22,3 +22,11 @@
* Date : 4th September 2012
*/
+drop database test if exists;
+create database test;
+
+use test;
+
+create function test.foo(a,b) {
+a - b
+}
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf14/udf14.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf14/udf14.1.ddl.sqlpp
index 558cc74..bec1de4 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf14/udf14.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf14/udf14.1.ddl.sqlpp
@@ -22,3 +22,11 @@
* Date : 4th September 2012
*/
+drop database test if exists;
+create database test;
+
+use test;
+
+create function test.foo(a,b) {
+a*b
+}
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf15/udf15.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf15/udf15.1.ddl.sqlpp
index 83ecf21..8f13eeb 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf15/udf15.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf15/udf15.1.ddl.sqlpp
@@ -24,3 +24,13 @@
* Ignored : Not part of current tests because of Issue 200
*/
+// this test resturns NPE:Issue 166
+
+drop database test if exists;
+create database test;
+
+use test;
+
+create function test.OList2(){
+[[1,2,3,4,5,6,7,8,9,10],['a','b','c','d','e','f','g','h','y']]
+}
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf16/udf16.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf16/udf16.1.ddl.sqlpp
index ec2336e..5907265 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf16/udf16.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf16/udf16.1.ddl.sqlpp
@@ -23,3 +23,12 @@
* Date : Sep 5th 2012
*/
+drop database test if exists;
+create database test;
+
+use test;
+
+create function test.fn02(){
+'Welcome to the world of Asterix'
+}
+
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf17/udf17.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf17/udf17.1.ddl.sqlpp
index c209960..30c17f5 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf17/udf17.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf17/udf17.1.ddl.sqlpp
@@ -17,9 +17,22 @@
* under the License.
*/
/*
- * Description : Create UDF and invoke it from another UDF and
+ * Description : Create UDF and invoke it from another UDF and
* : child UDF returns a string to the parent.
* Expected Res : Success
* Date : Sep 5th 2012
*/
+
+drop database test if exists;
+create database test;
+
+use test;
+
+create function test.parent(){
+test.child()
+}
+
+create function test.child() {
+'This data is from the child function'
+}
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf17/udf17.2.update.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf17/udf17.2.update.sqlpp
index c209960..a3ee4d2 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf17/udf17.2.update.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf17/udf17.2.update.sqlpp
@@ -17,7 +17,7 @@
* under the License.
*/
/*
- * Description : Create UDF and invoke it from another UDF and
+ * Description : Create UDF and invoke it from another UDF and
* : child UDF returns a string to the parent.
* Expected Res : Success
* Date : Sep 5th 2012
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf17/udf17.3.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf17/udf17.3.query.sqlpp
index afd98ad..d059180 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf17/udf17.3.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf17/udf17.3.query.sqlpp
@@ -17,7 +17,7 @@
* under the License.
*/
/*
- * Description : Create UDF and invoke it from another UDF and
+ * Description : Create UDF and invoke it from another UDF and
* : child UDF returns a string to the parent.
* Expected Res : Success
* Date : Sep 5th 2012
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf18/udf18.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf18/udf18.1.ddl.sqlpp
index 9bbef2f..79baf30 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf18/udf18.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf18/udf18.1.ddl.sqlpp
@@ -22,3 +22,11 @@
* Date : Sep 5th 2012
*/
+drop database test if exists;
+create database test;
+
+use test;
+
+create function test.fn06(){
+false
+}
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf19/udf19.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf19/udf19.1.ddl.sqlpp
index 84deb19..f83e912 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf19/udf19.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf19/udf19.1.ddl.sqlpp
@@ -22,3 +22,16 @@
* Date : Sep 5th 2012
*/
+
+drop database test if exists;
+create database test;
+
+use test;
+
+create function test.pie(){
+3.14
+}
+
+create function test.area(radius){
+test.pie() * radius * radius
+}
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf20/udf20.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf20/udf20.1.ddl.sqlpp
index 84deb19..f83e912 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf20/udf20.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf20/udf20.1.ddl.sqlpp
@@ -22,3 +22,16 @@
* Date : Sep 5th 2012
*/
+
+drop database test if exists;
+create database test;
+
+use test;
+
+create function test.pie(){
+3.14
+}
+
+create function test.area(radius){
+test.pie() * radius * radius
+}
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf21/udf21.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf21/udf21.1.ddl.sqlpp
index 211e12c..562aac1 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf21/udf21.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf21/udf21.1.ddl.sqlpp
@@ -22,3 +22,13 @@
* Date : Sep 5th 2012
*/
+
+drop database test if exists;
+create database test;
+
+use test;
+
+
+create function test.isOdd(b){
+b%2 != 0
+}
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf22/udf22.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf22/udf22.1.ddl.sqlpp
index 67c9c5f..ec982a1 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf22/udf22.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf22/udf22.1.ddl.sqlpp
@@ -22,3 +22,12 @@
* Date : Sep 5th 2012
*/
+
+drop database test if exists;
+create database test;
+
+use test;
+
+create function test.getFullName(fname,lname){
+"string-concat"([fname,lname])
+}
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf23/udf23.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf23/udf23.1.ddl.sqlpp
index f038f5b..02a73aa 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf23/udf23.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf23/udf23.1.ddl.sqlpp
@@ -22,3 +22,11 @@
* Date : Sep 5th 2012
*/
+drop database test if exists;
+create database test;
+
+use test;
+
+create function test.numRows(){
+6
+}
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf24/udf24.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf24/udf24.1.ddl.sqlpp
index e13a2cf..b068c18 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf24/udf24.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf24/udf24.1.ddl.sqlpp
@@ -16,10 +16,14 @@
* specific language governing permissions and limitations
* under the License.
*/
-/*
- * Description : Create UDF that returns a range
- * Expected Res : Success
- * Date : Sep 5 2012
- * Ignored : Not part of current test build because of Issue 201
- */
+// Returns java.lang.ClassCastException : Issue 195
+drop database test if exists;
+create database test;
+
+use test;
+
+create function test.myRangeFn(n)
+{
+ range(1,n)
+}
\ No newline at end of file
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf25/udf25.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf25/udf25.1.ddl.sqlpp
index 8bce363..ac9f6d9 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf25/udf25.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf25/udf25.1.ddl.sqlpp
@@ -22,3 +22,17 @@
* Date : 5th Sep 2012
*/
+// This one returns NPE...
+
+drop database test if exists;
+create database test;
+
+use test;
+
+create function test.computeBonus(pbcRating,salary)
+{
+ if (pbcRating = 1) then
+ salary * 0.25
+ else
+ salary * 0.10
+}
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf26/udf26.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf26/udf26.1.ddl.sqlpp
index 62a7a0b..728ff07 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf26/udf26.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf26/udf26.1.ddl.sqlpp
@@ -22,3 +22,11 @@
* Date : Sep 6th 2012
*/
+drop database test if exists;
+create database test;
+
+use test;
+
+create function test.needs_f1(x){
+ x + f1()
+}
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf27/udf27.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf27/udf27.1.ddl.sqlpp
index 4e255e3..101f70d 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf27/udf27.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf27/udf27.1.ddl.sqlpp
@@ -22,3 +22,16 @@
* Date : Sep 6th 2012
*/
+// this test is not giving expected results.
+// issue 194 reported to track this
+
+drop database test if exists;
+create database test;
+
+use test;
+
+create function test.f1(){
+100
+}
+
+
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf28/udf28.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf28/udf28.1.ddl.sqlpp
index eb5ed5d..bcd744f 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf28/udf28.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf28/udf28.1.ddl.sqlpp
@@ -22,3 +22,15 @@
* Date : Sep 6th 2012
*/
+// this test is not giving expected results.
+// issue 194 reported to track this
+
+drop database test if exists;
+create database test;
+
+use test;
+
+create function test.f1(){
+100
+};
+
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf30/udf30.1.query.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf30/udf30.1.query.sqlpp
index 9cf7dd9..5f0148b 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf30/udf30.1.query.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf30/udf30.1.query.sqlpp
@@ -23,3 +23,10 @@
* Date : Apr 10th 2013
*/
+declare function abc(y) {
+ 3
+};
+
+let z =y
+select element z
+
diff --git a/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf31/udf31.1.ddl.sqlpp b/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf31/udf31.1.ddl.sqlpp
index bd244d0..b4783d7 100644
--- a/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf31/udf31.1.ddl.sqlpp
+++ b/asterix-app/src/test/resources/runtimets/queries_sqlpp/user-defined-functions/udf31/udf31.1.ddl.sqlpp
@@ -17,3 +17,29 @@
* under the License.
*/
+/*
+ * Description : Declare a UDF that has a LIMIT in it and try to execute that function.
+ * Expected Res : Success
+ */
+
+drop database emergencyTest if exists;
+create database emergencyTest;
+use emergencyTest;
+
+create type EmergencyReport as
+{
+ "id": int,
+ "intensity": int,
+ "message": string
+}
+
+create table EmergencyReports(EmergencyReport)
+primary key id;
+
+create function mostIntenseEarthquakeNearLocation()
+{
+ from EmergencyReports as emergency
+ order by emergency.id
+ limit 1
+ select element emergency.message
+}
\ No newline at end of file
diff --git a/asterix-app/src/test/resources/runtimets/results/big-object/big_object_groupby/groupby.1.adm b/asterix-app/src/test/resources/runtimets/results/big-object/big_object_groupby/groupby.1.adm
index d118252..c6b0454 100644
--- a/asterix-app/src/test/resources/runtimets/results/big-object/big_object_groupby/groupby.1.adm
+++ b/asterix-app/src/test/resources/runtimets/results/big-object/big_object_groupby/groupby.1.adm
@@ -1,200 +1,200 @@
-{ "partkey": 6i32, "lines": [ { "l_orderkey": 4483i32, "l_partkey": 6i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 32.0d, "l_extendedprice": 28992.0d, "l_discount": 0.07d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-04-05", "l_commitdate": "1992-05-25", "l_receiptdate": "1992-04-08", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "ests haggle. slyl" }, { "l_orderkey": 801i32, "l_partkey": 6i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 13.0d, "l_extendedprice": 11778.0d, "l_discount": 0.1d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-04-25", "l_commitdate": "1992-04-24", "l_receiptdate": "1992-05-16", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "s are fluffily stealthily expres" }, { "l_orderkey": 2689i32, "l_partkey": 6i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 45.0d, "l_extendedprice": 40770.0d, "l_discount": 0.02d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-04-29", "l_commitdate": "1992-06-22", "l_receiptdate": "1992-04-30", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "e quickly. carefully silent" }, { "l_orderkey": 3043i32, "l_partkey": 6i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 15.0d, "l_extendedprice": 13590.0d, "l_discount": 0.03d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-05-27", "l_commitdate": "1992-06-03", "l_receiptdate": "1992-06-09", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "usly furiously" }, { "l_orderkey": 2054i32, "l_partkey": 6i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 40.0d, "l_extendedprice": 36240.0d, "l_discount": 0.08d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-06-23", "l_commitdate": "1992-08-09", "l_receiptdate": "1992-07-04", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "n pinto beans. ironic courts are iro" }, { "l_orderkey": 4195i32, "l_partkey": 6i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 14.0d, "l_extendedprice": 12684.0d, "l_discount": 0.09d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-09-06", "l_commitdate": "1993-07-21", "l_receiptdate": "1993-09-18", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "ironic packages. carefully express" }, { "l_orderkey": 4612i32, "l_partkey": 6i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 20.0d, "l_extendedprice": 18120.0d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-09-24", "l_commitdate": "1993-12-18", "l_receiptdate": "1993-10-22", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "beans sleep blithely iro" }, { "l_orderkey": 1542i32, "l_partkey": 6i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 18.0d, "l_extendedprice": 16308.0d, "l_discount": 0.05d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-10-17", "l_commitdate": "1993-11-15", "l_receiptdate": "1993-10-26", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "pending instr" }, { "l_orderkey": 2370i32, "l_partkey": 6i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 21.0d, "l_extendedprice": 19026.0d, "l_discount": 0.04d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-02-01", "l_commitdate": "1994-02-19", "l_receiptdate": "1994-02-09", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "ecial dependencies must have to " }, { "l_orderkey": 5957i32, "l_partkey": 6i32, "l_suppkey": 1i32, "l_linenumber": 6i32, "l_quantity": 41.0d, "l_extendedprice": 37146.0d, "l_discount": 0.1d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-03-25", "l_commitdate": "1994-02-20", "l_receiptdate": "1994-03-31", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "es across the regular requests maint" }, { "l_orderkey": 290i32, "l_partkey": 6i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 35.0d, "l_extendedprice": 31710.0d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-04-01", "l_commitdate": "1994-02-05", "l_receiptdate": "1994-04-27", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "ove the final foxes detect slyly fluffily" }, { "l_orderkey": 5760i32, "l_partkey": 6i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 24.0d, "l_extendedprice": 21744.0d, "l_discount": 0.04d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-07-15", "l_commitdate": "1994-07-04", "l_receiptdate": "1994-08-08", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "s. bravely ironic accounts among" }, { "l_orderkey": 4870i32, "l_partkey": 6i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 4.0d, "l_extendedprice": 3624.0d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-10-23", "l_commitdate": "1994-09-16", "l_receiptdate": "1994-11-04", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "its wake quickly. slyly quick" }, { "l_orderkey": 5223i32, "l_partkey": 6i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 19.0d, "l_extendedprice": 17214.0d, "l_discount": 0.04d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-10-28", "l_commitdate": "1994-08-26", "l_receiptdate": "1994-10-31", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "ntly. furiously even excuses a" }, { "l_orderkey": 4485i32, "l_partkey": 6i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 47.0d, "l_extendedprice": 42582.0d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-03-11", "l_commitdate": "1995-01-11", "l_receiptdate": "1995-03-21", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "luffily pending acc" }, { "l_orderkey": 3329i32, "l_partkey": 6i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 9.0d, "l_extendedprice": 8154.0d, "l_discount": 0.0d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-24", "l_commitdate": "1995-08-02", "l_receiptdate": "1995-08-01", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "lly final depo" }, { "l_orderkey": 3137i32, "l_partkey": 6i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 4.0d, "l_extendedprice": 3624.0d, "l_discount": 0.06d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-01", "l_commitdate": "1995-09-11", "l_receiptdate": "1995-10-30", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "posits wake. silent excuses boost about" }, { "l_orderkey": 4387i32, "l_partkey": 6i32, "l_suppkey": 3i32, "l_linenumber": 6i32, "l_quantity": 40.0d, "l_extendedprice": 36240.0d, "l_discount": 0.02d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-29", "l_commitdate": "1995-12-10", "l_receiptdate": "1995-12-20", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "deas according to the blithely regular fox" }, { "l_orderkey": 4676i32, "l_partkey": 6i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 33.0d, "l_extendedprice": 29898.0d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-29", "l_commitdate": "1995-10-01", "l_receiptdate": "1996-01-18", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "yly express " }, { "l_orderkey": 2049i32, "l_partkey": 6i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 39.0d, "l_extendedprice": 35334.0d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-17", "l_commitdate": "1996-01-21", "l_receiptdate": "1996-02-03", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "the even pinto beans " }, { "l_orderkey": 1284i32, "l_partkey": 6i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 4.0d, "l_extendedprice": 3624.0d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-02-29", "l_commitdate": "1996-02-11", "l_receiptdate": "1996-03-01", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": " regular asymptotes. " }, { "l_orderkey": 2276i32, "l_partkey": 6i32, "l_suppkey": 9i32, "l_linenumber": 6i32, "l_quantity": 4.0d, "l_extendedprice": 3624.0d, "l_discount": 0.1d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-05", "l_commitdate": "1996-06-30", "l_receiptdate": "1996-08-04", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "s. deposits " }, { "l_orderkey": 768i32, "l_partkey": 6i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 30.0d, "l_extendedprice": 27180.0d, "l_discount": 0.06d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-22", "l_commitdate": "1996-11-03", "l_receiptdate": "1996-10-13", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": " furiously fluffy pinto beans haggle along" }, { "l_orderkey": 1827i32, "l_partkey": 6i32, "l_suppkey": 7i32, "l_linenumber": 7i32, "l_quantity": 38.0d, "l_extendedprice": 34428.0d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-17", "l_commitdate": "1996-08-29", "l_receiptdate": "1996-11-07", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": " blithely. express, bo" }, { "l_orderkey": 2179i32, "l_partkey": 6i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 24.0d, "l_extendedprice": 21744.0d, "l_discount": 0.04d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-26", "l_commitdate": "1996-11-05", "l_receiptdate": "1996-11-16", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": " cajole carefully. " }, { "l_orderkey": 4005i32, "l_partkey": 6i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 14.0d, "l_extendedprice": 12684.0d, "l_discount": 0.09d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-27", "l_commitdate": "1997-01-09", "l_receiptdate": "1996-12-25", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "ld requests. slyly final instructi" }, { "l_orderkey": 1220i32, "l_partkey": 6i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 36.0d, "l_extendedprice": 32616.0d, "l_discount": 0.07d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-12", "l_commitdate": "1996-10-03", "l_receiptdate": "1996-12-15", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "unusual, silent pinto beans aga" }, { "l_orderkey": 3426i32, "l_partkey": 6i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 9.0d, "l_extendedprice": 8154.0d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-24", "l_commitdate": "1997-01-14", "l_receiptdate": "1997-01-13", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "pecial theodolites haggle fluf" }, { "l_orderkey": 260i32, "l_partkey": 6i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 29.0d, "l_extendedprice": 26274.0d, "l_discount": 0.1d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-15", "l_commitdate": "1997-01-14", "l_receiptdate": "1997-04-13", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "fluffily even asymptotes. express wa" }, { "l_orderkey": 4036i32, "l_partkey": 6i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 46.0d, "l_extendedprice": 41676.0d, "l_discount": 0.09d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-21", "l_commitdate": "1997-05-29", "l_receiptdate": "1997-07-18", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "usly across the even th" }, { "l_orderkey": 5124i32, "l_partkey": 6i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 41.0d, "l_extendedprice": 37146.0d, "l_discount": 0.02d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-05", "l_commitdate": "1997-06-29", "l_receiptdate": "1997-07-23", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "wake across the" }, { "l_orderkey": 1638i32, "l_partkey": 6i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 46.0d, "l_extendedprice": 41676.0d, "l_discount": 0.03d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-10-16", "l_commitdate": "1997-10-28", "l_receiptdate": "1997-11-09", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "otes haggle before the slyly bold instructi" }, { "l_orderkey": 5125i32, "l_partkey": 6i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 38.0d, "l_extendedprice": 34428.0d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-20", "l_commitdate": "1998-04-14", "l_receiptdate": "1998-03-22", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "ily even deposits w" }, { "l_orderkey": 1124i32, "l_partkey": 6i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 13.0d, "l_extendedprice": 11778.0d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-09-05", "l_commitdate": "1998-10-03", "l_receiptdate": "1998-09-30", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "t the slyly " } ] }
-{ "partkey": 11i32, "lines": [ { "l_orderkey": 4800i32, "l_partkey": 11i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 21.0d, "l_extendedprice": 19131.21d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-02-14", "l_commitdate": "1992-03-15", "l_receiptdate": "1992-02-26", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "ithely according to " }, { "l_orderkey": 5858i32, "l_partkey": 11i32, "l_suppkey": 5i32, "l_linenumber": 7i32, "l_quantity": 50.0d, "l_extendedprice": 45550.5d, "l_discount": 0.06d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-07-20", "l_commitdate": "1992-10-07", "l_receiptdate": "1992-07-25", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "r the ironic ex" }, { "l_orderkey": 3237i32, "l_partkey": 11i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 11.0d, "l_extendedprice": 10021.11d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-08-03", "l_commitdate": "1992-07-31", "l_receiptdate": "1992-08-13", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "es. permanently express platelets besid" }, { "l_orderkey": 2054i32, "l_partkey": 11i32, "l_suppkey": 1i32, "l_linenumber": 7i32, "l_quantity": 4.0d, "l_extendedprice": 3644.04d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-08-12", "l_commitdate": "1992-08-31", "l_receiptdate": "1992-08-15", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "lyly careful requests wake fl" }, { "l_orderkey": 2147i32, "l_partkey": 11i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 11.0d, "l_extendedprice": 10021.11d, "l_discount": 0.06d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-09-27", "l_commitdate": "1992-11-16", "l_receiptdate": "1992-10-16", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": " the fluffily" }, { "l_orderkey": 4935i32, "l_partkey": 11i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 24.0d, "l_extendedprice": 21864.24d, "l_discount": 0.06d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-05-29", "l_commitdate": "1993-08-17", "l_receiptdate": "1993-06-22", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "ly quickly s" }, { "l_orderkey": 1509i32, "l_partkey": 11i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 46.0d, "l_extendedprice": 41906.46d, "l_discount": 0.08d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-10-15", "l_commitdate": "1993-10-04", "l_receiptdate": "1993-11-01", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "uriously regula" }, { "l_orderkey": 773i32, "l_partkey": 11i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 31.0d, "l_extendedprice": 28241.31d, "l_discount": 0.02d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-12-30", "l_commitdate": "1993-11-02", "l_receiptdate": "1994-01-01", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "e slyly unusual deposit" }, { "l_orderkey": 2466i32, "l_partkey": 11i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 29.0d, "l_extendedprice": 26419.29d, "l_discount": 0.04d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-04-01", "l_commitdate": "1994-04-20", "l_receiptdate": "1994-04-23", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "es boost fluffily ab" }, { "l_orderkey": 5698i32, "l_partkey": 11i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 30.0d, "l_extendedprice": 27330.3d, "l_discount": 0.01d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-05-26", "l_commitdate": "1994-08-16", "l_receiptdate": "1994-06-19", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "its. quickly regular foxes aro" }, { "l_orderkey": 4389i32, "l_partkey": 11i32, "l_suppkey": 5i32, "l_linenumber": 5i32, "l_quantity": 22.0d, "l_extendedprice": 20042.22d, "l_discount": 0.08d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-07-05", "l_commitdate": "1994-06-12", "l_receiptdate": "1994-07-12", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "lly silent de" }, { "l_orderkey": 998i32, "l_partkey": 11i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 6.0d, "l_extendedprice": 5466.06d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-03-20", "l_commitdate": "1994-12-27", "l_receiptdate": "1995-04-13", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "refully accounts. carefully express ac" }, { "l_orderkey": 928i32, "l_partkey": 11i32, "l_suppkey": 5i32, "l_linenumber": 7i32, "l_quantity": 11.0d, "l_extendedprice": 10021.11d, "l_discount": 0.0d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-04-29", "l_commitdate": "1995-04-16", "l_receiptdate": "1995-04-30", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "longside of" }, { "l_orderkey": 3460i32, "l_partkey": 11i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 40.0d, "l_extendedprice": 36440.4d, "l_discount": 0.1d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-28", "l_commitdate": "1995-12-14", "l_receiptdate": "1996-01-02", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "odolites are slyly bold deposits" }, { "l_orderkey": 2979i32, "l_partkey": 11i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 47.0d, "l_extendedprice": 42817.47d, "l_discount": 0.05d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-25", "l_commitdate": "1996-05-13", "l_receiptdate": "1996-04-04", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "iously unusual dependencies wake across" }, { "l_orderkey": 4551i32, "l_partkey": 11i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 6.0d, "l_extendedprice": 5466.06d, "l_discount": 0.08d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-18", "l_commitdate": "1996-04-23", "l_receiptdate": "1996-06-13", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "fily silent fo" }, { "l_orderkey": 103i32, "l_partkey": 11i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 37.0d, "l_extendedprice": 33707.37d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-17", "l_commitdate": "1996-07-27", "l_receiptdate": "1996-09-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "ies. quickly ironic requests use blithely" }, { "l_orderkey": 5573i32, "l_partkey": 11i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 46.0d, "l_extendedprice": 41906.46d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-04", "l_commitdate": "1996-10-02", "l_receiptdate": "1996-11-15", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "s haggle qu" }, { "l_orderkey": 3872i32, "l_partkey": 11i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 41.0d, "l_extendedprice": 37351.41d, "l_discount": 0.07d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-23", "l_commitdate": "1996-11-12", "l_receiptdate": "1996-12-03", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "ly regular epitaphs boost" }, { "l_orderkey": 2469i32, "l_partkey": 11i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 48.0d, "l_extendedprice": 43728.48d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-11", "l_commitdate": "1997-01-03", "l_receiptdate": "1997-01-15", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "riously even theodolites u" }, { "l_orderkey": 4934i32, "l_partkey": 11i32, "l_suppkey": 5i32, "l_linenumber": 7i32, "l_quantity": 2.0d, "l_extendedprice": 1822.02d, "l_discount": 0.1d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-05", "l_commitdate": "1997-03-26", "l_receiptdate": "1997-06-09", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "ongside of the brave, regula" }, { "l_orderkey": 3584i32, "l_partkey": 11i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 4.0d, "l_extendedprice": 3644.04d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-16", "l_commitdate": "1997-10-31", "l_receiptdate": "1997-08-28", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "nal packag" }, { "l_orderkey": 4866i32, "l_partkey": 11i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 9.0d, "l_extendedprice": 8199.09d, "l_discount": 0.01d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-30", "l_commitdate": "1997-09-18", "l_receiptdate": "1997-09-24", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "ven dependencies x-ray. quic" }, { "l_orderkey": 5187i32, "l_partkey": 11i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 49.0d, "l_extendedprice": 44639.49d, "l_discount": 0.04d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-10-20", "l_commitdate": "1997-10-12", "l_receiptdate": "1997-10-26", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "l, regular platelets instead of the foxes w" }, { "l_orderkey": 198i32, "l_partkey": 11i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 35.0d, "l_extendedprice": 31885.35d, "l_discount": 0.08d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-02-27", "l_commitdate": "1998-03-23", "l_receiptdate": "1998-03-14", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "ests nod quickly furiously sly pinto be" }, { "l_orderkey": 4192i32, "l_partkey": 11i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 36.0d, "l_extendedprice": 32796.36d, "l_discount": 0.06d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-25", "l_commitdate": "1998-05-26", "l_receiptdate": "1998-05-03", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "eodolites sleep" }, { "l_orderkey": 4263i32, "l_partkey": 11i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 38.0d, "l_extendedprice": 34618.38d, "l_discount": 0.01d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-10", "l_commitdate": "1998-05-08", "l_receiptdate": "1998-07-17", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "rding to the dep" }, { "l_orderkey": 5633i32, "l_partkey": 11i32, "l_suppkey": 5i32, "l_linenumber": 7i32, "l_quantity": 39.0d, "l_extendedprice": 35529.39d, "l_discount": 0.02d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-12", "l_commitdate": "1998-07-03", "l_receiptdate": "1998-07-13", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "ding ideas cajole furiously after" } ] }
-{ "partkey": 12i32, "lines": [ { "l_orderkey": 130i32, "l_partkey": 12i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 18.0d, "l_extendedprice": 16416.18d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-07-04", "l_commitdate": "1992-06-14", "l_receiptdate": "1992-07-29", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": " slyly ironic decoys abou" }, { "l_orderkey": 322i32, "l_partkey": 12i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 35.0d, "l_extendedprice": 31920.35d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-07-17", "l_commitdate": "1992-05-03", "l_receiptdate": "1992-08-14", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "egular accounts cajole carefully. even d" }, { "l_orderkey": 2497i32, "l_partkey": 12i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 34.0d, "l_extendedprice": 31008.34d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-09-02", "l_commitdate": "1992-10-19", "l_receiptdate": "1992-09-12", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "ronic accounts. p" }, { "l_orderkey": 1345i32, "l_partkey": 12i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 37.0d, "l_extendedprice": 33744.37d, "l_discount": 0.1d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-11-27", "l_commitdate": "1992-12-11", "l_receiptdate": "1992-12-07", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "e slyly express requests. ironic accounts c" }, { "l_orderkey": 4771i32, "l_partkey": 12i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 5.0d, "l_extendedprice": 4560.05d, "l_discount": 0.06d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-01-07", "l_commitdate": "1993-01-19", "l_receiptdate": "1993-01-26", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "ar, quiet accounts nag furiously express id" }, { "l_orderkey": 3204i32, "l_partkey": 12i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 10.0d, "l_extendedprice": 9120.1d, "l_discount": 0.1d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-01-27", "l_commitdate": "1993-03-08", "l_receiptdate": "1993-01-29", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "counts. bold " }, { "l_orderkey": 2435i32, "l_partkey": 12i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 24.0d, "l_extendedprice": 21888.24d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-03-14", "l_commitdate": "1993-05-20", "l_receiptdate": "1993-03-26", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "s. carefully regular d" }, { "l_orderkey": 2274i32, "l_partkey": 12i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 18.0d, "l_extendedprice": 16416.18d, "l_discount": 0.04d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-09-06", "l_commitdate": "1993-12-03", "l_receiptdate": "1993-09-22", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "usly final re" }, { "l_orderkey": 807i32, "l_partkey": 12i32, "l_suppkey": 2i32, "l_linenumber": 6i32, "l_quantity": 11.0d, "l_extendedprice": 10032.11d, "l_discount": 0.02d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-03-25", "l_commitdate": "1994-01-26", "l_receiptdate": "1994-04-14", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "unts above the slyly final ex" }, { "l_orderkey": 5729i32, "l_partkey": 12i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 50.0d, "l_extendedprice": 45600.5d, "l_discount": 0.0d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-12-09", "l_commitdate": "1994-12-31", "l_receiptdate": "1994-12-24", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "ly special sentiments. car" }, { "l_orderkey": 5920i32, "l_partkey": 12i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 28.0d, "l_extendedprice": 25536.28d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-12-17", "l_commitdate": "1995-02-13", "l_receiptdate": "1994-12-31", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "le slyly slyly even deposits. f" }, { "l_orderkey": 359i32, "l_partkey": 12i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 18.0d, "l_extendedprice": 16416.18d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-01-27", "l_commitdate": "1995-03-18", "l_receiptdate": "1995-01-31", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "unusual warthogs. ironically sp" }, { "l_orderkey": 5636i32, "l_partkey": 12i32, "l_suppkey": 3i32, "l_linenumber": 6i32, "l_quantity": 33.0d, "l_extendedprice": 30096.33d, "l_discount": 0.06d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-03-09", "l_commitdate": "1995-04-05", "l_receiptdate": "1995-03-23", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "ding to the " }, { "l_orderkey": 928i32, "l_partkey": 12i32, "l_suppkey": 3i32, "l_linenumber": 5i32, "l_quantity": 38.0d, "l_extendedprice": 34656.38d, "l_discount": 0.02d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "F", "l_shipdate": "1995-06-08", "l_commitdate": "1995-04-15", "l_receiptdate": "1995-06-30", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "xpress grouc" }, { "l_orderkey": 2311i32, "l_partkey": 12i32, "l_suppkey": 9i32, "l_linenumber": 6i32, "l_quantity": 32.0d, "l_extendedprice": 29184.32d, "l_discount": 0.01d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-19", "l_commitdate": "1995-06-26", "l_receiptdate": "1995-07-26", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "sts along the slyly" }, { "l_orderkey": 32i32, "l_partkey": 12i32, "l_suppkey": 6i32, "l_linenumber": 6i32, "l_quantity": 6.0d, "l_extendedprice": 5472.06d, "l_discount": 0.04d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-21", "l_commitdate": "1995-09-23", "l_receiptdate": "1995-07-25", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": " gifts cajole carefully." }, { "l_orderkey": 4038i32, "l_partkey": 12i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 37.0d, "l_extendedprice": 33744.37d, "l_discount": 0.04d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-17", "l_commitdate": "1996-03-19", "l_receiptdate": "1996-04-07", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": " packages " }, { "l_orderkey": 3715i32, "l_partkey": 12i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 37.0d, "l_extendedprice": 33744.37d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-03", "l_commitdate": "1996-04-30", "l_receiptdate": "1996-05-17", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "ut the carefully expr" }, { "l_orderkey": 1797i32, "l_partkey": 12i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 21.0d, "l_extendedprice": 19152.21d, "l_discount": 0.02d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-05", "l_commitdate": "1996-08-05", "l_receiptdate": "1996-08-06", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "ns. regular, regular deposit" }, { "l_orderkey": 1123i32, "l_partkey": 12i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 10.0d, "l_extendedprice": 9120.1d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-12", "l_commitdate": "1996-10-04", "l_receiptdate": "1996-11-30", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "ckages are above the depths. slyly ir" }, { "l_orderkey": 1763i32, "l_partkey": 12i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 22.0d, "l_extendedprice": 20064.22d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-17", "l_commitdate": "1997-01-15", "l_receiptdate": "1997-02-03", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "ld. fluffily final ideas boos" }, { "l_orderkey": 1156i32, "l_partkey": 12i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 29.0d, "l_extendedprice": 26448.29d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-24", "l_commitdate": "1996-12-26", "l_receiptdate": "1997-02-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "ts sleep sly" }, { "l_orderkey": 5762i32, "l_partkey": 12i32, "l_suppkey": 6i32, "l_linenumber": 6i32, "l_quantity": 12.0d, "l_extendedprice": 10944.12d, "l_discount": 0.0d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-18", "l_commitdate": "1997-04-27", "l_receiptdate": "1997-05-11", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "ages are abo" }, { "l_orderkey": 3239i32, "l_partkey": 12i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 31.0d, "l_extendedprice": 28272.31d, "l_discount": 0.1d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-14", "l_commitdate": "1998-03-24", "l_receiptdate": "1998-04-17", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "foxes. pendin" } ] }
-{ "partkey": 14i32, "lines": [ { "l_orderkey": 5028i32, "l_partkey": 14i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 15.0d, "l_extendedprice": 13710.15d, "l_discount": 0.07d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-07-17", "l_commitdate": "1992-07-16", "l_receiptdate": "1992-08-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "es are quickly final pains. furiously pend" }, { "l_orderkey": 3232i32, "l_partkey": 14i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 22.0d, "l_extendedprice": 20108.22d, "l_discount": 0.1d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-11-30", "l_commitdate": "1992-12-09", "l_receiptdate": "1992-12-04", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "thely. furio" }, { "l_orderkey": 2279i32, "l_partkey": 14i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 12.0d, "l_extendedprice": 10968.12d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-05-10", "l_commitdate": "1993-03-25", "l_receiptdate": "1993-06-02", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "lets across the excuses nag quickl" }, { "l_orderkey": 5792i32, "l_partkey": 14i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 14.0d, "l_extendedprice": 12796.14d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-07-28", "l_commitdate": "1993-06-17", "l_receiptdate": "1993-08-27", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "olites print carefully" }, { "l_orderkey": 2020i32, "l_partkey": 14i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 30.0d, "l_extendedprice": 27420.3d, "l_discount": 0.07d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-09-08", "l_commitdate": "1993-08-11", "l_receiptdate": "1993-09-29", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "ly about the blithely ironic foxes. bold" }, { "l_orderkey": 2368i32, "l_partkey": 14i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 32.0d, "l_extendedprice": 29248.32d, "l_discount": 0.03d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-09-23", "l_commitdate": "1993-10-07", "l_receiptdate": "1993-09-27", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "gular courts use blithely around the" }, { "l_orderkey": 1953i32, "l_partkey": 14i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 35.0d, "l_extendedprice": 31990.35d, "l_discount": 0.06d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-02-03", "l_commitdate": "1994-02-25", "l_receiptdate": "1994-02-14", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "among the fur" }, { "l_orderkey": 2466i32, "l_partkey": 14i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 29.0d, "l_extendedprice": 26506.29d, "l_discount": 0.1d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-06-11", "l_commitdate": "1994-04-27", "l_receiptdate": "1994-07-10", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "ckages. bold requests nag carefully." }, { "l_orderkey": 3751i32, "l_partkey": 14i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 39.0d, "l_extendedprice": 35646.39d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-08-16", "l_commitdate": "1994-07-11", "l_receiptdate": "1994-09-12", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "refully according to the iro" }, { "l_orderkey": 3042i32, "l_partkey": 14i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 34.0d, "l_extendedprice": 31076.34d, "l_discount": 0.04d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-12-11", "l_commitdate": "1995-02-03", "l_receiptdate": "1994-12-21", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "can wake after the enticingly stealthy i" }, { "l_orderkey": 3399i32, "l_partkey": 14i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 21.0d, "l_extendedprice": 19194.21d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-03-12", "l_commitdate": "1995-05-18", "l_receiptdate": "1995-03-28", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "se final courts. exc" }, { "l_orderkey": 5253i32, "l_partkey": 14i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 9.0d, "l_extendedprice": 8226.09d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "F", "l_shipdate": "1995-06-08", "l_commitdate": "1995-05-12", "l_receiptdate": "1995-06-23", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "lyly express deposits use furiou" }, { "l_orderkey": 4929i32, "l_partkey": 14i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 20.0d, "l_extendedprice": 18280.2d, "l_discount": 0.0d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-12", "l_commitdate": "1996-05-23", "l_receiptdate": "1996-03-20", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": " final pinto beans detect. final," }, { "l_orderkey": 4548i32, "l_partkey": 14i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 21.0d, "l_extendedprice": 19194.21d, "l_discount": 0.1d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-11", "l_commitdate": "1996-09-04", "l_receiptdate": "1996-07-30", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "pecial theodoli" }, { "l_orderkey": 3425i32, "l_partkey": 14i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 8.0d, "l_extendedprice": 7312.08d, "l_discount": 0.06d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-22", "l_commitdate": "1996-06-07", "l_receiptdate": "1996-07-26", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "iously regular theodolites wake. s" }, { "l_orderkey": 3781i32, "l_partkey": 14i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 48.0d, "l_extendedprice": 43872.48d, "l_discount": 0.02d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-22", "l_commitdate": "1996-08-13", "l_receiptdate": "1996-09-15", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "equests may cajole careful" }, { "l_orderkey": 1510i32, "l_partkey": 14i32, "l_suppkey": 5i32, "l_linenumber": 6i32, "l_quantity": 3.0d, "l_extendedprice": 2742.03d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-31", "l_commitdate": "1996-12-03", "l_receiptdate": "1996-11-13", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "along the slyly regular pin" }, { "l_orderkey": 3426i32, "l_partkey": 14i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 19.0d, "l_extendedprice": 17366.19d, "l_discount": 0.1d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-02", "l_commitdate": "1997-01-13", "l_receiptdate": "1996-11-15", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "slyly special packages oug" }, { "l_orderkey": 3047i32, "l_partkey": 14i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 23.0d, "l_extendedprice": 21022.23d, "l_discount": 0.0d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-20", "l_commitdate": "1997-06-14", "l_receiptdate": "1997-05-28", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": " slyly ironi" }, { "l_orderkey": 453i32, "l_partkey": 14i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 38.0d, "l_extendedprice": 34732.38d, "l_discount": 0.1d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-10", "l_commitdate": "1997-07-24", "l_receiptdate": "1997-09-07", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "sts cajole. furiously un" }, { "l_orderkey": 5731i32, "l_partkey": 14i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 6.0d, "l_extendedprice": 5484.06d, "l_discount": 0.03d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-07", "l_commitdate": "1997-06-20", "l_receiptdate": "1997-09-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "rs. quickly regular theo" }, { "l_orderkey": 1858i32, "l_partkey": 14i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 33.0d, "l_extendedprice": 30162.33d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-28", "l_commitdate": "1998-02-03", "l_receiptdate": "1998-01-13", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "tect along the slyly final" }, { "l_orderkey": 4322i32, "l_partkey": 14i32, "l_suppkey": 4i32, "l_linenumber": 7i32, "l_quantity": 34.0d, "l_extendedprice": 31076.34d, "l_discount": 0.05d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-27", "l_commitdate": "1998-04-12", "l_receiptdate": "1998-06-16", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "ounts haggle fluffily ideas. pend" }, { "l_orderkey": 899i32, "l_partkey": 14i32, "l_suppkey": 1i32, "l_linenumber": 7i32, "l_quantity": 11.0d, "l_extendedprice": 10054.11d, "l_discount": 0.02d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-03", "l_commitdate": "1998-06-15", "l_receiptdate": "1998-06-20", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "t the ironic" }, { "l_orderkey": 2981i32, "l_partkey": 14i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 17.0d, "l_extendedprice": 15538.17d, "l_discount": 0.03d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-10-17", "l_commitdate": "1998-10-02", "l_receiptdate": "1998-10-21", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": ", unusual packages x-ray. furious" } ] }
-{ "partkey": 21i32, "lines": [ { "l_orderkey": 549i32, "l_partkey": 21i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 18.0d, "l_extendedprice": 16578.36d, "l_discount": 0.09d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-07-31", "l_commitdate": "1992-09-11", "l_receiptdate": "1992-08-08", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "ely regular accounts above the " }, { "l_orderkey": 4581i32, "l_partkey": 21i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 46.0d, "l_extendedprice": 42366.92d, "l_discount": 0.04d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-09-09", "l_commitdate": "1992-11-27", "l_receiptdate": "1992-09-26", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "nag toward the carefully final accounts. " }, { "l_orderkey": 481i32, "l_partkey": 21i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 19.0d, "l_extendedprice": 17499.38d, "l_discount": 0.08d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-01-09", "l_commitdate": "1992-11-27", "l_receiptdate": "1993-01-14", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "p blithely after t" }, { "l_orderkey": 3331i32, "l_partkey": 21i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 38.0d, "l_extendedprice": 34998.76d, "l_discount": 0.06d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-07-24", "l_commitdate": "1993-06-22", "l_receiptdate": "1993-08-23", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "ymptotes haggle across the ca" }, { "l_orderkey": 1604i32, "l_partkey": 21i32, "l_suppkey": 4i32, "l_linenumber": 5i32, "l_quantity": 23.0d, "l_extendedprice": 21183.46d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-10-11", "l_commitdate": "1993-08-30", "l_receiptdate": "1993-10-18", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "en requests. blithely fin" }, { "l_orderkey": 1921i32, "l_partkey": 21i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 9.0d, "l_extendedprice": 8289.18d, "l_discount": 0.08d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-02-01", "l_commitdate": "1994-03-20", "l_receiptdate": "1994-03-01", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "to beans. even excuses integrate specia" }, { "l_orderkey": 2530i32, "l_partkey": 21i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 9.0d, "l_extendedprice": 8289.18d, "l_discount": 0.09d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-05-10", "l_commitdate": "1994-04-30", "l_receiptdate": "1994-05-24", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "lyly ironic" }, { "l_orderkey": 2949i32, "l_partkey": 21i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 4.0d, "l_extendedprice": 3684.08d, "l_discount": 0.06d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-06-07", "l_commitdate": "1994-06-17", "l_receiptdate": "1994-07-04", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "gular pinto beans wake alongside of the reg" }, { "l_orderkey": 1985i32, "l_partkey": 21i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 50.0d, "l_extendedprice": 46051.0d, "l_discount": 0.04d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-09-30", "l_commitdate": "1994-10-18", "l_receiptdate": "1994-10-12", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "ate carefully. carefully" }, { "l_orderkey": 1287i32, "l_partkey": 21i32, "l_suppkey": 10i32, "l_linenumber": 6i32, "l_quantity": 26.0d, "l_extendedprice": 23946.52d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-10-03", "l_commitdate": "1994-09-27", "l_receiptdate": "1994-10-30", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "egular foxes. theodolites nag along t" }, { "l_orderkey": 3841i32, "l_partkey": 21i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 31.0d, "l_extendedprice": 28551.62d, "l_discount": 0.09d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-01-24", "l_commitdate": "1994-11-25", "l_receiptdate": "1995-02-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "n theodolites shall promise carefully. qui" }, { "l_orderkey": 4642i32, "l_partkey": 21i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 10.0d, "l_extendedprice": 9210.2d, "l_discount": 0.04d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-04-16", "l_commitdate": "1995-04-28", "l_receiptdate": "1995-04-24", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "urts. even deposits nag beneath " }, { "l_orderkey": 4327i32, "l_partkey": 21i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 8.0d, "l_extendedprice": 7368.16d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "F", "l_shipdate": "1995-05-26", "l_commitdate": "1995-05-28", "l_receiptdate": "1995-06-19", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "eodolites cajole; unusual Tiresias" }, { "l_orderkey": 1827i32, "l_partkey": 21i32, "l_suppkey": 2i32, "l_linenumber": 6i32, "l_quantity": 7.0d, "l_extendedprice": 6447.14d, "l_discount": 0.1d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-28", "l_commitdate": "1996-08-07", "l_receiptdate": "1996-08-31", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "egular foxes" }, { "l_orderkey": 5573i32, "l_partkey": 21i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 32.0d, "l_extendedprice": 29472.64d, "l_discount": 0.05d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-30", "l_commitdate": "1996-10-25", "l_receiptdate": "1996-10-15", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "egular depths haggl" }, { "l_orderkey": 39i32, "l_partkey": 21i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 32.0d, "l_extendedprice": 29472.64d, "l_discount": 0.07d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-02", "l_commitdate": "1996-12-19", "l_receiptdate": "1996-10-14", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "heodolites sleep silently pending foxes. ac" }, { "l_orderkey": 3718i32, "l_partkey": 21i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 40.0d, "l_extendedprice": 36840.8d, "l_discount": 0.01d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-20", "l_commitdate": "1996-12-17", "l_receiptdate": "1996-12-03", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "out the express deposits" }, { "l_orderkey": 67i32, "l_partkey": 21i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 12.0d, "l_extendedprice": 11052.24d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-27", "l_commitdate": "1997-02-21", "l_receiptdate": "1997-02-22", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": " even packages cajole" }, { "l_orderkey": 160i32, "l_partkey": 21i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 34.0d, "l_extendedprice": 31314.68d, "l_discount": 0.01d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-31", "l_commitdate": "1997-03-13", "l_receiptdate": "1997-02-14", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "st sleep even gifts. dependencies along" }, { "l_orderkey": 4064i32, "l_partkey": 21i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 12.0d, "l_extendedprice": 11052.24d, "l_discount": 0.08d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-08", "l_commitdate": "1996-12-18", "l_receiptdate": "1997-03-06", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "ding to the requests" }, { "l_orderkey": 1698i32, "l_partkey": 21i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 22.0d, "l_extendedprice": 20262.44d, "l_discount": 0.03d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-07", "l_commitdate": "1997-05-28", "l_receiptdate": "1997-08-24", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "oward the furiously iro" }, { "l_orderkey": 2468i32, "l_partkey": 21i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 43.0d, "l_extendedprice": 39603.86d, "l_discount": 0.0d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-17", "l_commitdate": "1997-08-21", "l_receiptdate": "1997-08-30", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "uriously eve" }, { "l_orderkey": 1667i32, "l_partkey": 21i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 6.0d, "l_extendedprice": 5526.12d, "l_discount": 0.04d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-07", "l_commitdate": "1997-11-16", "l_receiptdate": "1998-01-02", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "riously busy requests. blithely final a" }, { "l_orderkey": 2917i32, "l_partkey": 21i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 20.0d, "l_extendedprice": 18420.4d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-31", "l_commitdate": "1998-01-22", "l_receiptdate": "1998-01-12", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "slyly even ideas wa" }, { "l_orderkey": 3303i32, "l_partkey": 21i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 15.0d, "l_extendedprice": 13815.3d, "l_discount": 0.04d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-29", "l_commitdate": "1998-01-22", "l_receiptdate": "1998-02-21", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": " detect sly" }, { "l_orderkey": 1024i32, "l_partkey": 21i32, "l_suppkey": 4i32, "l_linenumber": 5i32, "l_quantity": 49.0d, "l_extendedprice": 45129.98d, "l_discount": 0.02d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-02-27", "l_commitdate": "1998-03-10", "l_receiptdate": "1998-03-27", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": " carefully bold " } ] }
-{ "partkey": 23i32, "lines": [ { "l_orderkey": 2786i32, "l_partkey": 23i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 24.0d, "l_extendedprice": 22152.48d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-04-04", "l_commitdate": "1992-06-09", "l_receiptdate": "1992-05-02", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "ans. slyly unusual platelets detect. unus" }, { "l_orderkey": 1856i32, "l_partkey": 23i32, "l_suppkey": 6i32, "l_linenumber": 6i32, "l_quantity": 36.0d, "l_extendedprice": 33228.72d, "l_discount": 0.03d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-06-19", "l_commitdate": "1992-05-12", "l_receiptdate": "1992-06-28", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "ly even foxes kindle blithely even realm" }, { "l_orderkey": 1282i32, "l_partkey": 23i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 14.0d, "l_extendedprice": 12922.28d, "l_discount": 0.04d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-06-29", "l_commitdate": "1992-04-05", "l_receiptdate": "1992-07-21", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "ecial deposit" }, { "l_orderkey": 37i32, "l_partkey": 23i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 40.0d, "l_extendedprice": 36920.8d, "l_discount": 0.09d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-07-21", "l_commitdate": "1992-08-01", "l_receiptdate": "1992-08-15", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "luffily regular requests. slyly final acco" }, { "l_orderkey": 2209i32, "l_partkey": 23i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 40.0d, "l_extendedprice": 36920.8d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-11-01", "l_commitdate": "1992-09-25", "l_receiptdate": "1992-11-08", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "ully special sheaves serve" }, { "l_orderkey": 2566i32, "l_partkey": 23i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 18.0d, "l_extendedprice": 16614.36d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-11-16", "l_commitdate": "1992-12-24", "l_receiptdate": "1992-12-16", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": " braids according t" }, { "l_orderkey": 4896i32, "l_partkey": 23i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 5.0d, "l_extendedprice": 4615.1d, "l_discount": 0.08d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-12-02", "l_commitdate": "1992-11-11", "l_receiptdate": "1992-12-19", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "eposits hang carefully. sly" }, { "l_orderkey": 1412i32, "l_partkey": 23i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 2.0d, "l_extendedprice": 1846.04d, "l_discount": 0.1d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-04-01", "l_commitdate": "1993-05-03", "l_receiptdate": "1993-04-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "s among the requests are a" }, { "l_orderkey": 1382i32, "l_partkey": 23i32, "l_suppkey": 4i32, "l_linenumber": 7i32, "l_quantity": 5.0d, "l_extendedprice": 4615.1d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-10-02", "l_commitdate": "1993-09-29", "l_receiptdate": "1993-10-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "ter the carefully final excuses. blit" }, { "l_orderkey": 2759i32, "l_partkey": 23i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 31.0d, "l_extendedprice": 28613.62d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-01-11", "l_commitdate": "1994-01-15", "l_receiptdate": "1994-01-23", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "ithely aft" }, { "l_orderkey": 2496i32, "l_partkey": 23i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 39.0d, "l_extendedprice": 35997.78d, "l_discount": 0.03d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-03-23", "l_commitdate": "1994-02-18", "l_receiptdate": "1994-04-10", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "arefully special dependencies abo" }, { "l_orderkey": 5347i32, "l_partkey": 23i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 34.0d, "l_extendedprice": 31382.68d, "l_discount": 0.06d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-05-18", "l_commitdate": "1995-04-04", "l_receiptdate": "1995-06-02", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": " pending deposits. fluffily regular senti" }, { "l_orderkey": 1025i32, "l_partkey": 23i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 25.0d, "l_extendedprice": 23075.5d, "l_discount": 0.06d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-05-29", "l_commitdate": "1995-06-21", "l_receiptdate": "1995-06-13", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "xpress foxes. furiousl" }, { "l_orderkey": 1767i32, "l_partkey": 23i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 50.0d, "l_extendedprice": 46151.0d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-05-29", "l_commitdate": "1995-04-14", "l_receiptdate": "1995-06-15", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "y unusual foxe" }, { "l_orderkey": 512i32, "l_partkey": 23i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 37.0d, "l_extendedprice": 34151.74d, "l_discount": 0.01d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-06-20", "l_commitdate": "1995-07-05", "l_receiptdate": "1995-07-16", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "nic depths cajole? blithely b" }, { "l_orderkey": 4640i32, "l_partkey": 23i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 36.0d, "l_extendedprice": 33228.72d, "l_discount": 0.06d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-03", "l_commitdate": "1996-03-09", "l_receiptdate": "1996-01-11", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "iously furious accounts boost. carefully" }, { "l_orderkey": 2598i32, "l_partkey": 23i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 19.0d, "l_extendedprice": 17537.38d, "l_discount": 0.02d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-04-09", "l_commitdate": "1996-05-30", "l_receiptdate": "1996-04-17", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "nic packages. even accounts" }, { "l_orderkey": 5987i32, "l_partkey": 23i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 1.0d, "l_extendedprice": 923.02d, "l_discount": 0.01d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-13", "l_commitdate": "1996-10-29", "l_receiptdate": "1996-09-21", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "refully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully f" }, { "l_orderkey": 4834i32, "l_partkey": 23i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 34.0d, "l_extendedprice": 31382.68d, "l_discount": 0.03d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-09", "l_commitdate": "1996-11-26", "l_receiptdate": "1996-12-10", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "ounts haggle bo" }, { "l_orderkey": 4609i32, "l_partkey": 23i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 46.0d, "l_extendedprice": 42458.92d, "l_discount": 0.05d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-11", "l_commitdate": "1997-01-16", "l_receiptdate": "1997-03-07", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "r foxes. fluffily ironic ideas ha" }, { "l_orderkey": 2789i32, "l_partkey": 23i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 41.0d, "l_extendedprice": 37843.82d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-20", "l_commitdate": "1998-05-15", "l_receiptdate": "1998-03-21", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "d packages-- fluffily specia" }, { "l_orderkey": 708i32, "l_partkey": 23i32, "l_suppkey": 6i32, "l_linenumber": 6i32, "l_quantity": 7.0d, "l_extendedprice": 6461.14d, "l_discount": 0.1d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-16", "l_commitdate": "1998-08-15", "l_receiptdate": "1998-09-10", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "lly express ac" }, { "l_orderkey": 2758i32, "l_partkey": 23i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 17.0d, "l_extendedprice": 15691.34d, "l_discount": 0.1d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-09-25", "l_commitdate": "1998-10-03", "l_receiptdate": "1998-10-25", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": " accounts! qui" } ] }
-{ "partkey": 26i32, "lines": [ { "l_orderkey": 4800i32, "l_partkey": 26i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 1.0d, "l_extendedprice": 926.02d, "l_discount": 0.06d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-02-23", "l_commitdate": "1992-03-16", "l_receiptdate": "1992-03-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "nal accounts are blithely deposits. bol" }, { "l_orderkey": 801i32, "l_partkey": 26i32, "l_suppkey": 5i32, "l_linenumber": 7i32, "l_quantity": 11.0d, "l_extendedprice": 10186.22d, "l_discount": 0.01d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-05-09", "l_commitdate": "1992-04-19", "l_receiptdate": "1992-05-15", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "y special pinto beans cajole " }, { "l_orderkey": 2146i32, "l_partkey": 26i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 31.0d, "l_extendedprice": 28706.62d, "l_discount": 0.02d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-01-04", "l_commitdate": "1992-10-24", "l_receiptdate": "1993-01-15", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "lly even deposit" }, { "l_orderkey": 4007i32, "l_partkey": 26i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 23.0d, "l_extendedprice": 21298.46d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-10-08", "l_commitdate": "1993-09-09", "l_receiptdate": "1993-10-23", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "ter the accounts. expr" }, { "l_orderkey": 1028i32, "l_partkey": 26i32, "l_suppkey": 1i32, "l_linenumber": 6i32, "l_quantity": 39.0d, "l_extendedprice": 36114.78d, "l_discount": 0.03d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-02-27", "l_commitdate": "1994-02-16", "l_receiptdate": "1994-03-02", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "c theodoli" }, { "l_orderkey": 5572i32, "l_partkey": 26i32, "l_suppkey": 1i32, "l_linenumber": 7i32, "l_quantity": 24.0d, "l_extendedprice": 22224.48d, "l_discount": 0.01d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-09-26", "l_commitdate": "1994-09-04", "l_receiptdate": "1994-10-22", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": " beans. foxes sleep fluffily across th" }, { "l_orderkey": 1442i32, "l_partkey": 26i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 8.0d, "l_extendedprice": 7408.16d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-10-31", "l_commitdate": "1994-09-04", "l_receiptdate": "1994-11-25", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "c deposits haggle after the even" }, { "l_orderkey": 1762i32, "l_partkey": 26i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 15.0d, "l_extendedprice": 13890.3d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-12-18", "l_commitdate": "1994-10-29", "l_receiptdate": "1995-01-17", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "old packages thrash. care" }, { "l_orderkey": 577i32, "l_partkey": 26i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 25.0d, "l_extendedprice": 23150.5d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-04-09", "l_commitdate": "1995-02-20", "l_receiptdate": "1995-05-09", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "ve slyly of the frets. careful" }, { "l_orderkey": 1541i32, "l_partkey": 26i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 8.0d, "l_extendedprice": 7408.16d, "l_discount": 0.1d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "F", "l_shipdate": "1995-06-05", "l_commitdate": "1995-08-07", "l_receiptdate": "1995-06-21", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "y pending packages. blithely fi" }, { "l_orderkey": 961i32, "l_partkey": 26i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 38.0d, "l_extendedprice": 35188.76d, "l_discount": 0.03d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-21", "l_commitdate": "1995-07-19", "l_receiptdate": "1995-08-27", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "he blithely special requests. furiousl" }, { "l_orderkey": 4801i32, "l_partkey": 26i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 34.0d, "l_extendedprice": 31484.68d, "l_discount": 0.03d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-02-05", "l_commitdate": "1996-04-16", "l_receiptdate": "1996-02-23", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "y final requests " }, { "l_orderkey": 1089i32, "l_partkey": 26i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 23.0d, "l_extendedprice": 21298.46d, "l_discount": 0.1d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-24", "l_commitdate": "1996-07-25", "l_receiptdate": "1996-07-20", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "g dolphins. deposits integrate. s" }, { "l_orderkey": 4646i32, "l_partkey": 26i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 22.0d, "l_extendedprice": 20372.44d, "l_discount": 0.01d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-14", "l_commitdate": "1996-08-06", "l_receiptdate": "1996-07-29", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "cies are blithely after the slyly reg" }, { "l_orderkey": 3968i32, "l_partkey": 26i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 45.0d, "l_extendedprice": 41670.9d, "l_discount": 0.0d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-18", "l_commitdate": "1997-04-24", "l_receiptdate": "1997-06-25", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "ully slyly fi" }, { "l_orderkey": 453i32, "l_partkey": 26i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 32.0d, "l_extendedprice": 29632.64d, "l_discount": 0.04d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-15", "l_commitdate": "1997-06-27", "l_receiptdate": "1997-07-18", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "s. fluffily bold packages cajole. unu" }, { "l_orderkey": 3527i32, "l_partkey": 26i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 33.0d, "l_extendedprice": 30558.66d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-25", "l_commitdate": "1997-09-17", "l_receiptdate": "1997-10-12", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "kly alongside of " }, { "l_orderkey": 5027i32, "l_partkey": 26i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 37.0d, "l_extendedprice": 34262.74d, "l_discount": 0.02d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-10-05", "l_commitdate": "1997-10-30", "l_receiptdate": "1997-10-26", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "ost slyly fluffily" }, { "l_orderkey": 2884i32, "l_partkey": 26i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 8.0d, "l_extendedprice": 7408.16d, "l_discount": 0.08d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-11-30", "l_commitdate": "1997-11-28", "l_receiptdate": "1997-12-14", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "pending accounts about " }, { "l_orderkey": 4131i32, "l_partkey": 26i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 25.0d, "l_extendedprice": 23150.5d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-02-24", "l_commitdate": "1998-03-01", "l_receiptdate": "1998-02-27", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "uickly exp" }, { "l_orderkey": 2567i32, "l_partkey": 26i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 39.0d, "l_extendedprice": 36114.78d, "l_discount": 0.03d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-10", "l_commitdate": "1998-05-10", "l_receiptdate": "1998-05-21", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "ns. furiously final dependencies cajo" }, { "l_orderkey": 5123i32, "l_partkey": 26i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 13.0d, "l_extendedprice": 12038.26d, "l_discount": 0.08d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-17", "l_commitdate": "1998-03-23", "l_receiptdate": "1998-06-02", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "regular pearls" }, { "l_orderkey": 2758i32, "l_partkey": 26i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 1.0d, "l_extendedprice": 926.02d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-10-09", "l_commitdate": "1998-09-15", "l_receiptdate": "1998-10-16", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "ake furious" } ] }
-{ "partkey": 30i32, "lines": [ { "l_orderkey": 1282i32, "l_partkey": 30i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 10.0d, "l_extendedprice": 9300.3d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-04-10", "l_commitdate": "1992-04-16", "l_receiptdate": "1992-05-01", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "r theodolite" }, { "l_orderkey": 1925i32, "l_partkey": 30i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 17.0d, "l_extendedprice": 15810.51d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-05-18", "l_commitdate": "1992-04-06", "l_receiptdate": "1992-06-16", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "instructions sleep. pinto bea" }, { "l_orderkey": 5986i32, "l_partkey": 30i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 1.0d, "l_extendedprice": 930.03d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-05-21", "l_commitdate": "1992-06-21", "l_receiptdate": "1992-05-24", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "fix quickly quickly final deposits. fluffil" }, { "l_orderkey": 3970i32, "l_partkey": 30i32, "l_suppkey": 3i32, "l_linenumber": 5i32, "l_quantity": 23.0d, "l_extendedprice": 21390.69d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-06-04", "l_commitdate": "1992-06-14", "l_receiptdate": "1992-06-13", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": " above the final braids. regular" }, { "l_orderkey": 3973i32, "l_partkey": 30i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 21.0d, "l_extendedprice": 19530.63d, "l_discount": 0.02d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-06-18", "l_commitdate": "1992-06-03", "l_receiptdate": "1992-07-02", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "equests. furiously" }, { "l_orderkey": 3655i32, "l_partkey": 30i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 35.0d, "l_extendedprice": 32551.05d, "l_discount": 0.01d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-12-20", "l_commitdate": "1992-11-16", "l_receiptdate": "1993-01-15", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "blithely even accounts! furiously regular" }, { "l_orderkey": 5891i32, "l_partkey": 30i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 10.0d, "l_extendedprice": 9300.3d, "l_discount": 0.08d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-04-14", "l_commitdate": "1993-02-07", "l_receiptdate": "1993-04-15", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "nding requests. b" }, { "l_orderkey": 3i32, "l_partkey": 30i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 2.0d, "l_extendedprice": 1860.06d, "l_discount": 0.01d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-12-04", "l_commitdate": "1994-01-07", "l_receiptdate": "1994-01-01", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "y. fluffily pending d" }, { "l_orderkey": 2339i32, "l_partkey": 30i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 28.0d, "l_extendedprice": 26040.84d, "l_discount": 0.0d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-01-25", "l_commitdate": "1994-01-22", "l_receiptdate": "1994-01-28", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "e bold, even packag" }, { "l_orderkey": 646i32, "l_partkey": 30i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 24.0d, "l_extendedprice": 22320.72d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-02-20", "l_commitdate": "1994-12-30", "l_receiptdate": "1995-03-16", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "regular accounts haggle dog" }, { "l_orderkey": 2208i32, "l_partkey": 30i32, "l_suppkey": 5i32, "l_linenumber": 5i32, "l_quantity": 43.0d, "l_extendedprice": 39991.29d, "l_discount": 0.03d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-05-10", "l_commitdate": "1995-06-02", "l_receiptdate": "1995-06-09", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "es. accounts cajole. fi" }, { "l_orderkey": 1702i32, "l_partkey": 30i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 38.0d, "l_extendedprice": 35341.14d, "l_discount": 0.0d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-01", "l_commitdate": "1995-06-10", "l_receiptdate": "1995-09-10", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "as believe blithely. bo" }, { "l_orderkey": 3200i32, "l_partkey": 30i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 11.0d, "l_extendedprice": 10230.33d, "l_discount": 0.1d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-18", "l_commitdate": "1996-03-21", "l_receiptdate": "1996-04-14", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "osits sleep fur" }, { "l_orderkey": 3781i32, "l_partkey": 30i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 17.0d, "l_extendedprice": 15810.51d, "l_discount": 0.01d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-23", "l_commitdate": "1996-09-04", "l_receiptdate": "1996-07-19", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": ". theodolite" }, { "l_orderkey": 103i32, "l_partkey": 30i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 32.0d, "l_extendedprice": 29760.96d, "l_discount": 0.01d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-30", "l_commitdate": "1996-08-06", "l_receiptdate": "1996-08-04", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "kages doze. special, regular deposit" }, { "l_orderkey": 2662i32, "l_partkey": 30i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 34.0d, "l_extendedprice": 31621.02d, "l_discount": 0.06d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-04", "l_commitdate": "1996-11-05", "l_receiptdate": "1996-10-19", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "ding theodolites use carefully. p" }, { "l_orderkey": 5025i32, "l_partkey": 30i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 11.0d, "l_extendedprice": 10230.33d, "l_discount": 0.0d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-21", "l_commitdate": "1997-04-16", "l_receiptdate": "1997-03-14", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "the carefully final esc" }, { "l_orderkey": 1121i32, "l_partkey": 30i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 47.0d, "l_extendedprice": 43711.41d, "l_discount": 0.09d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-27", "l_commitdate": "1997-03-28", "l_receiptdate": "1997-05-14", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "ly idle, i" }, { "l_orderkey": 2533i32, "l_partkey": 30i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 17.0d, "l_extendedprice": 15810.51d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-23", "l_commitdate": "1997-05-10", "l_receiptdate": "1997-06-18", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "ackages. blith" }, { "l_orderkey": 5377i32, "l_partkey": 30i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 17.0d, "l_extendedprice": 15810.51d, "l_discount": 0.09d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-05", "l_commitdate": "1997-05-25", "l_receiptdate": "1997-07-22", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "dencies. carefully regular re" }, { "l_orderkey": 1862i32, "l_partkey": 30i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 41.0d, "l_extendedprice": 38131.23d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-05", "l_commitdate": "1998-05-17", "l_receiptdate": "1998-07-04", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": " carefully along" }, { "l_orderkey": 3714i32, "l_partkey": 30i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 44.0d, "l_extendedprice": 40921.32d, "l_discount": 0.04d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-18", "l_commitdate": "1998-07-10", "l_receiptdate": "1998-07-22", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "s. quickly ironic dugouts sublat" } ] }
-{ "partkey": 33i32, "lines": [ { "l_orderkey": 5574i32, "l_partkey": 33i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 21.0d, "l_extendedprice": 19593.63d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-03-22", "l_commitdate": "1992-04-26", "l_receiptdate": "1992-04-16", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "fully final dugouts. express foxes nag " }, { "l_orderkey": 4163i32, "l_partkey": 33i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 13.0d, "l_extendedprice": 12129.39d, "l_discount": 0.08d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-02-17", "l_commitdate": "1993-03-13", "l_receiptdate": "1993-03-15", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "phins wake. pending requests inte" }, { "l_orderkey": 388i32, "l_partkey": 33i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 42.0d, "l_extendedprice": 39187.26d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-02-21", "l_commitdate": "1993-02-26", "l_receiptdate": "1993-03-15", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "accounts sleep furiously" }, { "l_orderkey": 1280i32, "l_partkey": 33i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 13.0d, "l_extendedprice": 12129.39d, "l_discount": 0.03d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-03-06", "l_commitdate": "1993-03-11", "l_receiptdate": "1993-03-18", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "blithely final accounts use evenly " }, { "l_orderkey": 5733i32, "l_partkey": 33i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 39.0d, "l_extendedprice": 36388.17d, "l_discount": 0.01d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-03-22", "l_commitdate": "1993-05-24", "l_receiptdate": "1993-04-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "side of the" }, { "l_orderkey": 4359i32, "l_partkey": 33i32, "l_suppkey": 4i32, "l_linenumber": 5i32, "l_quantity": 22.0d, "l_extendedprice": 20526.66d, "l_discount": 0.04d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-03-28", "l_commitdate": "1993-06-01", "l_receiptdate": "1993-04-13", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "accounts wake ironic deposits. ironic" }, { "l_orderkey": 2855i32, "l_partkey": 33i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 50.0d, "l_extendedprice": 46651.5d, "l_discount": 0.03d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-05-20", "l_commitdate": "1993-06-28", "l_receiptdate": "1993-06-16", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "beans. deposits " }, { "l_orderkey": 5346i32, "l_partkey": 33i32, "l_suppkey": 9i32, "l_linenumber": 6i32, "l_quantity": 6.0d, "l_extendedprice": 5598.18d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-03-01", "l_commitdate": "1994-02-04", "l_receiptdate": "1994-03-09", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "escapades sleep furiously beside the " }, { "l_orderkey": 1444i32, "l_partkey": 33i32, "l_suppkey": 4i32, "l_linenumber": 6i32, "l_quantity": 42.0d, "l_extendedprice": 39187.26d, "l_discount": 0.0d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-12-16", "l_commitdate": "1995-02-18", "l_receiptdate": "1994-12-22", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "ss requests. ironic ideas wake above" }, { "l_orderkey": 2053i32, "l_partkey": 33i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 34.0d, "l_extendedprice": 31723.02d, "l_discount": 0.07d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-03-15", "l_commitdate": "1995-03-20", "l_receiptdate": "1995-04-09", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "ions. unusual dependencies" }, { "l_orderkey": 512i32, "l_partkey": 33i32, "l_suppkey": 9i32, "l_linenumber": 6i32, "l_quantity": 12.0d, "l_extendedprice": 11196.36d, "l_discount": 0.04d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-05-21", "l_commitdate": "1995-08-03", "l_receiptdate": "1995-06-09", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "old furiously express deposits. specia" }, { "l_orderkey": 4227i32, "l_partkey": 33i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 8.0d, "l_extendedprice": 7464.24d, "l_discount": 0.09d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "F", "l_shipdate": "1995-06-11", "l_commitdate": "1995-04-30", "l_receiptdate": "1995-06-28", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": " packages since the bold, u" }, { "l_orderkey": 3526i32, "l_partkey": 33i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 20.0d, "l_extendedprice": 18660.6d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "F", "l_shipdate": "1995-06-16", "l_commitdate": "1995-04-26", "l_receiptdate": "1995-06-22", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "kages. bold, special requests detect sl" }, { "l_orderkey": 483i32, "l_partkey": 33i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 8.0d, "l_extendedprice": 7464.24d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-22", "l_commitdate": "1995-08-23", "l_receiptdate": "1995-09-18", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "osits. carefully fin" }, { "l_orderkey": 2787i32, "l_partkey": 33i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 4.0d, "l_extendedprice": 3732.12d, "l_discount": 0.04d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-26", "l_commitdate": "1995-11-26", "l_receiptdate": "1996-02-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "ts. instructions nag furiously according " }, { "l_orderkey": 3555i32, "l_partkey": 33i32, "l_suppkey": 4i32, "l_linenumber": 5i32, "l_quantity": 29.0d, "l_extendedprice": 27057.87d, "l_discount": 0.07d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-02", "l_commitdate": "1996-09-04", "l_receiptdate": "1996-08-08", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "deas. carefully s" }, { "l_orderkey": 2215i32, "l_partkey": 33i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 30.0d, "l_extendedprice": 27990.9d, "l_discount": 0.01d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-15", "l_commitdate": "1996-09-10", "l_receiptdate": "1996-08-25", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "ckages caj" }, { "l_orderkey": 1156i32, "l_partkey": 33i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 21.0d, "l_extendedprice": 19593.63d, "l_discount": 0.02d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-07", "l_commitdate": "1997-01-14", "l_receiptdate": "1996-12-03", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "dolphins. fluffily ironic packages sleep re" }, { "l_orderkey": 3747i32, "l_partkey": 33i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 21.0d, "l_extendedprice": 19593.63d, "l_discount": 0.0d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-18", "l_commitdate": "1996-09-23", "l_receiptdate": "1996-11-26", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "ithely bold orbits mold furiously blit" }, { "l_orderkey": 2784i32, "l_partkey": 33i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 45.0d, "l_extendedprice": 41986.35d, "l_discount": 0.03d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-02-15", "l_commitdate": "1998-04-07", "l_receiptdate": "1998-02-26", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "yly along the asymptotes. reque" }, { "l_orderkey": 1377i32, "l_partkey": 33i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 3.0d, "l_extendedprice": 2799.09d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-30", "l_commitdate": "1998-07-02", "l_receiptdate": "1998-05-14", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "yly enticing requ" }, { "l_orderkey": 5351i32, "l_partkey": 33i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 47.0d, "l_extendedprice": 43852.41d, "l_discount": 0.04d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-30", "l_commitdate": "1998-08-08", "l_receiptdate": "1998-06-23", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "s. grouches cajole. sile" }, { "l_orderkey": 1377i32, "l_partkey": 33i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 19.0d, "l_extendedprice": 17727.57d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-20", "l_commitdate": "1998-06-27", "l_receiptdate": "1998-07-20", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "ught to are bold foxes" }, { "l_orderkey": 579i32, "l_partkey": 33i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 39.0d, "l_extendedprice": 36388.17d, "l_discount": 0.02d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-21", "l_commitdate": "1998-06-03", "l_receiptdate": "1998-06-26", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "ncies. furiously final r" }, { "l_orderkey": 451i32, "l_partkey": 33i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 42.0d, "l_extendedprice": 39187.26d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-01", "l_commitdate": "1998-08-05", "l_receiptdate": "1998-08-30", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "express excuses. blithely ironic pin" } ] }
-{ "partkey": 38i32, "lines": [ { "l_orderkey": 5601i32, "l_partkey": 38i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 29.0d, "l_extendedprice": 27202.87d, "l_discount": 0.09d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-04-06", "l_commitdate": "1992-02-24", "l_receiptdate": "1992-04-29", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": " ironic ideas. final" }, { "l_orderkey": 322i32, "l_partkey": 38i32, "l_suppkey": 4i32, "l_linenumber": 7i32, "l_quantity": 5.0d, "l_extendedprice": 4690.15d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-04-15", "l_commitdate": "1992-05-12", "l_receiptdate": "1992-04-26", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": " special grouches sleep quickly instructio" }, { "l_orderkey": 2023i32, "l_partkey": 38i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 2.0d, "l_extendedprice": 1876.06d, "l_discount": 0.01d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-08-27", "l_commitdate": "1992-07-16", "l_receiptdate": "1992-08-29", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "ing packages. fluffily silen" }, { "l_orderkey": 4864i32, "l_partkey": 38i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 38.0d, "l_extendedprice": 35645.14d, "l_discount": 0.1d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-12-20", "l_commitdate": "1993-01-07", "l_receiptdate": "1993-01-06", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "ording to the ironic, ir" }, { "l_orderkey": 3014i32, "l_partkey": 38i32, "l_suppkey": 4i32, "l_linenumber": 6i32, "l_quantity": 30.0d, "l_extendedprice": 28140.9d, "l_discount": 0.04d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-02-28", "l_commitdate": "1993-01-02", "l_receiptdate": "1993-03-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": " final foxes." }, { "l_orderkey": 226i32, "l_partkey": 38i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 35.0d, "l_extendedprice": 32831.05d, "l_discount": 0.09d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-03-31", "l_commitdate": "1993-05-18", "l_receiptdate": "1993-04-01", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "osits cajole. final, even foxes a" }, { "l_orderkey": 804i32, "l_partkey": 38i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 21.0d, "l_extendedprice": 19698.63d, "l_discount": 0.01d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-04-12", "l_commitdate": "1993-06-06", "l_receiptdate": "1993-04-20", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "ular, ironic foxes. quickly even accounts" }, { "l_orderkey": 2213i32, "l_partkey": 38i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 43.0d, "l_extendedprice": 40335.29d, "l_discount": 0.04d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-04-18", "l_commitdate": "1993-03-11", "l_receiptdate": "1993-05-11", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "r packages are along the carefully bol" }, { "l_orderkey": 4033i32, "l_partkey": 38i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 34.0d, "l_extendedprice": 31893.02d, "l_discount": 0.07d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-07-19", "l_commitdate": "1993-08-05", "l_receiptdate": "1993-07-26", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "t the blithely dogg" }, { "l_orderkey": 3104i32, "l_partkey": 38i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 26.0d, "l_extendedprice": 24388.78d, "l_discount": 0.02d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-01-02", "l_commitdate": "1993-12-05", "l_receiptdate": "1994-01-31", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "es boost carefully. slyly " }, { "l_orderkey": 70i32, "l_partkey": 38i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 37.0d, "l_extendedprice": 34707.11d, "l_discount": 0.09d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-02-13", "l_commitdate": "1994-03-16", "l_receiptdate": "1994-02-21", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "n accounts are. q" }, { "l_orderkey": 1699i32, "l_partkey": 38i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 50.0d, "l_extendedprice": 46901.5d, "l_discount": 0.0d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-03-26", "l_commitdate": "1994-03-23", "l_receiptdate": "1994-04-20", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "to the final requests are carefully silent " }, { "l_orderkey": 69i32, "l_partkey": 38i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 3.0d, "l_extendedprice": 2814.09d, "l_discount": 0.09d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-06-06", "l_commitdate": "1994-07-27", "l_receiptdate": "1994-06-15", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": " blithely final d" }, { "l_orderkey": 5i32, "l_partkey": 38i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 50.0d, "l_extendedprice": 46901.5d, "l_discount": 0.08d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-08-08", "l_commitdate": "1994-10-13", "l_receiptdate": "1994-08-26", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "eodolites. fluffily unusual" }, { "l_orderkey": 4993i32, "l_partkey": 38i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 34.0d, "l_extendedprice": 31893.02d, "l_discount": 0.05d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-09-21", "l_commitdate": "1994-10-31", "l_receiptdate": "1994-09-24", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "ular, pending packages at the even packa" }, { "l_orderkey": 3266i32, "l_partkey": 38i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 43.0d, "l_extendedprice": 40335.29d, "l_discount": 0.06d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-05-04", "l_commitdate": "1995-05-30", "l_receiptdate": "1995-05-11", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "ular asymptotes use careful" }, { "l_orderkey": 1414i32, "l_partkey": 38i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 39.0d, "l_extendedprice": 36583.17d, "l_discount": 0.1d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-22", "l_commitdate": "1995-09-30", "l_receiptdate": "1995-10-07", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "quickly aro" }, { "l_orderkey": 3269i32, "l_partkey": 38i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 46.0d, "l_extendedprice": 43149.38d, "l_discount": 0.0d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-04-21", "l_commitdate": "1996-04-12", "l_receiptdate": "1996-05-10", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "final asymptotes nag" }, { "l_orderkey": 1091i32, "l_partkey": 38i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 40.0d, "l_extendedprice": 37521.2d, "l_discount": 0.1d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-17", "l_commitdate": "1996-10-14", "l_receiptdate": "1996-12-24", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "platelets. regular packag" }, { "l_orderkey": 3462i32, "l_partkey": 38i32, "l_suppkey": 4i32, "l_linenumber": 5i32, "l_quantity": 14.0d, "l_extendedprice": 13132.42d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-31", "l_commitdate": "1997-07-05", "l_receiptdate": "1997-06-24", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "yly. blithely bold theodolites wa" }, { "l_orderkey": 1026i32, "l_partkey": 38i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 36.0d, "l_extendedprice": 33769.08d, "l_discount": 0.1d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-14", "l_commitdate": "1997-07-20", "l_receiptdate": "1997-06-23", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "st the ide" }, { "l_orderkey": 3270i32, "l_partkey": 38i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 44.0d, "l_extendedprice": 41273.32d, "l_discount": 0.1d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-20", "l_commitdate": "1997-08-15", "l_receiptdate": "1997-08-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": " accounts. carefully even " }, { "l_orderkey": 992i32, "l_partkey": 38i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 34.0d, "l_extendedprice": 31893.02d, "l_discount": 0.02d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-11-29", "l_commitdate": "1998-01-21", "l_receiptdate": "1997-11-30", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "s use silently. blithely regular ideas b" }, { "l_orderkey": 3904i32, "l_partkey": 38i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 22.0d, "l_extendedprice": 20636.66d, "l_discount": 0.04d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-02-02", "l_commitdate": "1998-02-09", "l_receiptdate": "1998-02-10", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "structions cajole carefully. carefully f" }, { "l_orderkey": 5798i32, "l_partkey": 38i32, "l_suppkey": 4i32, "l_linenumber": 6i32, "l_quantity": 9.0d, "l_extendedprice": 8442.27d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-05", "l_commitdate": "1998-05-25", "l_receiptdate": "1998-05-09", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "e blithely" }, { "l_orderkey": 4613i32, "l_partkey": 38i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 17.0d, "l_extendedprice": 15946.51d, "l_discount": 0.09d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-07", "l_commitdate": "1998-05-11", "l_receiptdate": "1998-06-29", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "liers cajole a" } ] }
-{ "partkey": 45i32, "lines": [ { "l_orderkey": 4515i32, "l_partkey": 45i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 22.0d, "l_extendedprice": 20790.88d, "l_discount": 0.09d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-07-16", "l_commitdate": "1992-05-07", "l_receiptdate": "1992-07-23", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "le quickly above the even, bold ideas." }, { "l_orderkey": 2720i32, "l_partkey": 45i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 5.0d, "l_extendedprice": 4725.2d, "l_discount": 0.1d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-06-24", "l_commitdate": "1993-08-08", "l_receiptdate": "1993-07-08", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "ously ironic foxes thrash" }, { "l_orderkey": 2055i32, "l_partkey": 45i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 15.0d, "l_extendedprice": 14175.6d, "l_discount": 0.04d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-09-15", "l_commitdate": "1993-10-06", "l_receiptdate": "1993-10-07", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "furiously bold " }, { "l_orderkey": 4935i32, "l_partkey": 45i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 49.0d, "l_extendedprice": 46306.96d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-09-16", "l_commitdate": "1993-08-21", "l_receiptdate": "1993-10-12", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "ffily after the furiou" }, { "l_orderkey": 4547i32, "l_partkey": 45i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 15.0d, "l_extendedprice": 14175.6d, "l_discount": 0.0d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-11-18", "l_commitdate": "1993-10-06", "l_receiptdate": "1993-12-13", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "e carefully across the unus" }, { "l_orderkey": 417i32, "l_partkey": 45i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 41.0d, "l_extendedprice": 38746.64d, "l_discount": 0.1d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-04-11", "l_commitdate": "1994-03-08", "l_receiptdate": "1994-05-06", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "tes. regular requests across the " }, { "l_orderkey": 131i32, "l_partkey": 45i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 50.0d, "l_extendedprice": 47252.0d, "l_discount": 0.02d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-09-17", "l_commitdate": "1994-08-10", "l_receiptdate": "1994-09-21", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "ending requests. final, ironic pearls slee" }, { "l_orderkey": 5223i32, "l_partkey": 45i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 24.0d, "l_extendedprice": 22680.96d, "l_discount": 0.0d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-10-03", "l_commitdate": "1994-09-20", "l_receiptdate": "1994-10-11", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "refully bold courts besides the regular," }, { "l_orderkey": 930i32, "l_partkey": 45i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 36.0d, "l_extendedprice": 34021.44d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-12-21", "l_commitdate": "1995-02-20", "l_receiptdate": "1994-12-24", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "quickly regular pinto beans sle" }, { "l_orderkey": 98i32, "l_partkey": 45i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 14.0d, "l_extendedprice": 13230.56d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-12-30", "l_commitdate": "1994-11-22", "l_receiptdate": "1995-01-27", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": " cajole furiously. blithely ironic ideas " }, { "l_orderkey": 2818i32, "l_partkey": 45i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 11.0d, "l_extendedprice": 10395.44d, "l_discount": 0.01d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-02-18", "l_commitdate": "1995-02-11", "l_receiptdate": "1995-03-19", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "ggle across the carefully blithe" }, { "l_orderkey": 4960i32, "l_partkey": 45i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 6.0d, "l_extendedprice": 5670.24d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-03-21", "l_commitdate": "1995-05-13", "l_receiptdate": "1995-04-14", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "ual package" }, { "l_orderkey": 643i32, "l_partkey": 45i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 39.0d, "l_extendedprice": 36856.56d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-06-08", "l_commitdate": "1995-06-16", "l_receiptdate": "1995-06-13", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": " the pains. carefully s" }, { "l_orderkey": 32i32, "l_partkey": 45i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 2.0d, "l_extendedprice": 1890.08d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-07", "l_commitdate": "1995-10-07", "l_receiptdate": "1995-08-23", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": " express accounts wake according to the" }, { "l_orderkey": 3460i32, "l_partkey": 45i32, "l_suppkey": 2i32, "l_linenumber": 7i32, "l_quantity": 28.0d, "l_extendedprice": 26461.12d, "l_discount": 0.0d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-28", "l_commitdate": "1995-11-13", "l_receiptdate": "1995-11-17", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "inal, ironic instructions. carefully" }, { "l_orderkey": 3879i32, "l_partkey": 45i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 35.0d, "l_extendedprice": 33076.4d, "l_discount": 0.0d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-08", "l_commitdate": "1996-01-23", "l_receiptdate": "1995-12-28", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "o beans. accounts cajole furiously. re" }, { "l_orderkey": 5092i32, "l_partkey": 45i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 34.0d, "l_extendedprice": 32131.36d, "l_discount": 0.04d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-09", "l_commitdate": "1995-12-26", "l_receiptdate": "1995-12-21", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "ckages nag " }, { "l_orderkey": 5122i32, "l_partkey": 45i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 12.0d, "l_extendedprice": 11340.48d, "l_discount": 0.07d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-04-02", "l_commitdate": "1996-04-27", "l_receiptdate": "1996-04-10", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "lar instructions " }, { "l_orderkey": 4548i32, "l_partkey": 45i32, "l_suppkey": 4i32, "l_linenumber": 5i32, "l_quantity": 36.0d, "l_extendedprice": 34021.44d, "l_discount": 0.04d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-19", "l_commitdate": "1996-09-12", "l_receiptdate": "1996-09-08", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "tions integrat" }, { "l_orderkey": 1158i32, "l_partkey": 45i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 5.0d, "l_extendedprice": 4725.2d, "l_discount": 0.02d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-20", "l_commitdate": "1996-07-30", "l_receiptdate": "1996-11-14", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "symptotes along the care" }, { "l_orderkey": 3105i32, "l_partkey": 45i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 9.0d, "l_extendedprice": 8505.36d, "l_discount": 0.08d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-25", "l_commitdate": "1997-02-04", "l_receiptdate": "1997-01-09", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "es wake among t" }, { "l_orderkey": 5537i32, "l_partkey": 45i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 10.0d, "l_extendedprice": 9450.4d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-13", "l_commitdate": "1996-12-25", "l_receiptdate": "1997-01-28", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": " sleep carefully slyly bold depos" }, { "l_orderkey": 3009i32, "l_partkey": 45i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 48.0d, "l_extendedprice": 45361.92d, "l_discount": 0.1d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-19", "l_commitdate": "1997-05-13", "l_receiptdate": "1997-04-11", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": " dependencies sleep quickly a" }, { "l_orderkey": 5158i32, "l_partkey": 45i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 43.0d, "l_extendedprice": 40636.72d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-10", "l_commitdate": "1997-03-06", "l_receiptdate": "1997-04-15", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual p" }, { "l_orderkey": 517i32, "l_partkey": 45i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 28.0d, "l_extendedprice": 26461.12d, "l_discount": 0.03d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-30", "l_commitdate": "1997-05-18", "l_receiptdate": "1997-05-17", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": " requests. special, fi" }, { "l_orderkey": 2337i32, "l_partkey": 45i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 49.0d, "l_extendedprice": 46306.96d, "l_discount": 0.06d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-08", "l_commitdate": "1997-08-15", "l_receiptdate": "1997-08-31", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": " along the packages. furiously p" }, { "l_orderkey": 4518i32, "l_partkey": 45i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 19.0d, "l_extendedprice": 17955.76d, "l_discount": 0.1d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-09", "l_commitdate": "1997-06-06", "l_receiptdate": "1997-08-27", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "ter the slyly bo" }, { "l_orderkey": 3239i32, "l_partkey": 45i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 43.0d, "l_extendedprice": 40636.72d, "l_discount": 0.01d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-15", "l_commitdate": "1998-03-12", "l_receiptdate": "1998-01-29", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "y. bold pinto beans use " }, { "l_orderkey": 3239i32, "l_partkey": 45i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 50.0d, "l_extendedprice": 47252.0d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-02-09", "l_commitdate": "1998-04-02", "l_receiptdate": "1998-02-22", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "d blithely stea" }, { "l_orderkey": 1893i32, "l_partkey": 45i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 3.0d, "l_extendedprice": 2835.12d, "l_discount": 0.03d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-02-10", "l_commitdate": "1998-01-18", "l_receiptdate": "1998-02-25", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "gular, even ideas. fluffily bol" }, { "l_orderkey": 2278i32, "l_partkey": 45i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 36.0d, "l_extendedprice": 34021.44d, "l_discount": 0.04d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-04", "l_commitdate": "1998-06-06", "l_receiptdate": "1998-06-30", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "y ironic pinto beans br" }, { "l_orderkey": 5507i32, "l_partkey": 45i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 4.0d, "l_extendedprice": 3780.16d, "l_discount": 0.04d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-06", "l_commitdate": "1998-07-02", "l_receiptdate": "1998-06-27", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "into beans are" }, { "l_orderkey": 2278i32, "l_partkey": 45i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 50.0d, "l_extendedprice": 47252.0d, "l_discount": 0.02d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-09", "l_commitdate": "1998-07-08", "l_receiptdate": "1998-09-05", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "into beans. blit" }, { "l_orderkey": 3686i32, "l_partkey": 45i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 31.0d, "l_extendedprice": 29296.24d, "l_discount": 0.1d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-09-09", "l_commitdate": "1998-08-28", "l_receiptdate": "1998-10-09", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "gle across the courts. furiously regu" } ] }
-{ "partkey": 47i32, "lines": [ { "l_orderkey": 3685i32, "l_partkey": 47i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 37.0d, "l_extendedprice": 35040.48d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-03-11", "l_commitdate": "1992-04-09", "l_receiptdate": "1992-04-05", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "ress attai" }, { "l_orderkey": 3171i32, "l_partkey": 47i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 34.0d, "l_extendedprice": 32199.36d, "l_discount": 0.04d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-05-30", "l_commitdate": "1993-05-27", "l_receiptdate": "1993-06-06", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "r the final, even packages. quickly" }, { "l_orderkey": 2341i32, "l_partkey": 47i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 12.0d, "l_extendedprice": 11364.48d, "l_discount": 0.08d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-06-06", "l_commitdate": "1993-07-08", "l_receiptdate": "1993-06-17", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": ". quickly final deposits sl" }, { "l_orderkey": 4037i32, "l_partkey": 47i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 4.0d, "l_extendedprice": 3788.16d, "l_discount": 0.09d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-07-05", "l_commitdate": "1993-06-12", "l_receiptdate": "1993-08-03", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "s around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs" }, { "l_orderkey": 4608i32, "l_partkey": 47i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 50.0d, "l_extendedprice": 47352.0d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-07-25", "l_commitdate": "1994-09-01", "l_receiptdate": "1994-08-10", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": " theodolites" }, { "l_orderkey": 1665i32, "l_partkey": 47i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 4.0d, "l_extendedprice": 3788.16d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-09-01", "l_commitdate": "1994-06-07", "l_receiptdate": "1994-09-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "ely final requests. requests" }, { "l_orderkey": 5639i32, "l_partkey": 47i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 11.0d, "l_extendedprice": 10417.44d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-09-18", "l_commitdate": "1994-07-10", "l_receiptdate": "1994-10-12", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "g the unusual pinto beans caj" }, { "l_orderkey": 4194i32, "l_partkey": 47i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 18.0d, "l_extendedprice": 17046.72d, "l_discount": 0.07d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-02-14", "l_commitdate": "1994-12-04", "l_receiptdate": "1995-03-11", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "ld packages. quickly eve" }, { "l_orderkey": 5636i32, "l_partkey": 47i32, "l_suppkey": 4i32, "l_linenumber": 5i32, "l_quantity": 13.0d, "l_extendedprice": 12311.52d, "l_discount": 0.1d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-05-11", "l_commitdate": "1995-04-27", "l_receiptdate": "1995-05-26", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "en, fluffy accounts amon" }, { "l_orderkey": 2311i32, "l_partkey": 47i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 1.0d, "l_extendedprice": 947.04d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-06-07", "l_commitdate": "1995-06-20", "l_receiptdate": "1995-06-10", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "ptotes. furiously regular theodolite" }, { "l_orderkey": 805i32, "l_partkey": 47i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 12.0d, "l_extendedprice": 11364.48d, "l_discount": 0.01d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-13", "l_commitdate": "1995-09-27", "l_receiptdate": "1995-08-02", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": " regular foxes. furio" }, { "l_orderkey": 4769i32, "l_partkey": 47i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 36.0d, "l_extendedprice": 34093.44d, "l_discount": 0.1d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-22", "l_commitdate": "1995-06-16", "l_receiptdate": "1995-08-11", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": ". slyly even deposit" }, { "l_orderkey": 2465i32, "l_partkey": 47i32, "l_suppkey": 4i32, "l_linenumber": 5i32, "l_quantity": 50.0d, "l_extendedprice": 47352.0d, "l_discount": 0.01d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-01", "l_commitdate": "1995-09-06", "l_receiptdate": "1995-09-18", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "the pending th" }, { "l_orderkey": 4387i32, "l_partkey": 47i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 9.0d, "l_extendedprice": 8523.36d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-04", "l_commitdate": "1995-12-26", "l_receiptdate": "1996-01-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "c ideas. slyly regular packages sol" }, { "l_orderkey": 486i32, "l_partkey": 47i32, "l_suppkey": 4i32, "l_linenumber": 6i32, "l_quantity": 46.0d, "l_extendedprice": 43563.84d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-04-18", "l_commitdate": "1996-05-02", "l_receiptdate": "1996-04-20", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "theodolites eat carefully furious" }, { "l_orderkey": 5637i32, "l_partkey": 47i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 14.0d, "l_extendedprice": 13258.56d, "l_discount": 0.03d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-20", "l_commitdate": "1996-07-26", "l_receiptdate": "1996-08-14", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "y bold deposits wak" }, { "l_orderkey": 4548i32, "l_partkey": 47i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 17.0d, "l_extendedprice": 16099.68d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-23", "l_commitdate": "1996-09-21", "l_receiptdate": "1996-07-26", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "y ironic requests above the fluffily d" }, { "l_orderkey": 768i32, "l_partkey": 47i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 47.0d, "l_extendedprice": 44510.88d, "l_discount": 0.06d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-28", "l_commitdate": "1996-10-30", "l_receiptdate": "1996-12-12", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "foxes. slyly ironic deposits a" }, { "l_orderkey": 1156i32, "l_partkey": 47i32, "l_suppkey": 6i32, "l_linenumber": 7i32, "l_quantity": 20.0d, "l_extendedprice": 18940.8d, "l_discount": 0.08d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-01", "l_commitdate": "1997-01-06", "l_receiptdate": "1997-01-16", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "deposits sleep bravel" }, { "l_orderkey": 4609i32, "l_partkey": 47i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 28.0d, "l_extendedprice": 26517.12d, "l_discount": 0.1d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-02", "l_commitdate": "1997-02-17", "l_receiptdate": "1997-03-02", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "ously. quickly final requests cajole fl" }, { "l_orderkey": 3682i32, "l_partkey": 47i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 17.0d, "l_extendedprice": 16099.68d, "l_discount": 0.03d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-12", "l_commitdate": "1997-04-04", "l_receiptdate": "1997-02-22", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": ", ironic packages wake a" }, { "l_orderkey": 3105i32, "l_partkey": 47i32, "l_suppkey": 6i32, "l_linenumber": 6i32, "l_quantity": 30.0d, "l_extendedprice": 28411.2d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-03", "l_commitdate": "1997-02-03", "l_receiptdate": "1997-03-05", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "ess accounts boost among t" }, { "l_orderkey": 2375i32, "l_partkey": 47i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 26.0d, "l_extendedprice": 24623.04d, "l_discount": 0.02d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-18", "l_commitdate": "1997-02-02", "l_receiptdate": "1997-03-29", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "rate across the" }, { "l_orderkey": 869i32, "l_partkey": 47i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 36.0d, "l_extendedprice": 34093.44d, "l_discount": 0.04d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-03", "l_commitdate": "1997-03-17", "l_receiptdate": "1997-05-24", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "ong the furiously bold instructi" }, { "l_orderkey": 289i32, "l_partkey": 47i32, "l_suppkey": 4i32, "l_linenumber": 5i32, "l_quantity": 13.0d, "l_extendedprice": 12311.52d, "l_discount": 0.1d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-08", "l_commitdate": "1997-04-06", "l_receiptdate": "1997-06-18", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "ts. quickly bold deposits alongside" }, { "l_orderkey": 4421i32, "l_partkey": 47i32, "l_suppkey": 6i32, "l_linenumber": 6i32, "l_quantity": 44.0d, "l_extendedprice": 41669.76d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-17", "l_commitdate": "1997-06-20", "l_receiptdate": "1997-06-29", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "le carefully. bl" }, { "l_orderkey": 519i32, "l_partkey": 47i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 27.0d, "l_extendedprice": 25570.08d, "l_discount": 0.08d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-11-20", "l_commitdate": "1997-12-06", "l_receiptdate": "1997-12-16", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "le. even, final dependencies" }, { "l_orderkey": 1184i32, "l_partkey": 47i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 27.0d, "l_extendedprice": 25570.08d, "l_discount": 0.01d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-10", "l_commitdate": "1997-12-02", "l_receiptdate": "1998-02-06", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "s wake fluffily. fl" }, { "l_orderkey": 100i32, "l_partkey": 47i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 46.0d, "l_extendedprice": 43563.84d, "l_discount": 0.03d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-02", "l_commitdate": "1998-04-10", "l_receiptdate": "1998-05-22", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "ular accounts. even" }, { "l_orderkey": 899i32, "l_partkey": 47i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 25.0d, "l_extendedprice": 23676.0d, "l_discount": 0.0d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-21", "l_commitdate": "1998-05-12", "l_receiptdate": "1998-08-16", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "rly final sentiments. bold pinto beans " }, { "l_orderkey": 5761i32, "l_partkey": 47i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 41.0d, "l_extendedprice": 38828.64d, "l_discount": 0.08d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-31", "l_commitdate": "1998-08-09", "l_receiptdate": "1998-08-08", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "pecial deposits. qu" } ] }
-{ "partkey": 49i32, "lines": [ { "l_orderkey": 2983i32, "l_partkey": 49i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 11.0d, "l_extendedprice": 10439.44d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-04-29", "l_commitdate": "1992-02-27", "l_receiptdate": "1992-05-26", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "aids integrate s" }, { "l_orderkey": 2022i32, "l_partkey": 49i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 48.0d, "l_extendedprice": 45553.92d, "l_discount": 0.1d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-06-14", "l_commitdate": "1992-06-04", "l_receiptdate": "1992-07-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "counts. slyly enticing accounts are during " }, { "l_orderkey": 933i32, "l_partkey": 49i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 23.0d, "l_extendedprice": 21827.92d, "l_discount": 0.02d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-08-13", "l_commitdate": "1992-09-18", "l_receiptdate": "1992-08-25", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": " the furiously bold dinos. sly" }, { "l_orderkey": 4771i32, "l_partkey": 49i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 9.0d, "l_extendedprice": 8541.36d, "l_discount": 0.01d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-02-28", "l_commitdate": "1993-02-19", "l_receiptdate": "1993-03-25", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "riously after the packages. fina" }, { "l_orderkey": 3683i32, "l_partkey": 49i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 41.0d, "l_extendedprice": 38910.64d, "l_discount": 0.01d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-03-26", "l_commitdate": "1993-05-06", "l_receiptdate": "1993-04-09", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "ress instructions. slyly express a" }, { "l_orderkey": 2435i32, "l_partkey": 49i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 43.0d, "l_extendedprice": 40808.72d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-03-27", "l_commitdate": "1993-05-20", "l_receiptdate": "1993-04-18", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "alongside of the s" }, { "l_orderkey": 2149i32, "l_partkey": 49i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 47.0d, "l_extendedprice": 44604.88d, "l_discount": 0.0d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-06-27", "l_commitdate": "1993-05-12", "l_receiptdate": "1993-07-11", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "hely final depo" }, { "l_orderkey": 1286i32, "l_partkey": 49i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 48.0d, "l_extendedprice": 45553.92d, "l_discount": 0.01d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-07-11", "l_commitdate": "1993-07-11", "l_receiptdate": "1993-08-01", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "unts alongs" }, { "l_orderkey": 898i32, "l_partkey": 49i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 11.0d, "l_extendedprice": 10439.44d, "l_discount": 0.01d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-09-13", "l_commitdate": "1993-08-31", "l_receiptdate": "1993-09-25", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "etly bold accounts " }, { "l_orderkey": 1761i32, "l_partkey": 49i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 37.0d, "l_extendedprice": 35114.48d, "l_discount": 0.06d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-01-02", "l_commitdate": "1994-03-12", "l_receiptdate": "1994-01-25", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "regular packages wake after" }, { "l_orderkey": 3653i32, "l_partkey": 49i32, "l_suppkey": 6i32, "l_linenumber": 7i32, "l_quantity": 2.0d, "l_extendedprice": 1898.08d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-06-02", "l_commitdate": "1994-05-31", "l_receiptdate": "1994-06-29", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "n accounts. fina" }, { "l_orderkey": 3396i32, "l_partkey": 49i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 43.0d, "l_extendedprice": 40808.72d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-07-03", "l_commitdate": "1994-08-09", "l_receiptdate": "1994-07-14", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "cial packages cajole blithely around the " }, { "l_orderkey": 2050i32, "l_partkey": 49i32, "l_suppkey": 2i32, "l_linenumber": 6i32, "l_quantity": 29.0d, "l_extendedprice": 27522.16d, "l_discount": 0.0d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-09-23", "l_commitdate": "1994-08-01", "l_receiptdate": "1994-10-23", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "oxes alongsid" }, { "l_orderkey": 1191i32, "l_partkey": 49i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 29.0d, "l_extendedprice": 27522.16d, "l_discount": 0.0d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-24", "l_commitdate": "1996-01-28", "l_receiptdate": "1996-02-17", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": " regular pin" }, { "l_orderkey": 768i32, "l_partkey": 49i32, "l_suppkey": 10i32, "l_linenumber": 7i32, "l_quantity": 33.0d, "l_extendedprice": 31318.32d, "l_discount": 0.01d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-06", "l_commitdate": "1996-09-29", "l_receiptdate": "1996-10-01", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "sly ironic instructions. excuses can hagg" }, { "l_orderkey": 1220i32, "l_partkey": 49i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 25.0d, "l_extendedprice": 23726.0d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-11", "l_commitdate": "1996-10-09", "l_receiptdate": "1996-09-25", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "packages affi" }, { "l_orderkey": 3426i32, "l_partkey": 49i32, "l_suppkey": 6i32, "l_linenumber": 5i32, "l_quantity": 31.0d, "l_extendedprice": 29420.24d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-11", "l_commitdate": "1996-12-10", "l_receiptdate": "1996-12-10", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": " even sentiment" }, { "l_orderkey": 455i32, "l_partkey": 49i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 45.0d, "l_extendedprice": 42706.8d, "l_discount": 0.04d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-20", "l_commitdate": "1997-01-31", "l_receiptdate": "1997-01-07", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "thrash ironically regular packages. qui" }, { "l_orderkey": 1543i32, "l_partkey": 49i32, "l_suppkey": 8i32, "l_linenumber": 6i32, "l_quantity": 3.0d, "l_extendedprice": 2847.12d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-29", "l_commitdate": "1997-05-10", "l_receiptdate": "1997-04-22", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "sleep along the furiou" }, { "l_orderkey": 4225i32, "l_partkey": 49i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 25.0d, "l_extendedprice": 23726.0d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-10", "l_commitdate": "1997-08-08", "l_receiptdate": "1997-07-31", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "se fluffily. busily ironic requests are;" }, { "l_orderkey": 5157i32, "l_partkey": 49i32, "l_suppkey": 8i32, "l_linenumber": 7i32, "l_quantity": 12.0d, "l_extendedprice": 11388.48d, "l_discount": 0.1d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-10-19", "l_commitdate": "1997-08-07", "l_receiptdate": "1997-10-26", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "es. busily " }, { "l_orderkey": 2464i32, "l_partkey": 49i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 10.0d, "l_extendedprice": 9490.4d, "l_discount": 0.05d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-02-04", "l_commitdate": "1997-12-29", "l_receiptdate": "1998-02-16", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "slyly final pinto bean" }, { "l_orderkey": 1157i32, "l_partkey": 49i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 16.0d, "l_extendedprice": 15184.64d, "l_discount": 0.06d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-12", "l_commitdate": "1998-03-09", "l_receiptdate": "1998-04-23", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "tions hang" }, { "l_orderkey": 1569i32, "l_partkey": 49i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 43.0d, "l_extendedprice": 40808.72d, "l_discount": 0.1d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-05", "l_commitdate": "1998-05-31", "l_receiptdate": "1998-06-28", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": " instructions." }, { "l_orderkey": 4486i32, "l_partkey": 49i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 19.0d, "l_extendedprice": 18031.76d, "l_discount": 0.1d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-07", "l_commitdate": "1998-05-28", "l_receiptdate": "1998-07-02", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "pending foxes after" }, { "l_orderkey": 739i32, "l_partkey": 49i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 12.0d, "l_extendedprice": 11388.48d, "l_discount": 0.05d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-20", "l_commitdate": "1998-07-24", "l_receiptdate": "1998-08-22", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "le slyly along the close i" }, { "l_orderkey": 2115i32, "l_partkey": 49i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 47.0d, "l_extendedprice": 44604.88d, "l_discount": 0.06d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-29", "l_commitdate": "1998-07-30", "l_receiptdate": "1998-09-05", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "regular accounts integrate brav" }, { "l_orderkey": 4711i32, "l_partkey": 49i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 15.0d, "l_extendedprice": 14235.6d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-09-03", "l_commitdate": "1998-07-15", "l_receiptdate": "1998-09-13", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "ld requests: furiously final inst" } ] }
-{ "partkey": 51i32, "lines": [ { "l_orderkey": 5860i32, "l_partkey": 51i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 10.0d, "l_extendedprice": 9510.5d, "l_discount": 0.04d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-03-11", "l_commitdate": "1992-03-30", "l_receiptdate": "1992-03-31", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "ual patterns try to eat carefully above" }, { "l_orderkey": 2786i32, "l_partkey": 51i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 42.0d, "l_extendedprice": 39944.1d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-05-15", "l_commitdate": "1992-04-22", "l_receiptdate": "1992-05-30", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "unts are against the furious" }, { "l_orderkey": 644i32, "l_partkey": 51i32, "l_suppkey": 9i32, "l_linenumber": 7i32, "l_quantity": 38.0d, "l_extendedprice": 36139.9d, "l_discount": 0.08d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-05-17", "l_commitdate": "1992-07-10", "l_receiptdate": "1992-06-06", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": " packages. blithely slow accounts nag quic" }, { "l_orderkey": 4741i32, "l_partkey": 51i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 39.0d, "l_extendedprice": 37090.95d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-10-28", "l_commitdate": "1992-10-03", "l_receiptdate": "1992-11-11", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "t, regular requests" }, { "l_orderkey": 4099i32, "l_partkey": 51i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 36.0d, "l_extendedprice": 34237.8d, "l_discount": 0.06d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-11-06", "l_commitdate": "1992-09-28", "l_receiptdate": "1992-12-02", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "beans cajole slyly quickly ironic " }, { "l_orderkey": 5088i32, "l_partkey": 51i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 41.0d, "l_extendedprice": 38993.05d, "l_discount": 0.09d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-01-22", "l_commitdate": "1993-03-07", "l_receiptdate": "1993-02-09", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "ing requests. " }, { "l_orderkey": 2244i32, "l_partkey": 51i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 3.0d, "l_extendedprice": 2853.15d, "l_discount": 0.02d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-04-30", "l_commitdate": "1993-03-15", "l_receiptdate": "1993-05-19", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": " beans for the regular platel" }, { "l_orderkey": 2305i32, "l_partkey": 51i32, "l_suppkey": 3i32, "l_linenumber": 6i32, "l_quantity": 7.0d, "l_extendedprice": 6657.35d, "l_discount": 0.06d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-05-15", "l_commitdate": "1993-04-25", "l_receiptdate": "1993-06-09", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "gular deposits boost about the foxe" }, { "l_orderkey": 4932i32, "l_partkey": 51i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 13.0d, "l_extendedprice": 12363.65d, "l_discount": 0.04d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-09-13", "l_commitdate": "1993-10-16", "l_receiptdate": "1993-09-20", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "slyly according to the furiously fin" }, { "l_orderkey": 3104i32, "l_partkey": 51i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 20.0d, "l_extendedprice": 19021.0d, "l_discount": 0.01d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-12-31", "l_commitdate": "1993-11-24", "l_receiptdate": "1994-01-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "s are. furiously s" }, { "l_orderkey": 4193i32, "l_partkey": 51i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 29.0d, "l_extendedprice": 27580.45d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-02-11", "l_commitdate": "1994-03-11", "l_receiptdate": "1994-03-13", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "ly. final packages use blit" }, { "l_orderkey": 2144i32, "l_partkey": 51i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 46.0d, "l_extendedprice": 43748.3d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-04-08", "l_commitdate": "1994-04-29", "l_receiptdate": "1994-05-07", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": " foxes haggle blithel" }, { "l_orderkey": 3972i32, "l_partkey": 51i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 2.0d, "l_extendedprice": 1902.1d, "l_discount": 0.05d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-07-24", "l_commitdate": "1994-06-30", "l_receiptdate": "1994-08-13", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "y final theodolite" }, { "l_orderkey": 1189i32, "l_partkey": 51i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 23.0d, "l_extendedprice": 21874.15d, "l_discount": 0.06d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-07-25", "l_commitdate": "1994-06-07", "l_receiptdate": "1994-08-02", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "s. fluffy Tiresias run quickly. bra" }, { "l_orderkey": 224i32, "l_partkey": 51i32, "l_suppkey": 3i32, "l_linenumber": 6i32, "l_quantity": 4.0d, "l_extendedprice": 3804.2d, "l_discount": 0.02d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-09-08", "l_commitdate": "1994-08-24", "l_receiptdate": "1994-10-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "tructions " }, { "l_orderkey": 3233i32, "l_partkey": 51i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 23.0d, "l_extendedprice": 21874.15d, "l_discount": 0.04d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-12-07", "l_commitdate": "1995-01-11", "l_receiptdate": "1994-12-26", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "pending instructions use after the carefu" }, { "l_orderkey": 4354i32, "l_partkey": 51i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 2.0d, "l_extendedprice": 1902.1d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-01-09", "l_commitdate": "1994-12-15", "l_receiptdate": "1995-01-24", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "s nag quickly " }, { "l_orderkey": 512i32, "l_partkey": 51i32, "l_suppkey": 9i32, "l_linenumber": 7i32, "l_quantity": 2.0d, "l_extendedprice": 1902.1d, "l_discount": 0.09d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-06-19", "l_commitdate": "1995-08-13", "l_receiptdate": "1995-06-24", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "e slyly silent accounts serve with" }, { "l_orderkey": 643i32, "l_partkey": 51i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 48.0d, "l_extendedprice": 45650.4d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-10", "l_commitdate": "1995-06-07", "l_receiptdate": "1995-08-01", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "ly ironic accounts" }, { "l_orderkey": 2465i32, "l_partkey": 51i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 34.0d, "l_extendedprice": 32335.7d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-02", "l_commitdate": "1995-08-04", "l_receiptdate": "1995-10-09", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "posits wake. regular package" }, { "l_orderkey": 4324i32, "l_partkey": 51i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 44.0d, "l_extendedprice": 41846.2d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-15", "l_commitdate": "1995-09-07", "l_receiptdate": "1995-11-07", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "ainst the u" }, { "l_orderkey": 1731i32, "l_partkey": 51i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 50.0d, "l_extendedprice": 47552.5d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-14", "l_commitdate": "1996-03-13", "l_receiptdate": "1996-01-29", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "ly slyly speci" }, { "l_orderkey": 2951i32, "l_partkey": 51i32, "l_suppkey": 6i32, "l_linenumber": 5i32, "l_quantity": 15.0d, "l_extendedprice": 14265.75d, "l_discount": 0.07d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-25", "l_commitdate": "1996-04-23", "l_receiptdate": "1996-03-27", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "inal account" }, { "l_orderkey": 1926i32, "l_partkey": 51i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 24.0d, "l_extendedprice": 22825.2d, "l_discount": 0.06d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-04", "l_commitdate": "1996-03-14", "l_receiptdate": "1996-06-01", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "e theodolites." }, { "l_orderkey": 2690i32, "l_partkey": 51i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 50.0d, "l_extendedprice": 47552.5d, "l_discount": 0.03d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-13", "l_commitdate": "1996-05-22", "l_receiptdate": "1996-06-14", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": " doubt careful" }, { "l_orderkey": 4836i32, "l_partkey": 51i32, "l_suppkey": 6i32, "l_linenumber": 5i32, "l_quantity": 12.0d, "l_extendedprice": 11412.6d, "l_discount": 0.01d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-02", "l_commitdate": "1997-02-10", "l_receiptdate": "1997-02-03", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "sly ironic accoun" }, { "l_orderkey": 288i32, "l_partkey": 51i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 31.0d, "l_extendedprice": 29482.55d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-17", "l_commitdate": "1997-04-28", "l_receiptdate": "1997-04-06", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "instructions wa" }, { "l_orderkey": 676i32, "l_partkey": 51i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 9.0d, "l_extendedprice": 8559.45d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-03", "l_commitdate": "1997-02-02", "l_receiptdate": "1997-04-08", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "aintain sl" }, { "l_orderkey": 1347i32, "l_partkey": 51i32, "l_suppkey": 3i32, "l_linenumber": 7i32, "l_quantity": 10.0d, "l_extendedprice": 9510.5d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-04", "l_commitdate": "1997-07-23", "l_receiptdate": "1997-07-05", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "y ironic pin" }, { "l_orderkey": 4544i32, "l_partkey": 51i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 39.0d, "l_extendedprice": 37090.95d, "l_discount": 0.07d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-20", "l_commitdate": "1997-09-07", "l_receiptdate": "1997-08-27", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "ular packages. s" }, { "l_orderkey": 582i32, "l_partkey": 51i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 49.0d, "l_extendedprice": 46601.45d, "l_discount": 0.05d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-17", "l_commitdate": "1998-01-12", "l_receiptdate": "1997-12-31", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "nts according to the furiously regular pin" }, { "l_orderkey": 2561i32, "l_partkey": 51i32, "l_suppkey": 6i32, "l_linenumber": 6i32, "l_quantity": 14.0d, "l_extendedprice": 13314.7d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-07", "l_commitdate": "1998-02-04", "l_receiptdate": "1998-03-21", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "ep unusual, ironic accounts" }, { "l_orderkey": 1508i32, "l_partkey": 51i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 16.0d, "l_extendedprice": 15216.8d, "l_discount": 0.02d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-21", "l_commitdate": "1998-05-30", "l_receiptdate": "1998-07-11", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "riously across the ironic, unusua" }, { "l_orderkey": 2115i32, "l_partkey": 51i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 3.0d, "l_extendedprice": 2853.15d, "l_discount": 0.03d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-23", "l_commitdate": "1998-07-30", "l_receiptdate": "1998-08-14", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "quickly ironic dolphin" }, { "l_orderkey": 1920i32, "l_partkey": 51i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 31.0d, "l_extendedprice": 29482.55d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-01", "l_commitdate": "1998-08-30", "l_receiptdate": "1998-08-17", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "lly. ideas wa" } ] }
-{ "partkey": 58i32, "lines": [ { "l_orderkey": 3685i32, "l_partkey": 58i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 7.0d, "l_extendedprice": 6706.35d, "l_discount": 0.05d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-05-16", "l_commitdate": "1992-02-23", "l_receiptdate": "1992-05-17", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "sits. special asymptotes about the r" }, { "l_orderkey": 4896i32, "l_partkey": 58i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 6.0d, "l_extendedprice": 5748.3d, "l_discount": 0.04d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-10-30", "l_commitdate": "1992-11-12", "l_receiptdate": "1992-11-28", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "usly regular deposits" }, { "l_orderkey": 1412i32, "l_partkey": 58i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 37.0d, "l_extendedprice": 35447.85d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-04-10", "l_commitdate": "1993-04-19", "l_receiptdate": "1993-04-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excus" }, { "l_orderkey": 5569i32, "l_partkey": 58i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 26.0d, "l_extendedprice": 24909.3d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-08-21", "l_commitdate": "1993-07-22", "l_receiptdate": "1993-09-09", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "pitaphs. ironic req" }, { "l_orderkey": 1542i32, "l_partkey": 58i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 37.0d, "l_extendedprice": 35447.85d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-12-15", "l_commitdate": "1993-10-17", "l_receiptdate": "1994-01-07", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "e blithely unusual accounts. quic" }, { "l_orderkey": 3586i32, "l_partkey": 58i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 2.0d, "l_extendedprice": 1916.1d, "l_discount": 0.03d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-03-22", "l_commitdate": "1994-02-20", "l_receiptdate": "1994-04-08", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "unts. slyly final ideas agai" }, { "l_orderkey": 5698i32, "l_partkey": 58i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 15.0d, "l_extendedprice": 14370.75d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-06-29", "l_commitdate": "1994-07-03", "l_receiptdate": "1994-07-02", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "ly ironic frets haggle carefully " }, { "l_orderkey": 3751i32, "l_partkey": 58i32, "l_suppkey": 3i32, "l_linenumber": 5i32, "l_quantity": 12.0d, "l_extendedprice": 11496.6d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-08-09", "l_commitdate": "1994-06-30", "l_receiptdate": "1994-08-12", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "accounts wake furious" }, { "l_orderkey": 4869i32, "l_partkey": 58i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 24.0d, "l_extendedprice": 22993.2d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-11-17", "l_commitdate": "1994-11-07", "l_receiptdate": "1994-11-27", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "olites cajole after the ideas. special t" }, { "l_orderkey": 5920i32, "l_partkey": 58i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 24.0d, "l_extendedprice": 22993.2d, "l_discount": 0.01d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-12-28", "l_commitdate": "1995-01-21", "l_receiptdate": "1994-12-31", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "fully regular dolphins. furiousl" }, { "l_orderkey": 2208i32, "l_partkey": 58i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 48.0d, "l_extendedprice": 45986.4d, "l_discount": 0.08d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-05-13", "l_commitdate": "1995-06-30", "l_receiptdate": "1995-05-20", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "sits. idly permanent request" }, { "l_orderkey": 5575i32, "l_partkey": 58i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 7.0d, "l_extendedprice": 6706.35d, "l_discount": 0.01d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-01", "l_commitdate": "1995-09-30", "l_receiptdate": "1995-10-06", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "s. slyly pending theodolites prin" }, { "l_orderkey": 3111i32, "l_partkey": 58i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 30.0d, "l_extendedprice": 28741.5d, "l_discount": 0.06d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-05", "l_commitdate": "1995-11-15", "l_receiptdate": "1995-11-01", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "eas are furiously slyly special deposits." }, { "l_orderkey": 5796i32, "l_partkey": 58i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 27.0d, "l_extendedprice": 25867.35d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-04-06", "l_commitdate": "1996-02-29", "l_receiptdate": "1996-04-20", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "s wake quickly aro" }, { "l_orderkey": 3010i32, "l_partkey": 58i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 24.0d, "l_extendedprice": 22993.2d, "l_discount": 0.04d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-09", "l_commitdate": "1996-03-14", "l_receiptdate": "1996-05-15", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "ar, even reques" }, { "l_orderkey": 2310i32, "l_partkey": 58i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 36.0d, "l_extendedprice": 34489.8d, "l_discount": 0.03d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-09", "l_commitdate": "1996-10-28", "l_receiptdate": "1996-10-29", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "iously against the slyly special accounts" }, { "l_orderkey": 4576i32, "l_partkey": 58i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 43.0d, "l_extendedprice": 41196.15d, "l_discount": 0.08d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-24", "l_commitdate": "1996-09-23", "l_receiptdate": "1996-11-10", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "ly final deposits. never" }, { "l_orderkey": 5024i32, "l_partkey": 58i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 41.0d, "l_extendedprice": 39280.05d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-09", "l_commitdate": "1996-12-03", "l_receiptdate": "1996-12-01", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "osits hinder carefully " }, { "l_orderkey": 2695i32, "l_partkey": 58i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 16.0d, "l_extendedprice": 15328.8d, "l_discount": 0.08d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-16", "l_commitdate": "1996-10-05", "l_receiptdate": "1996-11-22", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "its. theodolites sleep slyly" }, { "l_orderkey": 2117i32, "l_partkey": 58i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 43.0d, "l_extendedprice": 41196.15d, "l_discount": 0.04d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-27", "l_commitdate": "1997-06-12", "l_receiptdate": "1997-07-22", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": " foxes sleep furiously " }, { "l_orderkey": 2501i32, "l_partkey": 58i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 26.0d, "l_extendedprice": 24909.3d, "l_discount": 0.09d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-15", "l_commitdate": "1997-08-15", "l_receiptdate": "1997-07-28", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "c accounts. express, iron" }, { "l_orderkey": 5857i32, "l_partkey": 58i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 25.0d, "l_extendedprice": 23951.25d, "l_discount": 0.03d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-02", "l_commitdate": "1997-12-17", "l_receiptdate": "1997-12-08", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "ding platelets. pending excu" }, { "l_orderkey": 935i32, "l_partkey": 58i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 13.0d, "l_extendedprice": 12454.65d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-13", "l_commitdate": "1997-11-30", "l_receiptdate": "1998-02-08", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "ld platelet" }, { "l_orderkey": 3360i32, "l_partkey": 58i32, "l_suppkey": 6i32, "l_linenumber": 5i32, "l_quantity": 4.0d, "l_extendedprice": 3832.2d, "l_discount": 0.08d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-02-27", "l_commitdate": "1998-03-23", "l_receiptdate": "1998-03-28", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "ly busy inst" }, { "l_orderkey": 4997i32, "l_partkey": 58i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 24.0d, "l_extendedprice": 22993.2d, "l_discount": 0.04d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-20", "l_commitdate": "1998-04-23", "l_receiptdate": "1998-05-16", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "xpress, bo" }, { "l_orderkey": 1126i32, "l_partkey": 58i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 7.0d, "l_extendedprice": 6706.35d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-02", "l_commitdate": "1998-03-22", "l_receiptdate": "1998-05-21", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "ons. final, unusual" }, { "l_orderkey": 5282i32, "l_partkey": 58i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 28.0d, "l_extendedprice": 26825.4d, "l_discount": 0.03d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-06", "l_commitdate": "1998-04-24", "l_receiptdate": "1998-05-30", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "fily final instruc" }, { "l_orderkey": 4678i32, "l_partkey": 58i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 35.0d, "l_extendedprice": 33531.75d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-11-27", "l_commitdate": "1998-10-02", "l_receiptdate": "1998-12-17", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "he accounts. fluffily bold sheaves b" } ] }
-{ "partkey": 60i32, "lines": [ { "l_orderkey": 3168i32, "l_partkey": 60i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 46.0d, "l_extendedprice": 44162.76d, "l_discount": 0.08d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-02-14", "l_commitdate": "1992-03-02", "l_receiptdate": "1992-03-02", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "y across the express accounts. fluff" }, { "l_orderkey": 1217i32, "l_partkey": 60i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 45.0d, "l_extendedprice": 43202.7d, "l_discount": 0.07d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-07-01", "l_commitdate": "1992-06-23", "l_receiptdate": "1992-07-06", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "riously close ideas" }, { "l_orderkey": 3043i32, "l_partkey": 60i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 42.0d, "l_extendedprice": 40322.52d, "l_discount": 0.1d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-07-15", "l_commitdate": "1992-06-19", "l_receiptdate": "1992-07-23", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "ide of the un" }, { "l_orderkey": 1991i32, "l_partkey": 60i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 49.0d, "l_extendedprice": 47042.94d, "l_discount": 0.06d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-09-10", "l_commitdate": "1992-11-30", "l_receiptdate": "1992-10-07", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "quests cajole blithely" }, { "l_orderkey": 1540i32, "l_partkey": 60i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 35.0d, "l_extendedprice": 33602.1d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-10-31", "l_commitdate": "1992-09-04", "l_receiptdate": "1992-11-05", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "e blithely a" }, { "l_orderkey": 2213i32, "l_partkey": 60i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 4.0d, "l_extendedprice": 3840.24d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-04-15", "l_commitdate": "1993-04-15", "l_receiptdate": "1993-05-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": " affix carefully furiously " }, { "l_orderkey": 2305i32, "l_partkey": 60i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 39.0d, "l_extendedprice": 37442.34d, "l_discount": 0.07d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-04-16", "l_commitdate": "1993-04-17", "l_receiptdate": "1993-04-22", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "ms after the foxes " }, { "l_orderkey": 2149i32, "l_partkey": 60i32, "l_suppkey": 5i32, "l_linenumber": 5i32, "l_quantity": 22.0d, "l_extendedprice": 21121.32d, "l_discount": 0.06d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-05-24", "l_commitdate": "1993-04-23", "l_receiptdate": "1993-06-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "ptotes sleep along the blithely ir" }, { "l_orderkey": 4743i32, "l_partkey": 60i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 19.0d, "l_extendedprice": 18241.14d, "l_discount": 0.04d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-06-23", "l_commitdate": "1993-05-03", "l_receiptdate": "1993-07-20", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "hely even accounts" }, { "l_orderkey": 294i32, "l_partkey": 60i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 31.0d, "l_extendedprice": 29761.86d, "l_discount": 0.0d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-08-06", "l_commitdate": "1993-08-19", "l_receiptdate": "1993-08-13", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "le fluffily along the quick" }, { "l_orderkey": 2817i32, "l_partkey": 60i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 25.0d, "l_extendedprice": 24001.5d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-04-21", "l_commitdate": "1994-06-20", "l_receiptdate": "1994-05-07", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "doze blithely." }, { "l_orderkey": 4839i32, "l_partkey": 60i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 18.0d, "l_extendedprice": 17281.08d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-05-18", "l_commitdate": "1994-06-13", "l_receiptdate": "1994-06-09", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "blithely ironic theodolites use along" }, { "l_orderkey": 4839i32, "l_partkey": 60i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 5.0d, "l_extendedprice": 4800.3d, "l_discount": 0.1d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-09-07", "l_commitdate": "1994-07-15", "l_receiptdate": "1994-10-05", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "ses integrate. regular deposits are about " }, { "l_orderkey": 2086i32, "l_partkey": 60i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 22.0d, "l_extendedprice": 21121.32d, "l_discount": 0.03d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-12-04", "l_commitdate": "1994-12-16", "l_receiptdate": "1994-12-20", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "idly busy acc" }, { "l_orderkey": 5735i32, "l_partkey": 60i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 41.0d, "l_extendedprice": 39362.46d, "l_discount": 0.01d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-12-23", "l_commitdate": "1995-02-10", "l_receiptdate": "1995-01-22", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "lthily ruthless i" }, { "l_orderkey": 2886i32, "l_partkey": 60i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 1.0d, "l_extendedprice": 960.06d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-02-01", "l_commitdate": "1994-12-18", "l_receiptdate": "1995-02-28", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "eposits fr" }, { "l_orderkey": 4423i32, "l_partkey": 60i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 2.0d, "l_extendedprice": 1920.12d, "l_discount": 0.07d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-03-04", "l_commitdate": "1995-04-04", "l_receiptdate": "1995-03-08", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "old sheaves sleep" }, { "l_orderkey": 65i32, "l_partkey": 60i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 26.0d, "l_extendedprice": 24961.56d, "l_discount": 0.03d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-04-20", "l_commitdate": "1995-04-25", "l_receiptdate": "1995-05-13", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "pending deposits nag even packages. ca" }, { "l_orderkey": 3008i32, "l_partkey": 60i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 48.0d, "l_extendedprice": 46082.88d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-23", "l_commitdate": "1996-01-07", "l_receiptdate": "1996-02-09", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "ld theodolites. fluffily bold theodolit" }, { "l_orderkey": 2849i32, "l_partkey": 60i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 24.0d, "l_extendedprice": 23041.44d, "l_discount": 0.01d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-12", "l_commitdate": "1996-07-10", "l_receiptdate": "1996-06-27", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "e slyly even asymptotes. slo" }, { "l_orderkey": 5570i32, "l_partkey": 60i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 29.0d, "l_extendedprice": 27841.74d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-12", "l_commitdate": "1996-10-20", "l_receiptdate": "1996-11-08", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "he silent, enticing requests." }, { "l_orderkey": 2406i32, "l_partkey": 60i32, "l_suppkey": 2i32, "l_linenumber": 7i32, "l_quantity": 30.0d, "l_extendedprice": 28801.8d, "l_discount": 0.07d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-17", "l_commitdate": "1997-01-12", "l_receiptdate": "1997-01-22", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": " final pinto beans han" }, { "l_orderkey": 3013i32, "l_partkey": 60i32, "l_suppkey": 5i32, "l_linenumber": 5i32, "l_quantity": 20.0d, "l_extendedprice": 19201.2d, "l_discount": 0.0d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-06", "l_commitdate": "1997-03-18", "l_receiptdate": "1997-05-12", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "unts boost regular ideas. slyly pe" }, { "l_orderkey": 2944i32, "l_partkey": 60i32, "l_suppkey": 2i32, "l_linenumber": 6i32, "l_quantity": 17.0d, "l_extendedprice": 16321.02d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-10-18", "l_commitdate": "1997-11-27", "l_receiptdate": "1997-10-29", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "slyly final dolphins sleep silent the" }, { "l_orderkey": 992i32, "l_partkey": 60i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 14.0d, "l_extendedprice": 13440.84d, "l_discount": 0.1d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-29", "l_commitdate": "1997-12-29", "l_receiptdate": "1998-02-18", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "the unusual, even dependencies affix fluff" }, { "l_orderkey": 4322i32, "l_partkey": 60i32, "l_suppkey": 8i32, "l_linenumber": 6i32, "l_quantity": 39.0d, "l_extendedprice": 37442.34d, "l_discount": 0.09d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-16", "l_commitdate": "1998-05-21", "l_receiptdate": "1998-04-11", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "ccounts. dogged pin" }, { "l_orderkey": 579i32, "l_partkey": 60i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 6.0d, "l_extendedprice": 5760.36d, "l_discount": 0.03d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-24", "l_commitdate": "1998-05-03", "l_receiptdate": "1998-05-08", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "ickly final requests-- bold accou" }, { "l_orderkey": 4961i32, "l_partkey": 60i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 1.0d, "l_extendedprice": 960.06d, "l_discount": 0.08d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-08", "l_commitdate": "1998-05-25", "l_receiptdate": "1998-07-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "s affix carefully silent dependen" } ] }
-{ "partkey": 70i32, "lines": [ { "l_orderkey": 5473i32, "l_partkey": 70i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 27.0d, "l_extendedprice": 26191.89d, "l_discount": 0.01d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-04-06", "l_commitdate": "1992-04-26", "l_receiptdate": "1992-04-29", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "the deposits. warthogs wake fur" }, { "l_orderkey": 4199i32, "l_partkey": 70i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 16.0d, "l_extendedprice": 15521.12d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-06-11", "l_commitdate": "1992-04-10", "l_receiptdate": "1992-07-10", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "ncies. furiously special accounts" }, { "l_orderkey": 3650i32, "l_partkey": 70i32, "l_suppkey": 7i32, "l_linenumber": 7i32, "l_quantity": 43.0d, "l_extendedprice": 41713.01d, "l_discount": 0.1d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-06-25", "l_commitdate": "1992-07-09", "l_receiptdate": "1992-07-22", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "structions use caref" }, { "l_orderkey": 3205i32, "l_partkey": 70i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 18.0d, "l_extendedprice": 17461.26d, "l_discount": 0.03d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-07-04", "l_commitdate": "1992-06-14", "l_receiptdate": "1992-08-03", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "symptotes. slyly even deposits ar" }, { "l_orderkey": 4992i32, "l_partkey": 70i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 25.0d, "l_extendedprice": 24251.75d, "l_discount": 0.04d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-08-06", "l_commitdate": "1992-07-11", "l_receiptdate": "1992-08-20", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "ly about the never ironic requests. pe" }, { "l_orderkey": 130i32, "l_partkey": 70i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 31.0d, "l_extendedprice": 30072.17d, "l_discount": 0.06d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-09-01", "l_commitdate": "1992-07-18", "l_receiptdate": "1992-09-02", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "thily about the ruth" }, { "l_orderkey": 1253i32, "l_partkey": 70i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 22.0d, "l_extendedprice": 21341.54d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-02-23", "l_commitdate": "1993-04-06", "l_receiptdate": "1993-03-07", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "telets cajole alongside of the final reques" }, { "l_orderkey": 2213i32, "l_partkey": 70i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 1.0d, "l_extendedprice": 970.07d, "l_discount": 0.05d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-04-25", "l_commitdate": "1993-04-06", "l_receiptdate": "1993-04-28", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "s along the ironic reques" }, { "l_orderkey": 5059i32, "l_partkey": 70i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 5.0d, "l_extendedprice": 4850.35d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-12-23", "l_commitdate": "1994-01-12", "l_receiptdate": "1993-12-24", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "ts affix slyly accordi" }, { "l_orderkey": 4455i32, "l_partkey": 70i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 20.0d, "l_extendedprice": 19401.4d, "l_discount": 0.01d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-01-31", "l_commitdate": "1993-11-21", "l_receiptdate": "1994-03-02", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": " express packages. packages boost quickly" }, { "l_orderkey": 417i32, "l_partkey": 70i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 18.0d, "l_extendedprice": 17461.26d, "l_discount": 0.0d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-03-29", "l_commitdate": "1994-04-10", "l_receiptdate": "1994-04-26", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "- final requests sle" }, { "l_orderkey": 2819i32, "l_partkey": 70i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 17.0d, "l_extendedprice": 16491.19d, "l_discount": 0.08d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-07-16", "l_commitdate": "1994-07-15", "l_receiptdate": "1994-07-17", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "en deposits above the f" }, { "l_orderkey": 2949i32, "l_partkey": 70i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 50.0d, "l_extendedprice": 48503.5d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-08-04", "l_commitdate": "1994-06-23", "l_receiptdate": "1994-08-17", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "gular courts cajole across t" }, { "l_orderkey": 3649i32, "l_partkey": 70i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 14.0d, "l_extendedprice": 13580.98d, "l_discount": 0.02d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-09-19", "l_commitdate": "1994-08-17", "l_receiptdate": "1994-10-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "ithely bold accounts wake " }, { "l_orderkey": 5984i32, "l_partkey": 70i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 13.0d, "l_extendedprice": 12610.91d, "l_discount": 0.06d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-10-16", "l_commitdate": "1994-09-06", "l_receiptdate": "1994-11-11", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "lar platelets. f" }, { "l_orderkey": 645i32, "l_partkey": 70i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 46.0d, "l_extendedprice": 44623.22d, "l_discount": 0.1d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-01-04", "l_commitdate": "1995-02-21", "l_receiptdate": "1995-01-21", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": " regular dependencies across the speci" }, { "l_orderkey": 5636i32, "l_partkey": 70i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 26.0d, "l_extendedprice": 25221.82d, "l_discount": 0.03d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-03-05", "l_commitdate": "1995-05-16", "l_receiptdate": "1995-03-23", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": " furiously final pinto beans o" }, { "l_orderkey": 2982i32, "l_partkey": 70i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 21.0d, "l_extendedprice": 20371.47d, "l_discount": 0.01d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-04-19", "l_commitdate": "1995-06-03", "l_receiptdate": "1995-04-28", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "egular ideas use furiously? bl" }, { "l_orderkey": 5636i32, "l_partkey": 70i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 18.0d, "l_extendedprice": 17461.26d, "l_discount": 0.05d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-05-14", "l_commitdate": "1995-05-17", "l_receiptdate": "1995-06-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "slyly express requests. furiously pen" }, { "l_orderkey": 2757i32, "l_partkey": 70i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 14.0d, "l_extendedprice": 13580.98d, "l_discount": 0.04d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-01", "l_commitdate": "1995-08-24", "l_receiptdate": "1995-09-03", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "special deposits u" }, { "l_orderkey": 4513i32, "l_partkey": 70i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 39.0d, "l_extendedprice": 37832.73d, "l_discount": 0.01d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-25", "l_commitdate": "1996-05-14", "l_receiptdate": "1996-07-24", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "slyly furiously unusual deposits. blit" }, { "l_orderkey": 3587i32, "l_partkey": 70i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 12.0d, "l_extendedprice": 11640.84d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-30", "l_commitdate": "1996-07-04", "l_receiptdate": "1996-09-22", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "g the even pinto beans. special," }, { "l_orderkey": 2977i32, "l_partkey": 70i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 25.0d, "l_extendedprice": 24251.75d, "l_discount": 0.03d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-21", "l_commitdate": "1996-10-06", "l_receiptdate": "1996-10-13", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "furiously pe" }, { "l_orderkey": 4197i32, "l_partkey": 70i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 39.0d, "l_extendedprice": 37832.73d, "l_discount": 0.02d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-07", "l_commitdate": "1996-10-11", "l_receiptdate": "1996-10-18", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "ronic requests. quickly bold packages in" }, { "l_orderkey": 3718i32, "l_partkey": 70i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 8.0d, "l_extendedprice": 7760.56d, "l_discount": 0.05d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-06", "l_commitdate": "1996-12-06", "l_receiptdate": "1996-12-15", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": " the even deposits sleep carefully b" }, { "l_orderkey": 5605i32, "l_partkey": 70i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 39.0d, "l_extendedprice": 37832.73d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-13", "l_commitdate": "1996-11-03", "l_receiptdate": "1996-12-24", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "cial deposits. theodolites w" }, { "l_orderkey": 3872i32, "l_partkey": 70i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 42.0d, "l_extendedprice": 40742.94d, "l_discount": 0.03d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-03", "l_commitdate": "1996-10-12", "l_receiptdate": "1997-01-16", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "s the furio" }, { "l_orderkey": 5124i32, "l_partkey": 70i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 36.0d, "l_extendedprice": 34922.52d, "l_discount": 0.1d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-20", "l_commitdate": "1997-07-03", "l_receiptdate": "1997-05-04", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "r deposits ab" }, { "l_orderkey": 3079i32, "l_partkey": 70i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 20.0d, "l_extendedprice": 19401.4d, "l_discount": 0.05d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-10-18", "l_commitdate": "1997-10-26", "l_receiptdate": "1997-11-14", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "ets are according to the quickly dari" }, { "l_orderkey": 1155i32, "l_partkey": 70i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 4.0d, "l_extendedprice": 3880.28d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-10-19", "l_commitdate": "1997-12-09", "l_receiptdate": "1997-11-02", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "ic foxes according to the carefully final " }, { "l_orderkey": 3937i32, "l_partkey": 70i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 48.0d, "l_extendedprice": 46563.36d, "l_discount": 0.1d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-15", "l_commitdate": "1998-02-22", "l_receiptdate": "1998-03-30", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "gainst the thinl" }, { "l_orderkey": 1984i32, "l_partkey": 70i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 35.0d, "l_extendedprice": 33952.45d, "l_discount": 0.01d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-18", "l_commitdate": "1998-05-04", "l_receiptdate": "1998-06-01", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "tes. quickly pending packages haggle boldl" }, { "l_orderkey": 2629i32, "l_partkey": 70i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 33.0d, "l_extendedprice": 32012.31d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-29", "l_commitdate": "1998-05-14", "l_receiptdate": "1998-05-30", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "es. slowly express accounts are along the" }, { "l_orderkey": 1569i32, "l_partkey": 70i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 30.0d, "l_extendedprice": 29102.1d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-19", "l_commitdate": "1998-06-04", "l_receiptdate": "1998-08-10", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "packages. excuses lose evenly carefully reg" } ] }
-{ "partkey": 72i32, "lines": [ { "l_orderkey": 3265i32, "l_partkey": 72i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 7.0d, "l_extendedprice": 6804.49d, "l_discount": 0.09d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-09-16", "l_commitdate": "1992-09-04", "l_receiptdate": "1992-10-14", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "he forges. fluffily regular asym" }, { "l_orderkey": 5635i32, "l_partkey": 72i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 5.0d, "l_extendedprice": 4860.35d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-10-02", "l_commitdate": "1992-11-05", "l_receiptdate": "1992-10-26", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "yly along the ironic, fi" }, { "l_orderkey": 3655i32, "l_partkey": 72i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 35.0d, "l_extendedprice": 34022.45d, "l_discount": 0.04d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-10-17", "l_commitdate": "1992-12-23", "l_receiptdate": "1992-10-28", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "ng foxes cajole fluffily slyly final fo" }, { "l_orderkey": 2560i32, "l_partkey": 72i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 36.0d, "l_extendedprice": 34994.52d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-10-18", "l_commitdate": "1992-10-30", "l_receiptdate": "1992-11-05", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "accounts alongside of the excuses are " }, { "l_orderkey": 5635i32, "l_partkey": 72i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 12.0d, "l_extendedprice": 11664.84d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-10-18", "l_commitdate": "1992-09-24", "l_receiptdate": "1992-11-17", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "ke slyly against the carefully final req" }, { "l_orderkey": 1185i32, "l_partkey": 72i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 8.0d, "l_extendedprice": 7776.56d, "l_discount": 0.01d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-12-05", "l_commitdate": "1992-10-05", "l_receiptdate": "1992-12-28", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "ely according to the furiously regular r" }, { "l_orderkey": 1222i32, "l_partkey": 72i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 12.0d, "l_extendedprice": 11664.84d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-02-12", "l_commitdate": "1993-03-14", "l_receiptdate": "1993-03-12", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "s print permanently unusual packages. " }, { "l_orderkey": 1060i32, "l_partkey": 72i32, "l_suppkey": 2i32, "l_linenumber": 6i32, "l_quantity": 26.0d, "l_extendedprice": 25273.82d, "l_discount": 0.01d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-02-28", "l_commitdate": "1993-04-01", "l_receiptdate": "1993-03-09", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "quickly abo" }, { "l_orderkey": 3238i32, "l_partkey": 72i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 12.0d, "l_extendedprice": 11664.84d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-03-06", "l_commitdate": "1993-05-08", "l_receiptdate": "1993-04-01", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "ackages affix furiously. furiously bol" }, { "l_orderkey": 2594i32, "l_partkey": 72i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 7.0d, "l_extendedprice": 6804.49d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-03-26", "l_commitdate": "1993-03-05", "l_receiptdate": "1993-04-24", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "arls cajole " }, { "l_orderkey": 4806i32, "l_partkey": 72i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 6.0d, "l_extendedprice": 5832.42d, "l_discount": 0.01d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-05-17", "l_commitdate": "1993-07-19", "l_receiptdate": "1993-05-29", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "even theodolites. packages sl" }, { "l_orderkey": 2435i32, "l_partkey": 72i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 3.0d, "l_extendedprice": 2916.21d, "l_discount": 0.07d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-06-01", "l_commitdate": "1993-03-25", "l_receiptdate": "1993-06-27", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": " final accounts ar" }, { "l_orderkey": 2821i32, "l_partkey": 72i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 4.0d, "l_extendedprice": 3888.28d, "l_discount": 0.09d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-11-19", "l_commitdate": "1993-09-20", "l_receiptdate": "1993-11-27", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "ual multipliers. final deposits cajol" }, { "l_orderkey": 2756i32, "l_partkey": 72i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 30.0d, "l_extendedprice": 29162.1d, "l_discount": 0.0d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-06-05", "l_commitdate": "1994-06-30", "l_receiptdate": "1994-06-14", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "ular packages. regular deposi" }, { "l_orderkey": 4898i32, "l_partkey": 72i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 44.0d, "l_extendedprice": 42771.08d, "l_discount": 0.07d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-09-13", "l_commitdate": "1994-08-18", "l_receiptdate": "1994-09-16", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "y regular grouches about" }, { "l_orderkey": 3393i32, "l_partkey": 72i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 48.0d, "l_extendedprice": 46659.36d, "l_discount": 0.06d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-12", "l_commitdate": "1995-09-15", "l_receiptdate": "1995-08-02", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": " blithely final reques" }, { "l_orderkey": 4742i32, "l_partkey": 72i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 15.0d, "l_extendedprice": 14581.05d, "l_discount": 0.06d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-20", "l_commitdate": "1995-05-26", "l_receiptdate": "1995-08-11", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "terns are sl" }, { "l_orderkey": 4672i32, "l_partkey": 72i32, "l_suppkey": 10i32, "l_linenumber": 7i32, "l_quantity": 38.0d, "l_extendedprice": 36938.66d, "l_discount": 0.01d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-28", "l_commitdate": "1995-12-08", "l_receiptdate": "1995-12-13", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "ests. idle, regular ex" }, { "l_orderkey": 3174i32, "l_partkey": 72i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 39.0d, "l_extendedprice": 37910.73d, "l_discount": 0.02d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-02", "l_commitdate": "1996-02-08", "l_receiptdate": "1995-12-12", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": " wake slyly foxes. bold requests p" }, { "l_orderkey": 2945i32, "l_partkey": 72i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 30.0d, "l_extendedprice": 29162.1d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-19", "l_commitdate": "1996-02-11", "l_receiptdate": "1996-01-26", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "ular instructions" }, { "l_orderkey": 1988i32, "l_partkey": 72i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 36.0d, "l_extendedprice": 34994.52d, "l_discount": 0.09d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-21", "l_commitdate": "1995-11-24", "l_receiptdate": "1996-01-27", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "gular theodolites. " }, { "l_orderkey": 3558i32, "l_partkey": 72i32, "l_suppkey": 1i32, "l_linenumber": 6i32, "l_quantity": 17.0d, "l_extendedprice": 16525.19d, "l_discount": 0.07d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-14", "l_commitdate": "1996-05-04", "l_receiptdate": "1996-04-05", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "ithely unusual packa" }, { "l_orderkey": 486i32, "l_partkey": 72i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 38.0d, "l_extendedprice": 36938.66d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-07", "l_commitdate": "1996-04-26", "l_receiptdate": "1996-05-26", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": " blithely final pinto " }, { "l_orderkey": 5443i32, "l_partkey": 72i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 39.0d, "l_extendedprice": 37910.73d, "l_discount": 0.03d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-01", "l_commitdate": "1996-11-30", "l_receiptdate": "1996-11-19", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "gage carefully across the furiously" }, { "l_orderkey": 4005i32, "l_partkey": 72i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 28.0d, "l_extendedprice": 27217.96d, "l_discount": 0.03d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-08", "l_commitdate": "1997-01-14", "l_receiptdate": "1996-12-30", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "y pending dependenc" }, { "l_orderkey": 5540i32, "l_partkey": 72i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 24.0d, "l_extendedprice": 23329.68d, "l_discount": 0.1d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-09", "l_commitdate": "1996-12-02", "l_receiptdate": "1997-01-23", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "deposits! ironic depths may engage-- b" }, { "l_orderkey": 3013i32, "l_partkey": 72i32, "l_suppkey": 2i32, "l_linenumber": 6i32, "l_quantity": 19.0d, "l_extendedprice": 18469.33d, "l_discount": 0.08d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-11", "l_commitdate": "1997-04-18", "l_receiptdate": "1997-05-15", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "fluffily pending packages nag furiously al" }, { "l_orderkey": 3969i32, "l_partkey": 72i32, "l_suppkey": 3i32, "l_linenumber": 5i32, "l_quantity": 40.0d, "l_extendedprice": 38882.8d, "l_discount": 0.09d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-19", "l_commitdate": "1997-08-02", "l_receiptdate": "1997-06-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "lar requests cajole furiously blithely regu" }, { "l_orderkey": 1441i32, "l_partkey": 72i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 34.0d, "l_extendedprice": 33050.38d, "l_discount": 0.09d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-12", "l_commitdate": "1997-05-11", "l_receiptdate": "1997-06-29", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "e carefully. blithely ironic dep" }, { "l_orderkey": 5313i32, "l_partkey": 72i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 30.0d, "l_extendedprice": 29162.1d, "l_discount": 0.06d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-27", "l_commitdate": "1997-07-18", "l_receiptdate": "1997-06-30", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "nding packages use" }, { "l_orderkey": 3077i32, "l_partkey": 72i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 25.0d, "l_extendedprice": 24301.75d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-14", "l_commitdate": "1997-10-16", "l_receiptdate": "1997-10-06", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "lent account" }, { "l_orderkey": 2501i32, "l_partkey": 72i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 20.0d, "l_extendedprice": 19441.4d, "l_discount": 0.1d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-23", "l_commitdate": "1997-07-01", "l_receiptdate": "1997-10-03", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "equests. furiou" }, { "l_orderkey": 1477i32, "l_partkey": 72i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 31.0d, "l_extendedprice": 30134.17d, "l_discount": 0.0d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-16", "l_commitdate": "1997-09-30", "l_receiptdate": "1997-12-17", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": " requests. fluffily final " }, { "l_orderkey": 1446i32, "l_partkey": 72i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 31.0d, "l_extendedprice": 30134.17d, "l_discount": 0.1d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-01", "l_commitdate": "1998-05-17", "l_receiptdate": "1998-05-30", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": ". slyly reg" }, { "l_orderkey": 4196i32, "l_partkey": 72i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 3.0d, "l_extendedprice": 2916.21d, "l_discount": 0.01d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-17", "l_commitdate": "1998-07-21", "l_receiptdate": "1998-05-18", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": " accounts. fu" }, { "l_orderkey": 800i32, "l_partkey": 72i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 38.0d, "l_extendedprice": 36938.66d, "l_discount": 0.0d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-21", "l_commitdate": "1998-09-25", "l_receiptdate": "1998-08-07", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "according to the bold, final dependencies " } ] }
-{ "partkey": 77i32, "lines": [ { "l_orderkey": 4900i32, "l_partkey": 77i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 33.0d, "l_extendedprice": 32243.31d, "l_discount": 0.06d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-08-18", "l_commitdate": "1992-09-20", "l_receiptdate": "1992-08-19", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "nto beans nag slyly reg" }, { "l_orderkey": 2497i32, "l_partkey": 77i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 15.0d, "l_extendedprice": 14656.05d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-12-23", "l_commitdate": "1992-11-20", "l_receiptdate": "1993-01-18", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "sly against the" }, { "l_orderkey": 4166i32, "l_partkey": 77i32, "l_suppkey": 6i32, "l_linenumber": 5i32, "l_quantity": 5.0d, "l_extendedprice": 4885.35d, "l_discount": 0.08d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-06-19", "l_commitdate": "1993-04-24", "l_receiptdate": "1993-06-27", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "hely unusual packages are above the f" }, { "l_orderkey": 3494i32, "l_partkey": 77i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 30.0d, "l_extendedprice": 29312.1d, "l_discount": 0.04d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-07-01", "l_commitdate": "1993-06-08", "l_receiptdate": "1993-07-15", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "ns are quickly regular, " }, { "l_orderkey": 5702i32, "l_partkey": 77i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 44.0d, "l_extendedprice": 42991.08d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-01-04", "l_commitdate": "1993-11-25", "l_receiptdate": "1994-01-22", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "lites. carefully final requests doze b" }, { "l_orderkey": 5059i32, "l_partkey": 77i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 45.0d, "l_extendedprice": 43968.15d, "l_discount": 0.02d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-01-28", "l_commitdate": "1994-01-08", "l_receiptdate": "1994-02-18", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "enly. requests doze. express, close pa" }, { "l_orderkey": 4708i32, "l_partkey": 77i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 32.0d, "l_extendedprice": 31266.24d, "l_discount": 0.04d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-11-12", "l_commitdate": "1994-11-14", "l_receiptdate": "1994-11-23", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "the accounts. e" }, { "l_orderkey": 1891i32, "l_partkey": 77i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 45.0d, "l_extendedprice": 43968.15d, "l_discount": 0.07d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-12-20", "l_commitdate": "1995-01-16", "l_receiptdate": "1995-01-05", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "ests along" }, { "l_orderkey": 1411i32, "l_partkey": 77i32, "l_suppkey": 6i32, "l_linenumber": 6i32, "l_quantity": 30.0d, "l_extendedprice": 29312.1d, "l_discount": 0.09d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-01-12", "l_commitdate": "1995-02-01", "l_receiptdate": "1995-01-23", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "ious foxes wake courts. caref" }, { "l_orderkey": 5889i32, "l_partkey": 77i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 17.0d, "l_extendedprice": 16610.19d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-01", "l_commitdate": "1995-08-12", "l_receiptdate": "1995-07-25", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "blithely pending packages. flu" }, { "l_orderkey": 4546i32, "l_partkey": 77i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 4.0d, "l_extendedprice": 3908.28d, "l_discount": 0.06d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-14", "l_commitdate": "1995-10-07", "l_receiptdate": "1995-08-16", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "kly pending dependencies along the furio" }, { "l_orderkey": 4929i32, "l_partkey": 77i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 32.0d, "l_extendedprice": 31266.24d, "l_discount": 0.08d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-04-28", "l_commitdate": "1996-05-23", "l_receiptdate": "1996-04-30", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "usly at the blithely pending pl" }, { "l_orderkey": 4293i32, "l_partkey": 77i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 50.0d, "l_extendedprice": 48853.5d, "l_discount": 0.01d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-27", "l_commitdate": "1996-10-30", "l_receiptdate": "1996-12-22", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": " special deposits. furiousl" }, { "l_orderkey": 5824i32, "l_partkey": 77i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 40.0d, "l_extendedprice": 39082.8d, "l_discount": 0.06d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-14", "l_commitdate": "1997-01-17", "l_receiptdate": "1997-02-02", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "he final packag" }, { "l_orderkey": 1635i32, "l_partkey": 77i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 40.0d, "l_extendedprice": 39082.8d, "l_discount": 0.01d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-25", "l_commitdate": "1997-03-20", "l_receiptdate": "1997-03-12", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "uriously up the ironic deposits. slyly i" }, { "l_orderkey": 484i32, "l_partkey": 77i32, "l_suppkey": 6i32, "l_linenumber": 5i32, "l_quantity": 48.0d, "l_extendedprice": 46899.36d, "l_discount": 0.0d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-05", "l_commitdate": "1997-02-08", "l_receiptdate": "1997-03-22", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "l, bold packages? even mult" }, { "l_orderkey": 3815i32, "l_partkey": 77i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 3.0d, "l_extendedprice": 2931.21d, "l_discount": 0.07d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-11-16", "l_commitdate": "1997-11-15", "l_receiptdate": "1997-11-30", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "egular, express ideas. ironic, final dep" }, { "l_orderkey": 5477i32, "l_partkey": 77i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 21.0d, "l_extendedprice": 20518.47d, "l_discount": 0.03d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-28", "l_commitdate": "1998-02-15", "l_receiptdate": "1998-02-24", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "blate slyly. silent" }, { "l_orderkey": 1157i32, "l_partkey": 77i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 46.0d, "l_extendedprice": 44945.22d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-19", "l_commitdate": "1998-03-13", "l_receiptdate": "1998-04-23", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "slyly regular excuses. accounts" }, { "l_orderkey": 451i32, "l_partkey": 77i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 28.0d, "l_extendedprice": 27357.96d, "l_discount": 0.04d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-16", "l_commitdate": "1998-07-09", "l_receiptdate": "1998-06-17", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": " theodolites. even cou" } ] }
-{ "partkey": 88i32, "lines": [ { "l_orderkey": 3970i32, "l_partkey": 88i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 2.0d, "l_extendedprice": 1976.16d, "l_discount": 0.01d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-04-24", "l_commitdate": "1992-06-03", "l_receiptdate": "1992-05-16", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "carefully pending foxes wake blithely " }, { "l_orderkey": 3842i32, "l_partkey": 88i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 15.0d, "l_extendedprice": 14821.2d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-06-26", "l_commitdate": "1992-06-23", "l_receiptdate": "1992-07-09", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "ave packages are slyl" }, { "l_orderkey": 612i32, "l_partkey": 88i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 1.0d, "l_extendedprice": 988.08d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-12-18", "l_commitdate": "1992-12-13", "l_receiptdate": "1992-12-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": " requests." }, { "l_orderkey": 5703i32, "l_partkey": 88i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 2.0d, "l_extendedprice": 1976.16d, "l_discount": 0.09d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-05-29", "l_commitdate": "1993-07-26", "l_receiptdate": "1993-06-05", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "nts against the blithely sile" }, { "l_orderkey": 5957i32, "l_partkey": 88i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 40.0d, "l_extendedprice": 39523.2d, "l_discount": 0.04d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-01-07", "l_commitdate": "1994-02-05", "l_receiptdate": "1994-01-26", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "ironic asymptotes sleep blithely again" }, { "l_orderkey": 3072i32, "l_partkey": 88i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 1.0d, "l_extendedprice": 988.08d, "l_discount": 0.01d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-02-26", "l_commitdate": "1994-03-14", "l_receiptdate": "1994-03-19", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": " slyly ironic attainments. car" }, { "l_orderkey": 1792i32, "l_partkey": 88i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 9.0d, "l_extendedprice": 8892.72d, "l_discount": 0.09d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-02-28", "l_commitdate": "1993-12-11", "l_receiptdate": "1994-03-12", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "final packages s" }, { "l_orderkey": 99i32, "l_partkey": 88i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 10.0d, "l_extendedprice": 9880.8d, "l_discount": 0.02d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-05-18", "l_commitdate": "1994-06-03", "l_receiptdate": "1994-05-23", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "kages. requ" }, { "l_orderkey": 1059i32, "l_partkey": 88i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 45.0d, "l_extendedprice": 44463.6d, "l_discount": 0.0d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-06-10", "l_commitdate": "1994-05-08", "l_receiptdate": "1994-06-21", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "riously even theodolites. slyly regula" }, { "l_orderkey": 837i32, "l_partkey": 88i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 24.0d, "l_extendedprice": 23713.92d, "l_discount": 0.08d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-06-27", "l_commitdate": "1994-09-02", "l_receiptdate": "1994-07-27", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "p carefully. theodolites use. bold courts a" }, { "l_orderkey": 2854i32, "l_partkey": 88i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 29.0d, "l_extendedprice": 28654.32d, "l_discount": 0.09d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-07-06", "l_commitdate": "1994-08-26", "l_receiptdate": "1994-07-09", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "y slyly ironic accounts. foxes haggle slyl" }, { "l_orderkey": 1031i32, "l_partkey": 88i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 7.0d, "l_extendedprice": 6916.56d, "l_discount": 0.03d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-12-07", "l_commitdate": "1994-11-11", "l_receiptdate": "1994-12-30", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "r instructions. car" }, { "l_orderkey": 3588i32, "l_partkey": 88i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 6.0d, "l_extendedprice": 5928.48d, "l_discount": 0.06d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-04-09", "l_commitdate": "1995-05-30", "l_receiptdate": "1995-04-10", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "s. fluffily fluf" }, { "l_orderkey": 483i32, "l_partkey": 88i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 9.0d, "l_extendedprice": 8892.72d, "l_discount": 0.04d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-10", "l_commitdate": "1995-09-02", "l_receiptdate": "1995-09-13", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": " carefully express ins" }, { "l_orderkey": 3045i32, "l_partkey": 88i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 41.0d, "l_extendedprice": 40511.28d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-30", "l_commitdate": "1995-11-24", "l_receiptdate": "1995-10-03", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "ely final foxes. carefully ironic pinto b" }, { "l_orderkey": 2181i32, "l_partkey": 88i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 46.0d, "l_extendedprice": 45451.68d, "l_discount": 0.0d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-28", "l_commitdate": "1995-10-17", "l_receiptdate": "1995-12-26", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "osits. final packages sleep" }, { "l_orderkey": 4640i32, "l_partkey": 88i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 5.0d, "l_extendedprice": 4940.4d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-02-05", "l_commitdate": "1996-02-14", "l_receiptdate": "1996-02-15", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": " warthogs against the regular" }, { "l_orderkey": 4640i32, "l_partkey": 88i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 9.0d, "l_extendedprice": 8892.72d, "l_discount": 0.03d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-02-12", "l_commitdate": "1996-02-14", "l_receiptdate": "1996-02-29", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": " accounts. unu" }, { "l_orderkey": 2595i32, "l_partkey": 88i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 30.0d, "l_extendedprice": 29642.4d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-05", "l_commitdate": "1996-02-23", "l_receiptdate": "1996-03-19", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "ctions. regula" }, { "l_orderkey": 3394i32, "l_partkey": 88i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 26.0d, "l_extendedprice": 25690.08d, "l_discount": 0.01d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-08", "l_commitdate": "1996-06-12", "l_receiptdate": "1996-09-05", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "its use furiously. even, even account" }, { "l_orderkey": 4293i32, "l_partkey": 88i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 25.0d, "l_extendedprice": 24702.0d, "l_discount": 0.04d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-11", "l_commitdate": "1996-11-14", "l_receiptdate": "1996-09-22", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "inal asympt" }, { "l_orderkey": 2375i32, "l_partkey": 88i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 42.0d, "l_extendedprice": 41499.36d, "l_discount": 0.01d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-24", "l_commitdate": "1997-02-15", "l_receiptdate": "1997-02-07", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "apades. idea" }, { "l_orderkey": 2469i32, "l_partkey": 88i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 35.0d, "l_extendedprice": 34582.8d, "l_discount": 0.06d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-04", "l_commitdate": "1997-02-02", "l_receiptdate": "1997-02-17", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "ld packages haggle regular frets. fluffily " }, { "l_orderkey": 67i32, "l_partkey": 88i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 44.0d, "l_extendedprice": 43475.52d, "l_discount": 0.08d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-18", "l_commitdate": "1997-01-29", "l_receiptdate": "1997-04-13", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "se quickly above the even, express reques" }, { "l_orderkey": 3623i32, "l_partkey": 88i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 30.0d, "l_extendedprice": 29642.4d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-04", "l_commitdate": "1997-03-03", "l_receiptdate": "1997-05-01", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": " ironic somas sleep fluffily" }, { "l_orderkey": 5158i32, "l_partkey": 88i32, "l_suppkey": 9i32, "l_linenumber": 6i32, "l_quantity": 39.0d, "l_extendedprice": 38535.12d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-15", "l_commitdate": "1997-04-04", "l_receiptdate": "1997-06-02", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "lithely fina" }, { "l_orderkey": 3878i32, "l_partkey": 88i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 13.0d, "l_extendedprice": 12845.04d, "l_discount": 0.01d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-08", "l_commitdate": "1997-06-03", "l_receiptdate": "1997-06-25", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "leep ruthlessly about the carefu" }, { "l_orderkey": 5442i32, "l_partkey": 88i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 45.0d, "l_extendedprice": 44463.6d, "l_discount": 0.08d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-30", "l_commitdate": "1998-02-24", "l_receiptdate": "1998-04-18", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "old slyly after " }, { "l_orderkey": 5184i32, "l_partkey": 88i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 39.0d, "l_extendedprice": 38535.12d, "l_discount": 0.03d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-10-27", "l_commitdate": "1998-10-17", "l_receiptdate": "1998-11-19", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "es above the care" } ] }
-{ "partkey": 89i32, "lines": [ { "l_orderkey": 2688i32, "l_partkey": 89i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 30.0d, "l_extendedprice": 29672.4d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-04-18", "l_commitdate": "1992-03-18", "l_receiptdate": "1992-05-18", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "ithely final " }, { "l_orderkey": 4705i32, "l_partkey": 89i32, "l_suppkey": 10i32, "l_linenumber": 7i32, "l_quantity": 40.0d, "l_extendedprice": 39563.2d, "l_discount": 0.08d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-04-19", "l_commitdate": "1992-04-28", "l_receiptdate": "1992-05-07", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "blithely. sly" }, { "l_orderkey": 5121i32, "l_partkey": 89i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 46.0d, "l_extendedprice": 45497.68d, "l_discount": 0.03d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-05-27", "l_commitdate": "1992-07-19", "l_receiptdate": "1992-05-28", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "use express foxes. slyly " }, { "l_orderkey": 3140i32, "l_partkey": 89i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 10.0d, "l_extendedprice": 9890.8d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-05-30", "l_commitdate": "1992-05-09", "l_receiptdate": "1992-06-09", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "accounts. expres" }, { "l_orderkey": 5190i32, "l_partkey": 89i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 45.0d, "l_extendedprice": 44508.6d, "l_discount": 0.04d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-07-23", "l_commitdate": "1992-06-16", "l_receiptdate": "1992-08-04", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "y carefully final ideas. f" }, { "l_orderkey": 4384i32, "l_partkey": 89i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 11.0d, "l_extendedprice": 10879.88d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-08-31", "l_commitdate": "1992-10-04", "l_receiptdate": "1992-09-28", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "deposits promise carefully even, regular e" }, { "l_orderkey": 4384i32, "l_partkey": 89i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 38.0d, "l_extendedprice": 37585.04d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-10-18", "l_commitdate": "1992-09-24", "l_receiptdate": "1992-11-04", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "ly final requests. regu" }, { "l_orderkey": 4416i32, "l_partkey": 89i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 3.0d, "l_extendedprice": 2967.24d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-10-22", "l_commitdate": "1992-08-06", "l_receiptdate": "1992-11-13", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": " requests sleep along the " }, { "l_orderkey": 1058i32, "l_partkey": 89i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 5.0d, "l_extendedprice": 4945.4d, "l_discount": 0.04d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-05-11", "l_commitdate": "1993-05-29", "l_receiptdate": "1993-05-27", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "refully even requests boost along" }, { "l_orderkey": 256i32, "l_partkey": 89i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 22.0d, "l_extendedprice": 21759.76d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-01-12", "l_commitdate": "1993-12-28", "l_receiptdate": "1994-01-26", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "ke quickly ironic, ironic deposits. reg" }, { "l_orderkey": 2753i32, "l_partkey": 89i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 30.0d, "l_extendedprice": 29672.4d, "l_discount": 0.0d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-01-26", "l_commitdate": "1994-01-29", "l_receiptdate": "1994-02-02", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "ans wake fluffily blithely iro" }, { "l_orderkey": 3649i32, "l_partkey": 89i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 23.0d, "l_extendedprice": 22748.84d, "l_discount": 0.08d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-09-26", "l_commitdate": "1994-10-01", "l_receiptdate": "1994-09-28", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "rs promise blithe" }, { "l_orderkey": 3110i32, "l_partkey": 89i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 1.0d, "l_extendedprice": 989.08d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-01-15", "l_commitdate": "1995-01-20", "l_receiptdate": "1995-01-30", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "c theodolites a" }, { "l_orderkey": 1702i32, "l_partkey": 89i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 34.0d, "l_extendedprice": 33628.72d, "l_discount": 0.01d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-04", "l_commitdate": "1995-06-08", "l_receiptdate": "1995-07-28", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "y careful packages; dogged acco" }, { "l_orderkey": 5568i32, "l_partkey": 89i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 35.0d, "l_extendedprice": 34617.8d, "l_discount": 0.08d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-17", "l_commitdate": "1995-09-04", "l_receiptdate": "1995-10-14", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "lyly. blit" }, { "l_orderkey": 4i32, "l_partkey": 89i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 30.0d, "l_extendedprice": 29672.4d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-10", "l_commitdate": "1995-12-14", "l_receiptdate": "1996-01-18", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "- quickly regular packages sleep. idly" }, { "l_orderkey": 3622i32, "l_partkey": 89i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 4.0d, "l_extendedprice": 3956.32d, "l_discount": 0.04d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-02-03", "l_commitdate": "1996-02-19", "l_receiptdate": "1996-02-16", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "lithely brave foxes. furi" }, { "l_orderkey": 5925i32, "l_partkey": 89i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 50.0d, "l_extendedprice": 49454.0d, "l_discount": 0.03d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-02-14", "l_commitdate": "1996-01-10", "l_receiptdate": "1996-02-15", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "es. stealthily express pains print bli" }, { "l_orderkey": 3940i32, "l_partkey": 89i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 8.0d, "l_extendedprice": 7912.64d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-04-04", "l_commitdate": "1996-04-12", "l_receiptdate": "1996-04-18", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "ions cajole furiously regular pinto beans. " }, { "l_orderkey": 5186i32, "l_partkey": 89i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 26.0d, "l_extendedprice": 25716.08d, "l_discount": 0.03d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-08", "l_commitdate": "1996-10-05", "l_receiptdate": "1996-08-21", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "capades. accounts sublate. pinto" }, { "l_orderkey": 2405i32, "l_partkey": 89i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 18.0d, "l_extendedprice": 17803.44d, "l_discount": 0.09d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-23", "l_commitdate": "1997-03-10", "l_receiptdate": "1997-02-03", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "carefully ironic accounts. slyly " }, { "l_orderkey": 3429i32, "l_partkey": 89i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 28.0d, "l_extendedprice": 27694.24d, "l_discount": 0.1d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-30", "l_commitdate": "1997-03-18", "l_receiptdate": "1997-02-17", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "nstructions boost. thin" }, { "l_orderkey": 5762i32, "l_partkey": 89i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 40.0d, "l_extendedprice": 39563.2d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-30", "l_commitdate": "1997-05-09", "l_receiptdate": "1997-05-08", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "al instructions. furiousl" }, { "l_orderkey": 102i32, "l_partkey": 89i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 37.0d, "l_extendedprice": 36595.96d, "l_discount": 0.06d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-24", "l_commitdate": "1997-08-02", "l_receiptdate": "1997-08-07", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "ully across the ideas. final deposit" }, { "l_orderkey": 2081i32, "l_partkey": 89i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 26.0d, "l_extendedprice": 25716.08d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-10-21", "l_commitdate": "1997-10-03", "l_receiptdate": "1997-11-10", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "among the slyly express accounts. silen" }, { "l_orderkey": 3170i32, "l_partkey": 89i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 27.0d, "l_extendedprice": 26705.16d, "l_discount": 0.0d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-02-25", "l_commitdate": "1998-01-29", "l_receiptdate": "1998-02-27", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "efully bold foxes. regular, ev" }, { "l_orderkey": 4549i32, "l_partkey": 89i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 1.0d, "l_extendedprice": 989.08d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-04", "l_commitdate": "1998-04-11", "l_receiptdate": "1998-05-14", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": " requests wake. furiously even " }, { "l_orderkey": 34i32, "l_partkey": 89i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 13.0d, "l_extendedprice": 12858.04d, "l_discount": 0.0d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-10-23", "l_commitdate": "1998-09-14", "l_receiptdate": "1998-11-06", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "nic accounts. deposits are alon" } ] }
-{ "partkey": 92i32, "lines": [ { "l_orderkey": 2755i32, "l_partkey": 92i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 19.0d, "l_extendedprice": 18849.71d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-02-11", "l_commitdate": "1992-03-15", "l_receiptdate": "1992-02-14", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "furiously special deposits" }, { "l_orderkey": 487i32, "l_partkey": 92i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 47.0d, "l_extendedprice": 46628.23d, "l_discount": 0.06d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-09-30", "l_commitdate": "1992-10-08", "l_receiptdate": "1992-10-24", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "tions. blithely reg" }, { "l_orderkey": 164i32, "l_partkey": 92i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 26.0d, "l_extendedprice": 25794.34d, "l_discount": 0.09d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-01-04", "l_commitdate": "1992-11-21", "l_receiptdate": "1993-01-07", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "s. blithely special courts are blithel" }, { "l_orderkey": 1280i32, "l_partkey": 92i32, "l_suppkey": 6i32, "l_linenumber": 7i32, "l_quantity": 19.0d, "l_extendedprice": 18849.71d, "l_discount": 0.02d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-02-07", "l_commitdate": "1993-02-28", "l_receiptdate": "1993-02-12", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "lyly along the furiously regular " }, { "l_orderkey": 3776i32, "l_partkey": 92i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 49.0d, "l_extendedprice": 48612.41d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-02-11", "l_commitdate": "1993-01-06", "l_receiptdate": "1993-02-27", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "es: careful warthogs haggle fluffi" }, { "l_orderkey": 5571i32, "l_partkey": 92i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 18.0d, "l_extendedprice": 17857.62d, "l_discount": 0.1d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-03-11", "l_commitdate": "1993-02-28", "l_receiptdate": "1993-04-03", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "uests haggle furiously pending d" }, { "l_orderkey": 3908i32, "l_partkey": 92i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 50.0d, "l_extendedprice": 49604.5d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-06-19", "l_commitdate": "1993-04-27", "l_receiptdate": "1993-07-05", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": " even accounts wake " }, { "l_orderkey": 5094i32, "l_partkey": 92i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 11.0d, "l_extendedprice": 10912.99d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-06-25", "l_commitdate": "1993-06-24", "l_receiptdate": "1993-07-18", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "s cajole quickly against the furiously ex" }, { "l_orderkey": 4615i32, "l_partkey": 92i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 10.0d, "l_extendedprice": 9920.9d, "l_discount": 0.02d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-11-20", "l_commitdate": "1993-10-05", "l_receiptdate": "1993-12-08", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "sits. slyly express deposits are" }, { "l_orderkey": 4580i32, "l_partkey": 92i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 22.0d, "l_extendedprice": 21825.98d, "l_discount": 0.01d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-01-16", "l_commitdate": "1994-01-26", "l_receiptdate": "1994-02-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "nticingly final packag" }, { "l_orderkey": 2144i32, "l_partkey": 92i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 33.0d, "l_extendedprice": 32738.97d, "l_discount": 0.0d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-04-04", "l_commitdate": "1994-06-20", "l_receiptdate": "1994-04-23", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": " ironic excuses haggle final dependencies. " }, { "l_orderkey": 1986i32, "l_partkey": 92i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 12.0d, "l_extendedprice": 11905.08d, "l_discount": 0.06d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-08-17", "l_commitdate": "1994-06-28", "l_receiptdate": "1994-09-02", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "sleep furiously fluffily final" }, { "l_orderkey": 2724i32, "l_partkey": 92i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 47.0d, "l_extendedprice": 46628.23d, "l_discount": 0.09d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-11-23", "l_commitdate": "1994-11-13", "l_receiptdate": "1994-12-03", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "unusual patterns nag. special p" }, { "l_orderkey": 295i32, "l_partkey": 92i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 26.0d, "l_extendedprice": 25794.34d, "l_discount": 0.04d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-12-13", "l_commitdate": "1994-11-30", "l_receiptdate": "1995-01-06", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "ts above the slyly regular requests x-ray q" }, { "l_orderkey": 2948i32, "l_partkey": 92i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 49.0d, "l_extendedprice": 48612.41d, "l_discount": 0.04d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-12-16", "l_commitdate": "1994-11-08", "l_receiptdate": "1995-01-07", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "ress requests. furiously blithe foxes " }, { "l_orderkey": 1474i32, "l_partkey": 92i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 18.0d, "l_extendedprice": 17857.62d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-01-23", "l_commitdate": "1995-03-28", "l_receiptdate": "1995-02-03", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "after the special" }, { "l_orderkey": 3911i32, "l_partkey": 92i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 12.0d, "l_extendedprice": 11905.08d, "l_discount": 0.1d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-04-04", "l_commitdate": "1995-04-16", "l_receiptdate": "1995-04-10", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "uctions. blithely regula" }, { "l_orderkey": 2658i32, "l_partkey": 92i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 22.0d, "l_extendedprice": 21825.98d, "l_discount": 0.04d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-02", "l_commitdate": "1995-11-03", "l_receiptdate": "1995-12-26", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": " dependencies. blithely pending foxes abou" }, { "l_orderkey": 3174i32, "l_partkey": 92i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 21.0d, "l_extendedprice": 20833.89d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-02-20", "l_commitdate": "1995-12-28", "l_receiptdate": "1996-03-17", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "iously. idly bold theodolites a" }, { "l_orderkey": 4801i32, "l_partkey": 92i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 39.0d, "l_extendedprice": 38691.51d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-19", "l_commitdate": "1996-03-21", "l_receiptdate": "1996-04-17", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "warhorses wake never for the care" }, { "l_orderkey": 3010i32, "l_partkey": 92i32, "l_suppkey": 3i32, "l_linenumber": 6i32, "l_quantity": 38.0d, "l_extendedprice": 37699.42d, "l_discount": 0.05d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-04-15", "l_commitdate": "1996-03-16", "l_receiptdate": "1996-04-21", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "accounts ar" }, { "l_orderkey": 1153i32, "l_partkey": 92i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 43.0d, "l_extendedprice": 42659.87d, "l_discount": 0.01d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-09", "l_commitdate": "1996-06-01", "l_receiptdate": "1996-07-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "special instructions are. unusual, final du" }, { "l_orderkey": 1186i32, "l_partkey": 92i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 11.0d, "l_extendedprice": 10912.99d, "l_discount": 0.07d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-03", "l_commitdate": "1996-10-21", "l_receiptdate": "1996-10-17", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "s haggle furiously; slyl" }, { "l_orderkey": 5987i32, "l_partkey": 92i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 43.0d, "l_extendedprice": 42659.87d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-30", "l_commitdate": "1996-10-13", "l_receiptdate": "1996-11-12", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "theodolites wake above the furiously b" }, { "l_orderkey": 1122i32, "l_partkey": 92i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 8.0d, "l_extendedprice": 7936.72d, "l_discount": 0.1d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-02", "l_commitdate": "1997-04-03", "l_receiptdate": "1997-02-22", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "c foxes are along the slyly r" }, { "l_orderkey": 5824i32, "l_partkey": 92i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 32.0d, "l_extendedprice": 31746.88d, "l_discount": 0.03d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-16", "l_commitdate": "1997-01-24", "l_receiptdate": "1997-02-20", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "ven requests. " }, { "l_orderkey": 5606i32, "l_partkey": 92i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 34.0d, "l_extendedprice": 33731.06d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-23", "l_commitdate": "1997-02-08", "l_receiptdate": "1997-03-09", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "uses. slyly final " }, { "l_orderkey": 3490i32, "l_partkey": 92i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 43.0d, "l_extendedprice": 42659.87d, "l_discount": 0.05d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-04", "l_commitdate": "1997-08-06", "l_receiptdate": "1997-08-14", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": ". even requests cajol" }, { "l_orderkey": 1252i32, "l_partkey": 92i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 11.0d, "l_extendedprice": 10912.99d, "l_discount": 0.1d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-10-16", "l_commitdate": "1997-09-22", "l_receiptdate": "1997-10-28", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "s are. slyly final requests among the" }, { "l_orderkey": 992i32, "l_partkey": 92i32, "l_suppkey": 4i32, "l_linenumber": 5i32, "l_quantity": 7.0d, "l_extendedprice": 6944.63d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-11-30", "l_commitdate": "1997-12-24", "l_receiptdate": "1997-12-16", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "ideas haggle. special theodolit" } ] }
-{ "partkey": 93i32, "lines": [ { "l_orderkey": 2881i32, "l_partkey": 93i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 21.0d, "l_extendedprice": 20854.89d, "l_discount": 0.07d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-05-28", "l_commitdate": "1992-07-03", "l_receiptdate": "1992-06-02", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "hely express Tiresias. final dependencies " }, { "l_orderkey": 384i32, "l_partkey": 93i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 11.0d, "l_extendedprice": 10923.99d, "l_discount": 0.0d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-06-24", "l_commitdate": "1992-05-29", "l_receiptdate": "1992-07-22", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "nic excuses are furiously above the blith" }, { "l_orderkey": 3654i32, "l_partkey": 93i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 29.0d, "l_extendedprice": 28799.61d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-09-11", "l_commitdate": "1992-07-20", "l_receiptdate": "1992-10-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "odolites detect. quickly r" }, { "l_orderkey": 4487i32, "l_partkey": 93i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 25.0d, "l_extendedprice": 24827.25d, "l_discount": 0.07d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-03-09", "l_commitdate": "1993-04-27", "l_receiptdate": "1993-03-30", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "g the final instructions. slyly c" }, { "l_orderkey": 640i32, "l_partkey": 93i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 49.0d, "l_extendedprice": 48661.41d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-03-27", "l_commitdate": "1993-04-17", "l_receiptdate": "1993-04-15", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "s haggle slyly" }, { "l_orderkey": 4166i32, "l_partkey": 93i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 8.0d, "l_extendedprice": 7944.72d, "l_discount": 0.06d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-06-07", "l_commitdate": "1993-04-17", "l_receiptdate": "1993-06-16", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "es along the furiously regular acc" }, { "l_orderkey": 3621i32, "l_partkey": 93i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 13.0d, "l_extendedprice": 12910.17d, "l_discount": 0.09d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-08-30", "l_commitdate": "1993-06-30", "l_receiptdate": "1993-09-01", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "r the unusual packages. brave theodoli" }, { "l_orderkey": 193i32, "l_partkey": 93i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 9.0d, "l_extendedprice": 8937.81d, "l_discount": 0.06d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-09-17", "l_commitdate": "1993-10-08", "l_receiptdate": "1993-09-30", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "against the fluffily regular d" }, { "l_orderkey": 3493i32, "l_partkey": 93i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 31.0d, "l_extendedprice": 30785.79d, "l_discount": 0.06d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-10-22", "l_commitdate": "1993-10-12", "l_receiptdate": "1993-11-07", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "ructions. slyly regular accounts across the" }, { "l_orderkey": 4928i32, "l_partkey": 93i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 20.0d, "l_extendedprice": 19861.8d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-01-19", "l_commitdate": "1993-11-29", "l_receiptdate": "1994-02-13", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "quiet theodolites ca" }, { "l_orderkey": 3138i32, "l_partkey": 93i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 7.0d, "l_extendedprice": 6951.63d, "l_discount": 0.05d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-03-04", "l_commitdate": "1994-03-14", "l_receiptdate": "1994-03-20", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "lithely quickly even packages. packages" }, { "l_orderkey": 2530i32, "l_partkey": 93i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 42.0d, "l_extendedprice": 41709.78d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-03-27", "l_commitdate": "1994-05-20", "l_receiptdate": "1994-03-29", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "ng platelets wake s" }, { "l_orderkey": 5509i32, "l_partkey": 93i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 30.0d, "l_extendedprice": 29792.7d, "l_discount": 0.04d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-07-23", "l_commitdate": "1994-06-01", "l_receiptdate": "1994-08-08", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "counts haggle pinto beans. furiously " }, { "l_orderkey": 69i32, "l_partkey": 93i32, "l_suppkey": 6i32, "l_linenumber": 5i32, "l_quantity": 42.0d, "l_extendedprice": 41709.78d, "l_discount": 0.07d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-07-31", "l_commitdate": "1994-07-26", "l_receiptdate": "1994-08-28", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "tect regular, speci" }, { "l_orderkey": 4647i32, "l_partkey": 93i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 16.0d, "l_extendedprice": 15889.44d, "l_discount": 0.09d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-09-07", "l_commitdate": "1994-07-15", "l_receiptdate": "1994-10-06", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "o beans about the fluffily special the" }, { "l_orderkey": 548i32, "l_partkey": 93i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 19.0d, "l_extendedprice": 18868.71d, "l_discount": 0.0d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-09-24", "l_commitdate": "1994-11-24", "l_receiptdate": "1994-10-01", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "courts boost care" }, { "l_orderkey": 1637i32, "l_partkey": 93i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 42.0d, "l_extendedprice": 41709.78d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-03-18", "l_commitdate": "1995-04-24", "l_receiptdate": "1995-03-31", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "blithely a" }, { "l_orderkey": 1702i32, "l_partkey": 93i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 28.0d, "l_extendedprice": 27806.52d, "l_discount": 0.07d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-06-10", "l_commitdate": "1995-07-26", "l_receiptdate": "1995-06-16", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "nts haggle along the packa" }, { "l_orderkey": 3269i32, "l_partkey": 93i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 42.0d, "l_extendedprice": 41709.78d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-19", "l_commitdate": "1996-04-24", "l_receiptdate": "1996-04-18", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": " the special packages. " }, { "l_orderkey": 1572i32, "l_partkey": 93i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 10.0d, "l_extendedprice": 9930.9d, "l_discount": 0.04d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-17", "l_commitdate": "1996-03-26", "l_receiptdate": "1996-05-19", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": " accounts affix slyly. " }, { "l_orderkey": 1283i32, "l_partkey": 93i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 47.0d, "l_extendedprice": 46675.23d, "l_discount": 0.05d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-21", "l_commitdate": "1996-10-29", "l_receiptdate": "1996-11-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "even instructions boost slyly blithely " }, { "l_orderkey": 3619i32, "l_partkey": 93i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 18.0d, "l_extendedprice": 17875.62d, "l_discount": 0.04d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-18", "l_commitdate": "1996-12-24", "l_receiptdate": "1997-03-21", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "eodolites " }, { "l_orderkey": 4066i32, "l_partkey": 93i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 19.0d, "l_extendedprice": 18868.71d, "l_discount": 0.05d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-13", "l_commitdate": "1997-04-17", "l_receiptdate": "1997-06-08", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "quests. slyly regu" }, { "l_orderkey": 581i32, "l_partkey": 93i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 14.0d, "l_extendedprice": 13903.26d, "l_discount": 0.06d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-17", "l_commitdate": "1997-04-14", "l_receiptdate": "1997-06-08", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": ". deposits s" }, { "l_orderkey": 5859i32, "l_partkey": 93i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 40.0d, "l_extendedprice": 39723.6d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-05", "l_commitdate": "1997-06-17", "l_receiptdate": "1997-08-20", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "l dependenci" }, { "l_orderkey": 3490i32, "l_partkey": 93i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 8.0d, "l_extendedprice": 7944.72d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-11", "l_commitdate": "1997-07-25", "l_receiptdate": "1997-08-28", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "inal deposits use furiousl" }, { "l_orderkey": 1698i32, "l_partkey": 93i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 6.0d, "l_extendedprice": 5958.54d, "l_discount": 0.08d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-21", "l_commitdate": "1997-06-08", "l_receiptdate": "1997-09-03", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": " pending packages affix ne" }, { "l_orderkey": 5857i32, "l_partkey": 93i32, "l_suppkey": 5i32, "l_linenumber": 6i32, "l_quantity": 49.0d, "l_extendedprice": 48661.41d, "l_discount": 0.0d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-23", "l_commitdate": "1997-12-12", "l_receiptdate": "1998-01-28", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "egular pinto beans" }, { "l_orderkey": 2917i32, "l_partkey": 93i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 36.0d, "l_extendedprice": 35751.24d, "l_discount": 0.1d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-07", "l_commitdate": "1998-02-23", "l_receiptdate": "1998-05-01", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "usly ironic d" }, { "l_orderkey": 1508i32, "l_partkey": 93i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 43.0d, "l_extendedprice": 42702.87d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-01", "l_commitdate": "1998-06-24", "l_receiptdate": "1998-06-03", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "ndencies h" }, { "l_orderkey": 1124i32, "l_partkey": 93i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 35.0d, "l_extendedprice": 34758.15d, "l_discount": 0.1d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-11-25", "l_commitdate": "1998-10-08", "l_receiptdate": "1998-12-25", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "ut the slyly bold pinto beans; fi" } ] }
-{ "partkey": 103i32, "lines": [ { "l_orderkey": 4515i32, "l_partkey": 103i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 50.0d, "l_extendedprice": 50155.0d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-03-28", "l_commitdate": "1992-05-16", "l_receiptdate": "1992-04-20", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "ding instructions again" }, { "l_orderkey": 832i32, "l_partkey": 103i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 45.0d, "l_extendedprice": 45139.5d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-05-08", "l_commitdate": "1992-06-06", "l_receiptdate": "1992-06-04", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "foxes engage slyly alon" }, { "l_orderkey": 4900i32, "l_partkey": 103i32, "l_suppkey": 6i32, "l_linenumber": 6i32, "l_quantity": 46.0d, "l_extendedprice": 46142.6d, "l_discount": 0.06d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-07-11", "l_commitdate": "1992-09-19", "l_receiptdate": "1992-07-16", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "ly final acco" }, { "l_orderkey": 3205i32, "l_partkey": 103i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 38.0d, "l_extendedprice": 38117.8d, "l_discount": 0.1d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-07-31", "l_commitdate": "1992-06-03", "l_receiptdate": "1992-08-20", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "usly quiet accounts. slyly pending pinto " }, { "l_orderkey": 2209i32, "l_partkey": 103i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 10.0d, "l_extendedprice": 10031.0d, "l_discount": 0.0d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-09-02", "l_commitdate": "1992-09-24", "l_receiptdate": "1992-09-21", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "players. carefully reg" }, { "l_orderkey": 1504i32, "l_partkey": 103i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 22.0d, "l_extendedprice": 22068.2d, "l_discount": 0.04d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-09-09", "l_commitdate": "1992-10-29", "l_receiptdate": "1992-09-10", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": " accounts sleep. furiou" }, { "l_orderkey": 4900i32, "l_partkey": 103i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 48.0d, "l_extendedprice": 48148.8d, "l_discount": 0.02d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-09-18", "l_commitdate": "1992-08-14", "l_receiptdate": "1992-09-28", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "uickly ironic ideas kindle s" }, { "l_orderkey": 1956i32, "l_partkey": 103i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 16.0d, "l_extendedprice": 16049.6d, "l_discount": 0.0d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-11-11", "l_commitdate": "1992-11-11", "l_receiptdate": "1992-11-30", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "es cajole blithely. pen" }, { "l_orderkey": 711i32, "l_partkey": 103i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 27.0d, "l_extendedprice": 27083.7d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-10-02", "l_commitdate": "1993-10-26", "l_receiptdate": "1993-10-08", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "slyly. ironic asy" }, { "l_orderkey": 5445i32, "l_partkey": 103i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 46.0d, "l_extendedprice": 46142.6d, "l_discount": 0.04d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-10-06", "l_commitdate": "1993-09-15", "l_receiptdate": "1993-10-28", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "old depend" }, { "l_orderkey": 4932i32, "l_partkey": 103i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 15.0d, "l_extendedprice": 15046.5d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-11-15", "l_commitdate": "1993-10-25", "l_receiptdate": "1993-11-29", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "yly. unusu" }, { "l_orderkey": 353i32, "l_partkey": 103i32, "l_suppkey": 4i32, "l_linenumber": 6i32, "l_quantity": 39.0d, "l_extendedprice": 39120.9d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-01-15", "l_commitdate": "1994-03-30", "l_receiptdate": "1994-02-01", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "losely quickly even accounts. c" }, { "l_orderkey": 3136i32, "l_partkey": 103i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 7.0d, "l_extendedprice": 7021.7d, "l_discount": 0.05d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-10-08", "l_commitdate": "1994-09-14", "l_receiptdate": "1994-10-11", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "ic pinto beans are slyly. f" }, { "l_orderkey": 4869i32, "l_partkey": 103i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 24.0d, "l_extendedprice": 24074.4d, "l_discount": 0.1d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-11-23", "l_commitdate": "1994-11-18", "l_receiptdate": "1994-12-11", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "se deposits above the sly, q" }, { "l_orderkey": 161i32, "l_partkey": 103i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 19.0d, "l_extendedprice": 19058.9d, "l_discount": 0.01d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-12-13", "l_commitdate": "1994-11-19", "l_receiptdate": "1994-12-26", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": ", regular sheaves sleep along" }, { "l_orderkey": 4931i32, "l_partkey": 103i32, "l_suppkey": 6i32, "l_linenumber": 6i32, "l_quantity": 8.0d, "l_extendedprice": 8024.8d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-02-16", "l_commitdate": "1994-12-30", "l_receiptdate": "1995-03-15", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "dependencies are slyly" }, { "l_orderkey": 4422i32, "l_partkey": 103i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 39.0d, "l_extendedprice": 39120.9d, "l_discount": 0.0d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-02", "l_commitdate": "1995-06-24", "l_receiptdate": "1995-09-14", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "en hockey players engage" }, { "l_orderkey": 3936i32, "l_partkey": 103i32, "l_suppkey": 6i32, "l_linenumber": 6i32, "l_quantity": 26.0d, "l_extendedprice": 26080.6d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-27", "l_commitdate": "1997-01-16", "l_receiptdate": "1997-03-22", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "quickly pen" }, { "l_orderkey": 2661i32, "l_partkey": 103i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 22.0d, "l_extendedprice": 22068.2d, "l_discount": 0.08d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-14", "l_commitdate": "1997-03-17", "l_receiptdate": "1997-04-08", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": " foxes affix quickly ironic request" }, { "l_orderkey": 4484i32, "l_partkey": 103i32, "l_suppkey": 8i32, "l_linenumber": 7i32, "l_quantity": 50.0d, "l_extendedprice": 50155.0d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-17", "l_commitdate": "1997-03-16", "l_receiptdate": "1997-03-21", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "the ironic, final theodo" }, { "l_orderkey": 5377i32, "l_partkey": 103i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 23.0d, "l_extendedprice": 23071.3d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-26", "l_commitdate": "1997-07-13", "l_receiptdate": "1997-07-08", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": " silent wa" }, { "l_orderkey": 2017i32, "l_partkey": 103i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 49.0d, "l_extendedprice": 49151.9d, "l_discount": 0.1d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-26", "l_commitdate": "1998-07-01", "l_receiptdate": "1998-06-06", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": " after the unusual instructions. sly" }, { "l_orderkey": 68i32, "l_partkey": 103i32, "l_suppkey": 6i32, "l_linenumber": 6i32, "l_quantity": 30.0d, "l_extendedprice": 30093.0d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-11", "l_commitdate": "1998-07-11", "l_receiptdate": "1998-08-14", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "oxes are slyly blithely fin" }, { "l_orderkey": 2400i32, "l_partkey": 103i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 48.0d, "l_extendedprice": 48148.8d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-10-07", "l_commitdate": "1998-08-30", "l_receiptdate": "1998-11-03", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "fore the car" }, { "l_orderkey": 5827i32, "l_partkey": 103i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 23.0d, "l_extendedprice": 23071.3d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-11-16", "l_commitdate": "1998-09-14", "l_receiptdate": "1998-11-17", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "ans. furiously special instruct" } ] }
-{ "partkey": 105i32, "lines": [ { "l_orderkey": 5382i32, "l_partkey": 105i32, "l_suppkey": 2i32, "l_linenumber": 7i32, "l_quantity": 48.0d, "l_extendedprice": 48244.8d, "l_discount": 0.05d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-02-14", "l_commitdate": "1992-03-19", "l_receiptdate": "1992-02-25", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "nts integrate quickly ca" }, { "l_orderkey": 615i32, "l_partkey": 105i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 36.0d, "l_extendedprice": 36183.6d, "l_discount": 0.1d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-06-01", "l_commitdate": "1992-07-14", "l_receiptdate": "1992-06-27", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": " packages. carefully final pinto bea" }, { "l_orderkey": 4900i32, "l_partkey": 105i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 40.0d, "l_extendedprice": 40204.0d, "l_discount": 0.03d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-07-14", "l_commitdate": "1992-09-05", "l_receiptdate": "1992-07-20", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "luffily final dol" }, { "l_orderkey": 3845i32, "l_partkey": 105i32, "l_suppkey": 8i32, "l_linenumber": 6i32, "l_quantity": 30.0d, "l_extendedprice": 30153.0d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-08-21", "l_commitdate": "1992-07-07", "l_receiptdate": "1992-08-25", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "counts do wake blithely. ironic requests " }, { "l_orderkey": 1027i32, "l_partkey": 105i32, "l_suppkey": 8i32, "l_linenumber": 6i32, "l_quantity": 10.0d, "l_extendedprice": 10051.0d, "l_discount": 0.06d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-08-28", "l_commitdate": "1992-08-06", "l_receiptdate": "1992-09-03", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "ilent, express foxes near the blithely sp" }, { "l_orderkey": 4294i32, "l_partkey": 105i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 34.0d, "l_extendedprice": 34173.4d, "l_discount": 0.02d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-09-09", "l_commitdate": "1992-11-06", "l_receiptdate": "1992-10-04", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "pendencies!" }, { "l_orderkey": 4294i32, "l_partkey": 105i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 19.0d, "l_extendedprice": 19096.9d, "l_discount": 0.03d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-10-16", "l_commitdate": "1992-11-13", "l_receiptdate": "1992-10-26", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "nt dependencies. furiously regular ideas d" }, { "l_orderkey": 4288i32, "l_partkey": 105i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 39.0d, "l_extendedprice": 39198.9d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-03-25", "l_commitdate": "1993-02-06", "l_receiptdate": "1993-03-28", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "uffy theodolites run" }, { "l_orderkey": 3778i32, "l_partkey": 105i32, "l_suppkey": 6i32, "l_linenumber": 7i32, "l_quantity": 49.0d, "l_extendedprice": 49249.9d, "l_discount": 0.02d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-06-13", "l_commitdate": "1993-08-08", "l_receiptdate": "1993-07-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "ans. furiously " }, { "l_orderkey": 3648i32, "l_partkey": 105i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 30.0d, "l_extendedprice": 30153.0d, "l_discount": 0.0d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-08-31", "l_commitdate": "1993-09-06", "l_receiptdate": "1993-09-06", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": " above the somas boost furious" }, { "l_orderkey": 515i32, "l_partkey": 105i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 10.0d, "l_extendedprice": 10051.0d, "l_discount": 0.03d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-10-04", "l_commitdate": "1993-11-03", "l_receiptdate": "1993-10-08", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "ar deposits th" }, { "l_orderkey": 2593i32, "l_partkey": 105i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 37.0d, "l_extendedprice": 37188.7d, "l_discount": 0.08d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-12-14", "l_commitdate": "1993-10-08", "l_receiptdate": "1994-01-04", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "s wake bravel" }, { "l_orderkey": 3169i32, "l_partkey": 105i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 26.0d, "l_extendedprice": 26132.6d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-04-08", "l_commitdate": "1994-03-21", "l_receiptdate": "1994-04-29", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "ter the regular ideas. slyly iro" }, { "l_orderkey": 1189i32, "l_partkey": 105i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 32.0d, "l_extendedprice": 32163.2d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-05-06", "l_commitdate": "1994-07-03", "l_receiptdate": "1994-05-15", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "e regular deposits. quickly quiet deposi" }, { "l_orderkey": 2466i32, "l_partkey": 105i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 10.0d, "l_extendedprice": 10051.0d, "l_discount": 0.0d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-05-08", "l_commitdate": "1994-04-06", "l_receiptdate": "1994-06-05", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "sly regular deposits. regular, regula" }, { "l_orderkey": 1986i32, "l_partkey": 105i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 10.0d, "l_extendedprice": 10051.0d, "l_discount": 0.1d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-05-14", "l_commitdate": "1994-06-21", "l_receiptdate": "1994-06-02", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "yly into the carefully even " }, { "l_orderkey": 2756i32, "l_partkey": 105i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 31.0d, "l_extendedprice": 31158.1d, "l_discount": 0.01d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-07-27", "l_commitdate": "1994-07-06", "l_receiptdate": "1994-08-22", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "en instructions use quickly." }, { "l_orderkey": 69i32, "l_partkey": 105i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 32.0d, "l_extendedprice": 32163.2d, "l_discount": 0.08d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-08-24", "l_commitdate": "1994-08-17", "l_receiptdate": "1994-08-31", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "s sleep carefully bold, " }, { "l_orderkey": 2086i32, "l_partkey": 105i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 44.0d, "l_extendedprice": 44224.4d, "l_discount": 0.02d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-12-04", "l_commitdate": "1994-11-30", "l_receiptdate": "1994-12-21", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "latelets s" }, { "l_orderkey": 3042i32, "l_partkey": 105i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 30.0d, "l_extendedprice": 30153.0d, "l_discount": 0.08d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-01-12", "l_commitdate": "1995-02-15", "l_receiptdate": "1995-01-24", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "the requests detect fu" }, { "l_orderkey": 2082i32, "l_partkey": 105i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 12.0d, "l_extendedprice": 12061.2d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-01-27", "l_commitdate": "1995-02-11", "l_receiptdate": "1995-02-07", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": " ironic instructions. carefull" }, { "l_orderkey": 2791i32, "l_partkey": 105i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 8.0d, "l_extendedprice": 8040.8d, "l_discount": 0.02d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-01-30", "l_commitdate": "1994-11-24", "l_receiptdate": "1995-02-13", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "se. close ideas alongs" }, { "l_orderkey": 3008i32, "l_partkey": 105i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 31.0d, "l_extendedprice": 31158.1d, "l_discount": 0.03d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-01", "l_commitdate": "1996-01-20", "l_receiptdate": "1995-12-28", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "nts use thinly around the carefully iro" }, { "l_orderkey": 3335i32, "l_partkey": 105i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 13.0d, "l_extendedprice": 13066.3d, "l_discount": 0.06d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-20", "l_commitdate": "1995-12-20", "l_receiptdate": "1996-02-09", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "out the special asymptotes" }, { "l_orderkey": 5281i32, "l_partkey": 105i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 38.0d, "l_extendedprice": 38193.8d, "l_discount": 0.0d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-02-17", "l_commitdate": "1995-12-19", "l_receiptdate": "1996-02-29", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "n asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about th" }, { "l_orderkey": 806i32, "l_partkey": 105i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 1.0d, "l_extendedprice": 1005.1d, "l_discount": 0.04d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-14", "l_commitdate": "1996-09-12", "l_receiptdate": "1996-07-25", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "ar accounts? pending, pending foxes a" }, { "l_orderkey": 3809i32, "l_partkey": 105i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 46.0d, "l_extendedprice": 46234.6d, "l_discount": 0.1d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-20", "l_commitdate": "1996-06-01", "l_receiptdate": "1996-08-24", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "l asymptotes. special " }, { "l_orderkey": 2596i32, "l_partkey": 105i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 10.0d, "l_extendedprice": 10051.0d, "l_discount": 0.06d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-25", "l_commitdate": "1996-11-05", "l_receiptdate": "1996-09-13", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": " instructions shall have" }, { "l_orderkey": 1728i32, "l_partkey": 105i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 23.0d, "l_extendedprice": 23117.3d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-08", "l_commitdate": "1996-07-24", "l_receiptdate": "1996-09-20", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "ns. pending, final ac" }, { "l_orderkey": 2850i32, "l_partkey": 105i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 49.0d, "l_extendedprice": 49249.9d, "l_discount": 0.09d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-07", "l_commitdate": "1996-12-12", "l_receiptdate": "1996-10-12", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": " slyly unusual req" }, { "l_orderkey": 5152i32, "l_partkey": 105i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 9.0d, "l_extendedprice": 9045.9d, "l_discount": 0.04d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-11", "l_commitdate": "1997-02-11", "l_receiptdate": "1997-04-18", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": " cajole furiously alongside of the bo" }, { "l_orderkey": 1859i32, "l_partkey": 105i32, "l_suppkey": 8i32, "l_linenumber": 6i32, "l_quantity": 12.0d, "l_extendedprice": 12061.2d, "l_discount": 0.08d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-22", "l_commitdate": "1997-06-08", "l_receiptdate": "1997-06-07", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "es. unusual, silent request" }, { "l_orderkey": 3969i32, "l_partkey": 105i32, "l_suppkey": 8i32, "l_linenumber": 6i32, "l_quantity": 4.0d, "l_extendedprice": 4020.4d, "l_discount": 0.02d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-04", "l_commitdate": "1997-07-31", "l_receiptdate": "1997-06-13", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "dencies wake blithely? quickly even theodo" }, { "l_orderkey": 5731i32, "l_partkey": 105i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 11.0d, "l_extendedprice": 11056.1d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-06", "l_commitdate": "1997-07-08", "l_receiptdate": "1997-06-25", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": " furiously final accounts wake. d" }, { "l_orderkey": 992i32, "l_partkey": 105i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 30.0d, "l_extendedprice": 30153.0d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-15", "l_commitdate": "1998-02-02", "l_receiptdate": "1998-01-12", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "nic instructions n" }, { "l_orderkey": 5410i32, "l_partkey": 105i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 41.0d, "l_extendedprice": 41209.1d, "l_discount": 0.01d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-25", "l_commitdate": "1998-10-20", "l_receiptdate": "1998-09-01", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "sly. slyly ironic theodolites" } ] }
-{ "partkey": 109i32, "lines": [ { "l_orderkey": 3970i32, "l_partkey": 109i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 18.0d, "l_extendedprice": 18163.8d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-06-06", "l_commitdate": "1992-06-18", "l_receiptdate": "1992-07-05", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": " maintain slyly. ir" }, { "l_orderkey": 1159i32, "l_partkey": 109i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 39.0d, "l_extendedprice": 39354.9d, "l_discount": 0.01d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-11-20", "l_commitdate": "1992-10-28", "l_receiptdate": "1992-12-18", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": " blithely express reques" }, { "l_orderkey": 164i32, "l_partkey": 109i32, "l_suppkey": 10i32, "l_linenumber": 6i32, "l_quantity": 27.0d, "l_extendedprice": 27245.7d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-12-23", "l_commitdate": "1993-01-16", "l_receiptdate": "1993-01-10", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "ayers wake carefully a" }, { "l_orderkey": 5088i32, "l_partkey": 109i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 10.0d, "l_extendedprice": 10091.0d, "l_discount": 0.04d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-04-07", "l_commitdate": "1993-02-06", "l_receiptdate": "1993-04-26", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "beans. special requests af" }, { "l_orderkey": 896i32, "l_partkey": 109i32, "l_suppkey": 2i32, "l_linenumber": 7i32, "l_quantity": 11.0d, "l_extendedprice": 11100.1d, "l_discount": 0.01d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-05-01", "l_commitdate": "1993-04-09", "l_receiptdate": "1993-05-06", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "rding to the pinto beans wa" }, { "l_orderkey": 4545i32, "l_partkey": 109i32, "l_suppkey": 2i32, "l_linenumber": 6i32, "l_quantity": 8.0d, "l_extendedprice": 8072.8d, "l_discount": 0.03d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-05-01", "l_commitdate": "1993-03-12", "l_receiptdate": "1993-05-15", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": " boost slyly. slyly" }, { "l_orderkey": 2720i32, "l_partkey": 109i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 49.0d, "l_extendedprice": 49445.9d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-07-09", "l_commitdate": "1993-07-14", "l_receiptdate": "1993-07-13", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": " accounts. fluffily bold pack" }, { "l_orderkey": 515i32, "l_partkey": 109i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 34.0d, "l_extendedprice": 34309.4d, "l_discount": 0.09d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-10-03", "l_commitdate": "1993-10-26", "l_receiptdate": "1993-10-15", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "ic dependencie" }, { "l_orderkey": 3108i32, "l_partkey": 109i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 37.0d, "l_extendedprice": 37336.7d, "l_discount": 0.06d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-10-16", "l_commitdate": "1993-10-01", "l_receiptdate": "1993-11-09", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": " final requests. " }, { "l_orderkey": 515i32, "l_partkey": 109i32, "l_suppkey": 4i32, "l_linenumber": 6i32, "l_quantity": 25.0d, "l_extendedprice": 25227.5d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-11-14", "l_commitdate": "1993-11-07", "l_receiptdate": "1993-12-03", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "e packages engag" }, { "l_orderkey": 5346i32, "l_partkey": 109i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 7.0d, "l_extendedprice": 7063.7d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-01-30", "l_commitdate": "1994-03-26", "l_receiptdate": "1994-01-31", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "equests use carefully care" }, { "l_orderkey": 5666i32, "l_partkey": 109i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 36.0d, "l_extendedprice": 36327.6d, "l_discount": 0.07d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-03-15", "l_commitdate": "1994-03-16", "l_receiptdate": "1994-03-18", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "accounts. furiousl" }, { "l_orderkey": 2976i32, "l_partkey": 109i32, "l_suppkey": 2i32, "l_linenumber": 6i32, "l_quantity": 30.0d, "l_extendedprice": 30273.0d, "l_discount": 0.08d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-03-27", "l_commitdate": "1994-02-01", "l_receiptdate": "1994-04-26", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "c ideas! unusual" }, { "l_orderkey": 99i32, "l_partkey": 109i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 36.0d, "l_extendedprice": 36327.6d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-07-04", "l_commitdate": "1994-04-17", "l_receiptdate": "1994-07-30", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "slyly. slyly e" }, { "l_orderkey": 224i32, "l_partkey": 109i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 34.0d, "l_extendedprice": 34309.4d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-07-13", "l_commitdate": "1994-08-25", "l_receiptdate": "1994-07-31", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": " carefully. final platelets " }, { "l_orderkey": 5i32, "l_partkey": 109i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 15.0d, "l_extendedprice": 15136.5d, "l_discount": 0.02d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-10-31", "l_commitdate": "1994-08-31", "l_receiptdate": "1994-11-20", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "ts wake furiously " }, { "l_orderkey": 3492i32, "l_partkey": 109i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 34.0d, "l_extendedprice": 34309.4d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-12-07", "l_commitdate": "1994-12-29", "l_receiptdate": "1994-12-24", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": " unusual requests. ir" }, { "l_orderkey": 646i32, "l_partkey": 109i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 31.0d, "l_extendedprice": 31282.1d, "l_discount": 0.0d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-12-17", "l_commitdate": "1995-02-16", "l_receiptdate": "1995-01-04", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "ag furiousl" }, { "l_orderkey": 1637i32, "l_partkey": 109i32, "l_suppkey": 4i32, "l_linenumber": 6i32, "l_quantity": 38.0d, "l_extendedprice": 38345.8d, "l_discount": 0.02d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-03-20", "l_commitdate": "1995-05-05", "l_receiptdate": "1995-04-14", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "even, pending foxes nod regular" }, { "l_orderkey": 5636i32, "l_partkey": 109i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 15.0d, "l_extendedprice": 15136.5d, "l_discount": 0.03d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-04-21", "l_commitdate": "1995-04-30", "l_receiptdate": "1995-05-05", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "efully special" }, { "l_orderkey": 3457i32, "l_partkey": 109i32, "l_suppkey": 4i32, "l_linenumber": 5i32, "l_quantity": 42.0d, "l_extendedprice": 42382.2d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-06-12", "l_commitdate": "1995-06-14", "l_receiptdate": "1995-06-14", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "riously final instruc" }, { "l_orderkey": 3457i32, "l_partkey": 109i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 7.0d, "l_extendedprice": 7063.7d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-14", "l_commitdate": "1995-07-06", "l_receiptdate": "1995-08-18", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": " pending accounts along the" }, { "l_orderkey": 449i32, "l_partkey": 109i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 4.0d, "l_extendedprice": 4036.4d, "l_discount": 0.1d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-27", "l_commitdate": "1995-09-14", "l_receiptdate": "1995-11-21", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "are fluffily. requests are furiously" }, { "l_orderkey": 3235i32, "l_partkey": 109i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 9.0d, "l_extendedprice": 9081.9d, "l_discount": 0.07d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-17", "l_commitdate": "1995-12-24", "l_receiptdate": "1995-11-30", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "l courts sleep quickly slyly " }, { "l_orderkey": 135i32, "l_partkey": 109i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 47.0d, "l_extendedprice": 47427.7d, "l_discount": 0.06d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-02-18", "l_commitdate": "1996-01-01", "l_receiptdate": "1996-02-25", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "ctions wake slyly abo" }, { "l_orderkey": 4929i32, "l_partkey": 109i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 26.0d, "l_extendedprice": 26236.6d, "l_discount": 0.0d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-10", "l_commitdate": "1996-05-29", "l_receiptdate": "1996-06-26", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": " slyly. fl" }, { "l_orderkey": 2276i32, "l_partkey": 109i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 38.0d, "l_extendedprice": 38345.8d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-07", "l_commitdate": "1996-06-28", "l_receiptdate": "1996-07-17", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "ans. pinto beans boost c" }, { "l_orderkey": 2432i32, "l_partkey": 109i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 13.0d, "l_extendedprice": 13118.3d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-03", "l_commitdate": "1996-10-10", "l_receiptdate": "1996-10-03", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "arefully about the caref" }, { "l_orderkey": 5634i32, "l_partkey": 109i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 16.0d, "l_extendedprice": 16145.6d, "l_discount": 0.08d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-15", "l_commitdate": "1996-09-14", "l_receiptdate": "1996-12-04", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "ess ideas are carefully pending, even re" }, { "l_orderkey": 2980i32, "l_partkey": 109i32, "l_suppkey": 4i32, "l_linenumber": 6i32, "l_quantity": 43.0d, "l_extendedprice": 43391.3d, "l_discount": 0.01d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-07", "l_commitdate": "1996-11-10", "l_receiptdate": "1997-01-02", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "sts. slyly regu" }, { "l_orderkey": 3264i32, "l_partkey": 109i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 24.0d, "l_extendedprice": 24218.4d, "l_discount": 0.09d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-07", "l_commitdate": "1996-12-13", "l_receiptdate": "1997-01-11", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "ctions. quick" }, { "l_orderkey": 1574i32, "l_partkey": 109i32, "l_suppkey": 4i32, "l_linenumber": 5i32, "l_quantity": 6.0d, "l_extendedprice": 6054.6d, "l_discount": 0.05d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-09", "l_commitdate": "1997-03-02", "l_receiptdate": "1997-02-14", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "nic, final ideas snooze. " }, { "l_orderkey": 4066i32, "l_partkey": 109i32, "l_suppkey": 2i32, "l_linenumber": 6i32, "l_quantity": 44.0d, "l_extendedprice": 44400.4d, "l_discount": 0.01d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-01", "l_commitdate": "1997-04-27", "l_receiptdate": "1997-03-29", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "express accounts nag bli" }, { "l_orderkey": 1410i32, "l_partkey": 109i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 37.0d, "l_extendedprice": 37336.7d, "l_discount": 0.02d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-17", "l_commitdate": "1997-06-18", "l_receiptdate": "1997-04-19", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "to beans b" }, { "l_orderkey": 1798i32, "l_partkey": 109i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 43.0d, "l_extendedprice": 43391.3d, "l_discount": 0.01d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-27", "l_commitdate": "1997-10-23", "l_receiptdate": "1997-09-09", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "ld packages sleep furiously. depend" } ] }
-{ "partkey": 115i32, "lines": [ { "l_orderkey": 2912i32, "l_partkey": 115i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 18.0d, "l_extendedprice": 18271.98d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-03-13", "l_commitdate": "1992-04-19", "l_receiptdate": "1992-03-30", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "unts cajole reg" }, { "l_orderkey": 3973i32, "l_partkey": 115i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 37.0d, "l_extendedprice": 37559.07d, "l_discount": 0.07d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-05-29", "l_commitdate": "1992-05-04", "l_receiptdate": "1992-06-23", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "inos wake fluffily. pending requests nag " }, { "l_orderkey": 2880i32, "l_partkey": 115i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 42.0d, "l_extendedprice": 42634.62d, "l_discount": 0.01d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-06-17", "l_commitdate": "1992-05-29", "l_receiptdate": "1992-07-11", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "ions. carefully final accounts are unusual," }, { "l_orderkey": 1504i32, "l_partkey": 115i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 10.0d, "l_extendedprice": 10151.1d, "l_discount": 0.04d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-09-22", "l_commitdate": "1992-10-22", "l_receiptdate": "1992-10-13", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "final theodolites. furiously e" }, { "l_orderkey": 5794i32, "l_partkey": 115i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 14.0d, "l_extendedprice": 14211.54d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-04-19", "l_commitdate": "1993-07-02", "l_receiptdate": "1993-05-18", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "uriously carefully ironic reque" }, { "l_orderkey": 2084i32, "l_partkey": 115i32, "l_suppkey": 9i32, "l_linenumber": 6i32, "l_quantity": 15.0d, "l_extendedprice": 15226.65d, "l_discount": 0.09d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-06-23", "l_commitdate": "1993-04-25", "l_receiptdate": "1993-07-23", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "tithes. bravely pendi" }, { "l_orderkey": 132i32, "l_partkey": 115i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 32.0d, "l_extendedprice": 32483.52d, "l_discount": 0.04d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-07-12", "l_commitdate": "1993-08-05", "l_receiptdate": "1993-08-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "d instructions hagg" }, { "l_orderkey": 5093i32, "l_partkey": 115i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 30.0d, "l_extendedprice": 30453.3d, "l_discount": 0.06d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-11-22", "l_commitdate": "1993-11-27", "l_receiptdate": "1993-12-14", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "ithely ironic sheaves use fluff" }, { "l_orderkey": 1831i32, "l_partkey": 115i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 17.0d, "l_extendedprice": 17256.87d, "l_discount": 0.02d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-01-18", "l_commitdate": "1994-02-12", "l_receiptdate": "1994-01-30", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "s boost ironic foxe" }, { "l_orderkey": 4101i32, "l_partkey": 115i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 22.0d, "l_extendedprice": 22332.42d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-02-02", "l_commitdate": "1994-02-19", "l_receiptdate": "1994-02-12", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "ly express instructions. careful" }, { "l_orderkey": 5921i32, "l_partkey": 115i32, "l_suppkey": 6i32, "l_linenumber": 6i32, "l_quantity": 5.0d, "l_extendedprice": 5075.55d, "l_discount": 0.02d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-06-01", "l_commitdate": "1994-05-07", "l_receiptdate": "1994-06-10", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "eas cajole across the final, fi" }, { "l_orderkey": 1829i32, "l_partkey": 115i32, "l_suppkey": 5i32, "l_linenumber": 6i32, "l_quantity": 36.0d, "l_extendedprice": 36543.96d, "l_discount": 0.09d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-06-10", "l_commitdate": "1994-06-23", "l_receiptdate": "1994-06-22", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "ackages-- express requests sleep; pen" }, { "l_orderkey": 4930i32, "l_partkey": 115i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 20.0d, "l_extendedprice": 20302.2d, "l_discount": 0.02d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-08-21", "l_commitdate": "1994-06-17", "l_receiptdate": "1994-08-24", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "he carefully" }, { "l_orderkey": 5317i32, "l_partkey": 115i32, "l_suppkey": 9i32, "l_linenumber": 6i32, "l_quantity": 48.0d, "l_extendedprice": 48725.28d, "l_discount": 0.01d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-09-19", "l_commitdate": "1994-11-25", "l_receiptdate": "1994-10-03", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "ts about the packages cajole furio" }, { "l_orderkey": 900i32, "l_partkey": 115i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 48.0d, "l_extendedprice": 48725.28d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-12-22", "l_commitdate": "1994-11-08", "l_receiptdate": "1995-01-19", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "cial pinto beans nag " }, { "l_orderkey": 646i32, "l_partkey": 115i32, "l_suppkey": 2i32, "l_linenumber": 6i32, "l_quantity": 40.0d, "l_extendedprice": 40604.4d, "l_discount": 0.1d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-01-01", "l_commitdate": "1995-01-13", "l_receiptdate": "1995-01-11", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "ronic packages sleep across th" }, { "l_orderkey": 5191i32, "l_partkey": 115i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 41.0d, "l_extendedprice": 41619.51d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-02-05", "l_commitdate": "1995-02-27", "l_receiptdate": "1995-02-15", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "uests! ironic theodolites cajole care" }, { "l_orderkey": 3365i32, "l_partkey": 115i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 13.0d, "l_extendedprice": 13196.43d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-02-25", "l_commitdate": "1995-01-31", "l_receiptdate": "1995-03-16", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "pths wake r" }, { "l_orderkey": 3362i32, "l_partkey": 115i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 40.0d, "l_extendedprice": 40604.4d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-19", "l_commitdate": "1995-10-17", "l_receiptdate": "1995-09-05", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "packages haggle furi" }, { "l_orderkey": 135i32, "l_partkey": 115i32, "l_suppkey": 5i32, "l_linenumber": 6i32, "l_quantity": 13.0d, "l_extendedprice": 13196.43d, "l_discount": 0.04d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-12", "l_commitdate": "1995-12-22", "l_receiptdate": "1995-11-17", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "nal ideas. final instr" }, { "l_orderkey": 2657i32, "l_partkey": 115i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 22.0d, "l_extendedprice": 22332.42d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-08", "l_commitdate": "1995-12-28", "l_receiptdate": "1995-12-21", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "r ideas. furiously special dolphins" }, { "l_orderkey": 1188i32, "l_partkey": 115i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 2.0d, "l_extendedprice": 2030.22d, "l_discount": 0.0d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-22", "l_commitdate": "1996-05-23", "l_receiptdate": "1996-06-06", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "its breach blit" }, { "l_orderkey": 5440i32, "l_partkey": 115i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 3.0d, "l_extendedprice": 3045.33d, "l_discount": 0.02d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-18", "l_commitdate": "1997-02-28", "l_receiptdate": "1997-03-15", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "y. accounts haggle along the blit" }, { "l_orderkey": 1543i32, "l_partkey": 115i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 6.0d, "l_extendedprice": 6090.66d, "l_discount": 0.09d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-16", "l_commitdate": "1997-05-20", "l_receiptdate": "1997-05-16", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": " among the carefully bold or" }, { "l_orderkey": 1606i32, "l_partkey": 115i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 21.0d, "l_extendedprice": 21317.31d, "l_discount": 0.04d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-02", "l_commitdate": "1997-07-02", "l_receiptdate": "1997-06-27", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": " pending theodolites prom" }, { "l_orderkey": 5927i32, "l_partkey": 115i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 8.0d, "l_extendedprice": 8120.88d, "l_discount": 0.04d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-24", "l_commitdate": "1997-11-15", "l_receiptdate": "1997-10-22", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "ilent dependencies nod c" }, { "l_orderkey": 3077i32, "l_partkey": 115i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 23.0d, "l_extendedprice": 23347.53d, "l_discount": 0.03d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-11-05", "l_commitdate": "1997-09-16", "l_receiptdate": "1997-11-20", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "lly. fluffily pending dinos across" }, { "l_orderkey": 1477i32, "l_partkey": 115i32, "l_suppkey": 6i32, "l_linenumber": 5i32, "l_quantity": 41.0d, "l_extendedprice": 41619.51d, "l_discount": 0.04d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-16", "l_commitdate": "1997-10-31", "l_receiptdate": "1998-01-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "y. final pearls kindle. accounts " }, { "l_orderkey": 452i32, "l_partkey": 115i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 2.0d, "l_extendedprice": 2030.22d, "l_discount": 0.04d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-26", "l_commitdate": "1998-01-03", "l_receiptdate": "1998-01-12", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "y express instru" }, { "l_orderkey": 1094i32, "l_partkey": 115i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 9.0d, "l_extendedprice": 9135.99d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-28", "l_commitdate": "1998-03-16", "l_receiptdate": "1998-01-18", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "as. slyly pe" }, { "l_orderkey": 3937i32, "l_partkey": 115i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 27.0d, "l_extendedprice": 27407.97d, "l_discount": 0.03d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-02-06", "l_commitdate": "1998-01-12", "l_receiptdate": "1998-02-20", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "ven ideas. slyly expr" }, { "l_orderkey": 4644i32, "l_partkey": 115i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 10.0d, "l_extendedprice": 10151.1d, "l_discount": 0.02d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-02-21", "l_commitdate": "1998-02-28", "l_receiptdate": "1998-03-19", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "osits according to the" }, { "l_orderkey": 2565i32, "l_partkey": 115i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 34.0d, "l_extendedprice": 34513.74d, "l_discount": 0.06d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-19", "l_commitdate": "1998-04-12", "l_receiptdate": "1998-04-17", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "nstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstruction" }, { "l_orderkey": 5798i32, "l_partkey": 115i32, "l_suppkey": 9i32, "l_linenumber": 7i32, "l_quantity": 32.0d, "l_extendedprice": 32483.52d, "l_discount": 0.08d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-27", "l_commitdate": "1998-05-03", "l_receiptdate": "1998-05-08", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "ubt blithely above the " } ] }
-{ "partkey": 118i32, "lines": [ { "l_orderkey": 4035i32, "l_partkey": 118i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 1.0d, "l_extendedprice": 1018.11d, "l_discount": 0.03d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-06-18", "l_commitdate": "1992-05-19", "l_receiptdate": "1992-07-02", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": " requests. quickly " }, { "l_orderkey": 1793i32, "l_partkey": 118i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 4.0d, "l_extendedprice": 4072.44d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-09-27", "l_commitdate": "1992-09-21", "l_receiptdate": "1992-10-07", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "equests nod ac" }, { "l_orderkey": 5408i32, "l_partkey": 118i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 35.0d, "l_extendedprice": 35633.85d, "l_discount": 0.04d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-10-02", "l_commitdate": "1992-10-17", "l_receiptdate": "1992-10-13", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "thely ironic requests alongside of the sl" }, { "l_orderkey": 293i32, "l_partkey": 118i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 13.0d, "l_extendedprice": 13235.43d, "l_discount": 0.04d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-12-17", "l_commitdate": "1992-12-26", "l_receiptdate": "1992-12-22", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": " wake after the quickly even deposits. bli" }, { "l_orderkey": 2213i32, "l_partkey": 118i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 20.0d, "l_extendedprice": 20362.2d, "l_discount": 0.01d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-01-21", "l_commitdate": "1993-04-14", "l_receiptdate": "1993-01-29", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "iously express accounts; " }, { "l_orderkey": 2308i32, "l_partkey": 118i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 24.0d, "l_extendedprice": 24434.64d, "l_discount": 0.06d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-02-23", "l_commitdate": "1992-12-24", "l_receiptdate": "1993-03-10", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "ts sleep. busy excuses along the s" }, { "l_orderkey": 226i32, "l_partkey": 118i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 2.0d, "l_extendedprice": 2036.22d, "l_discount": 0.07d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-03-26", "l_commitdate": "1993-04-13", "l_receiptdate": "1993-04-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "al platelets. express somas " }, { "l_orderkey": 226i32, "l_partkey": 118i32, "l_suppkey": 8i32, "l_linenumber": 7i32, "l_quantity": 14.0d, "l_extendedprice": 14253.54d, "l_discount": 0.09d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-05-20", "l_commitdate": "1993-06-05", "l_receiptdate": "1993-05-27", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "ep carefully regular accounts. ironic" }, { "l_orderkey": 3201i32, "l_partkey": 118i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 27.0d, "l_extendedprice": 27488.97d, "l_discount": 0.08d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-08-31", "l_commitdate": "1993-08-24", "l_receiptdate": "1993-09-08", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "deposits are slyly along" }, { "l_orderkey": 2631i32, "l_partkey": 118i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 15.0d, "l_extendedprice": 15271.65d, "l_discount": 0.06d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-09-30", "l_commitdate": "1993-11-06", "l_receiptdate": "1993-10-13", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "y. furiously even pinto be" }, { "l_orderkey": 5766i32, "l_partkey": 118i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 4.0d, "l_extendedprice": 4072.44d, "l_discount": 0.08d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-11-10", "l_commitdate": "1993-10-30", "l_receiptdate": "1993-12-01", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "ly even requests. furiou" }, { "l_orderkey": 999i32, "l_partkey": 118i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 15.0d, "l_extendedprice": 15271.65d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-12-12", "l_commitdate": "1993-10-18", "l_receiptdate": "1994-01-08", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "y ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reg" }, { "l_orderkey": 2374i32, "l_partkey": 118i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 41.0d, "l_extendedprice": 41742.51d, "l_discount": 0.07d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-01-27", "l_commitdate": "1993-12-11", "l_receiptdate": "1994-02-12", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "heodolites. requests" }, { "l_orderkey": 2756i32, "l_partkey": 118i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 35.0d, "l_extendedprice": 35633.85d, "l_discount": 0.03d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-06-08", "l_commitdate": "1994-06-01", "l_receiptdate": "1994-06-21", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": " deposits grow bold sheaves; iro" }, { "l_orderkey": 1734i32, "l_partkey": 118i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 4.0d, "l_extendedprice": 4072.44d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-08-20", "l_commitdate": "1994-07-17", "l_receiptdate": "1994-08-25", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "final warhorses." }, { "l_orderkey": 2725i32, "l_partkey": 118i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 23.0d, "l_extendedprice": 23416.53d, "l_discount": 0.1d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-08-25", "l_commitdate": "1994-06-22", "l_receiptdate": "1994-08-28", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "y regular deposits. brave foxes " }, { "l_orderkey": 2948i32, "l_partkey": 118i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 48.0d, "l_extendedprice": 48869.28d, "l_discount": 0.0d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-08-29", "l_commitdate": "1994-10-23", "l_receiptdate": "1994-09-23", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "unusual excuses use about the " }, { "l_orderkey": 902i32, "l_partkey": 118i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 8.0d, "l_extendedprice": 8144.88d, "l_discount": 0.06d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-10-25", "l_commitdate": "1994-09-20", "l_receiptdate": "1994-11-07", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": " orbits al" }, { "l_orderkey": 5188i32, "l_partkey": 118i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 18.0d, "l_extendedprice": 18325.98d, "l_discount": 0.04d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-06-19", "l_commitdate": "1995-05-19", "l_receiptdate": "1995-06-25", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "p according to the sometimes regu" }, { "l_orderkey": 961i32, "l_partkey": 118i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 7.0d, "l_extendedprice": 7126.77d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-23", "l_commitdate": "1995-07-20", "l_receiptdate": "1995-08-11", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "usual dolphins. ironic pearls sleep blit" }, { "l_orderkey": 5314i32, "l_partkey": 118i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 10.0d, "l_extendedprice": 10181.1d, "l_discount": 0.07d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-26", "l_commitdate": "1995-07-24", "l_receiptdate": "1995-10-19", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "latelets haggle final" }, { "l_orderkey": 610i32, "l_partkey": 118i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 26.0d, "l_extendedprice": 26470.86d, "l_discount": 0.09d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-22", "l_commitdate": "1995-09-09", "l_receiptdate": "1995-12-04", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "cross the furiously even theodolites sl" }, { "l_orderkey": 514i32, "l_partkey": 118i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 34.0d, "l_extendedprice": 34615.74d, "l_discount": 0.08d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-04-14", "l_commitdate": "1996-06-03", "l_receiptdate": "1996-04-23", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "ily even patterns. bold, silent instruc" }, { "l_orderkey": 454i32, "l_partkey": 118i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 24.0d, "l_extendedprice": 24434.64d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-04-26", "l_commitdate": "1996-03-23", "l_receiptdate": "1996-05-20", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "le. deposits after the ideas nag unusual pa" }, { "l_orderkey": 3428i32, "l_partkey": 118i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 35.0d, "l_extendedprice": 35633.85d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-01", "l_commitdate": "1996-06-07", "l_receiptdate": "1996-05-20", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "ly regular pinto beans sleep" }, { "l_orderkey": 1664i32, "l_partkey": 118i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 48.0d, "l_extendedprice": 48869.28d, "l_discount": 0.04d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-21", "l_commitdate": "1996-05-01", "l_receiptdate": "1996-07-19", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": " use. ironic deposits integrate. slyly unu" }, { "l_orderkey": 934i32, "l_partkey": 118i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 18.0d, "l_extendedprice": 18325.98d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-10", "l_commitdate": "1996-09-20", "l_receiptdate": "1996-09-25", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "y unusual requests dazzle above t" }, { "l_orderkey": 3747i32, "l_partkey": 118i32, "l_suppkey": 2i32, "l_linenumber": 7i32, "l_quantity": 23.0d, "l_extendedprice": 23416.53d, "l_discount": 0.0d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-08", "l_commitdate": "1996-11-10", "l_receiptdate": "1996-12-03", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "kages are ironic" }, { "l_orderkey": 3236i32, "l_partkey": 118i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 7.0d, "l_extendedprice": 7126.77d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-27", "l_commitdate": "1996-12-18", "l_receiptdate": "1997-01-24", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "dolites. slyly unus" }, { "l_orderkey": 1441i32, "l_partkey": 118i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 14.0d, "l_extendedprice": 14253.54d, "l_discount": 0.01d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-30", "l_commitdate": "1997-04-29", "l_receiptdate": "1997-07-24", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "special requests ha" }, { "l_orderkey": 1349i32, "l_partkey": 118i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 45.0d, "l_extendedprice": 45814.95d, "l_discount": 0.03d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-24", "l_commitdate": "1998-01-17", "l_receiptdate": "1997-12-28", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": " ironic, unusual deposits wake carefu" }, { "l_orderkey": 5857i32, "l_partkey": 118i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 12.0d, "l_extendedprice": 12217.32d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-24", "l_commitdate": "1997-12-27", "l_receiptdate": "1998-02-10", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "counts. express, final" }, { "l_orderkey": 133i32, "l_partkey": 118i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 29.0d, "l_extendedprice": 29525.19d, "l_discount": 0.09d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-02-28", "l_commitdate": "1998-01-30", "l_receiptdate": "1998-03-09", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": " the carefully regular theodoli" }, { "l_orderkey": 1475i32, "l_partkey": 118i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 18.0d, "l_extendedprice": 18325.98d, "l_discount": 0.07d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-08", "l_commitdate": "1998-01-18", "l_receiptdate": "1998-03-10", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "al deposits use. ironic packages along the " }, { "l_orderkey": 4386i32, "l_partkey": 118i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 28.0d, "l_extendedprice": 28507.08d, "l_discount": 0.03d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-19", "l_commitdate": "1998-05-01", "l_receiptdate": "1998-03-27", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": ". quick packages play slyly " }, { "l_orderkey": 5282i32, "l_partkey": 118i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 36.0d, "l_extendedprice": 36651.96d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-20", "l_commitdate": "1998-04-10", "l_receiptdate": "1998-06-14", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "re slyly accor" }, { "l_orderkey": 2629i32, "l_partkey": 118i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 6.0d, "l_extendedprice": 6108.66d, "l_discount": 0.06d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-10", "l_commitdate": "1998-05-29", "l_receiptdate": "1998-06-13", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "dolites hinder bli" }, { "l_orderkey": 1379i32, "l_partkey": 118i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 50.0d, "l_extendedprice": 50905.5d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-31", "l_commitdate": "1998-07-13", "l_receiptdate": "1998-09-02", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "olphins. ca" } ] }
-{ "partkey": 125i32, "lines": [ { "l_orderkey": 2848i32, "l_partkey": 125i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 34.0d, "l_extendedprice": 34854.08d, "l_discount": 0.02d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-03-15", "l_commitdate": "1992-04-24", "l_receiptdate": "1992-04-12", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "ts along the blithely regu" }, { "l_orderkey": 4230i32, "l_partkey": 125i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 50.0d, "l_extendedprice": 51256.0d, "l_discount": 0.0d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-03-29", "l_commitdate": "1992-05-19", "l_receiptdate": "1992-04-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "ts. final instructions in" }, { "l_orderkey": 4069i32, "l_partkey": 125i32, "l_suppkey": 8i32, "l_linenumber": 6i32, "l_quantity": 3.0d, "l_extendedprice": 3075.36d, "l_discount": 0.02d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-05-24", "l_commitdate": "1992-06-18", "l_receiptdate": "1992-06-12", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "y final deposits wake furiously! slyl" }, { "l_orderkey": 5218i32, "l_partkey": 125i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 33.0d, "l_extendedprice": 33828.96d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-09-16", "l_commitdate": "1992-09-30", "l_receiptdate": "1992-09-27", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "ronic instructi" }, { "l_orderkey": 868i32, "l_partkey": 125i32, "l_suppkey": 6i32, "l_linenumber": 6i32, "l_quantity": 19.0d, "l_extendedprice": 19477.28d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-09-20", "l_commitdate": "1992-07-18", "l_receiptdate": "1992-10-04", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "ely even deposits lose blithe" }, { "l_orderkey": 1346i32, "l_partkey": 125i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 48.0d, "l_extendedprice": 49205.76d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-09-28", "l_commitdate": "1992-07-22", "l_receiptdate": "1992-10-13", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": " along the carefully spec" }, { "l_orderkey": 4288i32, "l_partkey": 125i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 7.0d, "l_extendedprice": 7175.84d, "l_discount": 0.03d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-01-15", "l_commitdate": "1993-02-05", "l_receiptdate": "1993-01-26", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "ngside of the special platelet" }, { "l_orderkey": 4291i32, "l_partkey": 125i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 43.0d, "l_extendedprice": 44080.16d, "l_discount": 0.01d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-02-01", "l_commitdate": "1994-02-27", "l_receiptdate": "1994-02-06", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "s. quietly regular " }, { "l_orderkey": 1795i32, "l_partkey": 125i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 32.0d, "l_extendedprice": 32803.84d, "l_discount": 0.03d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-05-10", "l_commitdate": "1994-04-21", "l_receiptdate": "1994-05-17", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": " asymptotes across the bold," }, { "l_orderkey": 356i32, "l_partkey": 125i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 37.0d, "l_extendedprice": 37929.44d, "l_discount": 0.05d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-07-15", "l_commitdate": "1994-08-24", "l_receiptdate": "1994-08-09", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "ndencies are since the packag" }, { "l_orderkey": 2883i32, "l_partkey": 125i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 27.0d, "l_extendedprice": 27678.24d, "l_discount": 0.0d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-03-12", "l_commitdate": "1995-03-10", "l_receiptdate": "1995-04-04", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "s. brave pinto beans nag furiously" }, { "l_orderkey": 5314i32, "l_partkey": 125i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 16.0d, "l_extendedprice": 16401.92d, "l_discount": 0.0d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-25", "l_commitdate": "1995-07-08", "l_receiptdate": "1995-10-17", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "hely unusual packages acc" }, { "l_orderkey": 3393i32, "l_partkey": 125i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 44.0d, "l_extendedprice": 45105.28d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-16", "l_commitdate": "1995-08-05", "l_receiptdate": "1995-11-01", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "ld requests hag" }, { "l_orderkey": 5925i32, "l_partkey": 125i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 31.0d, "l_extendedprice": 31778.72d, "l_discount": 0.03d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-02", "l_commitdate": "1995-12-14", "l_receiptdate": "1996-01-07", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "e slyly. furiously regular deposi" }, { "l_orderkey": 2690i32, "l_partkey": 125i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 45.0d, "l_extendedprice": 46130.4d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-23", "l_commitdate": "1996-06-02", "l_receiptdate": "1996-05-29", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "ounts. slyly regular dependencies wa" }, { "l_orderkey": 3264i32, "l_partkey": 125i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 11.0d, "l_extendedprice": 11276.32d, "l_discount": 0.09d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-11", "l_commitdate": "1996-12-19", "l_receiptdate": "1996-12-15", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "regular packages" }, { "l_orderkey": 5124i32, "l_partkey": 125i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 44.0d, "l_extendedprice": 45105.28d, "l_discount": 0.03d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-13", "l_commitdate": "1997-06-26", "l_receiptdate": "1997-08-01", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "equests. carefully unusual d" }, { "l_orderkey": 1477i32, "l_partkey": 125i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 42.0d, "l_extendedprice": 43055.04d, "l_discount": 0.06d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-11-02", "l_commitdate": "1997-11-02", "l_receiptdate": "1997-11-20", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "lithely after the ir" }, { "l_orderkey": 4131i32, "l_partkey": 125i32, "l_suppkey": 6i32, "l_linenumber": 5i32, "l_quantity": 30.0d, "l_extendedprice": 30753.6d, "l_discount": 0.01d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-01", "l_commitdate": "1998-04-13", "l_receiptdate": "1998-04-08", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "he fluffily express depen" }, { "l_orderkey": 390i32, "l_partkey": 125i32, "l_suppkey": 4i32, "l_linenumber": 6i32, "l_quantity": 11.0d, "l_extendedprice": 11276.32d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-05", "l_commitdate": "1998-05-15", "l_receiptdate": "1998-06-01", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "according to the foxes are furiously " } ] }
-{ "partkey": 126i32, "lines": [ { "l_orderkey": 1793i32, "l_partkey": 126i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 4.0d, "l_extendedprice": 4104.48d, "l_discount": 0.07d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-07-28", "l_commitdate": "1992-08-26", "l_receiptdate": "1992-08-21", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "nic foxes along the even" }, { "l_orderkey": 1027i32, "l_partkey": 126i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 2.0d, "l_extendedprice": 2052.24d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-08-28", "l_commitdate": "1992-07-09", "l_receiptdate": "1992-09-10", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "s. quickly unusual waters inside " }, { "l_orderkey": 3907i32, "l_partkey": 126i32, "l_suppkey": 9i32, "l_linenumber": 6i32, "l_quantity": 34.0d, "l_extendedprice": 34888.08d, "l_discount": 0.02d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-09-06", "l_commitdate": "1992-10-08", "l_receiptdate": "1992-09-12", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": " requests according to the slyly pending " }, { "l_orderkey": 164i32, "l_partkey": 126i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 38.0d, "l_extendedprice": 38992.56d, "l_discount": 0.03d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-12-04", "l_commitdate": "1992-11-23", "l_receiptdate": "1993-01-02", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "counts cajole fluffily regular packages. b" }, { "l_orderkey": 2594i32, "l_partkey": 126i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 24.0d, "l_extendedprice": 24626.88d, "l_discount": 0.03d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-01-31", "l_commitdate": "1993-03-10", "l_receiptdate": "1993-02-04", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "lar accounts sleep fur" }, { "l_orderkey": 804i32, "l_partkey": 126i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 30.0d, "l_extendedprice": 30783.6d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-03-29", "l_commitdate": "1993-05-07", "l_receiptdate": "1993-04-14", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "ehind the quietly regular pac" }, { "l_orderkey": 4004i32, "l_partkey": 126i32, "l_suppkey": 9i32, "l_linenumber": 7i32, "l_quantity": 20.0d, "l_extendedprice": 20522.4d, "l_discount": 0.07d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-06-19", "l_commitdate": "1993-06-14", "l_receiptdate": "1993-07-04", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": ". ironic deposits cajole blithely?" }, { "l_orderkey": 3040i32, "l_partkey": 126i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 30.0d, "l_extendedprice": 30783.6d, "l_discount": 0.01d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-08-06", "l_commitdate": "1993-05-18", "l_receiptdate": "1993-08-19", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "x furiously bold packages. expres" }, { "l_orderkey": 3684i32, "l_partkey": 126i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 48.0d, "l_extendedprice": 49253.76d, "l_discount": 0.04d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-08-20", "l_commitdate": "1993-09-02", "l_receiptdate": "1993-09-10", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "its boost alongside" }, { "l_orderkey": 641i32, "l_partkey": 126i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 18.0d, "l_extendedprice": 18470.16d, "l_discount": 0.01d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-10-17", "l_commitdate": "1993-10-11", "l_receiptdate": "1993-10-29", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "p blithely bold packages. quick" }, { "l_orderkey": 2752i32, "l_partkey": 126i32, "l_suppkey": 5i32, "l_linenumber": 5i32, "l_quantity": 22.0d, "l_extendedprice": 22574.64d, "l_discount": 0.03d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-03-20", "l_commitdate": "1994-02-08", "l_receiptdate": "1994-04-01", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "equests nag. regular dependencies are furio" }, { "l_orderkey": 2820i32, "l_partkey": 126i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 33.0d, "l_extendedprice": 33861.96d, "l_discount": 0.08d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-07-07", "l_commitdate": "1994-08-17", "l_receiptdate": "1994-08-02", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "carefully even pinto beans. " }, { "l_orderkey": 3396i32, "l_partkey": 126i32, "l_suppkey": 5i32, "l_linenumber": 5i32, "l_quantity": 27.0d, "l_extendedprice": 27705.24d, "l_discount": 0.02d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-09-14", "l_commitdate": "1994-07-26", "l_receiptdate": "1994-09-28", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": " theodolites " }, { "l_orderkey": 3365i32, "l_partkey": 126i32, "l_suppkey": 5i32, "l_linenumber": 6i32, "l_quantity": 24.0d, "l_extendedprice": 24626.88d, "l_discount": 0.01d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-02-27", "l_commitdate": "1995-01-09", "l_receiptdate": "1995-03-27", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "into beans? carefully regula" }, { "l_orderkey": 3492i32, "l_partkey": 126i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 7.0d, "l_extendedprice": 7182.84d, "l_discount": 0.04d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-03-10", "l_commitdate": "1995-01-03", "l_receiptdate": "1995-03-16", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "thely regular dolphi" }, { "l_orderkey": 897i32, "l_partkey": 126i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 13.0d, "l_extendedprice": 13339.56d, "l_discount": 0.07d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-03-30", "l_commitdate": "1995-05-17", "l_receiptdate": "1995-04-21", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "bold accounts mold carefully! braids" }, { "l_orderkey": 448i32, "l_partkey": 126i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 4.0d, "l_extendedprice": 4104.48d, "l_discount": 0.0d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-25", "l_commitdate": "1995-10-20", "l_receiptdate": "1995-11-26", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "nts thrash quickly among the b" }, { "l_orderkey": 2049i32, "l_partkey": 126i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 30.0d, "l_extendedprice": 30783.6d, "l_discount": 0.04d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-16", "l_commitdate": "1996-02-04", "l_receiptdate": "1995-12-22", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "ial accounts are among the furiously perma" }, { "l_orderkey": 3879i32, "l_partkey": 126i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 45.0d, "l_extendedprice": 46175.4d, "l_discount": 0.1d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-18", "l_commitdate": "1996-01-03", "l_receiptdate": "1996-04-03", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "ly according to the expr" }, { "l_orderkey": 4614i32, "l_partkey": 126i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 6.0d, "l_extendedprice": 6156.72d, "l_discount": 0.09d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-11", "l_commitdate": "1996-05-30", "l_receiptdate": "1996-07-03", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "ake quickly quickly regular epitap" }, { "l_orderkey": 3747i32, "l_partkey": 126i32, "l_suppkey": 5i32, "l_linenumber": 5i32, "l_quantity": 32.0d, "l_extendedprice": 32835.84d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-10", "l_commitdate": "1996-11-04", "l_receiptdate": "1996-10-10", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "quests shall h" }, { "l_orderkey": 1728i32, "l_partkey": 126i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 1.0d, "l_extendedprice": 1026.12d, "l_discount": 0.07d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-16", "l_commitdate": "1996-08-19", "l_receiptdate": "1996-09-18", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "lly. carefully ex" }, { "l_orderkey": 3555i32, "l_partkey": 126i32, "l_suppkey": 5i32, "l_linenumber": 7i32, "l_quantity": 9.0d, "l_extendedprice": 9235.08d, "l_discount": 0.07d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-13", "l_commitdate": "1996-10-02", "l_receiptdate": "1996-10-22", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "are. slyly final foxes acro" }, { "l_orderkey": 2375i32, "l_partkey": 126i32, "l_suppkey": 7i32, "l_linenumber": 6i32, "l_quantity": 20.0d, "l_extendedprice": 20522.4d, "l_discount": 0.09d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-01", "l_commitdate": "1996-12-26", "l_receiptdate": "1996-12-19", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "ckages! blithely enticing deposi" }, { "l_orderkey": 2533i32, "l_partkey": 126i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 38.0d, "l_extendedprice": 38992.56d, "l_discount": 0.09d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-10", "l_commitdate": "1997-06-02", "l_receiptdate": "1997-05-28", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "of the regular accounts. even packages caj" }, { "l_orderkey": 4358i32, "l_partkey": 126i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 47.0d, "l_extendedprice": 48227.64d, "l_discount": 0.04d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-10-15", "l_commitdate": "1997-10-14", "l_receiptdate": "1997-11-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "refully busy dep" }, { "l_orderkey": 5027i32, "l_partkey": 126i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 32.0d, "l_extendedprice": 32835.84d, "l_discount": 0.0d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-11-13", "l_commitdate": "1997-10-29", "l_receiptdate": "1997-11-18", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "cording to" }, { "l_orderkey": 1024i32, "l_partkey": 126i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 34.0d, "l_extendedprice": 34888.08d, "l_discount": 0.0d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-06", "l_commitdate": "1998-02-05", "l_receiptdate": "1998-01-26", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "des the slyly even" }, { "l_orderkey": 1184i32, "l_partkey": 126i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 3.0d, "l_extendedprice": 3078.36d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-15", "l_commitdate": "1997-12-19", "l_receiptdate": "1998-02-02", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "ar packages. final packages cajol" }, { "l_orderkey": 5413i32, "l_partkey": 126i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 48.0d, "l_extendedprice": 49253.76d, "l_discount": 0.02d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-25", "l_commitdate": "1997-11-20", "l_receiptdate": "1998-02-22", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": " theodolites. furiously ironic instr" }, { "l_orderkey": 5700i32, "l_partkey": 126i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 23.0d, "l_extendedprice": 23600.76d, "l_discount": 0.03d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-30", "l_commitdate": "1998-01-31", "l_receiptdate": "1998-01-31", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": " wake quickly carefully fluffy hockey" } ] }
-{ "partkey": 135i32, "lines": [ { "l_orderkey": 1826i32, "l_partkey": 135i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 46.0d, "l_extendedprice": 47615.98d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-05-02", "l_commitdate": "1992-06-25", "l_receiptdate": "1992-05-26", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "ously? quickly pe" }, { "l_orderkey": 1925i32, "l_partkey": 135i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 35.0d, "l_extendedprice": 36229.55d, "l_discount": 0.06d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-05-11", "l_commitdate": "1992-04-10", "l_receiptdate": "1992-05-14", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "counts. carefully ironic packages boost ab" }, { "l_orderkey": 2052i32, "l_partkey": 135i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 35.0d, "l_extendedprice": 36229.55d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-05-29", "l_commitdate": "1992-05-24", "l_receiptdate": "1992-06-11", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "ts according t" }, { "l_orderkey": 3172i32, "l_partkey": 135i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 28.0d, "l_extendedprice": 28983.64d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-07-09", "l_commitdate": "1992-07-14", "l_receiptdate": "1992-07-16", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "regular ideas. packages are furi" }, { "l_orderkey": 5959i32, "l_partkey": 135i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 49.0d, "l_extendedprice": 50721.37d, "l_discount": 0.07d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-07-16", "l_commitdate": "1992-08-09", "l_receiptdate": "1992-08-14", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "usual packages haggle slyly pi" }, { "l_orderkey": 5254i32, "l_partkey": 135i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 10.0d, "l_extendedprice": 10351.3d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-11-19", "l_commitdate": "1992-10-20", "l_receiptdate": "1992-12-15", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": " accounts. silent deposit" }, { "l_orderkey": 3232i32, "l_partkey": 135i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 34.0d, "l_extendedprice": 35194.42d, "l_discount": 0.07d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-01-09", "l_commitdate": "1992-11-14", "l_receiptdate": "1993-02-03", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "old packages integrate quickly " }, { "l_orderkey": 3684i32, "l_partkey": 135i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 13.0d, "l_extendedprice": 13456.69d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-07-23", "l_commitdate": "1993-09-16", "l_receiptdate": "1993-08-06", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "ing, unusual pinto beans! thinly p" }, { "l_orderkey": 2055i32, "l_partkey": 135i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 12.0d, "l_extendedprice": 12421.56d, "l_discount": 0.0d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-10-26", "l_commitdate": "1993-11-23", "l_receiptdate": "1993-11-22", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "al pains. acco" }, { "l_orderkey": 353i32, "l_partkey": 135i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 12.0d, "l_extendedprice": 12421.56d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-01-02", "l_commitdate": "1994-03-26", "l_receiptdate": "1994-01-19", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "g deposits cajole " }, { "l_orderkey": 1699i32, "l_partkey": 135i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 17.0d, "l_extendedprice": 17597.21d, "l_discount": 0.07d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-01-12", "l_commitdate": "1994-03-12", "l_receiptdate": "1994-02-08", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "haggle blithely slyly" }, { "l_orderkey": 2659i32, "l_partkey": 135i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 24.0d, "l_extendedprice": 24843.12d, "l_discount": 0.04d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-03-28", "l_commitdate": "1994-02-20", "l_receiptdate": "1994-04-05", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": " haggle carefully " }, { "l_orderkey": 99i32, "l_partkey": 135i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 42.0d, "l_extendedprice": 43475.46d, "l_discount": 0.02d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-04-19", "l_commitdate": "1994-05-18", "l_receiptdate": "1994-04-20", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "kages are fluffily furiously ir" }, { "l_orderkey": 2211i32, "l_partkey": 135i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 3.0d, "l_extendedprice": 3105.39d, "l_discount": 0.02d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-08-28", "l_commitdate": "1994-09-10", "l_receiptdate": "1994-09-06", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "pendencies after the regular f" }, { "l_orderkey": 5572i32, "l_partkey": 135i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 46.0d, "l_extendedprice": 47615.98d, "l_discount": 0.02d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-09-08", "l_commitdate": "1994-10-14", "l_receiptdate": "1994-10-01", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "ully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully reg" }, { "l_orderkey": 3844i32, "l_partkey": 135i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 2.0d, "l_extendedprice": 2070.26d, "l_discount": 0.03d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-02-24", "l_commitdate": "1995-02-03", "l_receiptdate": "1995-03-18", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "es haggle final acco" }, { "l_orderkey": 1445i32, "l_partkey": 135i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 24.0d, "l_extendedprice": 24843.12d, "l_discount": 0.1d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-04-23", "l_commitdate": "1995-02-16", "l_receiptdate": "1995-05-18", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "rate after the carefully reg" }, { "l_orderkey": 4422i32, "l_partkey": 135i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 5.0d, "l_extendedprice": 5175.65d, "l_discount": 0.09d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-17", "l_commitdate": "1995-08-13", "l_receiptdate": "1995-07-25", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "e furiously about t" }, { "l_orderkey": 1095i32, "l_partkey": 135i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 28.0d, "l_extendedprice": 28983.64d, "l_discount": 0.08d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-20", "l_commitdate": "1995-11-18", "l_receiptdate": "1995-10-02", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": " regular pac" }, { "l_orderkey": 2532i32, "l_partkey": 135i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 1.0d, "l_extendedprice": 1035.13d, "l_discount": 0.0d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-27", "l_commitdate": "1995-11-23", "l_receiptdate": "1996-01-29", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "ely final ideas cajole despite the ca" }, { "l_orderkey": 1254i32, "l_partkey": 135i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 35.0d, "l_extendedprice": 36229.55d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-04-08", "l_commitdate": "1996-02-29", "l_receiptdate": "1996-04-18", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "ckages boost. furious warhorses cajole" }, { "l_orderkey": 2276i32, "l_partkey": 135i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 13.0d, "l_extendedprice": 13456.69d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-24", "l_commitdate": "1996-06-18", "l_receiptdate": "1996-08-16", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "arefully ironic foxes cajole q" }, { "l_orderkey": 5063i32, "l_partkey": 135i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 18.0d, "l_extendedprice": 18632.34d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-02", "l_commitdate": "1997-06-18", "l_receiptdate": "1997-06-06", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "refully quiet reques" }, { "l_orderkey": 5219i32, "l_partkey": 135i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 2.0d, "l_extendedprice": 2070.26d, "l_discount": 0.08d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-26", "l_commitdate": "1997-04-29", "l_receiptdate": "1997-07-08", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": " blithely according to the stea" }, { "l_orderkey": 935i32, "l_partkey": 135i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 36.0d, "l_extendedprice": 37264.68d, "l_discount": 0.06d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-11-05", "l_commitdate": "1997-12-05", "l_receiptdate": "1997-11-25", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "leep about the exp" }, { "l_orderkey": 4486i32, "l_partkey": 135i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 46.0d, "l_extendedprice": 47615.98d, "l_discount": 0.08d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-02", "l_commitdate": "1998-04-05", "l_receiptdate": "1998-05-08", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "ackages. specia" }, { "l_orderkey": 2567i32, "l_partkey": 135i32, "l_suppkey": 6i32, "l_linenumber": 7i32, "l_quantity": 43.0d, "l_extendedprice": 44510.59d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-11", "l_commitdate": "1998-04-15", "l_receiptdate": "1998-05-29", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "requests. final courts cajole " }, { "l_orderkey": 4192i32, "l_partkey": 135i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 7.0d, "l_extendedprice": 7245.91d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-19", "l_commitdate": "1998-07-08", "l_receiptdate": "1998-05-31", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "y; excuses use. ironic, close instru" }, { "l_orderkey": 1508i32, "l_partkey": 135i32, "l_suppkey": 6i32, "l_linenumber": 5i32, "l_quantity": 29.0d, "l_extendedprice": 30018.77d, "l_discount": 0.02d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-03", "l_commitdate": "1998-07-08", "l_receiptdate": "1998-08-22", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "r instructions. carefully" } ] }
-{ "partkey": 138i32, "lines": [ { "l_orderkey": 2848i32, "l_partkey": 138i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 8.0d, "l_extendedprice": 8305.04d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-06-20", "l_commitdate": "1992-04-12", "l_receiptdate": "1992-07-09", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "sly regular foxes. " }, { "l_orderkey": 1991i32, "l_partkey": 138i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 6.0d, "l_extendedprice": 6228.78d, "l_discount": 0.1d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-11-21", "l_commitdate": "1992-11-03", "l_receiptdate": "1992-11-27", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "uickly blithely final de" }, { "l_orderkey": 4487i32, "l_partkey": 138i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 37.0d, "l_extendedprice": 38410.81d, "l_discount": 0.03d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-02-28", "l_commitdate": "1993-04-18", "l_receiptdate": "1993-03-17", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "bove the fu" }, { "l_orderkey": 226i32, "l_partkey": 138i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 46.0d, "l_extendedprice": 47753.98d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-07-06", "l_commitdate": "1993-04-24", "l_receiptdate": "1993-07-13", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "s. carefully bold accounts cajol" }, { "l_orderkey": 2272i32, "l_partkey": 138i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 30.0d, "l_extendedprice": 31143.9d, "l_discount": 0.09d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-07-27", "l_commitdate": "1993-05-15", "l_receiptdate": "1993-08-13", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "quests at the foxes haggle evenly pack" }, { "l_orderkey": 4007i32, "l_partkey": 138i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 15.0d, "l_extendedprice": 15571.95d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-09-01", "l_commitdate": "1993-07-19", "l_receiptdate": "1993-09-03", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "le furiously quickly " }, { "l_orderkey": 4161i32, "l_partkey": 138i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 42.0d, "l_extendedprice": 43601.46d, "l_discount": 0.03d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-11-12", "l_commitdate": "1993-10-04", "l_receiptdate": "1993-11-27", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "thely across the even attainments. express" }, { "l_orderkey": 33i32, "l_partkey": 138i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 5.0d, "l_extendedprice": 5190.65d, "l_discount": 0.05d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-12-09", "l_commitdate": "1993-12-25", "l_receiptdate": "1993-12-23", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": ". stealthily bold exc" }, { "l_orderkey": 5479i32, "l_partkey": 138i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 50.0d, "l_extendedprice": 51906.5d, "l_discount": 0.02d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-12-24", "l_commitdate": "1994-02-14", "l_receiptdate": "1994-01-18", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "ironic gifts. even dependencies sno" }, { "l_orderkey": 4965i32, "l_partkey": 138i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 33.0d, "l_extendedprice": 34258.29d, "l_discount": 0.04d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-12-31", "l_commitdate": "1993-11-29", "l_receiptdate": "1994-01-27", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "iously slyly" }, { "l_orderkey": 5189i32, "l_partkey": 138i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 44.0d, "l_extendedprice": 45677.72d, "l_discount": 0.02d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-01-13", "l_commitdate": "1994-02-07", "l_receiptdate": "1994-01-21", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "y finally pendin" }, { "l_orderkey": 3616i32, "l_partkey": 138i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 28.0d, "l_extendedprice": 29067.64d, "l_discount": 0.08d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-02-20", "l_commitdate": "1994-04-18", "l_receiptdate": "1994-03-05", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "ironic packages. furiously ev" }, { "l_orderkey": 5638i32, "l_partkey": 138i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 45.0d, "l_extendedprice": 46715.85d, "l_discount": 0.09d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-05-17", "l_commitdate": "1994-03-09", "l_receiptdate": "1994-06-15", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "ar foxes. fluffily pending accounts " }, { "l_orderkey": 291i32, "l_partkey": 138i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 19.0d, "l_extendedprice": 19724.47d, "l_discount": 0.08d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-06-14", "l_commitdate": "1994-04-25", "l_receiptdate": "1994-06-19", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "e. ruthlessly final accounts after the" }, { "l_orderkey": 3396i32, "l_partkey": 138i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 9.0d, "l_extendedprice": 9343.17d, "l_discount": 0.01d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-07-01", "l_commitdate": "1994-08-18", "l_receiptdate": "1994-07-21", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "usly special foxes. accounts wake careful" }, { "l_orderkey": 69i32, "l_partkey": 138i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 17.0d, "l_extendedprice": 17648.21d, "l_discount": 0.09d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-07-02", "l_commitdate": "1994-07-07", "l_receiptdate": "1994-07-03", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "final, pending instr" }, { "l_orderkey": 4065i32, "l_partkey": 138i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 14.0d, "l_extendedprice": 14533.82d, "l_discount": 0.04d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-08-22", "l_commitdate": "1994-07-29", "l_receiptdate": "1994-09-19", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "e furiously outside " }, { "l_orderkey": 1125i32, "l_partkey": 138i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 24.0d, "l_extendedprice": 24915.12d, "l_discount": 0.1d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-01-31", "l_commitdate": "1994-12-02", "l_receiptdate": "1995-02-20", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "es about the slyly s" }, { "l_orderkey": 1281i32, "l_partkey": 138i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 33.0d, "l_extendedprice": 34258.29d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-02-01", "l_commitdate": "1995-01-18", "l_receiptdate": "1995-03-03", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "dencies. thinly final pinto beans wake" }, { "l_orderkey": 5248i32, "l_partkey": 138i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 45.0d, "l_extendedprice": 46715.85d, "l_discount": 0.0d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-05-09", "l_commitdate": "1995-07-12", "l_receiptdate": "1995-05-27", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": ". bold, pending foxes h" }, { "l_orderkey": 3329i32, "l_partkey": 138i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 36.0d, "l_extendedprice": 37372.68d, "l_discount": 0.09d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-06", "l_commitdate": "1995-08-03", "l_receiptdate": "1995-08-14", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "ts at the re" }, { "l_orderkey": 4132i32, "l_partkey": 138i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 28.0d, "l_extendedprice": 29067.64d, "l_discount": 0.07d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-16", "l_commitdate": "1995-08-01", "l_receiptdate": "1995-08-29", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "pths wake against the stealthily special pi" }, { "l_orderkey": 448i32, "l_partkey": 138i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 23.0d, "l_extendedprice": 23876.99d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-26", "l_commitdate": "1995-11-02", "l_receiptdate": "1995-10-17", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "ious, final gifts" }, { "l_orderkey": 3362i32, "l_partkey": 138i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 36.0d, "l_extendedprice": 37372.68d, "l_discount": 0.06d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-05", "l_commitdate": "1995-08-28", "l_receiptdate": "1995-11-03", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "es against the quickly permanent pint" }, { "l_orderkey": 2309i32, "l_partkey": 138i32, "l_suppkey": 4i32, "l_linenumber": 7i32, "l_quantity": 48.0d, "l_extendedprice": 49830.24d, "l_discount": 0.03d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-21", "l_commitdate": "1995-11-21", "l_receiptdate": "1995-11-09", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "ccounts. id" }, { "l_orderkey": 3525i32, "l_partkey": 138i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 27.0d, "l_extendedprice": 28029.51d, "l_discount": 0.03d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-30", "l_commitdate": "1996-01-23", "l_receiptdate": "1996-01-02", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "y slyly special asymptotes" }, { "l_orderkey": 3235i32, "l_partkey": 138i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 29.0d, "l_extendedprice": 30105.77d, "l_discount": 0.06d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-28", "l_commitdate": "1995-12-26", "l_receiptdate": "1996-02-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "e fluffy pinto bea" }, { "l_orderkey": 3010i32, "l_partkey": 138i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 23.0d, "l_extendedprice": 23876.99d, "l_discount": 0.04d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-08", "l_commitdate": "1996-02-29", "l_receiptdate": "1996-03-27", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "ounts. pendin" }, { "l_orderkey": 4513i32, "l_partkey": 138i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 34.0d, "l_extendedprice": 35296.42d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-27", "l_commitdate": "1996-06-12", "l_receiptdate": "1996-04-06", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "sits. quickly even instructions " }, { "l_orderkey": 2951i32, "l_partkey": 138i32, "l_suppkey": 4i32, "l_linenumber": 6i32, "l_quantity": 18.0d, "l_extendedprice": 18686.34d, "l_discount": 0.06d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-04-04", "l_commitdate": "1996-04-27", "l_receiptdate": "1996-04-06", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "ep about the final, even package" }, { "l_orderkey": 2340i32, "l_partkey": 138i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 9.0d, "l_extendedprice": 9343.17d, "l_discount": 0.08d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-01", "l_commitdate": "1996-02-24", "l_receiptdate": "1996-05-16", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": ". carefully ironic" }, { "l_orderkey": 482i32, "l_partkey": 138i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 32.0d, "l_extendedprice": 33220.16d, "l_discount": 0.0d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-22", "l_commitdate": "1996-05-14", "l_receiptdate": "1996-05-29", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "usual deposits affix against " }, { "l_orderkey": 5573i32, "l_partkey": 138i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 43.0d, "l_extendedprice": 44639.59d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-09", "l_commitdate": "1996-09-24", "l_receiptdate": "1996-09-28", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": " bold package" }, { "l_orderkey": 1283i32, "l_partkey": 138i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 18.0d, "l_extendedprice": 18686.34d, "l_discount": 0.02d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-14", "l_commitdate": "1996-11-07", "l_receiptdate": "1996-10-22", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "equests use along the fluff" }, { "l_orderkey": 4934i32, "l_partkey": 138i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 29.0d, "l_extendedprice": 30105.77d, "l_discount": 0.09d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-10", "l_commitdate": "1997-05-05", "l_receiptdate": "1997-05-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "aggle furiously among the busily final re" }, { "l_orderkey": 1889i32, "l_partkey": 138i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 36.0d, "l_extendedprice": 37372.68d, "l_discount": 0.05d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-19", "l_commitdate": "1997-06-14", "l_receiptdate": "1997-05-23", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "l pinto beans kindle " }, { "l_orderkey": 576i32, "l_partkey": 138i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 5.0d, "l_extendedprice": 5190.65d, "l_discount": 0.03d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-11", "l_commitdate": "1997-06-17", "l_receiptdate": "1997-07-05", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "l foxes boost slyly. accounts af" }, { "l_orderkey": 5157i32, "l_partkey": 138i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 18.0d, "l_extendedprice": 18686.34d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-06", "l_commitdate": "1997-10-03", "l_receiptdate": "1997-09-19", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "y bold deposits nag blithely. final reque" }, { "l_orderkey": 5286i32, "l_partkey": 138i32, "l_suppkey": 9i32, "l_linenumber": 6i32, "l_quantity": 24.0d, "l_extendedprice": 24915.12d, "l_discount": 0.08d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-27", "l_commitdate": "1997-12-21", "l_receiptdate": "1997-09-30", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "s. express foxes of the" }, { "l_orderkey": 4832i32, "l_partkey": 138i32, "l_suppkey": 4i32, "l_linenumber": 5i32, "l_quantity": 43.0d, "l_extendedprice": 44639.59d, "l_discount": 0.1d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-31", "l_commitdate": "1998-02-20", "l_receiptdate": "1998-01-26", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "oze according to the accou" }, { "l_orderkey": 5507i32, "l_partkey": 138i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 48.0d, "l_extendedprice": 49830.24d, "l_discount": 0.03d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-03", "l_commitdate": "1998-08-10", "l_receiptdate": "1998-08-24", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "yly idle deposits. final, final fox" }, { "l_orderkey": 5664i32, "l_partkey": 138i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 33.0d, "l_extendedprice": 34258.29d, "l_discount": 0.08d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-29", "l_commitdate": "1998-09-17", "l_receiptdate": "1998-09-25", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "d the final " } ] }
-{ "partkey": 141i32, "lines": [ { "l_orderkey": 5409i32, "l_partkey": 141i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 17.0d, "l_extendedprice": 17699.38d, "l_discount": 0.07d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-01-13", "l_commitdate": "1992-04-05", "l_receiptdate": "1992-01-20", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "cross the sil" }, { "l_orderkey": 3712i32, "l_partkey": 141i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 27.0d, "l_extendedprice": 28110.78d, "l_discount": 0.01d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-02-01", "l_commitdate": "1992-02-26", "l_receiptdate": "1992-03-02", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "ctions. even accounts haggle alongside " }, { "l_orderkey": 1344i32, "l_partkey": 141i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 15.0d, "l_extendedprice": 15617.1d, "l_discount": 0.1d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-06-22", "l_commitdate": "1992-06-24", "l_receiptdate": "1992-06-23", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "rding to the blithely ironic theodolite" }, { "l_orderkey": 3776i32, "l_partkey": 141i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 49.0d, "l_extendedprice": 51015.86d, "l_discount": 0.01d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-12-03", "l_commitdate": "1993-02-16", "l_receiptdate": "1992-12-28", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "equests. final, thin grouches " }, { "l_orderkey": 4067i32, "l_partkey": 141i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 17.0d, "l_extendedprice": 17699.38d, "l_discount": 0.03d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-01-26", "l_commitdate": "1992-11-23", "l_receiptdate": "1993-01-27", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "ts haggle slyly unusual, final" }, { "l_orderkey": 3367i32, "l_partkey": 141i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 34.0d, "l_extendedprice": 35398.76d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-03-30", "l_commitdate": "1993-02-23", "l_receiptdate": "1993-04-11", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": " accounts wake slyly " }, { "l_orderkey": 4166i32, "l_partkey": 141i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 8.0d, "l_extendedprice": 8329.12d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-06-05", "l_commitdate": "1993-04-10", "l_receiptdate": "1993-07-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "uickly. blithely pending de" }, { "l_orderkey": 738i32, "l_partkey": 141i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 12.0d, "l_extendedprice": 12493.68d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-06-16", "l_commitdate": "1993-05-05", "l_receiptdate": "1993-06-22", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "ove the slyly regular p" }, { "l_orderkey": 321i32, "l_partkey": 141i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 41.0d, "l_extendedprice": 42686.74d, "l_discount": 0.08d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-06-21", "l_commitdate": "1993-06-07", "l_receiptdate": "1993-07-09", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "special packages shall have to doze blit" }, { "l_orderkey": 132i32, "l_partkey": 141i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 18.0d, "l_extendedprice": 18740.52d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-07-10", "l_commitdate": "1993-08-05", "l_receiptdate": "1993-07-13", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "ges. platelets wake furio" }, { "l_orderkey": 1604i32, "l_partkey": 141i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 37.0d, "l_extendedprice": 38522.18d, "l_discount": 0.06d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-08-22", "l_commitdate": "1993-09-21", "l_receiptdate": "1993-09-10", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "requests. blithely ironic somas s" }, { "l_orderkey": 2496i32, "l_partkey": 141i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 38.0d, "l_extendedprice": 39563.32d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-03-26", "l_commitdate": "1994-04-06", "l_receiptdate": "1994-04-23", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": " bold accounts. furi" }, { "l_orderkey": 3751i32, "l_partkey": 141i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 32.0d, "l_extendedprice": 33316.48d, "l_discount": 0.03d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-05-05", "l_commitdate": "1994-07-02", "l_receiptdate": "1994-06-02", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "rthogs could have to slee" }, { "l_orderkey": 2373i32, "l_partkey": 141i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 29.0d, "l_extendedprice": 30193.06d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-06-01", "l_commitdate": "1994-05-14", "l_receiptdate": "1994-06-17", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "yly silent ideas affix furiousl" }, { "l_orderkey": 2820i32, "l_partkey": 141i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 38.0d, "l_extendedprice": 39563.32d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-09-10", "l_commitdate": "1994-08-07", "l_receiptdate": "1994-10-07", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "ests despite the carefully unusual a" }, { "l_orderkey": 4583i32, "l_partkey": 141i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 17.0d, "l_extendedprice": 17699.38d, "l_discount": 0.01d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-11-08", "l_commitdate": "1994-11-03", "l_receiptdate": "1994-11-29", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "romise. reques" }, { "l_orderkey": 2086i32, "l_partkey": 141i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 32.0d, "l_extendedprice": 33316.48d, "l_discount": 0.04d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-11-15", "l_commitdate": "1995-01-05", "l_receiptdate": "1994-12-09", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "e carefully along th" }, { "l_orderkey": 4485i32, "l_partkey": 141i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 46.0d, "l_extendedprice": 47892.44d, "l_discount": 0.04d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-03-09", "l_commitdate": "1994-12-14", "l_receiptdate": "1995-03-23", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": ". ironic foxes haggle. regular war" }, { "l_orderkey": 2311i32, "l_partkey": 141i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 18.0d, "l_extendedprice": 18740.52d, "l_discount": 0.01d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "F", "l_shipdate": "1995-06-11", "l_commitdate": "1995-06-18", "l_receiptdate": "1995-07-02", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": " fluffily even patterns haggle blithely. re" }, { "l_orderkey": 4512i32, "l_partkey": 141i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 32.0d, "l_extendedprice": 33316.48d, "l_discount": 0.1d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-25", "l_commitdate": "1995-12-28", "l_receiptdate": "1995-12-06", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "counts are against the quickly regular " }, { "l_orderkey": 4672i32, "l_partkey": 141i32, "l_suppkey": 8i32, "l_linenumber": 6i32, "l_quantity": 20.0d, "l_extendedprice": 20822.8d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-08", "l_commitdate": "1996-01-25", "l_receiptdate": "1995-12-19", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "s boost at the ca" }, { "l_orderkey": 5252i32, "l_partkey": 141i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 13.0d, "l_extendedprice": 13534.82d, "l_discount": 0.02d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-02", "l_commitdate": "1996-05-10", "l_receiptdate": "1996-03-11", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "boost fluffily across " }, { "l_orderkey": 1664i32, "l_partkey": 141i32, "l_suppkey": 8i32, "l_linenumber": 6i32, "l_quantity": 40.0d, "l_extendedprice": 41645.6d, "l_discount": 0.09d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-04-02", "l_commitdate": "1996-04-22", "l_receiptdate": "1996-04-17", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "se blithely unusual pains. carefully" }, { "l_orderkey": 1089i32, "l_partkey": 141i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 1.0d, "l_extendedprice": 1041.14d, "l_discount": 0.01d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-08", "l_commitdate": "1996-07-07", "l_receiptdate": "1996-07-17", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "n courts among the caref" }, { "l_orderkey": 3876i32, "l_partkey": 141i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 12.0d, "l_extendedprice": 12493.68d, "l_discount": 0.06d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-16", "l_commitdate": "1996-10-23", "l_receiptdate": "1996-10-05", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "y above the pending tithes. blithely ironi" }, { "l_orderkey": 1380i32, "l_partkey": 141i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 40.0d, "l_extendedprice": 41645.6d, "l_discount": 0.02d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-01", "l_commitdate": "1996-08-14", "l_receiptdate": "1996-10-20", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "ly final frets. ironic," }, { "l_orderkey": 3747i32, "l_partkey": 141i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 42.0d, "l_extendedprice": 43727.88d, "l_discount": 0.05d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-10", "l_commitdate": "1996-10-19", "l_receiptdate": "1996-11-19", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "y. blithely fina" }, { "l_orderkey": 3264i32, "l_partkey": 141i32, "l_suppkey": 2i32, "l_linenumber": 6i32, "l_quantity": 43.0d, "l_extendedprice": 44769.02d, "l_discount": 0.06d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-17", "l_commitdate": "1997-01-24", "l_receiptdate": "1997-02-01", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "leep at the blithely bold" }, { "l_orderkey": 836i32, "l_partkey": 141i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 46.0d, "l_extendedprice": 47892.44d, "l_discount": 0.05d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-21", "l_commitdate": "1997-02-06", "l_receiptdate": "1997-04-05", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "boldly final pinto beans haggle furiously" }, { "l_orderkey": 1890i32, "l_partkey": 141i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 26.0d, "l_extendedprice": 27069.64d, "l_discount": 0.03d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-02", "l_commitdate": "1997-03-13", "l_receiptdate": "1997-04-22", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "ngage. slyly ironic " }, { "l_orderkey": 4228i32, "l_partkey": 141i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 20.0d, "l_extendedprice": 20822.8d, "l_discount": 0.0d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-24", "l_commitdate": "1997-05-29", "l_receiptdate": "1997-05-17", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "f the slyly fluffy pinto beans are" }, { "l_orderkey": 582i32, "l_partkey": 141i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 42.0d, "l_extendedprice": 43727.88d, "l_discount": 0.07d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-11-15", "l_commitdate": "1997-12-21", "l_receiptdate": "1997-12-03", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "iously beside the silent de" }, { "l_orderkey": 4901i32, "l_partkey": 141i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 37.0d, "l_extendedprice": 38522.18d, "l_discount": 0.0d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-26", "l_commitdate": "1998-02-20", "l_receiptdate": "1998-01-31", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": " furiously ev" }, { "l_orderkey": 5536i32, "l_partkey": 141i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 11.0d, "l_extendedprice": 11452.54d, "l_discount": 0.02d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-18", "l_commitdate": "1998-05-12", "l_receiptdate": "1998-03-28", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": " snooze furio" }, { "l_orderkey": 4449i32, "l_partkey": 141i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 10.0d, "l_extendedprice": 10411.4d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-09", "l_commitdate": "1998-05-04", "l_receiptdate": "1998-05-15", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "ccounts alongside of the platelets integr" }, { "l_orderkey": 2565i32, "l_partkey": 141i32, "l_suppkey": 4i32, "l_linenumber": 6i32, "l_quantity": 48.0d, "l_extendedprice": 49974.72d, "l_discount": 0.08d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-18", "l_commitdate": "1998-05-06", "l_receiptdate": "1998-07-13", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "r instructions sleep qui" }, { "l_orderkey": 4448i32, "l_partkey": 141i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 3.0d, "l_extendedprice": 3123.42d, "l_discount": 0.01d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-20", "l_commitdate": "1998-07-10", "l_receiptdate": "1998-08-07", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "ronic theod" }, { "l_orderkey": 1730i32, "l_partkey": 141i32, "l_suppkey": 4i32, "l_linenumber": 5i32, "l_quantity": 43.0d, "l_extendedprice": 44769.02d, "l_discount": 0.04d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-10-26", "l_commitdate": "1998-10-22", "l_receiptdate": "1998-11-02", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "ng deposits cajo" } ] }
-{ "partkey": 147i32, "lines": [ { "l_orderkey": 5959i32, "l_partkey": 147i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 17.0d, "l_extendedprice": 17801.38d, "l_discount": 0.09d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-06-10", "l_commitdate": "1992-07-06", "l_receiptdate": "1992-06-23", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "ackages. blithely ex" }, { "l_orderkey": 4992i32, "l_partkey": 147i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 47.0d, "l_extendedprice": 49215.58d, "l_discount": 0.1d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-09-04", "l_commitdate": "1992-08-05", "l_receiptdate": "1992-09-21", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "atterns use fluffily." }, { "l_orderkey": 614i32, "l_partkey": 147i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 14.0d, "l_extendedprice": 14659.96d, "l_discount": 0.04d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-12-03", "l_commitdate": "1993-02-14", "l_receiptdate": "1992-12-27", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "ular packages haggle about the pack" }, { "l_orderkey": 931i32, "l_partkey": 147i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 48.0d, "l_extendedprice": 50262.72d, "l_discount": 0.01d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-02-03", "l_commitdate": "1993-03-02", "l_receiptdate": "1993-02-09", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "ep alongside of the fluffy " }, { "l_orderkey": 5954i32, "l_partkey": 147i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 8.0d, "l_extendedprice": 8377.12d, "l_discount": 0.03d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-03-27", "l_commitdate": "1993-01-22", "l_receiptdate": "1993-04-04", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "unusual th" }, { "l_orderkey": 2279i32, "l_partkey": 147i32, "l_suppkey": 10i32, "l_linenumber": 6i32, "l_quantity": 12.0d, "l_extendedprice": 12565.68d, "l_discount": 0.02d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-05-04", "l_commitdate": "1993-04-26", "l_receiptdate": "1993-05-28", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "ccounts. slyl" }, { "l_orderkey": 1600i32, "l_partkey": 147i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 30.0d, "l_extendedprice": 31414.2d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-06-03", "l_commitdate": "1993-05-03", "l_receiptdate": "1993-06-07", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "al escapades alongside of the depo" }, { "l_orderkey": 5569i32, "l_partkey": 147i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 19.0d, "l_extendedprice": 19895.66d, "l_discount": 0.1d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-07-30", "l_commitdate": "1993-06-21", "l_receiptdate": "1993-08-13", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": " detect ca" }, { "l_orderkey": 4610i32, "l_partkey": 147i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 29.0d, "l_extendedprice": 30367.06d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-08-09", "l_commitdate": "1993-07-27", "l_receiptdate": "1993-08-16", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": " foxes. special, express package" }, { "l_orderkey": 5543i32, "l_partkey": 147i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 8.0d, "l_extendedprice": 8377.12d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-10-28", "l_commitdate": "1993-11-18", "l_receiptdate": "1993-11-07", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "totes? iron" }, { "l_orderkey": 258i32, "l_partkey": 147i32, "l_suppkey": 4i32, "l_linenumber": 6i32, "l_quantity": 36.0d, "l_extendedprice": 37697.04d, "l_discount": 0.09d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-01-11", "l_commitdate": "1994-03-04", "l_receiptdate": "1994-01-18", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "nic asymptotes. slyly silent r" }, { "l_orderkey": 3073i32, "l_partkey": 147i32, "l_suppkey": 8i32, "l_linenumber": 6i32, "l_quantity": 39.0d, "l_extendedprice": 40838.46d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-05-01", "l_commitdate": "1994-02-16", "l_receiptdate": "1994-05-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "lar excuses across the furiously even " }, { "l_orderkey": 4647i32, "l_partkey": 147i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 27.0d, "l_extendedprice": 28272.78d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-05-20", "l_commitdate": "1994-06-26", "l_receiptdate": "1994-05-30", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "ully even ti" }, { "l_orderkey": 4321i32, "l_partkey": 147i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 33.0d, "l_extendedprice": 34555.62d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-09-01", "l_commitdate": "1994-08-17", "l_receiptdate": "1994-09-05", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "yly special excuses. fluffily " }, { "l_orderkey": 2724i32, "l_partkey": 147i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 21.0d, "l_extendedprice": 21989.94d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-11-25", "l_commitdate": "1994-10-15", "l_receiptdate": "1994-12-07", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "as. carefully regular dependencies wak" }, { "l_orderkey": 3492i32, "l_partkey": 147i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 30.0d, "l_extendedprice": 31414.2d, "l_discount": 0.02d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-01-29", "l_commitdate": "1995-01-02", "l_receiptdate": "1995-02-13", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": " detect furiously permanent, unusual accou" }, { "l_orderkey": 4227i32, "l_partkey": 147i32, "l_suppkey": 6i32, "l_linenumber": 5i32, "l_quantity": 49.0d, "l_extendedprice": 51309.86d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-05-19", "l_commitdate": "1995-04-12", "l_receiptdate": "1995-06-12", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "ts sleep blithely carefully unusual ideas." }, { "l_orderkey": 225i32, "l_partkey": 147i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 24.0d, "l_extendedprice": 25131.36d, "l_discount": 0.0d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-23", "l_commitdate": "1995-08-05", "l_receiptdate": "1995-10-16", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "ironic accounts are final account" }, { "l_orderkey": 2658i32, "l_partkey": 147i32, "l_suppkey": 4i32, "l_linenumber": 6i32, "l_quantity": 27.0d, "l_extendedprice": 28272.78d, "l_discount": 0.05d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-26", "l_commitdate": "1995-12-08", "l_receiptdate": "1995-09-30", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "ecial packages use abov" }, { "l_orderkey": 2016i32, "l_partkey": 147i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 2.0d, "l_extendedprice": 2094.28d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-12", "l_commitdate": "1996-11-09", "l_receiptdate": "1996-10-31", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "carefully according to the " }, { "l_orderkey": 1763i32, "l_partkey": 147i32, "l_suppkey": 4i32, "l_linenumber": 5i32, "l_quantity": 13.0d, "l_extendedprice": 13612.82d, "l_discount": 0.03d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-23", "l_commitdate": "1997-01-24", "l_receiptdate": "1996-12-05", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "s sleep carefully. fluffily unusua" }, { "l_orderkey": 1122i32, "l_partkey": 147i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 25.0d, "l_extendedprice": 26178.5d, "l_discount": 0.09d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-21", "l_commitdate": "1997-03-03", "l_receiptdate": "1997-04-07", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "d furiously. pinto " }, { "l_orderkey": 2404i32, "l_partkey": 147i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 36.0d, "l_extendedprice": 37697.04d, "l_discount": 0.07d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-27", "l_commitdate": "1997-05-16", "l_receiptdate": "1997-04-06", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "s nag furi" }, { "l_orderkey": 2117i32, "l_partkey": 147i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 3.0d, "l_extendedprice": 3141.42d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-05", "l_commitdate": "1997-07-20", "l_receiptdate": "1997-05-26", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "tes cajole" }, { "l_orderkey": 4453i32, "l_partkey": 147i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 41.0d, "l_extendedprice": 42932.74d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-17", "l_commitdate": "1997-05-15", "l_receiptdate": "1997-07-31", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "anent theodolites are slyly except t" }, { "l_orderkey": 1155i32, "l_partkey": 147i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 23.0d, "l_extendedprice": 24084.22d, "l_discount": 0.08d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-11-24", "l_commitdate": "1997-11-28", "l_receiptdate": "1997-12-06", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "ly unusual packages. iro" }, { "l_orderkey": 5380i32, "l_partkey": 147i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 10.0d, "l_extendedprice": 10471.4d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-11-24", "l_commitdate": "1998-01-10", "l_receiptdate": "1997-12-21", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "refully pending deposits. special, even t" }, { "l_orderkey": 1184i32, "l_partkey": 147i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 4.0d, "l_extendedprice": 4188.56d, "l_discount": 0.04d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-25", "l_commitdate": "1998-01-24", "l_receiptdate": "1998-01-18", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": " express packages. slyly expres" }, { "l_orderkey": 3748i32, "l_partkey": 147i32, "l_suppkey": 4i32, "l_linenumber": 5i32, "l_quantity": 21.0d, "l_extendedprice": 21989.94d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-30", "l_commitdate": "1998-04-07", "l_receiptdate": "1998-04-05", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "fix carefully furiously express ideas. furi" }, { "l_orderkey": 1126i32, "l_partkey": 147i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 14.0d, "l_extendedprice": 14659.96d, "l_discount": 0.07d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-17", "l_commitdate": "1998-04-15", "l_receiptdate": "1998-05-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "nstructions. blithe" }, { "l_orderkey": 257i32, "l_partkey": 147i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 7.0d, "l_extendedprice": 7329.98d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-18", "l_commitdate": "1998-05-15", "l_receiptdate": "1998-06-27", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "ackages sleep bold realms. f" } ] }
-{ "partkey": 152i32, "lines": [ { "l_orderkey": 4230i32, "l_partkey": 152i32, "l_suppkey": 3i32, "l_linenumber": 7i32, "l_quantity": 18.0d, "l_extendedprice": 18938.7d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-06-23", "l_commitdate": "1992-05-10", "l_receiptdate": "1992-07-04", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": " the final acco" }, { "l_orderkey": 896i32, "l_partkey": 152i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 11.0d, "l_extendedprice": 11573.65d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-05-19", "l_commitdate": "1993-05-22", "l_receiptdate": "1993-06-08", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "the multipliers sleep" }, { "l_orderkey": 2368i32, "l_partkey": 152i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 16.0d, "l_extendedprice": 16834.4d, "l_discount": 0.04d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-10-31", "l_commitdate": "1993-10-22", "l_receiptdate": "1993-11-06", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "telets wake carefully iro" }, { "l_orderkey": 4454i32, "l_partkey": 152i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 22.0d, "l_extendedprice": 23147.3d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-02-06", "l_commitdate": "1994-04-11", "l_receiptdate": "1994-03-06", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "ully. carefully final accounts accordi" }, { "l_orderkey": 1732i32, "l_partkey": 152i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 9.0d, "l_extendedprice": 9469.35d, "l_discount": 0.04d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-02-25", "l_commitdate": "1994-01-29", "l_receiptdate": "1994-03-16", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "ular platelets. deposits wak" }, { "l_orderkey": 962i32, "l_partkey": 152i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 12.0d, "l_extendedprice": 12625.8d, "l_discount": 0.02d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-06-09", "l_commitdate": "1994-06-07", "l_receiptdate": "1994-06-11", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "across the furiously regular escapades daz" }, { "l_orderkey": 2050i32, "l_partkey": 152i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 48.0d, "l_extendedprice": 50503.2d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-09-30", "l_commitdate": "1994-08-23", "l_receiptdate": "1994-10-29", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": " final packages. pinto" }, { "l_orderkey": 3841i32, "l_partkey": 152i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 40.0d, "l_extendedprice": 42086.0d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-02-02", "l_commitdate": "1994-11-30", "l_receiptdate": "1995-02-14", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "its. quickly regular ideas nag carefully" }, { "l_orderkey": 1281i32, "l_partkey": 152i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 13.0d, "l_extendedprice": 13677.95d, "l_discount": 0.03d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-02-06", "l_commitdate": "1995-02-13", "l_receiptdate": "1995-02-18", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "fully final platelets wa" }, { "l_orderkey": 5765i32, "l_partkey": 152i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 46.0d, "l_extendedprice": 48398.9d, "l_discount": 0.07d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-03-13", "l_commitdate": "1995-02-12", "l_receiptdate": "1995-03-20", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "ccounts sleep about th" }, { "l_orderkey": 4327i32, "l_partkey": 152i32, "l_suppkey": 4i32, "l_linenumber": 6i32, "l_quantity": 10.0d, "l_extendedprice": 10521.5d, "l_discount": 0.0d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-04-28", "l_commitdate": "1995-06-11", "l_receiptdate": "1995-05-07", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "arefully sile" }, { "l_orderkey": 928i32, "l_partkey": 152i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 46.0d, "l_extendedprice": 48398.9d, "l_discount": 0.08d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-05-09", "l_commitdate": "1995-04-09", "l_receiptdate": "1995-06-01", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": " beans sleep against the carefully ir" }, { "l_orderkey": 4390i32, "l_partkey": 152i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 35.0d, "l_extendedprice": 36825.25d, "l_discount": 0.07d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-05-30", "l_commitdate": "1995-07-02", "l_receiptdate": "1995-06-15", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "ongside of the slyly regular ideas" }, { "l_orderkey": 3750i32, "l_partkey": 152i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 33.0d, "l_extendedprice": 34720.95d, "l_discount": 0.05d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-06-27", "l_commitdate": "1995-06-20", "l_receiptdate": "1995-07-03", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "theodolites haggle. slyly pendin" }, { "l_orderkey": 4871i32, "l_partkey": 152i32, "l_suppkey": 3i32, "l_linenumber": 5i32, "l_quantity": 10.0d, "l_extendedprice": 10521.5d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-12", "l_commitdate": "1995-09-02", "l_receiptdate": "1995-10-05", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "s integrate after the a" }, { "l_orderkey": 449i32, "l_partkey": 152i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 12.0d, "l_extendedprice": 12625.8d, "l_discount": 0.02d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-06", "l_commitdate": "1995-08-25", "l_receiptdate": "1995-11-18", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "ly. blithely ironic " }, { "l_orderkey": 7i32, "l_partkey": 152i32, "l_suppkey": 4i32, "l_linenumber": 5i32, "l_quantity": 38.0d, "l_extendedprice": 39981.7d, "l_discount": 0.08d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-02-11", "l_commitdate": "1996-02-24", "l_receiptdate": "1996-02-18", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "ns haggle carefully ironic deposits. bl" }, { "l_orderkey": 5159i32, "l_partkey": 152i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 22.0d, "l_extendedprice": 23147.3d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-06", "l_commitdate": "1996-11-04", "l_receiptdate": "1996-11-15", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "he furiously sile" }, { "l_orderkey": 2402i32, "l_partkey": 152i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 24.0d, "l_extendedprice": 25251.6d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-21", "l_commitdate": "1996-10-19", "l_receiptdate": "1996-11-29", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "as; blithely ironic requ" }, { "l_orderkey": 3619i32, "l_partkey": 152i32, "l_suppkey": 3i32, "l_linenumber": 6i32, "l_quantity": 43.0d, "l_extendedprice": 45242.45d, "l_discount": 0.01d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-25", "l_commitdate": "1997-01-06", "l_receiptdate": "1997-02-07", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": " bold, even" }, { "l_orderkey": 1889i32, "l_partkey": 152i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 41.0d, "l_extendedprice": 43138.15d, "l_discount": 0.1d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-15", "l_commitdate": "1997-05-10", "l_receiptdate": "1997-07-08", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "s! furiously pending r" }, { "l_orderkey": 422i32, "l_partkey": 152i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 25.0d, "l_extendedprice": 26303.75d, "l_discount": 0.1d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-01", "l_commitdate": "1997-08-17", "l_receiptdate": "1997-07-09", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "carefully bold theodolit" }, { "l_orderkey": 3878i32, "l_partkey": 152i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 20.0d, "l_extendedprice": 21043.0d, "l_discount": 0.01d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-13", "l_commitdate": "1997-05-22", "l_receiptdate": "1997-07-20", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "about the carefully ironic pa" }, { "l_orderkey": 1954i32, "l_partkey": 152i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 31.0d, "l_extendedprice": 32616.65d, "l_discount": 0.06d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-18", "l_commitdate": "1997-07-07", "l_receiptdate": "1997-09-03", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "against the packages. bold, ironic e" }, { "l_orderkey": 4832i32, "l_partkey": 152i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 10.0d, "l_extendedprice": 10521.5d, "l_discount": 0.0d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-08", "l_commitdate": "1998-02-01", "l_receiptdate": "1998-01-11", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "ly. blithely bold pinto beans should have" }, { "l_orderkey": 3207i32, "l_partkey": 152i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 17.0d, "l_extendedprice": 17886.55d, "l_discount": 0.03d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-27", "l_commitdate": "1998-04-06", "l_receiptdate": "1998-03-28", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "eep against the instructions. gifts hag" }, { "l_orderkey": 2403i32, "l_partkey": 152i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 19.0d, "l_extendedprice": 19990.85d, "l_discount": 0.08d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-20", "l_commitdate": "1998-07-02", "l_receiptdate": "1998-05-13", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "sits. ironic in" } ] }
-{ "partkey": 153i32, "lines": [ { "l_orderkey": 5382i32, "l_partkey": 153i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 34.0d, "l_extendedprice": 35807.1d, "l_discount": 0.03d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-02-22", "l_commitdate": "1992-02-18", "l_receiptdate": "1992-03-02", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "gular accounts. even accounts integrate" }, { "l_orderkey": 5767i32, "l_partkey": 153i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 34.0d, "l_extendedprice": 35807.1d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-06-02", "l_commitdate": "1992-06-23", "l_receiptdate": "1992-06-17", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "sits among the" }, { "l_orderkey": 322i32, "l_partkey": 153i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 12.0d, "l_extendedprice": 12637.8d, "l_discount": 0.08d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-06-29", "l_commitdate": "1992-05-30", "l_receiptdate": "1992-07-11", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "ular theodolites promise qu" }, { "l_orderkey": 5415i32, "l_partkey": 153i32, "l_suppkey": 4i32, "l_linenumber": 7i32, "l_quantity": 11.0d, "l_extendedprice": 11584.65d, "l_discount": 0.08d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-08-21", "l_commitdate": "1992-09-04", "l_receiptdate": "1992-08-23", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "unts maintain carefully unusual" }, { "l_orderkey": 3906i32, "l_partkey": 153i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 42.0d, "l_extendedprice": 44232.3d, "l_discount": 0.0d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-09-03", "l_commitdate": "1992-07-22", "l_receiptdate": "1992-09-04", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "jole blithely after the furiously regular " }, { "l_orderkey": 4359i32, "l_partkey": 153i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 8.0d, "l_extendedprice": 8425.2d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-06-27", "l_commitdate": "1993-05-16", "l_receiptdate": "1993-07-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "packages affix. fluffily regular f" }, { "l_orderkey": 4999i32, "l_partkey": 153i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 30.0d, "l_extendedprice": 31594.5d, "l_discount": 0.0d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-08-20", "l_commitdate": "1993-08-15", "l_receiptdate": "1993-08-30", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "ades cajole carefully unusual ide" }, { "l_orderkey": 4455i32, "l_partkey": 153i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 47.0d, "l_extendedprice": 49498.05d, "l_discount": 0.09d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-01-01", "l_commitdate": "1993-12-25", "l_receiptdate": "1994-01-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": " requests. even, even accou" }, { "l_orderkey": 3591i32, "l_partkey": 153i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 49.0d, "l_extendedprice": 51604.35d, "l_discount": 0.01d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-03-21", "l_commitdate": "1994-01-26", "l_receiptdate": "1994-03-28", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": " mold slyly. bl" }, { "l_orderkey": 2819i32, "l_partkey": 153i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 5.0d, "l_extendedprice": 5265.75d, "l_discount": 0.0d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-05-29", "l_commitdate": "1994-06-12", "l_receiptdate": "1994-06-28", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": " fluffily unusual foxes sleep caref" }, { "l_orderkey": 1829i32, "l_partkey": 153i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 14.0d, "l_extendedprice": 14744.1d, "l_discount": 0.03d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-08-15", "l_commitdate": "1994-06-08", "l_receiptdate": "1994-08-30", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "regular deposits alongside of the flu" }, { "l_orderkey": 4389i32, "l_partkey": 153i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 13.0d, "l_extendedprice": 13690.95d, "l_discount": 0.0d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-08-18", "l_commitdate": "1994-06-06", "l_receiptdate": "1994-08-20", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "nal, regula" }, { "l_orderkey": 4354i32, "l_partkey": 153i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 23.0d, "l_extendedprice": 24222.45d, "l_discount": 0.01d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-11-20", "l_commitdate": "1994-12-23", "l_receiptdate": "1994-11-27", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "kly along the ironic, ent" }, { "l_orderkey": 548i32, "l_partkey": 153i32, "l_suppkey": 8i32, "l_linenumber": 6i32, "l_quantity": 32.0d, "l_extendedprice": 33700.8d, "l_discount": 0.06d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-12-16", "l_commitdate": "1994-11-20", "l_receiptdate": "1994-12-29", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "c instruction" }, { "l_orderkey": 5856i32, "l_partkey": 153i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 39.0d, "l_extendedprice": 41072.85d, "l_discount": 0.05d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-01-18", "l_commitdate": "1995-01-11", "l_receiptdate": "1995-01-19", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "uickly quickly fluffy in" }, { "l_orderkey": 1092i32, "l_partkey": 153i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 1.0d, "l_extendedprice": 1053.15d, "l_discount": 0.01d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-03-10", "l_commitdate": "1995-04-21", "l_receiptdate": "1995-04-06", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "lent, pending requests-- requests nag accor" }, { "l_orderkey": 386i32, "l_partkey": 153i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 39.0d, "l_extendedprice": 41072.85d, "l_discount": 0.1d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-05-10", "l_commitdate": "1995-02-28", "l_receiptdate": "1995-05-25", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "hely. carefully regular accounts hag" }, { "l_orderkey": 450i32, "l_partkey": 153i32, "l_suppkey": 1i32, "l_linenumber": 6i32, "l_quantity": 33.0d, "l_extendedprice": 34753.95d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-05-18", "l_commitdate": "1995-05-22", "l_receiptdate": "1995-05-23", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "ily carefully final depo" }, { "l_orderkey": 4775i32, "l_partkey": 153i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 37.0d, "l_extendedprice": 38966.55d, "l_discount": 0.02d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-06", "l_commitdate": "1995-09-28", "l_receiptdate": "1995-09-28", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "ts. pinto beans use according to th" }, { "l_orderkey": 4775i32, "l_partkey": 153i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 34.0d, "l_extendedprice": 35807.1d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-14", "l_commitdate": "1995-10-15", "l_receiptdate": "1995-09-21", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "onic epitaphs. f" }, { "l_orderkey": 4422i32, "l_partkey": 153i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 4.0d, "l_extendedprice": 4212.6d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-18", "l_commitdate": "1995-08-12", "l_receiptdate": "1995-10-18", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "cies along the bo" }, { "l_orderkey": 5958i32, "l_partkey": 153i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 42.0d, "l_extendedprice": 44232.3d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-12", "l_commitdate": "1995-10-19", "l_receiptdate": "1996-01-09", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "n accounts. final, ironic packages " }, { "l_orderkey": 2694i32, "l_partkey": 153i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 30.0d, "l_extendedprice": 31594.5d, "l_discount": 0.02d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-20", "l_commitdate": "1996-06-01", "l_receiptdate": "1996-07-15", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "oxes. never iro" }, { "l_orderkey": 2276i32, "l_partkey": 153i32, "l_suppkey": 5i32, "l_linenumber": 5i32, "l_quantity": 50.0d, "l_extendedprice": 52657.5d, "l_discount": 0.03d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-13", "l_commitdate": "1996-06-25", "l_receiptdate": "1996-07-22", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": " accounts dete" }, { "l_orderkey": 3782i32, "l_partkey": 153i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 10.0d, "l_extendedprice": 10531.5d, "l_discount": 0.03d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-07", "l_commitdate": "1996-11-19", "l_receiptdate": "1996-10-04", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "ven pinto b" }, { "l_orderkey": 4740i32, "l_partkey": 153i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 24.0d, "l_extendedprice": 25275.6d, "l_discount": 0.08d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-10", "l_commitdate": "1996-09-27", "l_receiptdate": "1996-10-07", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "hely regular deposits" }, { "l_orderkey": 3910i32, "l_partkey": 153i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 1.0d, "l_extendedprice": 1053.15d, "l_discount": 0.03d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-12", "l_commitdate": "1996-10-21", "l_receiptdate": "1996-09-19", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "s sleep neve" }, { "l_orderkey": 419i32, "l_partkey": 153i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 33.0d, "l_extendedprice": 34753.95d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-06", "l_commitdate": "1996-12-25", "l_receiptdate": "1996-11-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "y above the bli" }, { "l_orderkey": 387i32, "l_partkey": 153i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 42.0d, "l_extendedprice": 44232.3d, "l_discount": 0.07d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-25", "l_commitdate": "1997-02-25", "l_receiptdate": "1997-05-29", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "lithely final theodolites." }, { "l_orderkey": 5859i32, "l_partkey": 153i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 35.0d, "l_extendedprice": 36860.25d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-28", "l_commitdate": "1997-07-14", "l_receiptdate": "1997-06-15", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "egular acco" }, { "l_orderkey": 1636i32, "l_partkey": 153i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 43.0d, "l_extendedprice": 45285.45d, "l_discount": 0.06d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-23", "l_commitdate": "1997-08-10", "l_receiptdate": "1997-09-17", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "blithely special r" }, { "l_orderkey": 647i32, "l_partkey": 153i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 15.0d, "l_extendedprice": 15797.25d, "l_discount": 0.08d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-23", "l_commitdate": "1997-10-09", "l_receiptdate": "1997-10-21", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "ve the even, bold foxes sleep " }, { "l_orderkey": 1347i32, "l_partkey": 153i32, "l_suppkey": 8i32, "l_linenumber": 6i32, "l_quantity": 21.0d, "l_extendedprice": 22116.15d, "l_discount": 0.06d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-10-10", "l_commitdate": "1997-08-16", "l_receiptdate": "1997-11-02", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "g pinto beans affix car" }, { "l_orderkey": 3717i32, "l_partkey": 153i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 45.0d, "l_extendedprice": 47391.75d, "l_discount": 0.07d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-09", "l_commitdate": "1998-08-18", "l_receiptdate": "1998-08-14", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "ests wake whithout the blithely final pl" }, { "l_orderkey": 5184i32, "l_partkey": 153i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 33.0d, "l_extendedprice": 34753.95d, "l_discount": 0.07d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-17", "l_commitdate": "1998-10-16", "l_receiptdate": "1998-08-24", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "posits. carefully express asympto" } ] }
-{ "partkey": 154i32, "lines": [ { "l_orderkey": 292i32, "l_partkey": 154i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 8.0d, "l_extendedprice": 8433.2d, "l_discount": 0.1d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-02-18", "l_commitdate": "1992-03-30", "l_receiptdate": "1992-03-18", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "sily bold deposits alongside of the ex" }, { "l_orderkey": 4998i32, "l_partkey": 154i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 12.0d, "l_extendedprice": 12649.8d, "l_discount": 0.04d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-02-20", "l_commitdate": "1992-03-06", "l_receiptdate": "1992-03-01", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": " sleep slyly furiously final accounts. ins" }, { "l_orderkey": 4805i32, "l_partkey": 154i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 44.0d, "l_extendedprice": 46382.6d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-05-14", "l_commitdate": "1992-06-23", "l_receiptdate": "1992-05-25", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "eposits sleep furiously qui" }, { "l_orderkey": 3168i32, "l_partkey": 154i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 1.0d, "l_extendedprice": 1054.15d, "l_discount": 0.06d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-05-27", "l_commitdate": "1992-03-12", "l_receiptdate": "1992-06-09", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "pinto beans. slyly regular courts haggle " }, { "l_orderkey": 4515i32, "l_partkey": 154i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 27.0d, "l_extendedprice": 28462.05d, "l_discount": 0.09d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-06-06", "l_commitdate": "1992-06-08", "l_receiptdate": "1992-06-07", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": " against the even re" }, { "l_orderkey": 3970i32, "l_partkey": 154i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 10.0d, "l_extendedprice": 10541.5d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-07-01", "l_commitdate": "1992-05-31", "l_receiptdate": "1992-07-02", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": " special packages wake after the final br" }, { "l_orderkey": 5858i32, "l_partkey": 154i32, "l_suppkey": 9i32, "l_linenumber": 6i32, "l_quantity": 7.0d, "l_extendedprice": 7379.05d, "l_discount": 0.04d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-09-14", "l_commitdate": "1992-10-01", "l_receiptdate": "1992-10-01", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "dly pending ac" }, { "l_orderkey": 2145i32, "l_partkey": 154i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 6.0d, "l_extendedprice": 6324.9d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-10-10", "l_commitdate": "1992-11-29", "l_receiptdate": "1992-10-14", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "s. fluffily express accounts sleep. slyl" }, { "l_orderkey": 5571i32, "l_partkey": 154i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 32.0d, "l_extendedprice": 33732.8d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-12-25", "l_commitdate": "1993-03-01", "l_receiptdate": "1993-01-23", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": " the blithely even packages nag q" }, { "l_orderkey": 1573i32, "l_partkey": 154i32, "l_suppkey": 6i32, "l_linenumber": 6i32, "l_quantity": 30.0d, "l_extendedprice": 31624.5d, "l_discount": 0.03d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-12-29", "l_commitdate": "1993-03-06", "l_receiptdate": "1993-01-02", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": ". blithely even theodolites boos" }, { "l_orderkey": 2852i32, "l_partkey": 154i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 28.0d, "l_extendedprice": 29516.2d, "l_discount": 0.05d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-02-08", "l_commitdate": "1993-03-30", "l_receiptdate": "1993-02-11", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "e accounts. caref" }, { "l_orderkey": 5029i32, "l_partkey": 154i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 17.0d, "l_extendedprice": 17920.55d, "l_discount": 0.02d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-03-12", "l_commitdate": "1992-12-18", "l_receiptdate": "1993-04-02", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "! packages boost blithely. furious" }, { "l_orderkey": 193i32, "l_partkey": 154i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 15.0d, "l_extendedprice": 15812.25d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-11-22", "l_commitdate": "1993-10-09", "l_receiptdate": "1993-12-05", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "ffily. regular packages d" }, { "l_orderkey": 5538i32, "l_partkey": 154i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 42.0d, "l_extendedprice": 44274.3d, "l_discount": 0.05d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-04-08", "l_commitdate": "1994-03-17", "l_receiptdate": "1994-05-05", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "vely ironic accounts. furiously unusual acc" }, { "l_orderkey": 3233i32, "l_partkey": 154i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 6.0d, "l_extendedprice": 6324.9d, "l_discount": 0.02d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-12-06", "l_commitdate": "1994-12-05", "l_receiptdate": "1994-12-07", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "requests are quickly above the slyly p" }, { "l_orderkey": 5031i32, "l_partkey": 154i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 4.0d, "l_extendedprice": 4216.6d, "l_discount": 0.01d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-12-26", "l_commitdate": "1995-02-24", "l_receiptdate": "1995-01-11", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "after the even frays: ironic, unusual th" }, { "l_orderkey": 1281i32, "l_partkey": 154i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 38.0d, "l_extendedprice": 40057.7d, "l_discount": 0.04d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-03-28", "l_commitdate": "1995-01-11", "l_receiptdate": "1995-04-14", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": " ideas-- blithely regular" }, { "l_orderkey": 2626i32, "l_partkey": 154i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 40.0d, "l_extendedprice": 42166.0d, "l_discount": 0.05d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-28", "l_commitdate": "1995-12-03", "l_receiptdate": "1995-10-10", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "eans. ironic deposits haggle. depo" }, { "l_orderkey": 4324i32, "l_partkey": 154i32, "l_suppkey": 6i32, "l_linenumber": 7i32, "l_quantity": 46.0d, "l_extendedprice": 48490.9d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-03", "l_commitdate": "1995-09-28", "l_receiptdate": "1995-11-22", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "ular, final theodo" }, { "l_orderkey": 608i32, "l_partkey": 154i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 19.0d, "l_extendedprice": 20028.85d, "l_discount": 0.08d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-04-19", "l_commitdate": "1996-05-02", "l_receiptdate": "1996-05-03", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "ideas. the" }, { "l_orderkey": 2849i32, "l_partkey": 154i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 16.0d, "l_extendedprice": 16866.4d, "l_discount": 0.09d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-20", "l_commitdate": "1996-07-23", "l_receiptdate": "1996-06-18", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": ". furiously regular requ" }, { "l_orderkey": 1827i32, "l_partkey": 154i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 48.0d, "l_extendedprice": 50599.2d, "l_discount": 0.03d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-28", "l_commitdate": "1996-09-15", "l_receiptdate": "1996-09-01", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "oxes. special, final asymptote" }, { "l_orderkey": 3747i32, "l_partkey": 154i32, "l_suppkey": 5i32, "l_linenumber": 6i32, "l_quantity": 14.0d, "l_extendedprice": 14758.1d, "l_discount": 0.08d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-03", "l_commitdate": "1996-10-29", "l_receiptdate": "1996-11-06", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "packages cajole carefu" }, { "l_orderkey": 5606i32, "l_partkey": 154i32, "l_suppkey": 5i32, "l_linenumber": 6i32, "l_quantity": 3.0d, "l_extendedprice": 3162.45d, "l_discount": 0.04d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-11", "l_commitdate": "1997-01-04", "l_receiptdate": "1997-02-08", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": " sauternes. asympto" }, { "l_orderkey": 3937i32, "l_partkey": 154i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 50.0d, "l_extendedprice": 52707.5d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-15", "l_commitdate": "1998-01-09", "l_receiptdate": "1998-02-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "ong the carefully exp" }, { "l_orderkey": 4644i32, "l_partkey": 154i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 45.0d, "l_extendedprice": 47436.75d, "l_discount": 0.1d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-02-02", "l_commitdate": "1998-04-08", "l_receiptdate": "1998-02-15", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": " carefully a" }, { "l_orderkey": 1377i32, "l_partkey": 154i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 5.0d, "l_extendedprice": 5270.75d, "l_discount": 0.06d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-06", "l_commitdate": "1998-07-08", "l_receiptdate": "1998-06-01", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": " final, final grouches. accoun" }, { "l_orderkey": 4032i32, "l_partkey": 154i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 23.0d, "l_extendedprice": 24245.45d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-12", "l_commitdate": "1998-05-11", "l_receiptdate": "1998-06-24", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "ording to the " }, { "l_orderkey": 1377i32, "l_partkey": 154i32, "l_suppkey": 6i32, "l_linenumber": 6i32, "l_quantity": 17.0d, "l_extendedprice": 17920.55d, "l_discount": 0.03d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-19", "l_commitdate": "1998-07-20", "l_receiptdate": "1998-07-14", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "s must have to mold b" }, { "l_orderkey": 3491i32, "l_partkey": 154i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 28.0d, "l_extendedprice": 29516.2d, "l_discount": 0.04d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-09-29", "l_commitdate": "1998-09-08", "l_receiptdate": "1998-10-23", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "ccounts. sly" } ] }
-{ "partkey": 156i32, "lines": [ { "l_orderkey": 1248i32, "l_partkey": 156i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 49.0d, "l_extendedprice": 51751.35d, "l_discount": 0.02d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-04-24", "l_commitdate": "1992-02-18", "l_receiptdate": "1992-05-03", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "beans run quickly according to the carefu" }, { "l_orderkey": 1027i32, "l_partkey": 156i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 43.0d, "l_extendedprice": 45414.45d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-06-17", "l_commitdate": "1992-08-28", "l_receiptdate": "1992-07-10", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "oxes. carefully regular deposits" }, { "l_orderkey": 2786i32, "l_partkey": 156i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 41.0d, "l_extendedprice": 43302.15d, "l_discount": 0.04d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-07-01", "l_commitdate": "1992-06-04", "l_receiptdate": "1992-07-13", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "ix requests. bold requests a" }, { "l_orderkey": 4996i32, "l_partkey": 156i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 39.0d, "l_extendedprice": 41189.85d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-09-19", "l_commitdate": "1992-10-19", "l_receiptdate": "1992-10-06", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "equests are carefully final" }, { "l_orderkey": 4741i32, "l_partkey": 156i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 24.0d, "l_extendedprice": 25347.6d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-11-04", "l_commitdate": "1992-08-14", "l_receiptdate": "1992-11-06", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "even requests." }, { "l_orderkey": 3015i32, "l_partkey": 156i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 7.0d, "l_extendedprice": 7393.05d, "l_discount": 0.1d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-12-07", "l_commitdate": "1992-12-17", "l_receiptdate": "1992-12-30", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": " after the evenly special packages ca" }, { "l_orderkey": 1735i32, "l_partkey": 156i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 43.0d, "l_extendedprice": 45414.45d, "l_discount": 0.02d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-01-14", "l_commitdate": "1993-03-25", "l_receiptdate": "1993-02-02", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "iously after the " }, { "l_orderkey": 165i32, "l_partkey": 156i32, "l_suppkey": 4i32, "l_linenumber": 5i32, "l_quantity": 27.0d, "l_extendedprice": 28516.05d, "l_discount": 0.01d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-04-27", "l_commitdate": "1993-03-04", "l_receiptdate": "1993-05-13", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "around the ironic, even orb" }, { "l_orderkey": 2435i32, "l_partkey": 156i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 22.0d, "l_extendedprice": 23235.3d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-05-23", "l_commitdate": "1993-04-14", "l_receiptdate": "1993-06-04", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "e final, final deposits. carefully regular" }, { "l_orderkey": 1412i32, "l_partkey": 156i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 20.0d, "l_extendedprice": 21123.0d, "l_discount": 0.1d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-07-04", "l_commitdate": "1993-05-18", "l_receiptdate": "1993-07-22", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "odolites sleep ironically" }, { "l_orderkey": 3942i32, "l_partkey": 156i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 25.0d, "l_extendedprice": 26403.75d, "l_discount": 0.04d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-09-13", "l_commitdate": "1993-08-01", "l_receiptdate": "1993-09-29", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "d the quick packages" }, { "l_orderkey": 2368i32, "l_partkey": 156i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 17.0d, "l_extendedprice": 17954.55d, "l_discount": 0.1d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-10-03", "l_commitdate": "1993-09-27", "l_receiptdate": "1993-10-05", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "fily. slyly final ideas alongside o" }, { "l_orderkey": 5093i32, "l_partkey": 156i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 37.0d, "l_extendedprice": 39077.55d, "l_discount": 0.04d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-10-26", "l_commitdate": "1993-12-02", "l_receiptdate": "1993-10-27", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "courts. qui" }, { "l_orderkey": 1825i32, "l_partkey": 156i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 43.0d, "l_extendedprice": 45414.45d, "l_discount": 0.05d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-02-18", "l_commitdate": "1994-02-19", "l_receiptdate": "1994-03-02", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": " accounts breach fluffily spe" }, { "l_orderkey": 229i32, "l_partkey": 156i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 33.0d, "l_extendedprice": 34852.95d, "l_discount": 0.03d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-03-25", "l_commitdate": "1994-02-11", "l_receiptdate": "1994-04-13", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": " deposits; bold, ruthless theodolites" }, { "l_orderkey": 5509i32, "l_partkey": 156i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 35.0d, "l_extendedprice": 36965.25d, "l_discount": 0.04d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-04-17", "l_commitdate": "1994-06-29", "l_receiptdate": "1994-04-24", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "c accounts. ca" }, { "l_orderkey": 3492i32, "l_partkey": 156i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 3.0d, "l_extendedprice": 3168.45d, "l_discount": 0.02d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-11-26", "l_commitdate": "1994-12-28", "l_receiptdate": "1994-12-19", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "the deposits. carefully " }, { "l_orderkey": 2086i32, "l_partkey": 156i32, "l_suppkey": 8i32, "l_linenumber": 7i32, "l_quantity": 7.0d, "l_extendedprice": 7393.05d, "l_discount": 0.04d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-12-27", "l_commitdate": "1994-12-10", "l_receiptdate": "1995-01-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": " beans haggle car" }, { "l_orderkey": 2791i32, "l_partkey": 156i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 24.0d, "l_extendedprice": 25347.6d, "l_discount": 0.04d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-01-30", "l_commitdate": "1994-11-20", "l_receiptdate": "1995-02-08", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "ilent forges. quickly special pinto beans " }, { "l_orderkey": 2086i32, "l_partkey": 156i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 33.0d, "l_extendedprice": 34852.95d, "l_discount": 0.04d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-02-06", "l_commitdate": "1994-11-25", "l_receiptdate": "1995-02-15", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": " slyly regular foxes. un" }, { "l_orderkey": 3488i32, "l_partkey": 156i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 18.0d, "l_extendedprice": 19010.7d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-03-18", "l_commitdate": "1995-03-19", "l_receiptdate": "1995-03-29", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "s the carefully r" }, { "l_orderkey": 4742i32, "l_partkey": 156i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 32.0d, "l_extendedprice": 33796.8d, "l_discount": 0.1d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-04-04", "l_commitdate": "1995-06-12", "l_receiptdate": "1995-04-19", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "eposits boost blithely. carefully regular a" }, { "l_orderkey": 197i32, "l_partkey": 156i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 17.0d, "l_extendedprice": 17954.55d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-02", "l_commitdate": "1995-06-23", "l_receiptdate": "1995-08-03", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "ts. careful" }, { "l_orderkey": 1095i32, "l_partkey": 156i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 13.0d, "l_extendedprice": 13729.95d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-24", "l_commitdate": "1995-10-19", "l_receiptdate": "1995-09-02", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "ously even accounts. slyly bold a" }, { "l_orderkey": 1i32, "l_partkey": 156i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 17.0d, "l_extendedprice": 17954.55d, "l_discount": 0.04d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-13", "l_commitdate": "1996-02-12", "l_receiptdate": "1996-03-22", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "egular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts ab" }, { "l_orderkey": 4995i32, "l_partkey": 156i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 22.0d, "l_extendedprice": 23235.3d, "l_discount": 0.03d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-17", "l_commitdate": "1996-03-12", "l_receiptdate": "1996-04-01", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "s wake furious, express dependencies." }, { "l_orderkey": 4640i32, "l_partkey": 156i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 15.0d, "l_extendedprice": 15842.25d, "l_discount": 0.03d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-19", "l_commitdate": "1996-02-09", "l_receiptdate": "1996-04-11", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "y regular instructions doze furiously. reg" }, { "l_orderkey": 1378i32, "l_partkey": 156i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 9.0d, "l_extendedprice": 9505.35d, "l_discount": 0.06d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-04-20", "l_commitdate": "1996-04-13", "l_receiptdate": "1996-05-09", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "e carefully. carefully iron" }, { "l_orderkey": 5669i32, "l_partkey": 156i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 2.0d, "l_extendedprice": 2112.3d, "l_discount": 0.06d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-04", "l_commitdate": "1996-06-15", "l_receiptdate": "1996-08-20", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": " blithely excuses. slyly" }, { "l_orderkey": 5349i32, "l_partkey": 156i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 19.0d, "l_extendedprice": 20066.85d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-11", "l_commitdate": "1996-11-18", "l_receiptdate": "1996-09-22", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "endencies use whithout the special " }, { "l_orderkey": 1700i32, "l_partkey": 156i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 49.0d, "l_extendedprice": 51751.35d, "l_discount": 0.04d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-26", "l_commitdate": "1996-07-28", "l_receiptdate": "1996-10-16", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "kly even dependencies haggle fluffi" }, { "l_orderkey": 4994i32, "l_partkey": 156i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 36.0d, "l_extendedprice": 38021.4d, "l_discount": 0.0d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-29", "l_commitdate": "1996-07-30", "l_receiptdate": "1996-10-03", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "ess ideas. blithely silent brai" }, { "l_orderkey": 578i32, "l_partkey": 156i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 40.0d, "l_extendedprice": 42246.0d, "l_discount": 0.02d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-10", "l_commitdate": "1997-03-18", "l_receiptdate": "1997-02-11", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "usly even platel" }, { "l_orderkey": 260i32, "l_partkey": 156i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 50.0d, "l_extendedprice": 52807.5d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-24", "l_commitdate": "1997-02-09", "l_receiptdate": "1997-04-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "c deposits " }, { "l_orderkey": 517i32, "l_partkey": 156i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 15.0d, "l_extendedprice": 15842.25d, "l_discount": 0.02d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-09", "l_commitdate": "1997-06-26", "l_receiptdate": "1997-05-01", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": " slyly. express requests ar" }, { "l_orderkey": 3968i32, "l_partkey": 156i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 43.0d, "l_extendedprice": 45414.45d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-30", "l_commitdate": "1997-05-14", "l_receiptdate": "1997-05-18", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "ly regular accounts" }, { "l_orderkey": 3364i32, "l_partkey": 156i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 10.0d, "l_extendedprice": 10561.5d, "l_discount": 0.0d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-10", "l_commitdate": "1997-08-24", "l_receiptdate": "1997-08-15", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "g the accounts. final, busy accounts wi" }, { "l_orderkey": 5348i32, "l_partkey": 156i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 31.0d, "l_extendedprice": 32740.65d, "l_discount": 0.07d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-04", "l_commitdate": "1997-12-09", "l_receiptdate": "1998-01-17", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "are finally" }, { "l_orderkey": 4196i32, "l_partkey": 156i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 30.0d, "l_extendedprice": 31684.5d, "l_discount": 0.02d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-09", "l_commitdate": "1998-06-30", "l_receiptdate": "1998-09-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "egular foxes us" } ] }
-{ "partkey": 157i32, "lines": [ { "l_orderkey": 4069i32, "l_partkey": 157i32, "l_suppkey": 5i32, "l_linenumber": 5i32, "l_quantity": 50.0d, "l_extendedprice": 52857.5d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-07-26", "l_commitdate": "1992-06-30", "l_receiptdate": "1992-08-01", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "even foxes among the express wate" }, { "l_orderkey": 1729i32, "l_partkey": 157i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 12.0d, "l_extendedprice": 12685.8d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-08-11", "l_commitdate": "1992-07-24", "l_receiptdate": "1992-08-16", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "y pending packages detect. carefully re" }, { "l_orderkey": 4741i32, "l_partkey": 157i32, "l_suppkey": 5i32, "l_linenumber": 6i32, "l_quantity": 34.0d, "l_extendedprice": 35943.1d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-08-25", "l_commitdate": "1992-08-18", "l_receiptdate": "1992-09-20", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "sly special packages after the furiously" }, { "l_orderkey": 2146i32, "l_partkey": 157i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 6.0d, "l_extendedprice": 6342.9d, "l_discount": 0.07d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-01-03", "l_commitdate": "1992-10-24", "l_receiptdate": "1993-01-24", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "ing to the requests. dependencies boost " }, { "l_orderkey": 5792i32, "l_partkey": 157i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 47.0d, "l_extendedprice": 49686.05d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-06-08", "l_commitdate": "1993-05-10", "l_receiptdate": "1993-06-26", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "regular, ironic excuses n" }, { "l_orderkey": 1509i32, "l_partkey": 157i32, "l_suppkey": 2i32, "l_linenumber": 7i32, "l_quantity": 27.0d, "l_extendedprice": 28543.05d, "l_discount": 0.01d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-09-29", "l_commitdate": "1993-09-08", "l_receiptdate": "1993-10-04", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "lithely after the " }, { "l_orderkey": 1382i32, "l_partkey": 157i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 31.0d, "l_extendedprice": 32771.65d, "l_discount": 0.07d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-10-26", "l_commitdate": "1993-10-15", "l_receiptdate": "1993-11-09", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "hely regular dependencies. f" }, { "l_orderkey": 1863i32, "l_partkey": 157i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 48.0d, "l_extendedprice": 50743.2d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-11-08", "l_commitdate": "1993-11-05", "l_receiptdate": "1993-12-08", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "onic theodolites alongside of the pending a" }, { "l_orderkey": 1761i32, "l_partkey": 157i32, "l_suppkey": 5i32, "l_linenumber": 5i32, "l_quantity": 37.0d, "l_extendedprice": 39114.55d, "l_discount": 0.03d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-04-24", "l_commitdate": "1994-03-14", "l_receiptdate": "1994-04-29", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "express requests print blithely around the" }, { "l_orderkey": 4389i32, "l_partkey": 157i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 20.0d, "l_extendedprice": 21143.0d, "l_discount": 0.08d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-06-06", "l_commitdate": "1994-06-17", "l_receiptdate": "1994-06-17", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "ng the carefully express d" }, { "l_orderkey": 3553i32, "l_partkey": 157i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 36.0d, "l_extendedprice": 38057.4d, "l_discount": 0.06d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-08-12", "l_commitdate": "1994-06-25", "l_receiptdate": "1994-09-06", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": " realms. pending, bold theodolites " }, { "l_orderkey": 3841i32, "l_partkey": 157i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 1.0d, "l_extendedprice": 1057.15d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-10-10", "l_commitdate": "1994-11-12", "l_receiptdate": "1994-10-21", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": " boost even re" }, { "l_orderkey": 2433i32, "l_partkey": 157i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 38.0d, "l_extendedprice": 40171.7d, "l_discount": 0.08d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-10-15", "l_commitdate": "1994-10-23", "l_receiptdate": "1994-11-06", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": ". slyly regular requests sle" }, { "l_orderkey": 3522i32, "l_partkey": 157i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 46.0d, "l_extendedprice": 48628.9d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-11-12", "l_commitdate": "1994-11-30", "l_receiptdate": "1994-11-20", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "d the express, silent foxes. blit" }, { "l_orderkey": 4869i32, "l_partkey": 157i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 25.0d, "l_extendedprice": 26428.75d, "l_discount": 0.0d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-11-25", "l_commitdate": "1994-11-14", "l_receiptdate": "1994-12-19", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "e according t" }, { "l_orderkey": 3458i32, "l_partkey": 157i32, "l_suppkey": 5i32, "l_linenumber": 5i32, "l_quantity": 2.0d, "l_extendedprice": 2114.3d, "l_discount": 0.09d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-02-05", "l_commitdate": "1995-02-01", "l_receiptdate": "1995-03-07", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "ironic packages haggle past the furiously " }, { "l_orderkey": 802i32, "l_partkey": 157i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 18.0d, "l_extendedprice": 19028.7d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-03-06", "l_commitdate": "1995-02-07", "l_receiptdate": "1995-03-19", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "y regular requests engage furiously final d" }, { "l_orderkey": 326i32, "l_partkey": 157i32, "l_suppkey": 9i32, "l_linenumber": 6i32, "l_quantity": 41.0d, "l_extendedprice": 43343.15d, "l_discount": 0.02d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-05", "l_commitdate": "1995-07-23", "l_receiptdate": "1995-07-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "to beans wake before the furiously re" }, { "l_orderkey": 4770i32, "l_partkey": 157i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 30.0d, "l_extendedprice": 31714.5d, "l_discount": 0.09d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-25", "l_commitdate": "1995-08-27", "l_receiptdate": "1995-09-07", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "ffily carefully ironic ideas. ironic d" }, { "l_orderkey": 2694i32, "l_partkey": 157i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 35.0d, "l_extendedprice": 37000.25d, "l_discount": 0.07d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-24", "l_commitdate": "1996-06-01", "l_receiptdate": "1996-05-25", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "atelets past the furiously final deposits " }, { "l_orderkey": 2531i32, "l_partkey": 157i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 3.0d, "l_extendedprice": 3171.45d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-20", "l_commitdate": "1996-06-20", "l_receiptdate": "1996-08-10", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "he quickly ev" }, { "l_orderkey": 1158i32, "l_partkey": 157i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 23.0d, "l_extendedprice": 24314.45d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-21", "l_commitdate": "1996-08-19", "l_receiptdate": "1996-10-31", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "ularly ironic requests use care" }, { "l_orderkey": 1763i32, "l_partkey": 157i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 43.0d, "l_extendedprice": 45457.45d, "l_discount": 0.04d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-04", "l_commitdate": "1996-12-09", "l_receiptdate": "1996-11-28", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "r deposits integrate blithely pending, quic" }, { "l_orderkey": 5922i32, "l_partkey": 157i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 37.0d, "l_extendedprice": 39114.55d, "l_discount": 0.01d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-19", "l_commitdate": "1996-12-16", "l_receiptdate": "1997-01-15", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "s wake slyly. requests cajole furiously asy" }, { "l_orderkey": 455i32, "l_partkey": 157i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 42.0d, "l_extendedprice": 44400.3d, "l_discount": 0.1d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-26", "l_commitdate": "1997-01-10", "l_receiptdate": "1997-02-22", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "around the quickly blit" }, { "l_orderkey": 2178i32, "l_partkey": 157i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 15.0d, "l_extendedprice": 15857.25d, "l_discount": 0.1d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-27", "l_commitdate": "1997-03-10", "l_receiptdate": "1997-04-18", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "l accounts. quickly expr" }, { "l_orderkey": 1121i32, "l_partkey": 157i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 10.0d, "l_extendedprice": 10571.5d, "l_discount": 0.0d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-17", "l_commitdate": "1997-03-18", "l_receiptdate": "1997-05-02", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "dencies. quickly regular theodolites n" }, { "l_orderkey": 675i32, "l_partkey": 157i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 1.0d, "l_extendedprice": 1057.15d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-11-27", "l_commitdate": "1997-09-30", "l_receiptdate": "1997-12-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "ide of the slyly regular packages. unus" } ] }
-{ "partkey": 170i32, "lines": [ { "l_orderkey": 1221i32, "l_partkey": 170i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 12.0d, "l_extendedprice": 12842.04d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-08-07", "l_commitdate": "1992-06-24", "l_receiptdate": "1992-08-13", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "yly ironic " }, { "l_orderkey": 738i32, "l_partkey": 170i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 23.0d, "l_extendedprice": 24613.91d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-03-17", "l_commitdate": "1993-04-02", "l_receiptdate": "1993-04-05", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "nic, final excuses promise quickly regula" }, { "l_orderkey": 3874i32, "l_partkey": 170i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 21.0d, "l_extendedprice": 22473.57d, "l_discount": 0.09d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-06-19", "l_commitdate": "1993-07-20", "l_receiptdate": "1993-07-08", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": " requests cajole fluff" }, { "l_orderkey": 2752i32, "l_partkey": 170i32, "l_suppkey": 5i32, "l_linenumber": 6i32, "l_quantity": 21.0d, "l_extendedprice": 22473.57d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-01-01", "l_commitdate": "1994-01-24", "l_receiptdate": "1994-01-24", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": " along the quickly " }, { "l_orderkey": 3905i32, "l_partkey": 170i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 6.0d, "l_extendedprice": 6421.02d, "l_discount": 0.07d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-04-07", "l_commitdate": "1994-03-07", "l_receiptdate": "1994-04-21", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "ow furiously. deposits wake ironic " }, { "l_orderkey": 4516i32, "l_partkey": 170i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 34.0d, "l_extendedprice": 36385.78d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-05-16", "l_commitdate": "1994-06-23", "l_receiptdate": "1994-06-12", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "even pinto beans wake qui" }, { "l_orderkey": 2854i32, "l_partkey": 170i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 34.0d, "l_extendedprice": 36385.78d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-09-06", "l_commitdate": "1994-08-07", "l_receiptdate": "1994-09-22", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "age carefully" }, { "l_orderkey": 1444i32, "l_partkey": 170i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 42.0d, "l_extendedprice": 44947.14d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-12-22", "l_commitdate": "1995-03-03", "l_receiptdate": "1994-12-31", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "ly bold packages boost regular ideas. spe" }, { "l_orderkey": 645i32, "l_partkey": 170i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 47.0d, "l_extendedprice": 50297.99d, "l_discount": 0.07d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-02-16", "l_commitdate": "1995-02-15", "l_receiptdate": "1995-02-25", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "hely regular instructions alon" }, { "l_orderkey": 4960i32, "l_partkey": 170i32, "l_suppkey": 1i32, "l_linenumber": 7i32, "l_quantity": 42.0d, "l_extendedprice": 44947.14d, "l_discount": 0.08d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-04-19", "l_commitdate": "1995-04-11", "l_receiptdate": "1995-05-08", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "s requests cajole. " }, { "l_orderkey": 448i32, "l_partkey": 170i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 8.0d, "l_extendedprice": 8561.36d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-02", "l_commitdate": "1995-10-16", "l_receiptdate": "1995-11-15", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "ounts wake blithely. furiously pending" }, { "l_orderkey": 2309i32, "l_partkey": 170i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 14.0d, "l_extendedprice": 14982.38d, "l_discount": 0.1d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-01", "l_commitdate": "1995-10-22", "l_receiptdate": "1996-01-23", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "asymptotes. furiously pending acco" }, { "l_orderkey": 545i32, "l_partkey": 170i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 4.0d, "l_extendedprice": 4280.68d, "l_discount": 0.02d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-02-23", "l_commitdate": "1995-12-16", "l_receiptdate": "1996-03-21", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": ", ironic grouches cajole over" }, { "l_orderkey": 4513i32, "l_partkey": 170i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 29.0d, "l_extendedprice": 31034.93d, "l_discount": 0.03d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-18", "l_commitdate": "1996-05-23", "l_receiptdate": "1996-06-08", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "cajole. regular packages boost. s" }, { "l_orderkey": 2342i32, "l_partkey": 170i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 50.0d, "l_extendedprice": 53508.5d, "l_discount": 0.1d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-28", "l_commitdate": "1996-07-18", "l_receiptdate": "1996-09-22", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "cial asymptotes pr" }, { "l_orderkey": 1634i32, "l_partkey": 170i32, "l_suppkey": 9i32, "l_linenumber": 6i32, "l_quantity": 11.0d, "l_extendedprice": 11771.87d, "l_discount": 0.01d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-04", "l_commitdate": "1996-12-06", "l_receiptdate": "1996-10-14", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "final requests " }, { "l_orderkey": 3747i32, "l_partkey": 170i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 33.0d, "l_extendedprice": 35315.61d, "l_discount": 0.01d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-14", "l_commitdate": "1996-11-12", "l_receiptdate": "1996-11-11", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": " regular p" }, { "l_orderkey": 2596i32, "l_partkey": 170i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 6.0d, "l_extendedprice": 6421.02d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-15", "l_commitdate": "1996-11-02", "l_receiptdate": "1996-12-29", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "ily special re" }, { "l_orderkey": 2406i32, "l_partkey": 170i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 18.0d, "l_extendedprice": 19263.06d, "l_discount": 0.07d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-17", "l_commitdate": "1996-12-25", "l_receiptdate": "1997-02-19", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "azzle furiously careful" }, { "l_orderkey": 5793i32, "l_partkey": 170i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 41.0d, "l_extendedprice": 43876.97d, "l_discount": 0.06d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-04", "l_commitdate": "1997-10-10", "l_receiptdate": "1997-08-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "snooze quick" }, { "l_orderkey": 102i32, "l_partkey": 170i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 34.0d, "l_extendedprice": 36385.78d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-09", "l_commitdate": "1997-07-28", "l_receiptdate": "1997-08-26", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "eposits cajole across" }, { "l_orderkey": 1954i32, "l_partkey": 170i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 29.0d, "l_extendedprice": 31034.93d, "l_discount": 0.08d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-25", "l_commitdate": "1997-07-15", "l_receiptdate": "1997-09-02", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "use thinly furiously regular asy" }, { "l_orderkey": 3107i32, "l_partkey": 170i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 23.0d, "l_extendedprice": 24613.91d, "l_discount": 0.03d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-10", "l_commitdate": "1997-11-11", "l_receiptdate": "1997-12-14", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "atelets must ha" }, { "l_orderkey": 2944i32, "l_partkey": 170i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 2.0d, "l_extendedprice": 2140.34d, "l_discount": 0.06d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-13", "l_commitdate": "1997-12-01", "l_receiptdate": "1998-01-08", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "luffily expr" }, { "l_orderkey": 1408i32, "l_partkey": 170i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 41.0d, "l_extendedprice": 43876.97d, "l_discount": 0.02d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-02-25", "l_commitdate": "1998-02-03", "l_receiptdate": "1998-03-13", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "ep along the fina" }, { "l_orderkey": 4192i32, "l_partkey": 170i32, "l_suppkey": 5i32, "l_linenumber": 7i32, "l_quantity": 27.0d, "l_extendedprice": 28894.59d, "l_discount": 0.02d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-03", "l_commitdate": "1998-06-26", "l_receiptdate": "1998-07-13", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": " carefully even escapades. care" }, { "l_orderkey": 34i32, "l_partkey": 170i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 6.0d, "l_extendedprice": 6421.02d, "l_discount": 0.02d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-10-30", "l_commitdate": "1998-09-20", "l_receiptdate": "1998-11-05", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "ar foxes sleep " } ] }
-{ "partkey": 171i32, "lines": [ { "l_orderkey": 3361i32, "l_partkey": 171i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 33.0d, "l_extendedprice": 35348.61d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-11-09", "l_commitdate": "1992-10-15", "l_receiptdate": "1992-11-11", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "uriously ironic accounts. ironic, ir" }, { "l_orderkey": 4675i32, "l_partkey": 171i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 6.0d, "l_extendedprice": 6427.02d, "l_discount": 0.0d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-01-22", "l_commitdate": "1994-01-06", "l_receiptdate": "1994-02-12", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": " unusual ideas thrash bl" }, { "l_orderkey": 5317i32, "l_partkey": 171i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 18.0d, "l_extendedprice": 19281.06d, "l_discount": 0.06d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-01-02", "l_commitdate": "1994-10-29", "l_receiptdate": "1995-01-16", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "g to the blithely p" }, { "l_orderkey": 3430i32, "l_partkey": 171i32, "l_suppkey": 10i32, "l_linenumber": 6i32, "l_quantity": 15.0d, "l_extendedprice": 16067.55d, "l_discount": 0.08d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-02-01", "l_commitdate": "1995-03-12", "l_receiptdate": "1995-02-04", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "cajole around the accounts. qui" }, { "l_orderkey": 4134i32, "l_partkey": 171i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 12.0d, "l_extendedprice": 12854.04d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-03-19", "l_commitdate": "1995-03-27", "l_receiptdate": "1995-04-14", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "kly above the quickly regular " }, { "l_orderkey": 5444i32, "l_partkey": 171i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 21.0d, "l_extendedprice": 22494.57d, "l_discount": 0.04d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-05-05", "l_commitdate": "1995-05-25", "l_receiptdate": "1995-05-29", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "aves serve sly" }, { "l_orderkey": 4546i32, "l_partkey": 171i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 15.0d, "l_extendedprice": 16067.55d, "l_discount": 0.04d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-31", "l_commitdate": "1995-10-17", "l_receiptdate": "1995-08-06", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "ught to cajole furiously. qu" }, { "l_orderkey": 1639i32, "l_partkey": 171i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 41.0d, "l_extendedprice": 43917.97d, "l_discount": 0.04d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-19", "l_commitdate": "1995-11-11", "l_receiptdate": "1996-01-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "structions w" }, { "l_orderkey": 3392i32, "l_partkey": 171i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 40.0d, "l_extendedprice": 42846.8d, "l_discount": 0.01d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-02-18", "l_commitdate": "1995-12-16", "l_receiptdate": "1996-02-26", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "ress instructions affix carefully. fur" }, { "l_orderkey": 545i32, "l_partkey": 171i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 18.0d, "l_extendedprice": 19281.06d, "l_discount": 0.0d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-02-21", "l_commitdate": "1996-01-17", "l_receiptdate": "1996-02-26", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "al, final packages affix. even a" }, { "l_orderkey": 1378i32, "l_partkey": 171i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 12.0d, "l_extendedprice": 12854.04d, "l_discount": 0.02d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-16", "l_commitdate": "1996-05-23", "l_receiptdate": "1996-07-09", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "notornis. b" }, { "l_orderkey": 2276i32, "l_partkey": 171i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 27.0d, "l_extendedprice": 28921.59d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-30", "l_commitdate": "1996-06-10", "l_receiptdate": "1996-07-31", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "the carefully unusual accoun" }, { "l_orderkey": 2310i32, "l_partkey": 171i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 6.0d, "l_extendedprice": 6427.02d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-08", "l_commitdate": "1996-12-09", "l_receiptdate": "1996-12-07", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "e slyly about the quickly ironic theodo" }, { "l_orderkey": 4066i32, "l_partkey": 171i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 43.0d, "l_extendedprice": 46060.31d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-16", "l_commitdate": "1997-04-14", "l_receiptdate": "1997-02-18", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "r instructions. slyly special " }, { "l_orderkey": 455i32, "l_partkey": 171i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 11.0d, "l_extendedprice": 11782.87d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-15", "l_commitdate": "1997-02-14", "l_receiptdate": "1997-03-26", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "g deposits against the slyly idle foxes u" }, { "l_orderkey": 422i32, "l_partkey": 171i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 10.0d, "l_extendedprice": 10711.7d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-15", "l_commitdate": "1997-08-04", "l_receiptdate": "1997-07-08", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "he furiously ironic theodolite" }, { "l_orderkey": 3846i32, "l_partkey": 171i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 30.0d, "l_extendedprice": 32135.1d, "l_discount": 0.08d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-01", "l_commitdate": "1998-03-12", "l_receiptdate": "1998-05-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "deposits according to the fur" }, { "l_orderkey": 3811i32, "l_partkey": 171i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 50.0d, "l_extendedprice": 53558.5d, "l_discount": 0.08d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-28", "l_commitdate": "1998-07-06", "l_receiptdate": "1998-08-16", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "ts are slyly fluffy ideas. furiou" } ] }
-{ "partkey": 178i32, "lines": [ { "l_orderkey": 5095i32, "l_partkey": 178i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 42.0d, "l_extendedprice": 45283.14d, "l_discount": 0.08d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-05-23", "l_commitdate": "1992-06-01", "l_receiptdate": "1992-06-18", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "ccounts. packages could have t" }, { "l_orderkey": 2209i32, "l_partkey": 178i32, "l_suppkey": 7i32, "l_linenumber": 6i32, "l_quantity": 7.0d, "l_extendedprice": 7547.19d, "l_discount": 0.09d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-08-18", "l_commitdate": "1992-09-09", "l_receiptdate": "1992-09-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": " quickly regular pack" }, { "l_orderkey": 1504i32, "l_partkey": 178i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 9.0d, "l_extendedprice": 9703.53d, "l_discount": 0.07d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-11-02", "l_commitdate": "1992-10-12", "l_receiptdate": "1992-11-15", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "y slyly regular courts." }, { "l_orderkey": 1187i32, "l_partkey": 178i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 29.0d, "l_extendedprice": 31266.93d, "l_discount": 0.01d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-12-10", "l_commitdate": "1993-02-09", "l_receiptdate": "1992-12-29", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "riously express ac" }, { "l_orderkey": 3521i32, "l_partkey": 178i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 38.0d, "l_extendedprice": 40970.46d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-02-15", "l_commitdate": "1992-12-10", "l_receiptdate": "1993-03-10", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "ges hang q" }, { "l_orderkey": 5792i32, "l_partkey": 178i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 34.0d, "l_extendedprice": 36657.78d, "l_discount": 0.08d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-05-23", "l_commitdate": "1993-06-25", "l_receiptdate": "1993-06-12", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "requests are against t" }, { "l_orderkey": 5472i32, "l_partkey": 178i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 45.0d, "l_extendedprice": 48517.65d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-06-05", "l_commitdate": "1993-05-14", "l_receiptdate": "1993-06-10", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": " idle packages. furi" }, { "l_orderkey": 1286i32, "l_partkey": 178i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 49.0d, "l_extendedprice": 52830.33d, "l_discount": 0.08d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-06-24", "l_commitdate": "1993-08-12", "l_receiptdate": "1993-06-26", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "gged accoun" }, { "l_orderkey": 1382i32, "l_partkey": 178i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 43.0d, "l_extendedprice": 46361.31d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-09-02", "l_commitdate": "1993-10-06", "l_receiptdate": "1993-09-15", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "ress deposits. slyly ironic foxes are blit" }, { "l_orderkey": 1825i32, "l_partkey": 178i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 33.0d, "l_extendedprice": 35579.61d, "l_discount": 0.04d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-12-07", "l_commitdate": "1994-03-01", "l_receiptdate": "1993-12-16", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "about the ne" }, { "l_orderkey": 4580i32, "l_partkey": 178i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 5.0d, "l_extendedprice": 5390.85d, "l_discount": 0.07d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-01-28", "l_commitdate": "1993-12-17", "l_receiptdate": "1994-02-22", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "o beans. f" }, { "l_orderkey": 1059i32, "l_partkey": 178i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 16.0d, "l_extendedprice": 17250.72d, "l_discount": 0.07d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-04-24", "l_commitdate": "1994-03-31", "l_receiptdate": "1994-04-28", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "y ironic pinto " }, { "l_orderkey": 197i32, "l_partkey": 178i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 8.0d, "l_extendedprice": 8625.36d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-04-17", "l_commitdate": "1995-07-01", "l_receiptdate": "1995-04-27", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "y blithely even deposits. blithely fina" }, { "l_orderkey": 1538i32, "l_partkey": 178i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 13.0d, "l_extendedprice": 14016.21d, "l_discount": 0.01d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-06-26", "l_commitdate": "1995-07-30", "l_receiptdate": "1995-07-25", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "ly. packages sleep f" }, { "l_orderkey": 2306i32, "l_partkey": 178i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 35.0d, "l_extendedprice": 37735.95d, "l_discount": 0.01d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-18", "l_commitdate": "1995-08-30", "l_receiptdate": "1995-08-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "raids along the furiously unusual asympto" }, { "l_orderkey": 2181i32, "l_partkey": 178i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 4.0d, "l_extendedprice": 4312.68d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-25", "l_commitdate": "1995-11-12", "l_receiptdate": "1995-09-28", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "tes. slyly silent packages use along th" }, { "l_orderkey": 3393i32, "l_partkey": 178i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 37.0d, "l_extendedprice": 39892.29d, "l_discount": 0.07d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-16", "l_commitdate": "1995-08-19", "l_receiptdate": "1995-10-19", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "ss the slyly ironic pinto beans. ironic," }, { "l_orderkey": 1575i32, "l_partkey": 178i32, "l_suppkey": 6i32, "l_linenumber": 6i32, "l_quantity": 14.0d, "l_extendedprice": 15094.38d, "l_discount": 0.08d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-31", "l_commitdate": "1995-12-06", "l_receiptdate": "1995-11-30", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "beans breach among the furiously specia" }, { "l_orderkey": 5092i32, "l_partkey": 178i32, "l_suppkey": 6i32, "l_linenumber": 6i32, "l_quantity": 11.0d, "l_extendedprice": 11859.87d, "l_discount": 0.03d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-02", "l_commitdate": "1995-12-27", "l_receiptdate": "1995-12-11", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "ly against the slyly silen" }, { "l_orderkey": 1633i32, "l_partkey": 178i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 35.0d, "l_extendedprice": 37735.95d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-09", "l_commitdate": "1995-12-02", "l_receiptdate": "1996-01-21", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "ly against the dolph" }, { "l_orderkey": 3235i32, "l_partkey": 178i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 23.0d, "l_extendedprice": 24797.91d, "l_discount": 0.0d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-02-16", "l_commitdate": "1996-01-05", "l_receiptdate": "1996-03-07", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "ldly ironic pinto beans" }, { "l_orderkey": 1607i32, "l_partkey": 178i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 48.0d, "l_extendedprice": 51752.16d, "l_discount": 0.0d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-02-22", "l_commitdate": "1996-02-13", "l_receiptdate": "1996-03-09", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "ular forges. deposits a" }, { "l_orderkey": 4579i32, "l_partkey": 178i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 34.0d, "l_extendedprice": 36657.78d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-02-26", "l_commitdate": "1996-02-22", "l_receiptdate": "1996-03-16", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "hely. carefully blithe dependen" }, { "l_orderkey": 1284i32, "l_partkey": 178i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 49.0d, "l_extendedprice": 52830.33d, "l_discount": 0.0d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-04-11", "l_commitdate": "1996-03-04", "l_receiptdate": "1996-04-16", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "lar packages. special packages ac" }, { "l_orderkey": 3809i32, "l_partkey": 178i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 43.0d, "l_extendedprice": 46361.31d, "l_discount": 0.0d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-06", "l_commitdate": "1996-06-22", "l_receiptdate": "1996-06-05", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "yly ironic decoys; regular, iron" }, { "l_orderkey": 4130i32, "l_partkey": 178i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 44.0d, "l_extendedprice": 47439.48d, "l_discount": 0.07d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-14", "l_commitdate": "1996-04-15", "l_receiptdate": "1996-05-15", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "eaves haggle qui" }, { "l_orderkey": 3940i32, "l_partkey": 178i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 33.0d, "l_extendedprice": 35579.61d, "l_discount": 0.1d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-19", "l_commitdate": "1996-04-19", "l_receiptdate": "1996-05-23", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "ly ironic packages about the pending accou" }, { "l_orderkey": 1926i32, "l_partkey": 178i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 10.0d, "l_extendedprice": 10781.7d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-23", "l_commitdate": "1996-03-02", "l_receiptdate": "1996-06-04", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "usly bold accounts. express accounts" }, { "l_orderkey": 1123i32, "l_partkey": 178i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 39.0d, "l_extendedprice": 42048.63d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-25", "l_commitdate": "1996-10-21", "l_receiptdate": "1996-09-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "rding to the furiously ironic requests: r" }, { "l_orderkey": 4646i32, "l_partkey": 178i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 26.0d, "l_extendedprice": 28032.42d, "l_discount": 0.07d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-02", "l_commitdate": "1996-08-25", "l_receiptdate": "1996-10-27", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "ix according to the slyly spe" }, { "l_orderkey": 5443i32, "l_partkey": 178i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 14.0d, "l_extendedprice": 15094.38d, "l_discount": 0.02d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-27", "l_commitdate": "1996-11-11", "l_receiptdate": "1996-11-21", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "s after the regular, regular deposits hag" }, { "l_orderkey": 1671i32, "l_partkey": 178i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 5.0d, "l_extendedprice": 5390.85d, "l_discount": 0.0d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-14", "l_commitdate": "1996-10-20", "l_receiptdate": "1996-11-25", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "luffily regular deposits" }, { "l_orderkey": 3173i32, "l_partkey": 178i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 5.0d, "l_extendedprice": 5390.85d, "l_discount": 0.09d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-06", "l_commitdate": "1996-09-17", "l_receiptdate": "1996-12-07", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "express depo" }, { "l_orderkey": 2661i32, "l_partkey": 178i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 31.0d, "l_extendedprice": 33423.27d, "l_discount": 0.03d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-07", "l_commitdate": "1997-03-10", "l_receiptdate": "1997-04-23", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "e ironicall" }, { "l_orderkey": 1923i32, "l_partkey": 178i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 23.0d, "l_extendedprice": 24797.91d, "l_discount": 0.07d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-08", "l_commitdate": "1997-08-11", "l_receiptdate": "1997-09-14", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "aggle carefully. furiously permanent" }, { "l_orderkey": 1413i32, "l_partkey": 178i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 18.0d, "l_extendedprice": 19407.06d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-10-11", "l_commitdate": "1997-08-17", "l_receiptdate": "1997-10-25", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "yly bold packages haggle quickly acr" }, { "l_orderkey": 1120i32, "l_partkey": 178i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 10.0d, "l_extendedprice": 10781.7d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-17", "l_commitdate": "1998-01-21", "l_receiptdate": "1997-12-23", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "dependencies. blithel" }, { "l_orderkey": 4131i32, "l_partkey": 178i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 32.0d, "l_extendedprice": 34501.44d, "l_discount": 0.08d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-02", "l_commitdate": "1998-03-21", "l_receiptdate": "1998-03-07", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": " furiously regular asymptotes nod sly" }, { "l_orderkey": 4196i32, "l_partkey": 178i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 46.0d, "l_extendedprice": 49595.82d, "l_discount": 0.05d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-09-05", "l_commitdate": "1998-06-28", "l_receiptdate": "1998-09-10", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "according to t" }, { "l_orderkey": 3909i32, "l_partkey": 178i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 30.0d, "l_extendedprice": 32345.1d, "l_discount": 0.03d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-10-17", "l_commitdate": "1998-10-14", "l_receiptdate": "1998-10-28", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "ly even deposits across the ironic notorni" }, { "l_orderkey": 4678i32, "l_partkey": 178i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 40.0d, "l_extendedprice": 43126.8d, "l_discount": 0.03d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-11-11", "l_commitdate": "1998-10-27", "l_receiptdate": "1998-11-24", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": ". final, unusual requests sleep thinl" } ] }
-{ "partkey": 179i32, "lines": [ { "l_orderkey": 1537i32, "l_partkey": 179i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 50.0d, "l_extendedprice": 53958.5d, "l_discount": 0.08d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-05-30", "l_commitdate": "1992-05-14", "l_receiptdate": "1992-06-23", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "special packages haggle slyly at the silent" }, { "l_orderkey": 384i32, "l_partkey": 179i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 38.0d, "l_extendedprice": 41008.46d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-06-02", "l_commitdate": "1992-04-18", "l_receiptdate": "1992-06-10", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "totes cajole blithely against the even" }, { "l_orderkey": 4741i32, "l_partkey": 179i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 40.0d, "l_extendedprice": 43166.8d, "l_discount": 0.09d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-09-20", "l_commitdate": "1992-09-23", "l_receiptdate": "1992-10-09", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": " fluffily slow deposits. fluffily regu" }, { "l_orderkey": 4578i32, "l_partkey": 179i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 15.0d, "l_extendedprice": 16187.55d, "l_discount": 0.01d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-10-23", "l_commitdate": "1992-11-22", "l_receiptdate": "1992-11-09", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "gular theodo" }, { "l_orderkey": 5315i32, "l_partkey": 179i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 39.0d, "l_extendedprice": 42087.63d, "l_discount": 0.0d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-11-09", "l_commitdate": "1992-12-29", "l_receiptdate": "1992-12-07", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "ly alongside of the ca" }, { "l_orderkey": 898i32, "l_partkey": 179i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 37.0d, "l_extendedprice": 39929.29d, "l_discount": 0.03d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-08-17", "l_commitdate": "1993-08-04", "l_receiptdate": "1993-09-01", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "packages sleep furiously" }, { "l_orderkey": 4193i32, "l_partkey": 179i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 10.0d, "l_extendedprice": 10791.7d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-02-10", "l_commitdate": "1994-03-22", "l_receiptdate": "1994-03-09", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "uffily spe" }, { "l_orderkey": 2182i32, "l_partkey": 179i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 37.0d, "l_extendedprice": 39929.29d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-04-08", "l_commitdate": "1994-06-29", "l_receiptdate": "1994-04-18", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "ges. blithely ironic" }, { "l_orderkey": 3459i32, "l_partkey": 179i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 31.0d, "l_extendedprice": 33454.27d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-09-05", "l_commitdate": "1994-10-20", "l_receiptdate": "1994-10-03", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "y regular pain" }, { "l_orderkey": 1287i32, "l_partkey": 179i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 21.0d, "l_extendedprice": 22662.57d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-10-06", "l_commitdate": "1994-09-25", "l_receiptdate": "1994-10-16", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "y quickly bold theodoli" }, { "l_orderkey": 4835i32, "l_partkey": 179i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 18.0d, "l_extendedprice": 19425.06d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-02-17", "l_commitdate": "1994-12-14", "l_receiptdate": "1995-03-17", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "eat furiously against the slyly " }, { "l_orderkey": 4642i32, "l_partkey": 179i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 41.0d, "l_extendedprice": 44245.97d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-04-08", "l_commitdate": "1995-04-13", "l_receiptdate": "1995-05-01", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "s are blithely. requests wake above the fur" }, { "l_orderkey": 2343i32, "l_partkey": 179i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 21.0d, "l_extendedprice": 22662.57d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-07", "l_commitdate": "1995-10-26", "l_receiptdate": "1995-10-07", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "osits. unusual theodolites boost furio" }, { "l_orderkey": 4551i32, "l_partkey": 179i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 26.0d, "l_extendedprice": 28058.42d, "l_discount": 0.02d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-04-14", "l_commitdate": "1996-04-26", "l_receiptdate": "1996-04-17", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "le. carefully dogged accounts use furiousl" }, { "l_orderkey": 1188i32, "l_partkey": 179i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 41.0d, "l_extendedprice": 44245.97d, "l_discount": 0.07d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-29", "l_commitdate": "1996-05-21", "l_receiptdate": "1996-07-21", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "althy packages. fluffily unusual ideas h" }, { "l_orderkey": 67i32, "l_partkey": 179i32, "l_suppkey": 9i32, "l_linenumber": 6i32, "l_quantity": 29.0d, "l_extendedprice": 31295.93d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-25", "l_commitdate": "1997-01-27", "l_receiptdate": "1997-01-27", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "ultipliers " }, { "l_orderkey": 4066i32, "l_partkey": 179i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 49.0d, "l_extendedprice": 52879.33d, "l_discount": 0.01d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-17", "l_commitdate": "1997-03-24", "l_receiptdate": "1997-02-19", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "ial braids. furiously final deposits sl" }, { "l_orderkey": 5922i32, "l_partkey": 179i32, "l_suppkey": 9i32, "l_linenumber": 6i32, "l_quantity": 10.0d, "l_extendedprice": 10791.7d, "l_discount": 0.04d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-23", "l_commitdate": "1996-12-26", "l_receiptdate": "1997-03-04", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "sly regular deposits haggle quickly ins" }, { "l_orderkey": 1410i32, "l_partkey": 179i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 18.0d, "l_extendedprice": 19425.06d, "l_discount": 0.03d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-03", "l_commitdate": "1997-05-17", "l_receiptdate": "1997-06-07", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "gle furiously fluffily regular requests" } ] }
-{ "partkey": 180i32, "lines": [ { "l_orderkey": 5382i32, "l_partkey": 180i32, "l_suppkey": 9i32, "l_linenumber": 6i32, "l_quantity": 6.0d, "l_extendedprice": 6481.08d, "l_discount": 0.02d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-03-07", "l_commitdate": "1992-04-02", "l_receiptdate": "1992-03-18", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "y final foxes by the sl" }, { "l_orderkey": 4515i32, "l_partkey": 180i32, "l_suppkey": 8i32, "l_linenumber": 6i32, "l_quantity": 23.0d, "l_extendedprice": 24844.14d, "l_discount": 0.04d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-05-23", "l_commitdate": "1992-06-15", "l_receiptdate": "1992-06-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "ns. bold r" }, { "l_orderkey": 2881i32, "l_partkey": 180i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 16.0d, "l_extendedprice": 17282.88d, "l_discount": 0.02d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-06-21", "l_commitdate": "1992-06-27", "l_receiptdate": "1992-07-03", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "usly bold " }, { "l_orderkey": 1826i32, "l_partkey": 180i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 6.0d, "l_extendedprice": 6481.08d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-06-30", "l_commitdate": "1992-05-17", "l_receiptdate": "1992-07-30", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "kages. blithely silent" }, { "l_orderkey": 3906i32, "l_partkey": 180i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 15.0d, "l_extendedprice": 16202.7d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-07-30", "l_commitdate": "1992-08-26", "l_receiptdate": "1992-08-02", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "dependencies at the " }, { "l_orderkey": 4099i32, "l_partkey": 180i32, "l_suppkey": 8i32, "l_linenumber": 7i32, "l_quantity": 46.0d, "l_extendedprice": 49688.28d, "l_discount": 0.06d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-10-29", "l_commitdate": "1992-11-03", "l_receiptdate": "1992-11-10", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "ages nag requests." }, { "l_orderkey": 4067i32, "l_partkey": 180i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 18.0d, "l_extendedprice": 19443.24d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-01-24", "l_commitdate": "1992-12-23", "l_receiptdate": "1993-02-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "e the slyly final packages d" }, { "l_orderkey": 1253i32, "l_partkey": 180i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 14.0d, "l_extendedprice": 15122.52d, "l_discount": 0.0d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-04-03", "l_commitdate": "1993-04-16", "l_receiptdate": "1993-04-27", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "lar foxes sleep furiously final, final pack" }, { "l_orderkey": 640i32, "l_partkey": 180i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 22.0d, "l_extendedprice": 23763.96d, "l_discount": 0.05d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-05-07", "l_commitdate": "1993-04-14", "l_receiptdate": "1993-05-21", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "osits across the slyly regular theodo" }, { "l_orderkey": 772i32, "l_partkey": 180i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 10.0d, "l_extendedprice": 10801.8d, "l_discount": 0.08d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-05-17", "l_commitdate": "1993-06-09", "l_receiptdate": "1993-05-29", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "o the furiously final deposits. furi" }, { "l_orderkey": 2084i32, "l_partkey": 180i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 23.0d, "l_extendedprice": 24844.14d, "l_discount": 0.09d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-06-05", "l_commitdate": "1993-05-26", "l_receiptdate": "1993-06-06", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "es against " }, { "l_orderkey": 5318i32, "l_partkey": 180i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 26.0d, "l_extendedprice": 28084.68d, "l_discount": 0.0d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-07-07", "l_commitdate": "1993-05-23", "l_receiptdate": "1993-07-28", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "al, express foxes. bold requests sleep alwa" }, { "l_orderkey": 3431i32, "l_partkey": 180i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 41.0d, "l_extendedprice": 44287.38d, "l_discount": 0.03d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-09-26", "l_commitdate": "1993-10-13", "l_receiptdate": "1993-10-22", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": " sleep carefully ironically special" }, { "l_orderkey": 70i32, "l_partkey": 180i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 1.0d, "l_extendedprice": 1080.18d, "l_discount": 0.03d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-01-26", "l_commitdate": "1994-03-05", "l_receiptdate": "1994-01-28", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "quickly. fluffily unusual theodolites c" }, { "l_orderkey": 2949i32, "l_partkey": 180i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 38.0d, "l_extendedprice": 41046.84d, "l_discount": 0.02d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-05-22", "l_commitdate": "1994-05-25", "l_receiptdate": "1994-05-27", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "se slyly requests. carefull" }, { "l_orderkey": 4642i32, "l_partkey": 180i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 34.0d, "l_extendedprice": 36726.12d, "l_discount": 0.04d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-04-01", "l_commitdate": "1995-05-11", "l_receiptdate": "1995-04-23", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "theodolites detect among the ironically sp" }, { "l_orderkey": 512i32, "l_partkey": 180i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 40.0d, "l_extendedprice": 43207.2d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-06", "l_commitdate": "1995-07-08", "l_receiptdate": "1995-07-08", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "quests are da" }, { "l_orderkey": 5221i32, "l_partkey": 180i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 16.0d, "l_extendedprice": 17282.88d, "l_discount": 0.04d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-29", "l_commitdate": "1995-09-06", "l_receiptdate": "1995-09-12", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "ending request" }, { "l_orderkey": 326i32, "l_partkey": 180i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 41.0d, "l_extendedprice": 44287.38d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-30", "l_commitdate": "1995-07-09", "l_receiptdate": "1995-09-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "ily quickly bold ideas." }, { "l_orderkey": 5092i32, "l_partkey": 180i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 14.0d, "l_extendedprice": 15122.52d, "l_discount": 0.04d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-02-20", "l_commitdate": "1995-11-30", "l_receiptdate": "1996-03-20", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": " deposits cajole furiously against the sly" }, { "l_orderkey": 4868i32, "l_partkey": 180i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 8.0d, "l_extendedprice": 8641.44d, "l_discount": 0.1d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-26", "l_commitdate": "1997-05-09", "l_receiptdate": "1997-04-16", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "ly special th" }, { "l_orderkey": 3652i32, "l_partkey": 180i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 24.0d, "l_extendedprice": 25924.32d, "l_discount": 0.05d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-07", "l_commitdate": "1997-04-07", "l_receiptdate": "1997-06-12", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "the final p" }, { "l_orderkey": 1923i32, "l_partkey": 180i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 11.0d, "l_extendedprice": 11881.98d, "l_discount": 0.03d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-12", "l_commitdate": "1997-09-04", "l_receiptdate": "1997-08-01", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "ages wake slyly about the furiously regular" }, { "l_orderkey": 4964i32, "l_partkey": 180i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 12.0d, "l_extendedprice": 12962.16d, "l_discount": 0.08d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-03", "l_commitdate": "1997-10-25", "l_receiptdate": "1997-09-15", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "ully silent instructions ca" }, { "l_orderkey": 1605i32, "l_partkey": 180i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 18.0d, "l_extendedprice": 19443.24d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-13", "l_commitdate": "1998-06-17", "l_receiptdate": "1998-06-03", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "ly regular foxes wake carefully. bol" }, { "l_orderkey": 3713i32, "l_partkey": 180i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 19.0d, "l_extendedprice": 20523.42d, "l_discount": 0.03d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-19", "l_commitdate": "1998-07-06", "l_receiptdate": "1998-06-09", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "quests cajole careful" }, { "l_orderkey": 899i32, "l_partkey": 180i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 14.0d, "l_extendedprice": 15122.52d, "l_discount": 0.05d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-21", "l_commitdate": "1998-05-28", "l_receiptdate": "1998-06-03", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "ades impress carefully" }, { "l_orderkey": 966i32, "l_partkey": 180i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 19.0d, "l_extendedprice": 20523.42d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-26", "l_commitdate": "1998-07-15", "l_receiptdate": "1998-05-29", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "efully final pinto beans. quickly " }, { "l_orderkey": 708i32, "l_partkey": 180i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 19.0d, "l_extendedprice": 20523.42d, "l_discount": 0.06d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-10-28", "l_commitdate": "1998-09-23", "l_receiptdate": "1998-11-25", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": " requests. even, thin ideas" } ] }
-{ "partkey": 182i32, "lines": [ { "l_orderkey": 1057i32, "l_partkey": 182i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 20.0d, "l_extendedprice": 21643.6d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-03-02", "l_commitdate": "1992-05-19", "l_receiptdate": "1992-03-13", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "s wake bol" }, { "l_orderkey": 384i32, "l_partkey": 182i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 11.0d, "l_extendedprice": 11903.98d, "l_discount": 0.02d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-04-02", "l_commitdate": "1992-04-21", "l_receiptdate": "1992-04-15", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "ash carefully" }, { "l_orderkey": 737i32, "l_partkey": 182i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 12.0d, "l_extendedprice": 12986.16d, "l_discount": 0.01d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-04-28", "l_commitdate": "1992-06-30", "l_receiptdate": "1992-05-08", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "posits after the slyly bold du" }, { "l_orderkey": 4035i32, "l_partkey": 182i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 13.0d, "l_extendedprice": 14068.34d, "l_discount": 0.0d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-06-10", "l_commitdate": "1992-05-16", "l_receiptdate": "1992-07-10", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "s. furiously even courts wake slyly" }, { "l_orderkey": 2022i32, "l_partkey": 182i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 16.0d, "l_extendedprice": 17314.88d, "l_discount": 0.05d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-06-23", "l_commitdate": "1992-05-22", "l_receiptdate": "1992-07-07", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "ages wake slyly care" }, { "l_orderkey": 3810i32, "l_partkey": 182i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 11.0d, "l_extendedprice": 11903.98d, "l_discount": 0.06d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-12-18", "l_commitdate": "1992-12-11", "l_receiptdate": "1993-01-15", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": " the pending pinto beans. expr" }, { "l_orderkey": 4706i32, "l_partkey": 182i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 37.0d, "l_extendedprice": 40040.66d, "l_discount": 0.02d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-02-20", "l_commitdate": "1993-03-05", "l_receiptdate": "1993-03-03", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "kly final deposits c" }, { "l_orderkey": 2084i32, "l_partkey": 182i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 42.0d, "l_extendedprice": 45451.56d, "l_discount": 0.03d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-03-29", "l_commitdate": "1993-05-05", "l_receiptdate": "1993-04-22", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "y fluffily even foxes. " }, { "l_orderkey": 3457i32, "l_partkey": 182i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 29.0d, "l_extendedprice": 31383.22d, "l_discount": 0.03d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-05-12", "l_commitdate": "1995-07-13", "l_receiptdate": "1995-06-05", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "refully final excuses wake" }, { "l_orderkey": 5634i32, "l_partkey": 182i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 29.0d, "l_extendedprice": 31383.22d, "l_discount": 0.0d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-10", "l_commitdate": "1996-10-29", "l_receiptdate": "1996-08-11", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "ely final ideas. deposits sleep. reg" }, { "l_orderkey": 547i32, "l_partkey": 182i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 3.0d, "l_extendedprice": 3246.54d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-04", "l_commitdate": "1996-08-01", "l_receiptdate": "1996-09-21", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "pinto beans. ironi" }, { "l_orderkey": 1510i32, "l_partkey": 182i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 8.0d, "l_extendedprice": 8657.44d, "l_discount": 0.01d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-26", "l_commitdate": "1996-11-07", "l_receiptdate": "1996-10-30", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "blithely express" }, { "l_orderkey": 5824i32, "l_partkey": 182i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 42.0d, "l_extendedprice": 45451.56d, "l_discount": 0.09d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-01", "l_commitdate": "1997-02-20", "l_receiptdate": "1997-02-07", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "ts sleep. carefully regular accounts h" }, { "l_orderkey": 1122i32, "l_partkey": 182i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 29.0d, "l_extendedprice": 31383.22d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-07", "l_commitdate": "1997-04-07", "l_receiptdate": "1997-05-15", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "ptotes. quickl" }, { "l_orderkey": 3719i32, "l_partkey": 182i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 12.0d, "l_extendedprice": 12986.16d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-10", "l_commitdate": "1997-05-04", "l_receiptdate": "1997-07-09", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "grate according to the " }, { "l_orderkey": 1954i32, "l_partkey": 182i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 1.0d, "l_extendedprice": 1082.18d, "l_discount": 0.03d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-16", "l_commitdate": "1997-07-08", "l_receiptdate": "1997-10-07", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "te. furiously final deposits hag" }, { "l_orderkey": 2401i32, "l_partkey": 182i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 39.0d, "l_extendedprice": 42205.02d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-29", "l_commitdate": "1997-10-21", "l_receiptdate": "1997-10-17", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "ould affix " }, { "l_orderkey": 3716i32, "l_partkey": 182i32, "l_suppkey": 3i32, "l_linenumber": 5i32, "l_quantity": 25.0d, "l_extendedprice": 27054.5d, "l_discount": 0.06d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-11-23", "l_commitdate": "1997-10-24", "l_receiptdate": "1997-11-24", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "fully unusual accounts. carefu" }, { "l_orderkey": 5380i32, "l_partkey": 182i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 14.0d, "l_extendedprice": 15150.52d, "l_discount": 0.1d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-18", "l_commitdate": "1997-12-03", "l_receiptdate": "1998-01-06", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "final platelets." }, { "l_orderkey": 5505i32, "l_partkey": 182i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 33.0d, "l_extendedprice": 35711.94d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-11", "l_commitdate": "1997-11-11", "l_receiptdate": "1998-01-30", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "ithely unusual excuses integrat" }, { "l_orderkey": 3713i32, "l_partkey": 182i32, "l_suppkey": 3i32, "l_linenumber": 6i32, "l_quantity": 29.0d, "l_extendedprice": 31383.22d, "l_discount": 0.09d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-04", "l_commitdate": "1998-06-13", "l_receiptdate": "1998-08-21", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "the regular dugouts wake furiously sil" }, { "l_orderkey": 3811i32, "l_partkey": 182i32, "l_suppkey": 3i32, "l_linenumber": 5i32, "l_quantity": 23.0d, "l_extendedprice": 24890.14d, "l_discount": 0.0d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-13", "l_commitdate": "1998-07-09", "l_receiptdate": "1998-08-29", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "nstructions sleep quickly. slyly final " }, { "l_orderkey": 5664i32, "l_partkey": 182i32, "l_suppkey": 3i32, "l_linenumber": 7i32, "l_quantity": 9.0d, "l_extendedprice": 9739.62d, "l_discount": 0.01d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-11-04", "l_commitdate": "1998-10-15", "l_receiptdate": "1998-11-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "yly. express ideas agai" } ] }
-{ "partkey": 190i32, "lines": [ { "l_orderkey": 1856i32, "l_partkey": 190i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 14.0d, "l_extendedprice": 15262.66d, "l_discount": 0.01d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-04-14", "l_commitdate": "1992-05-02", "l_receiptdate": "1992-05-11", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "ans are even requests. deposits caj" }, { "l_orderkey": 1344i32, "l_partkey": 190i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 29.0d, "l_extendedprice": 31615.51d, "l_discount": 0.09d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-07-17", "l_commitdate": "1992-06-07", "l_receiptdate": "1992-07-21", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "ffily quiet foxes wake blithely. slyly " }, { "l_orderkey": 1185i32, "l_partkey": 190i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 12.0d, "l_extendedprice": 13082.28d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-10-12", "l_commitdate": "1992-09-26", "l_receiptdate": "1992-11-11", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "instructions. daringly pend" }, { "l_orderkey": 2885i32, "l_partkey": 190i32, "l_suppkey": 1i32, "l_linenumber": 6i32, "l_quantity": 5.0d, "l_extendedprice": 5450.95d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-01-06", "l_commitdate": "1992-11-13", "l_receiptdate": "1993-02-05", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "s. slyly express th" }, { "l_orderkey": 4487i32, "l_partkey": 190i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 1.0d, "l_extendedprice": 1090.19d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-05-11", "l_commitdate": "1993-05-23", "l_receiptdate": "1993-05-17", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "ithely final asym" }, { "l_orderkey": 4641i32, "l_partkey": 190i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 45.0d, "l_extendedprice": 49058.55d, "l_discount": 0.07d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-05-11", "l_commitdate": "1993-04-19", "l_receiptdate": "1993-05-21", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": " about the close " }, { "l_orderkey": 4679i32, "l_partkey": 190i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 7.0d, "l_extendedprice": 7631.33d, "l_discount": 0.1d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-05-11", "l_commitdate": "1993-04-11", "l_receiptdate": "1993-05-16", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "kages. bold, regular packa" }, { "l_orderkey": 2437i32, "l_partkey": 190i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 26.0d, "l_extendedprice": 28344.94d, "l_discount": 0.0d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-06-25", "l_commitdate": "1993-05-22", "l_receiptdate": "1993-07-07", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "lyly regular accounts." }, { "l_orderkey": 358i32, "l_partkey": 190i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 32.0d, "l_extendedprice": 34886.08d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-10-18", "l_commitdate": "1993-12-12", "l_receiptdate": "1993-10-31", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "y final foxes sleep blithely sl" }, { "l_orderkey": 4034i32, "l_partkey": 190i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 48.0d, "l_extendedprice": 52329.12d, "l_discount": 0.03d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-03-01", "l_commitdate": "1994-01-16", "l_receiptdate": "1994-03-16", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": " blithely regular requests play carefull" }, { "l_orderkey": 389i32, "l_partkey": 190i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 2.0d, "l_extendedprice": 2180.38d, "l_discount": 0.09d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-04-13", "l_commitdate": "1994-04-10", "l_receiptdate": "1994-04-25", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "fts. courts eat blithely even dependenc" }, { "l_orderkey": 2182i32, "l_partkey": 190i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 3.0d, "l_extendedprice": 3270.57d, "l_discount": 0.05d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-04-20", "l_commitdate": "1994-07-04", "l_receiptdate": "1994-04-24", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "y bold theodolites wi" }, { "l_orderkey": 4930i32, "l_partkey": 190i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 38.0d, "l_extendedprice": 41427.22d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-06-06", "l_commitdate": "1994-06-18", "l_receiptdate": "1994-07-03", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "bold requests sleep never" }, { "l_orderkey": 1059i32, "l_partkey": 190i32, "l_suppkey": 1i32, "l_linenumber": 6i32, "l_quantity": 50.0d, "l_extendedprice": 54509.5d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-06-15", "l_commitdate": "1994-05-11", "l_receiptdate": "1994-06-29", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "s impress furiously about" }, { "l_orderkey": 672i32, "l_partkey": 190i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 9.0d, "l_extendedprice": 9811.71d, "l_discount": 0.03d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-06-25", "l_commitdate": "1994-06-06", "l_receiptdate": "1994-07-19", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "haggle carefully carefully reg" }, { "l_orderkey": 5446i32, "l_partkey": 190i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 27.0d, "l_extendedprice": 29435.13d, "l_discount": 0.05d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-07-21", "l_commitdate": "1994-08-25", "l_receiptdate": "1994-08-17", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "ously across the quic" }, { "l_orderkey": 5926i32, "l_partkey": 190i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 23.0d, "l_extendedprice": 25074.37d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-07-23", "l_commitdate": "1994-08-10", "l_receiptdate": "1994-07-27", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "ickly special packages among " }, { "l_orderkey": 5984i32, "l_partkey": 190i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 35.0d, "l_extendedprice": 38156.65d, "l_discount": 0.0d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-08-25", "l_commitdate": "1994-08-05", "l_receiptdate": "1994-08-31", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "le fluffily regula" }, { "l_orderkey": 224i32, "l_partkey": 190i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 41.0d, "l_extendedprice": 44697.79d, "l_discount": 0.07d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-09-01", "l_commitdate": "1994-09-15", "l_receiptdate": "1994-09-02", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "after the furiou" }, { "l_orderkey": 131i32, "l_partkey": 190i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 4.0d, "l_extendedprice": 4360.76d, "l_discount": 0.04d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-09-20", "l_commitdate": "1994-08-30", "l_receiptdate": "1994-09-23", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": " are carefully slyly i" }, { "l_orderkey": 643i32, "l_partkey": 190i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 47.0d, "l_extendedprice": 51238.93d, "l_discount": 0.1d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-04-05", "l_commitdate": "1995-06-14", "l_receiptdate": "1995-04-26", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "y against " }, { "l_orderkey": 4327i32, "l_partkey": 190i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 39.0d, "l_extendedprice": 42517.41d, "l_discount": 0.01d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-06-23", "l_commitdate": "1995-04-18", "l_receiptdate": "1995-07-13", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "kages against the blit" }, { "l_orderkey": 162i32, "l_partkey": 190i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 2.0d, "l_extendedprice": 2180.38d, "l_discount": 0.02d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-02", "l_commitdate": "1995-06-17", "l_receiptdate": "1995-09-08", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "es! final somas integrate" }, { "l_orderkey": 610i32, "l_partkey": 190i32, "l_suppkey": 1i32, "l_linenumber": 7i32, "l_quantity": 27.0d, "l_extendedprice": 29435.13d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-02", "l_commitdate": "1995-09-19", "l_receiptdate": "1995-09-15", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": " ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle" }, { "l_orderkey": 871i32, "l_partkey": 190i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 29.0d, "l_extendedprice": 31615.51d, "l_discount": 0.06d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-16", "l_commitdate": "1996-01-27", "l_receiptdate": "1995-12-16", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "ests are carefu" }, { "l_orderkey": 3622i32, "l_partkey": 190i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 46.0d, "l_extendedprice": 50148.74d, "l_discount": 0.07d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-18", "l_commitdate": "1996-01-23", "l_receiptdate": "1996-01-12", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "sits wake. blithe" }, { "l_orderkey": 4773i32, "l_partkey": 190i32, "l_suppkey": 1i32, "l_linenumber": 6i32, "l_quantity": 11.0d, "l_extendedprice": 11992.09d, "l_discount": 0.1d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-02", "l_commitdate": "1996-01-29", "l_receiptdate": "1996-01-24", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "en accounts. slyly b" }, { "l_orderkey": 1607i32, "l_partkey": 190i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 2.0d, "l_extendedprice": 2180.38d, "l_discount": 0.02d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-11", "l_commitdate": "1996-02-15", "l_receiptdate": "1996-01-19", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "packages haggle. regular requests boost s" }, { "l_orderkey": 4481i32, "l_partkey": 190i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 27.0d, "l_extendedprice": 29435.13d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-04-06", "l_commitdate": "1996-05-17", "l_receiptdate": "1996-04-12", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "ackages haggle even, " }, { "l_orderkey": 3334i32, "l_partkey": 190i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 7.0d, "l_extendedprice": 7631.33d, "l_discount": 0.09d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-04-28", "l_commitdate": "1996-04-08", "l_receiptdate": "1996-05-25", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "nts sublate slyly express pack" }, { "l_orderkey": 3780i32, "l_partkey": 190i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 40.0d, "l_extendedprice": 43607.6d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-06", "l_commitdate": "1996-05-29", "l_receiptdate": "1996-07-01", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "gular deposits-- furiously regular " }, { "l_orderkey": 1510i32, "l_partkey": 190i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 36.0d, "l_extendedprice": 39246.84d, "l_discount": 0.07d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-02", "l_commitdate": "1996-11-23", "l_receiptdate": "1996-10-05", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "old deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefully" }, { "l_orderkey": 704i32, "l_partkey": 190i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 40.0d, "l_extendedprice": 43607.6d, "l_discount": 0.05d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-30", "l_commitdate": "1997-01-10", "l_receiptdate": "1997-02-20", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "ggle quickly. r" }, { "l_orderkey": 4484i32, "l_partkey": 190i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 38.0d, "l_extendedprice": 41427.22d, "l_discount": 0.06d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-07", "l_commitdate": "1997-01-31", "l_receiptdate": "1997-04-01", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": ". even requests un" }, { "l_orderkey": 4807i32, "l_partkey": 190i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 32.0d, "l_extendedprice": 34886.08d, "l_discount": 0.05d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-04", "l_commitdate": "1997-03-21", "l_receiptdate": "1997-04-16", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "efully even dolphins slee" }, { "l_orderkey": 4421i32, "l_partkey": 190i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 32.0d, "l_extendedprice": 34886.08d, "l_discount": 0.06d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-28", "l_commitdate": "1997-06-14", "l_receiptdate": "1997-08-13", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "uickly final pinto beans impress. bold " }, { "l_orderkey": 5154i32, "l_partkey": 190i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 11.0d, "l_extendedprice": 11992.09d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-06", "l_commitdate": "1997-06-30", "l_receiptdate": "1997-09-04", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "luffily bold foxes. final" }, { "l_orderkey": 5413i32, "l_partkey": 190i32, "l_suppkey": 1i32, "l_linenumber": 6i32, "l_quantity": 32.0d, "l_extendedprice": 34886.08d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-10-28", "l_commitdate": "1998-01-03", "l_receiptdate": "1997-11-10", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "refully special package" }, { "l_orderkey": 5763i32, "l_partkey": 190i32, "l_suppkey": 1i32, "l_linenumber": 6i32, "l_quantity": 9.0d, "l_extendedprice": 9811.71d, "l_discount": 0.08d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-09-24", "l_commitdate": "1998-09-01", "l_receiptdate": "1998-10-02", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": " deposits. instru" } ] }
-{ "partkey": 195i32, "lines": [ { "l_orderkey": 2848i32, "l_partkey": 195i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 18.0d, "l_extendedprice": 19713.42d, "l_discount": 0.07d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-04-10", "l_commitdate": "1992-06-01", "l_receiptdate": "1992-05-05", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "osits haggle. stealthily ironic packa" }, { "l_orderkey": 3744i32, "l_partkey": 195i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 30.0d, "l_extendedprice": 32855.7d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-05-07", "l_commitdate": "1992-02-12", "l_receiptdate": "1992-05-17", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "nts among " }, { "l_orderkey": 3205i32, "l_partkey": 195i32, "l_suppkey": 8i32, "l_linenumber": 6i32, "l_quantity": 19.0d, "l_extendedprice": 20808.61d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-05-28", "l_commitdate": "1992-05-30", "l_receiptdate": "1992-06-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "yly pending packages snooz" }, { "l_orderkey": 1506i32, "l_partkey": 195i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 15.0d, "l_extendedprice": 16427.85d, "l_discount": 0.05d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-09-24", "l_commitdate": "1992-11-11", "l_receiptdate": "1992-10-05", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": " carefully fluffy packages-- caref" }, { "l_orderkey": 612i32, "l_partkey": 195i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 28.0d, "l_extendedprice": 30665.32d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-01-02", "l_commitdate": "1992-12-11", "l_receiptdate": "1993-01-30", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "regular instructions affix bl" }, { "l_orderkey": 614i32, "l_partkey": 195i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 21.0d, "l_extendedprice": 22998.99d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-03-29", "l_commitdate": "1993-01-06", "l_receiptdate": "1993-04-16", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "arefully. slyly express packag" }, { "l_orderkey": 2341i32, "l_partkey": 195i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 8.0d, "l_extendedprice": 8761.52d, "l_discount": 0.03d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-06-08", "l_commitdate": "1993-07-09", "l_receiptdate": "1993-06-10", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "ns affix above the iron" }, { "l_orderkey": 3648i32, "l_partkey": 195i32, "l_suppkey": 6i32, "l_linenumber": 7i32, "l_quantity": 49.0d, "l_extendedprice": 53664.31d, "l_discount": 0.09d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-06-27", "l_commitdate": "1993-07-27", "l_receiptdate": "1993-07-24", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "egular instructions. slyly regular pinto" }, { "l_orderkey": 2241i32, "l_partkey": 195i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 38.0d, "l_extendedprice": 41617.22d, "l_discount": 0.04d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-08-04", "l_commitdate": "1993-07-31", "l_receiptdate": "1993-08-06", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": " silent, unusual d" }, { "l_orderkey": 3012i32, "l_partkey": 195i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 49.0d, "l_extendedprice": 53664.31d, "l_discount": 0.0d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-08-07", "l_commitdate": "1993-07-01", "l_receiptdate": "1993-08-08", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": " quickly furious packages. silently unusua" }, { "l_orderkey": 230i32, "l_partkey": 195i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 6.0d, "l_extendedprice": 6571.14d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-01-26", "l_commitdate": "1994-01-25", "l_receiptdate": "1994-02-13", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": " sleep furiously about the p" }, { "l_orderkey": 3397i32, "l_partkey": 195i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 8.0d, "l_extendedprice": 8761.52d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-08-05", "l_commitdate": "1994-08-11", "l_receiptdate": "1994-08-08", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "y final foxes" }, { "l_orderkey": 2883i32, "l_partkey": 195i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 36.0d, "l_extendedprice": 39426.84d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-05-02", "l_commitdate": "1995-03-14", "l_receiptdate": "1995-05-30", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "ests detect slyly special packages" }, { "l_orderkey": 2018i32, "l_partkey": 195i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 2.0d, "l_extendedprice": 2190.38d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-06-25", "l_commitdate": "1995-06-20", "l_receiptdate": "1995-07-04", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "ly ironic accounts against the slyly sly" }, { "l_orderkey": 1702i32, "l_partkey": 195i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 46.0d, "l_extendedprice": 50378.74d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-14", "l_commitdate": "1995-06-30", "l_receiptdate": "1995-07-20", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "y even foxes. carefully final dependencies " }, { "l_orderkey": 3362i32, "l_partkey": 195i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 41.0d, "l_extendedprice": 44902.79d, "l_discount": 0.05d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-31", "l_commitdate": "1995-09-04", "l_receiptdate": "1995-11-17", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "ake alongside of the " }, { "l_orderkey": 2309i32, "l_partkey": 195i32, "l_suppkey": 8i32, "l_linenumber": 6i32, "l_quantity": 21.0d, "l_extendedprice": 22998.99d, "l_discount": 0.09d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-05", "l_commitdate": "1995-11-07", "l_receiptdate": "1995-11-22", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "unts around the dolphins ar" }, { "l_orderkey": 5252i32, "l_partkey": 195i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 9.0d, "l_extendedprice": 9856.71d, "l_discount": 0.09d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-30", "l_commitdate": "1996-05-03", "l_receiptdate": "1996-06-26", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "x. slyly special depos" }, { "l_orderkey": 2690i32, "l_partkey": 195i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 12.0d, "l_extendedprice": 13142.28d, "l_discount": 0.04d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-18", "l_commitdate": "1996-06-03", "l_receiptdate": "1996-07-25", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "nal, regular atta" }, { "l_orderkey": 3173i32, "l_partkey": 195i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 35.0d, "l_extendedprice": 38331.65d, "l_discount": 0.01d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-09", "l_commitdate": "1996-10-15", "l_receiptdate": "1996-10-04", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": " across the slyly even requests." }, { "l_orderkey": 103i32, "l_partkey": 195i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 6.0d, "l_extendedprice": 6571.14d, "l_discount": 0.03d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-11", "l_commitdate": "1996-07-25", "l_receiptdate": "1996-10-28", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "cajole. carefully ex" }, { "l_orderkey": 4355i32, "l_partkey": 195i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 32.0d, "l_extendedprice": 35046.08d, "l_discount": 0.1d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-29", "l_commitdate": "1997-02-08", "l_receiptdate": "1997-01-24", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "y silent deposits. b" }, { "l_orderkey": 1156i32, "l_partkey": 195i32, "l_suppkey": 9i32, "l_linenumber": 6i32, "l_quantity": 42.0d, "l_extendedprice": 45997.98d, "l_discount": 0.02d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-27", "l_commitdate": "1997-01-09", "l_receiptdate": "1997-01-28", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "even requests boost ironic deposits. pe" }, { "l_orderkey": 4135i32, "l_partkey": 195i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 13.0d, "l_extendedprice": 14237.47d, "l_discount": 0.04d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-16", "l_commitdate": "1997-05-19", "l_receiptdate": "1997-04-03", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "efully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully spe" }, { "l_orderkey": 2439i32, "l_partkey": 195i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 33.0d, "l_extendedprice": 36141.27d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-01", "l_commitdate": "1997-05-15", "l_receiptdate": "1997-06-07", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "asymptotes wake packages-- furiously" }, { "l_orderkey": 5731i32, "l_partkey": 195i32, "l_suppkey": 6i32, "l_linenumber": 5i32, "l_quantity": 19.0d, "l_extendedprice": 20808.61d, "l_discount": 0.08d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-29", "l_commitdate": "1997-06-27", "l_receiptdate": "1997-07-15", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "ly unusual ideas above the " }, { "l_orderkey": 2468i32, "l_partkey": 195i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 44.0d, "l_extendedprice": 48188.36d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-10-01", "l_commitdate": "1997-08-02", "l_receiptdate": "1997-10-09", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "egular, silent sheave" }, { "l_orderkey": 5857i32, "l_partkey": 195i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 50.0d, "l_extendedprice": 54759.5d, "l_discount": 0.06d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-04", "l_commitdate": "1997-12-16", "l_receiptdate": "1997-12-20", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "y regular d" }, { "l_orderkey": 1667i32, "l_partkey": 195i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 2.0d, "l_extendedprice": 2190.38d, "l_discount": 0.07d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-17", "l_commitdate": "1997-11-22", "l_receiptdate": "1998-01-16", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "pecial requests hag" }, { "l_orderkey": 3239i32, "l_partkey": 195i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 26.0d, "l_extendedprice": 28474.94d, "l_discount": 0.03d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-21", "l_commitdate": "1998-03-21", "l_receiptdate": "1998-02-08", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "ngly pending platelets are fluff" } ] }
-{ "partkey": 199i32, "lines": [ { "l_orderkey": 4230i32, "l_partkey": 199i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 43.0d, "l_extendedprice": 47265.17d, "l_discount": 0.02d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-03-14", "l_commitdate": "1992-05-13", "l_receiptdate": "1992-03-28", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "ses lose blithely slyly final e" }, { "l_orderkey": 5028i32, "l_partkey": 199i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 15.0d, "l_extendedprice": 16487.85d, "l_discount": 0.03d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-08-02", "l_commitdate": "1992-07-09", "l_receiptdate": "1992-08-30", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "gular, bold pinto bea" }, { "l_orderkey": 3333i32, "l_partkey": 199i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 36.0d, "l_extendedprice": 39570.84d, "l_discount": 0.08d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-11-20", "l_commitdate": "1992-11-06", "l_receiptdate": "1992-12-16", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "foxes sleep neve" }, { "l_orderkey": 678i32, "l_partkey": 199i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 48.0d, "l_extendedprice": 52761.12d, "l_discount": 0.08d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-02-28", "l_commitdate": "1993-04-04", "l_receiptdate": "1993-03-24", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "ithely. slyly express foxes" }, { "l_orderkey": 804i32, "l_partkey": 199i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 2.0d, "l_extendedprice": 2198.38d, "l_discount": 0.02d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-06-23", "l_commitdate": "1993-04-30", "l_receiptdate": "1993-06-25", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly si" }, { "l_orderkey": 2535i32, "l_partkey": 199i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 5.0d, "l_extendedprice": 5495.95d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-09-07", "l_commitdate": "1993-07-25", "l_receiptdate": "1993-09-29", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": ", unusual reque" }, { "l_orderkey": 999i32, "l_partkey": 199i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 41.0d, "l_extendedprice": 45066.79d, "l_discount": 0.08d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-10-16", "l_commitdate": "1993-12-04", "l_receiptdate": "1993-11-03", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "us depths. carefully ironic instruc" }, { "l_orderkey": 1792i32, "l_partkey": 199i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 35.0d, "l_extendedprice": 38471.65d, "l_discount": 0.06d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-01-31", "l_commitdate": "1994-01-20", "l_receiptdate": "1994-02-17", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "e against the quic" }, { "l_orderkey": 2752i32, "l_partkey": 199i32, "l_suppkey": 10i32, "l_linenumber": 7i32, "l_quantity": 38.0d, "l_extendedprice": 41769.22d, "l_discount": 0.08d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-02-23", "l_commitdate": "1993-12-23", "l_receiptdate": "1994-03-24", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "es boost. slyly silent ideas" }, { "l_orderkey": 1985i32, "l_partkey": 199i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 30.0d, "l_extendedprice": 32975.7d, "l_discount": 0.05d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-09-06", "l_commitdate": "1994-10-10", "l_receiptdate": "1994-09-26", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "uickly. instr" }, { "l_orderkey": 231i32, "l_partkey": 199i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 50.0d, "l_extendedprice": 54959.5d, "l_discount": 0.09d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-12-11", "l_commitdate": "1994-12-14", "l_receiptdate": "1994-12-13", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "onic packages haggle fluffily a" }, { "l_orderkey": 900i32, "l_partkey": 199i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 44.0d, "l_extendedprice": 48364.36d, "l_discount": 0.01d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-12-15", "l_commitdate": "1994-12-03", "l_receiptdate": "1994-12-27", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": " detect quick" }, { "l_orderkey": 2818i32, "l_partkey": 199i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 22.0d, "l_extendedprice": 24182.18d, "l_discount": 0.06d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-02-28", "l_commitdate": "1995-03-10", "l_receiptdate": "1995-03-06", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "egrate toward the carefully iron" }, { "l_orderkey": 3749i32, "l_partkey": 199i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 31.0d, "l_extendedprice": 34074.89d, "l_discount": 0.0d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "F", "l_shipdate": "1995-06-11", "l_commitdate": "1995-05-20", "l_receiptdate": "1995-06-27", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "s. foxes sleep slyly unusual grouc" }, { "l_orderkey": 964i32, "l_partkey": 199i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 39.0d, "l_extendedprice": 42868.41d, "l_discount": 0.04d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-06-21", "l_commitdate": "1995-07-24", "l_receiptdate": "1995-06-24", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "se furiously regular instructions. blith" }, { "l_orderkey": 225i32, "l_partkey": 199i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 45.0d, "l_extendedprice": 49463.55d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-17", "l_commitdate": "1995-08-20", "l_receiptdate": "1995-08-30", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "the slyly even platelets use aro" }, { "l_orderkey": 5379i32, "l_partkey": 199i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 40.0d, "l_extendedprice": 43967.6d, "l_discount": 0.01d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-01", "l_commitdate": "1995-10-19", "l_receiptdate": "1995-10-30", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "carefully final accounts haggle blithely. " }, { "l_orderkey": 740i32, "l_partkey": 199i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 29.0d, "l_extendedprice": 31876.51d, "l_discount": 0.06d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-26", "l_commitdate": "1995-09-17", "l_receiptdate": "1995-10-29", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "ntly bold pinto beans sleep quickl" }, { "l_orderkey": 1988i32, "l_partkey": 199i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 19.0d, "l_extendedprice": 20884.61d, "l_discount": 0.08d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-02-03", "l_commitdate": "1995-12-10", "l_receiptdate": "1996-02-14", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "lly about the slyly thin instructions. f" }, { "l_orderkey": 135i32, "l_partkey": 199i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 21.0d, "l_extendedprice": 23082.99d, "l_discount": 0.0d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-02-11", "l_commitdate": "1996-01-12", "l_receiptdate": "1996-02-13", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": " deposits believe. furiously regular p" }, { "l_orderkey": 3495i32, "l_partkey": 199i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 16.0d, "l_extendedprice": 17587.04d, "l_discount": 0.08d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-30", "l_commitdate": "1996-04-02", "l_receiptdate": "1996-04-12", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "y bold dependencies; blithely idle sautern" }, { "l_orderkey": 1728i32, "l_partkey": 199i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 31.0d, "l_extendedprice": 34074.89d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-26", "l_commitdate": "1996-06-28", "l_receiptdate": "1996-08-14", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "kly sly theodolites." }, { "l_orderkey": 4293i32, "l_partkey": 199i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 47.0d, "l_extendedprice": 51661.93d, "l_discount": 0.08d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-07", "l_commitdate": "1996-10-24", "l_receiptdate": "1996-09-15", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "ithely pending deposits af" }, { "l_orderkey": 2850i32, "l_partkey": 199i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 4.0d, "l_extendedprice": 4396.76d, "l_discount": 0.04d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-28", "l_commitdate": "1996-12-26", "l_receiptdate": "1996-11-07", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "al deposits cajole carefully quickly " }, { "l_orderkey": 4064i32, "l_partkey": 199i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 3.0d, "l_extendedprice": 3297.57d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-04", "l_commitdate": "1997-01-01", "l_receiptdate": "1997-01-23", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "its! quickly sp" }, { "l_orderkey": 4002i32, "l_partkey": 199i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 6.0d, "l_extendedprice": 6595.14d, "l_discount": 0.06d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-01", "l_commitdate": "1997-05-15", "l_receiptdate": "1997-07-31", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "he slyly iro" }, { "l_orderkey": 1954i32, "l_partkey": 199i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 11.0d, "l_extendedprice": 12091.09d, "l_discount": 0.07d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-07", "l_commitdate": "1997-07-23", "l_receiptdate": "1997-08-25", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "y carefully ironi" }, { "l_orderkey": 4224i32, "l_partkey": 199i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 27.0d, "l_extendedprice": 29678.13d, "l_discount": 0.05d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-05", "l_commitdate": "1997-08-19", "l_receiptdate": "1997-09-30", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "ly special deposits sleep qui" }, { "l_orderkey": 5286i32, "l_partkey": 199i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 1.0d, "l_extendedprice": 1099.19d, "l_discount": 0.01d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-11-25", "l_commitdate": "1997-11-07", "l_receiptdate": "1997-12-17", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "ly! furiously final pack" }, { "l_orderkey": 1024i32, "l_partkey": 199i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 49.0d, "l_extendedprice": 53860.31d, "l_discount": 0.03d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-06", "l_commitdate": "1998-01-26", "l_receiptdate": "1998-03-29", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "ts. asymptotes nag fur" }, { "l_orderkey": 2115i32, "l_partkey": 199i32, "l_suppkey": 3i32, "l_linenumber": 5i32, "l_quantity": 13.0d, "l_extendedprice": 14289.47d, "l_discount": 0.04d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-07", "l_commitdate": "1998-08-06", "l_receiptdate": "1998-08-13", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "into beans. even accounts abou" }, { "l_orderkey": 1348i32, "l_partkey": 199i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 40.0d, "l_extendedprice": 43967.6d, "l_discount": 0.07d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-14", "l_commitdate": "1998-07-10", "l_receiptdate": "1998-08-27", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "fter the regu" } ] }
-{ "partkey": 1i32, "lines": [ { "l_orderkey": 5409i32, "l_partkey": 1i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 9.0d, "l_extendedprice": 8109.0d, "l_discount": 0.07d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-02-15", "l_commitdate": "1992-04-02", "l_receiptdate": "1992-02-28", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": " unusual, unusual reques" }, { "l_orderkey": 1154i32, "l_partkey": 1i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 35.0d, "l_extendedprice": 31535.0d, "l_discount": 0.0d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-03-30", "l_commitdate": "1992-04-02", "l_receiptdate": "1992-04-21", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "the carefully regular pinto beans boost" }, { "l_orderkey": 134i32, "l_partkey": 1i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 21.0d, "l_extendedprice": 18921.0d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-07-17", "l_commitdate": "1992-07-08", "l_receiptdate": "1992-07-26", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "s. quickly regular" }, { "l_orderkey": 5121i32, "l_partkey": 1i32, "l_suppkey": 8i32, "l_linenumber": 6i32, "l_quantity": 2.0d, "l_extendedprice": 1802.0d, "l_discount": 0.04d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-08-10", "l_commitdate": "1992-06-28", "l_receiptdate": "1992-08-11", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": " final, regular account" }, { "l_orderkey": 2885i32, "l_partkey": 1i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 45.0d, "l_extendedprice": 40545.0d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-12-24", "l_commitdate": "1992-10-30", "l_receiptdate": "1993-01-04", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "ess ideas. regular, silen" }, { "l_orderkey": 2726i32, "l_partkey": 1i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 50.0d, "l_extendedprice": 45050.0d, "l_discount": 0.0d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-03-04", "l_commitdate": "1993-01-29", "l_receiptdate": "1993-03-28", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": " furiously bold theodolites" }, { "l_orderkey": 640i32, "l_partkey": 1i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 40.0d, "l_extendedprice": 36040.0d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-05-11", "l_commitdate": "1993-04-11", "l_receiptdate": "1993-05-15", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "oach according to the bol" }, { "l_orderkey": 321i32, "l_partkey": 1i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 21.0d, "l_extendedprice": 18921.0d, "l_discount": 0.01d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-07-18", "l_commitdate": "1993-04-24", "l_receiptdate": "1993-08-13", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "hockey players sleep slyly sl" }, { "l_orderkey": 2374i32, "l_partkey": 1i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 25.0d, "l_extendedprice": 22525.0d, "l_discount": 0.08d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-11-26", "l_commitdate": "1993-12-15", "l_receiptdate": "1993-12-10", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "refully pending d" }, { "l_orderkey": 4580i32, "l_partkey": 1i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 41.0d, "l_extendedprice": 36941.0d, "l_discount": 0.0d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-12-13", "l_commitdate": "1994-01-31", "l_receiptdate": "1994-01-06", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "requests. quickly silent asymptotes sle" }, { "l_orderkey": 807i32, "l_partkey": 1i32, "l_suppkey": 6i32, "l_linenumber": 7i32, "l_quantity": 19.0d, "l_extendedprice": 17119.0d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-02-10", "l_commitdate": "1994-02-20", "l_receiptdate": "1994-03-06", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "ns haggle quickly across the furi" }, { "l_orderkey": 1761i32, "l_partkey": 1i32, "l_suppkey": 6i32, "l_linenumber": 7i32, "l_quantity": 13.0d, "l_extendedprice": 11713.0d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-03-06", "l_commitdate": "1994-03-18", "l_receiptdate": "1994-03-22", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "ons boost fu" }, { "l_orderkey": 4323i32, "l_partkey": 1i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 33.0d, "l_extendedprice": 29733.0d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-05-04", "l_commitdate": "1994-03-06", "l_receiptdate": "1994-05-23", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "the slyly bold deposits slee" }, { "l_orderkey": 1287i32, "l_partkey": 1i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 30.0d, "l_extendedprice": 27030.0d, "l_discount": 0.0d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-07-12", "l_commitdate": "1994-09-23", "l_receiptdate": "1994-08-07", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "ar packages. even, even" }, { "l_orderkey": 5760i32, "l_partkey": 1i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 6.0d, "l_extendedprice": 5406.0d, "l_discount": 0.09d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-07-30", "l_commitdate": "1994-07-31", "l_receiptdate": "1994-08-16", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "ng the acco" }, { "l_orderkey": 5984i32, "l_partkey": 1i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 8.0d, "l_extendedprice": 7208.0d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-09-17", "l_commitdate": "1994-08-28", "l_receiptdate": "1994-09-25", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "its. express," }, { "l_orderkey": 3175i32, "l_partkey": 1i32, "l_suppkey": 4i32, "l_linenumber": 7i32, "l_quantity": 32.0d, "l_extendedprice": 28832.0d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-09-29", "l_commitdate": "1994-09-20", "l_receiptdate": "1994-10-10", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "lites sleep" }, { "l_orderkey": 4452i32, "l_partkey": 1i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 47.0d, "l_extendedprice": 42347.0d, "l_discount": 0.01d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-10-08", "l_commitdate": "1994-08-09", "l_receiptdate": "1994-10-09", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "ts. slyly regular cour" }, { "l_orderkey": 3175i32, "l_partkey": 1i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 38.0d, "l_extendedprice": 34238.0d, "l_discount": 0.01d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-10-10", "l_commitdate": "1994-08-25", "l_receiptdate": "1994-10-28", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "the quickly even dolph" }, { "l_orderkey": 2528i32, "l_partkey": 1i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 10.0d, "l_extendedprice": 9010.0d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-12-12", "l_commitdate": "1994-12-29", "l_receiptdate": "1994-12-28", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "ely. fluffily even re" }, { "l_orderkey": 548i32, "l_partkey": 1i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 21.0d, "l_extendedprice": 18921.0d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-01-13", "l_commitdate": "1994-12-18", "l_receiptdate": "1995-01-25", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "ideas. special accounts above the furiou" }, { "l_orderkey": 2883i32, "l_partkey": 1i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 33.0d, "l_extendedprice": 29733.0d, "l_discount": 0.08d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-02-26", "l_commitdate": "1995-03-04", "l_receiptdate": "1995-03-01", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "s. final i" }, { "l_orderkey": 3457i32, "l_partkey": 1i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 24.0d, "l_extendedprice": 21624.0d, "l_discount": 0.07d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-03", "l_commitdate": "1995-05-30", "l_receiptdate": "1995-08-14", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "tructions haggle alongsid" }, { "l_orderkey": 35i32, "l_partkey": 1i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 24.0d, "l_extendedprice": 21624.0d, "l_discount": 0.02d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-02-21", "l_commitdate": "1996-01-03", "l_receiptdate": "1996-03-18", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": ", regular tithe" }, { "l_orderkey": 3940i32, "l_partkey": 1i32, "l_suppkey": 6i32, "l_linenumber": 5i32, "l_quantity": 41.0d, "l_extendedprice": 36941.0d, "l_discount": 0.0d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-08", "l_commitdate": "1996-05-03", "l_receiptdate": "1996-06-03", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "thily. deposits cajole." }, { "l_orderkey": 4102i32, "l_partkey": 1i32, "l_suppkey": 6i32, "l_linenumber": 5i32, "l_quantity": 32.0d, "l_extendedprice": 28832.0d, "l_discount": 0.08d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-14", "l_commitdate": "1996-04-29", "l_receiptdate": "1996-05-29", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": " the even requests; regular pinto" }, { "l_orderkey": 2534i32, "l_partkey": 1i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 50.0d, "l_extendedprice": 45050.0d, "l_discount": 0.1d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-25", "l_commitdate": "1996-10-07", "l_receiptdate": "1996-10-09", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "ideas. deposits use. slyly regular pa" }, { "l_orderkey": 5634i32, "l_partkey": 1i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 1.0d, "l_extendedprice": 901.0d, "l_discount": 0.04d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-02", "l_commitdate": "1996-10-21", "l_receiptdate": "1996-10-27", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "ctions haggle carefully. carefully clo" }, { "l_orderkey": 1472i32, "l_partkey": 1i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 6.0d, "l_extendedprice": 5406.0d, "l_discount": 0.08d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-24", "l_commitdate": "1996-11-19", "l_receiptdate": "1996-11-23", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "onic theodolites hinder slyly slyly r" }, { "l_orderkey": 4293i32, "l_partkey": 1i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 34.0d, "l_extendedprice": 30634.0d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-05", "l_commitdate": "1996-10-12", "l_receiptdate": "1996-12-04", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "ions sleep blithely on" }, { "l_orderkey": 4355i32, "l_partkey": 1i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 13.0d, "l_extendedprice": 11713.0d, "l_discount": 0.07d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-21", "l_commitdate": "1996-12-22", "l_receiptdate": "1997-02-14", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": " ought to mold. blithely pending ideas " }, { "l_orderkey": 1122i32, "l_partkey": 1i32, "l_suppkey": 6i32, "l_linenumber": 7i32, "l_quantity": 38.0d, "l_extendedprice": 34238.0d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-23", "l_commitdate": "1997-04-02", "l_receiptdate": "1997-02-16", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "t theodolites sleep. even, ironic" }, { "l_orderkey": 3843i32, "l_partkey": 1i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 30.0d, "l_extendedprice": 27030.0d, "l_discount": 0.01d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-14", "l_commitdate": "1997-03-25", "l_receiptdate": "1997-03-13", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": " wake. slyly even packages boost " }, { "l_orderkey": 2117i32, "l_partkey": 1i32, "l_suppkey": 4i32, "l_linenumber": 6i32, "l_quantity": 27.0d, "l_extendedprice": 24327.0d, "l_discount": 0.09d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-30", "l_commitdate": "1997-06-27", "l_receiptdate": "1997-07-11", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": " the carefully ironic ideas" }, { "l_orderkey": 1668i32, "l_partkey": 1i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 25.0d, "l_extendedprice": 22525.0d, "l_discount": 0.01d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-08", "l_commitdate": "1997-09-28", "l_receiptdate": "1997-09-01", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "y ironic requests. bold, final ideas a" } ] }
-{ "partkey": 2i32, "lines": [ { "l_orderkey": 3650i32, "l_partkey": 2i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 1.0d, "l_extendedprice": 902.0d, "l_discount": 0.04d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-06-23", "l_commitdate": "1992-07-18", "l_receiptdate": "1992-07-08", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "re about the pinto " }, { "l_orderkey": 130i32, "l_partkey": 2i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 48.0d, "l_extendedprice": 43296.0d, "l_discount": 0.03d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-07-01", "l_commitdate": "1992-07-12", "l_receiptdate": "1992-07-24", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "lithely alongside of the regu" }, { "l_orderkey": 5893i32, "l_partkey": 2i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 2.0d, "l_extendedprice": 1804.0d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-07-18", "l_commitdate": "1992-09-10", "l_receiptdate": "1992-08-12", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "ckages wake sly" }, { "l_orderkey": 3654i32, "l_partkey": 2i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 37.0d, "l_extendedprice": 33374.0d, "l_discount": 0.07d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-09-22", "l_commitdate": "1992-07-20", "l_receiptdate": "1992-10-19", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "unts doze bravely ab" }, { "l_orderkey": 5699i32, "l_partkey": 2i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 24.0d, "l_extendedprice": 21648.0d, "l_discount": 0.01d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-10-21", "l_commitdate": "1992-09-04", "l_receiptdate": "1992-11-04", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "kages. fin" }, { "l_orderkey": 1250i32, "l_partkey": 2i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 15.0d, "l_extendedprice": 13530.0d, "l_discount": 0.1d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-11-05", "l_commitdate": "1992-12-17", "l_receiptdate": "1992-12-03", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": " regular, i" }, { "l_orderkey": 896i32, "l_partkey": 2i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 7.0d, "l_extendedprice": 6314.0d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-05-02", "l_commitdate": "1993-05-24", "l_receiptdate": "1993-05-31", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": " requests " }, { "l_orderkey": 2656i32, "l_partkey": 2i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 19.0d, "l_extendedprice": 17138.0d, "l_discount": 0.03d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-08-03", "l_commitdate": "1993-07-25", "l_receiptdate": "1993-08-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "ts serve deposi" }, { "l_orderkey": 2437i32, "l_partkey": 2i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 23.0d, "l_extendedprice": 20746.0d, "l_discount": 0.01d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-08-15", "l_commitdate": "1993-06-28", "l_receiptdate": "1993-08-23", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "s deposits. pendi" }, { "l_orderkey": 261i32, "l_partkey": 2i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 34.0d, "l_extendedprice": 30668.0d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-08-18", "l_commitdate": "1993-09-24", "l_receiptdate": "1993-08-20", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "c packages. asymptotes da" }, { "l_orderkey": 290i32, "l_partkey": 2i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 5.0d, "l_extendedprice": 4510.0d, "l_discount": 0.03d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-01-19", "l_commitdate": "1994-02-24", "l_receiptdate": "1994-01-27", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "ans integrate. requests sleep. fur" }, { "l_orderkey": 5957i32, "l_partkey": 2i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 17.0d, "l_extendedprice": 15334.0d, "l_discount": 0.01d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-01-24", "l_commitdate": "1994-02-16", "l_receiptdate": "1994-02-08", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": ". final, pending packages" }, { "l_orderkey": 4454i32, "l_partkey": 2i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 1.0d, "l_extendedprice": 902.0d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-02-05", "l_commitdate": "1994-04-19", "l_receiptdate": "1994-02-12", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "equests run." }, { "l_orderkey": 2370i32, "l_partkey": 2i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 24.0d, "l_extendedprice": 21648.0d, "l_discount": 0.0d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-05-15", "l_commitdate": "1994-04-09", "l_receiptdate": "1994-06-12", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "final depen" }, { "l_orderkey": 5828i32, "l_partkey": 2i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 28.0d, "l_extendedprice": 25256.0d, "l_discount": 0.1d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-05-15", "l_commitdate": "1994-05-20", "l_receiptdate": "1994-06-08", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": " special ideas haggle slyly ac" }, { "l_orderkey": 4389i32, "l_partkey": 2i32, "l_suppkey": 3i32, "l_linenumber": 6i32, "l_quantity": 22.0d, "l_extendedprice": 19844.0d, "l_discount": 0.01d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-06-07", "l_commitdate": "1994-06-29", "l_receiptdate": "1994-06-19", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "at the final excuses hinder carefully a" }, { "l_orderkey": 5312i32, "l_partkey": 2i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 43.0d, "l_extendedprice": 38786.0d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-03-24", "l_commitdate": "1995-05-07", "l_receiptdate": "1995-03-28", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "ly unusual" }, { "l_orderkey": 418i32, "l_partkey": 2i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 1.0d, "l_extendedprice": 902.0d, "l_discount": 0.04d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-06-23", "l_commitdate": "1995-06-16", "l_receiptdate": "1995-07-23", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "regular, silent pinto" }, { "l_orderkey": 65i32, "l_partkey": 2i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 21.0d, "l_extendedprice": 18942.0d, "l_discount": 0.09d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-06", "l_commitdate": "1995-05-14", "l_receiptdate": "1995-07-31", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "bove the even packages. accounts nag carefu" }, { "l_orderkey": 740i32, "l_partkey": 2i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 22.0d, "l_extendedprice": 19844.0d, "l_discount": 0.1d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-24", "l_commitdate": "1995-09-11", "l_receiptdate": "1995-08-11", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "odolites cajole ironic, pending instruc" }, { "l_orderkey": 3362i32, "l_partkey": 2i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 3.0d, "l_extendedprice": 2706.0d, "l_discount": 0.03d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-26", "l_commitdate": "1995-09-02", "l_receiptdate": "1995-09-17", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "its cajole blithely excuses. de" }, { "l_orderkey": 1575i32, "l_partkey": 2i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 12.0d, "l_extendedprice": 10824.0d, "l_discount": 0.01d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-27", "l_commitdate": "1995-11-11", "l_receiptdate": "1996-01-23", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": " bold accounts. furi" }, { "l_orderkey": 4387i32, "l_partkey": 2i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 15.0d, "l_extendedprice": 13530.0d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-11", "l_commitdate": "1996-01-14", "l_receiptdate": "1996-01-30", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "s hinder quietly across the pla" }, { "l_orderkey": 3046i32, "l_partkey": 2i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 31.0d, "l_extendedprice": 27962.0d, "l_discount": 0.03d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-24", "l_commitdate": "1996-01-30", "l_receiptdate": "1996-03-26", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "y pending somas alongside of the slyly iro" }, { "l_orderkey": 5478i32, "l_partkey": 2i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 47.0d, "l_extendedprice": 42394.0d, "l_discount": 0.1d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-15", "l_commitdate": "1996-07-12", "l_receiptdate": "1996-08-31", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": " instructions; slyly even accounts hagg" }, { "l_orderkey": 2662i32, "l_partkey": 2i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 6.0d, "l_extendedprice": 5412.0d, "l_discount": 0.02d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-30", "l_commitdate": "1996-09-20", "l_receiptdate": "1996-12-03", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "olites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the " }, { "l_orderkey": 5862i32, "l_partkey": 2i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 29.0d, "l_extendedprice": 26158.0d, "l_discount": 0.03d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-02", "l_commitdate": "1997-04-16", "l_receiptdate": "1997-04-04", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "e fluffily. furiously" }, { "l_orderkey": 4135i32, "l_partkey": 2i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 23.0d, "l_extendedprice": 20746.0d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-09", "l_commitdate": "1997-05-12", "l_receiptdate": "1997-04-16", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "posits cajole furiously carefully" }, { "l_orderkey": 4001i32, "l_partkey": 2i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 39.0d, "l_extendedprice": 35178.0d, "l_discount": 0.0d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-13", "l_commitdate": "1997-06-17", "l_receiptdate": "1997-06-25", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": " dogged excuses. blithe" }, { "l_orderkey": 5090i32, "l_partkey": 2i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 22.0d, "l_extendedprice": 19844.0d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-03", "l_commitdate": "1997-04-12", "l_receiptdate": "1997-07-26", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "ular requests su" }, { "l_orderkey": 5348i32, "l_partkey": 2i32, "l_suppkey": 5i32, "l_linenumber": 5i32, "l_quantity": 37.0d, "l_extendedprice": 33374.0d, "l_discount": 0.06d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-01", "l_commitdate": "1998-02-02", "l_receiptdate": "1997-12-07", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "y according to the carefully pending acco" }, { "l_orderkey": 3811i32, "l_partkey": 2i32, "l_suppkey": 7i32, "l_linenumber": 6i32, "l_quantity": 35.0d, "l_extendedprice": 31570.0d, "l_discount": 0.04d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-17", "l_commitdate": "1998-06-30", "l_receiptdate": "1998-04-25", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "yly final dolphins? quickly ironic frets" }, { "l_orderkey": 1696i32, "l_partkey": 2i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 19.0d, "l_extendedprice": 17138.0d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-03", "l_commitdate": "1998-03-13", "l_receiptdate": "1998-05-28", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "its maintain alongside of the f" }, { "l_orderkey": 4032i32, "l_partkey": 2i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 27.0d, "l_extendedprice": 24354.0d, "l_discount": 0.09d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-31", "l_commitdate": "1998-04-19", "l_receiptdate": "1998-06-24", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "le furiously according to" } ] }
-{ "partkey": 4i32, "lines": [ { "l_orderkey": 4292i32, "l_partkey": 4i32, "l_suppkey": 1i32, "l_linenumber": 6i32, "l_quantity": 47.0d, "l_extendedprice": 42488.0d, "l_discount": 0.05d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-05-02", "l_commitdate": "1992-03-21", "l_receiptdate": "1992-05-27", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "y packages; even ideas boost" }, { "l_orderkey": 164i32, "l_partkey": 4i32, "l_suppkey": 7i32, "l_linenumber": 7i32, "l_quantity": 23.0d, "l_extendedprice": 20792.0d, "l_discount": 0.09d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-11-03", "l_commitdate": "1992-12-02", "l_receiptdate": "1992-11-12", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "ress packages haggle ideas. blithely spec" }, { "l_orderkey": 2019i32, "l_partkey": 4i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 31.0d, "l_extendedprice": 28024.0d, "l_discount": 0.07d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-11-18", "l_commitdate": "1992-12-26", "l_receiptdate": "1992-11-24", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "l ideas across the slowl" }, { "l_orderkey": 4099i32, "l_partkey": 4i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 29.0d, "l_extendedprice": 26216.0d, "l_discount": 0.09d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-11-21", "l_commitdate": "1992-11-04", "l_receiptdate": "1992-11-30", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": " slowly final warthogs sleep blithely. q" }, { "l_orderkey": 2560i32, "l_partkey": 4i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 27.0d, "l_extendedprice": 24408.0d, "l_discount": 0.0d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-12-03", "l_commitdate": "1992-11-16", "l_receiptdate": "1992-12-30", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": " against the carefully" }, { "l_orderkey": 2885i32, "l_partkey": 4i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 6.0d, "l_extendedprice": 5424.0d, "l_discount": 0.1d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-01-05", "l_commitdate": "1992-12-12", "l_receiptdate": "1993-01-19", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "ctions solve. slyly regular requests n" }, { "l_orderkey": 2279i32, "l_partkey": 4i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 3.0d, "l_extendedprice": 2712.0d, "l_discount": 0.09d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-05-31", "l_commitdate": "1993-05-07", "l_receiptdate": "1993-06-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "ing foxes above the even accounts use slyly" }, { "l_orderkey": 641i32, "l_partkey": 4i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 41.0d, "l_extendedprice": 37064.0d, "l_discount": 0.07d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-11-29", "l_commitdate": "1993-10-27", "l_receiptdate": "1993-12-04", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": " asymptotes are quickly. bol" }, { "l_orderkey": 1316i32, "l_partkey": 4i32, "l_suppkey": 7i32, "l_linenumber": 6i32, "l_quantity": 7.0d, "l_extendedprice": 6328.0d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-12-09", "l_commitdate": "1994-01-12", "l_receiptdate": "1993-12-30", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": ". furiously even accounts a" }, { "l_orderkey": 2593i32, "l_partkey": 4i32, "l_suppkey": 5i32, "l_linenumber": 5i32, "l_quantity": 3.0d, "l_extendedprice": 2712.0d, "l_discount": 0.03d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-12-16", "l_commitdate": "1993-11-01", "l_receiptdate": "1993-12-29", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "the furiously " }, { "l_orderkey": 2976i32, "l_partkey": 4i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 24.0d, "l_extendedprice": 21696.0d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-03-19", "l_commitdate": "1994-01-26", "l_receiptdate": "1994-04-18", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "ronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pi" }, { "l_orderkey": 2144i32, "l_partkey": 4i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 29.0d, "l_extendedprice": 26216.0d, "l_discount": 0.0d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-05-03", "l_commitdate": "1994-05-16", "l_receiptdate": "1994-06-01", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "ns wake carefully carefully ironic" }, { "l_orderkey": 2790i32, "l_partkey": 4i32, "l_suppkey": 1i32, "l_linenumber": 7i32, "l_quantity": 32.0d, "l_extendedprice": 28928.0d, "l_discount": 0.08d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-09-25", "l_commitdate": "1994-10-26", "l_receiptdate": "1994-10-01", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "ully pending" }, { "l_orderkey": 5856i32, "l_partkey": 4i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 1.0d, "l_extendedprice": 904.0d, "l_discount": 0.03d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-12-29", "l_commitdate": "1995-01-07", "l_receiptdate": "1995-01-10", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "tly. special deposits wake blithely even" }, { "l_orderkey": 3522i32, "l_partkey": 4i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 6.0d, "l_extendedprice": 5424.0d, "l_discount": 0.08d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-01-21", "l_commitdate": "1994-12-09", "l_receiptdate": "1995-01-23", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "tes snooze " }, { "l_orderkey": 5668i32, "l_partkey": 4i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 15.0d, "l_extendedprice": 13560.0d, "l_discount": 0.03d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-04-06", "l_commitdate": "1995-05-12", "l_receiptdate": "1995-04-17", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": " the express, pending requests. bo" }, { "l_orderkey": 2882i32, "l_partkey": 4i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 14.0d, "l_extendedprice": 12656.0d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-28", "l_commitdate": "1995-11-11", "l_receiptdate": "1995-10-18", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "kly. even requests w" }, { "l_orderkey": 4736i32, "l_partkey": 4i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 43.0d, "l_extendedprice": 38872.0d, "l_discount": 0.06d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-02-05", "l_commitdate": "1995-12-21", "l_receiptdate": "1996-02-06", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "quests. carefully " }, { "l_orderkey": 4005i32, "l_partkey": 4i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 26.0d, "l_extendedprice": 23504.0d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-01", "l_commitdate": "1997-02-03", "l_receiptdate": "1996-12-15", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": " to the quic" }, { "l_orderkey": 5349i32, "l_partkey": 4i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 6.0d, "l_extendedprice": 5424.0d, "l_discount": 0.1d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-30", "l_commitdate": "1996-10-08", "l_receiptdate": "1997-01-01", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "inal deposits affix carefully" }, { "l_orderkey": 704i32, "l_partkey": 4i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 14.0d, "l_extendedprice": 12656.0d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-02", "l_commitdate": "1996-12-26", "l_receiptdate": "1997-02-19", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "ve the quickly final forges. furiously p" }, { "l_orderkey": 5411i32, "l_partkey": 4i32, "l_suppkey": 5i32, "l_linenumber": 5i32, "l_quantity": 19.0d, "l_extendedprice": 17176.0d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-25", "l_commitdate": "1997-07-30", "l_receiptdate": "1997-06-19", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "ial accounts according to the f" }, { "l_orderkey": 2404i32, "l_partkey": 4i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 18.0d, "l_extendedprice": 16272.0d, "l_discount": 0.0d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-25", "l_commitdate": "1997-05-06", "l_receiptdate": "1997-07-02", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "packages. even requests according to " }, { "l_orderkey": 1251i32, "l_partkey": 4i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 37.0d, "l_extendedprice": 33448.0d, "l_discount": 0.08d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-21", "l_commitdate": "1998-01-12", "l_receiptdate": "1997-12-26", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": ". furiously" }, { "l_orderkey": 4196i32, "l_partkey": 4i32, "l_suppkey": 1i32, "l_linenumber": 7i32, "l_quantity": 3.0d, "l_extendedprice": 2712.0d, "l_discount": 0.0d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-05", "l_commitdate": "1998-07-28", "l_receiptdate": "1998-08-15", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "y regular packages haggle furiously alongs" }, { "l_orderkey": 739i32, "l_partkey": 4i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 50.0d, "l_extendedprice": 45200.0d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-26", "l_commitdate": "1998-07-16", "l_receiptdate": "1998-09-02", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "ndencies. blith" } ] }
-{ "partkey": 13i32, "lines": [ { "l_orderkey": 1537i32, "l_partkey": 13i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 44.0d, "l_extendedprice": 40172.44d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-04-01", "l_commitdate": "1992-03-31", "l_receiptdate": "1992-04-21", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "lar courts." }, { "l_orderkey": 322i32, "l_partkey": 13i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 20.0d, "l_extendedprice": 18260.2d, "l_discount": 0.04d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-04-26", "l_commitdate": "1992-05-04", "l_receiptdate": "1992-05-22", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "ckly toward " }, { "l_orderkey": 5953i32, "l_partkey": 13i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 34.0d, "l_extendedprice": 31042.34d, "l_discount": 0.03d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-05-04", "l_commitdate": "1992-06-12", "l_receiptdate": "1992-06-02", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "hockey players use furiously against th" }, { "l_orderkey": 37i32, "l_partkey": 13i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 43.0d, "l_extendedprice": 39259.43d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-07-10", "l_commitdate": "1992-07-06", "l_receiptdate": "1992-08-02", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "iously ste" }, { "l_orderkey": 933i32, "l_partkey": 13i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 27.0d, "l_extendedprice": 24651.27d, "l_discount": 0.02d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-10-03", "l_commitdate": "1992-10-02", "l_receiptdate": "1992-10-26", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "ests. express" }, { "l_orderkey": 3648i32, "l_partkey": 13i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 16.0d, "l_extendedprice": 14608.16d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-07-27", "l_commitdate": "1993-08-26", "l_receiptdate": "1993-08-24", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "uriously stealthy deposits haggle furi" }, { "l_orderkey": 2438i32, "l_partkey": 13i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 31.0d, "l_extendedprice": 28303.31d, "l_discount": 0.08d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-10-16", "l_commitdate": "1993-08-31", "l_receiptdate": "1993-11-10", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "t. slyly ironic sh" }, { "l_orderkey": 5445i32, "l_partkey": 13i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 14.0d, "l_extendedprice": 12782.14d, "l_discount": 0.0d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-11-19", "l_commitdate": "1993-10-18", "l_receiptdate": "1993-12-07", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": " requests. bravely i" }, { "l_orderkey": 2753i32, "l_partkey": 13i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 6.0d, "l_extendedprice": 5478.06d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-12-30", "l_commitdate": "1994-01-28", "l_receiptdate": "1994-01-29", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "s accounts" }, { "l_orderkey": 4965i32, "l_partkey": 13i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 25.0d, "l_extendedprice": 22825.25d, "l_discount": 0.1d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-02-05", "l_commitdate": "1993-12-15", "l_receiptdate": "1994-02-24", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "wake at the carefully speci" }, { "l_orderkey": 1828i32, "l_partkey": 13i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 40.0d, "l_extendedprice": 36520.4d, "l_discount": 0.08d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-05-05", "l_commitdate": "1994-07-02", "l_receiptdate": "1994-05-19", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "s use above the quietly fin" }, { "l_orderkey": 4674i32, "l_partkey": 13i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 21.0d, "l_extendedprice": 19173.21d, "l_discount": 0.02d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-05-08", "l_commitdate": "1994-07-02", "l_receiptdate": "1994-06-04", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "ent accounts sublate deposits. instruc" }, { "l_orderkey": 3397i32, "l_partkey": 13i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 11.0d, "l_extendedprice": 10043.11d, "l_discount": 0.0d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-07-29", "l_commitdate": "1994-09-18", "l_receiptdate": "1994-08-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "iously careful packages. s" }, { "l_orderkey": 643i32, "l_partkey": 13i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 28.0d, "l_extendedprice": 25564.28d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-04-13", "l_commitdate": "1995-05-12", "l_receiptdate": "1995-04-14", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "ly regular requests nag sly" }, { "l_orderkey": 2723i32, "l_partkey": 13i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 47.0d, "l_extendedprice": 42911.47d, "l_discount": 0.09d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-05", "l_commitdate": "1995-11-19", "l_receiptdate": "1995-12-11", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "furiously r" }, { "l_orderkey": 514i32, "l_partkey": 13i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 6.0d, "l_extendedprice": 5478.06d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-30", "l_commitdate": "1996-06-04", "l_receiptdate": "1996-06-28", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "as haggle blithely; quickly s" }, { "l_orderkey": 2432i32, "l_partkey": 13i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 14.0d, "l_extendedprice": 12782.14d, "l_discount": 0.0d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-18", "l_commitdate": "1996-09-04", "l_receiptdate": "1996-08-27", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "riously regular packages. p" }, { "l_orderkey": 1634i32, "l_partkey": 13i32, "l_suppkey": 7i32, "l_linenumber": 7i32, "l_quantity": 35.0d, "l_extendedprice": 31955.35d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-25", "l_commitdate": "1996-11-25", "l_receiptdate": "1996-12-12", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "cies. regular, special de" }, { "l_orderkey": 5831i32, "l_partkey": 13i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 46.0d, "l_extendedprice": 41998.46d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-24", "l_commitdate": "1997-01-18", "l_receiptdate": "1997-03-02", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "ly final pa" }, { "l_orderkey": 5313i32, "l_partkey": 13i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 17.0d, "l_extendedprice": 15521.17d, "l_discount": 0.0d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-02", "l_commitdate": "1997-08-20", "l_receiptdate": "1997-09-07", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "uests wake" }, { "l_orderkey": 2081i32, "l_partkey": 13i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 32.0d, "l_extendedprice": 29216.32d, "l_discount": 0.09d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-05", "l_commitdate": "1997-09-26", "l_receiptdate": "1997-10-03", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "e. final, regular dependencies sleep slyly!" }, { "l_orderkey": 935i32, "l_partkey": 13i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 8.0d, "l_extendedprice": 7304.08d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-12", "l_commitdate": "1997-11-02", "l_receiptdate": "1998-02-05", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "cept the quickly regular p" }, { "l_orderkey": 3239i32, "l_partkey": 13i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 13.0d, "l_extendedprice": 11869.13d, "l_discount": 0.01d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-02-10", "l_commitdate": "1998-02-19", "l_receiptdate": "1998-02-25", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "r deposits solve fluf" }, { "l_orderkey": 1379i32, "l_partkey": 13i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 24.0d, "l_extendedprice": 21912.24d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-06", "l_commitdate": "1998-07-09", "l_receiptdate": "1998-07-29", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "ages cajole carefully idly express re" }, { "l_orderkey": 579i32, "l_partkey": 13i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 28.0d, "l_extendedprice": 25564.28d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-10", "l_commitdate": "1998-05-24", "l_receiptdate": "1998-07-19", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "ic ideas until th" }, { "l_orderkey": 5763i32, "l_partkey": 13i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 25.0d, "l_extendedprice": 22825.25d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-10-04", "l_commitdate": "1998-08-16", "l_receiptdate": "1998-10-09", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "inal theodolites. even re" } ] }
-{ "partkey": 15i32, "lines": [ { "l_orderkey": 5473i32, "l_partkey": 15i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 33.0d, "l_extendedprice": 30195.33d, "l_discount": 0.09d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-05-18", "l_commitdate": "1992-06-10", "l_receiptdate": "1992-06-13", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "efully above the even, " }, { "l_orderkey": 2688i32, "l_partkey": 15i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 46.0d, "l_extendedprice": 42090.46d, "l_discount": 0.01d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-05-24", "l_commitdate": "1992-04-01", "l_receiptdate": "1992-05-26", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "elets. regular reque" }, { "l_orderkey": 5472i32, "l_partkey": 15i32, "l_suppkey": 5i32, "l_linenumber": 7i32, "l_quantity": 1.0d, "l_extendedprice": 915.01d, "l_discount": 0.03d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-04-14", "l_commitdate": "1993-06-28", "l_receiptdate": "1993-04-16", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "s use furiou" }, { "l_orderkey": 3109i32, "l_partkey": 15i32, "l_suppkey": 9i32, "l_linenumber": 6i32, "l_quantity": 10.0d, "l_extendedprice": 9150.1d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-10-26", "l_commitdate": "1993-10-03", "l_receiptdate": "1993-11-09", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "sits haggle carefully. regular, unusual ac" }, { "l_orderkey": 2563i32, "l_partkey": 15i32, "l_suppkey": 6i32, "l_linenumber": 5i32, "l_quantity": 42.0d, "l_extendedprice": 38430.42d, "l_discount": 0.06d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-02-21", "l_commitdate": "1994-02-14", "l_receiptdate": "1994-03-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "ymptotes nag furiously slyly even inst" }, { "l_orderkey": 5957i32, "l_partkey": 15i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 37.0d, "l_extendedprice": 33855.37d, "l_discount": 0.07d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-04-18", "l_commitdate": "1994-02-19", "l_receiptdate": "1994-05-11", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": " ideas use ruthlessly." }, { "l_orderkey": 4065i32, "l_partkey": 15i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 46.0d, "l_extendedprice": 42090.46d, "l_discount": 0.03d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-06-29", "l_commitdate": "1994-08-01", "l_receiptdate": "1994-07-03", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": ", regular requests may mold above the " }, { "l_orderkey": 4354i32, "l_partkey": 15i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 30.0d, "l_extendedprice": 27450.3d, "l_discount": 0.08d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-01-27", "l_commitdate": "1994-11-24", "l_receiptdate": "1995-02-25", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "around the ir" }, { "l_orderkey": 1474i32, "l_partkey": 15i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 5.0d, "l_extendedprice": 4575.05d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-04-22", "l_commitdate": "1995-02-20", "l_receiptdate": "1995-05-06", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "ully final a" }, { "l_orderkey": 4132i32, "l_partkey": 15i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 23.0d, "l_extendedprice": 21045.23d, "l_discount": 0.07d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-06-27", "l_commitdate": "1995-07-27", "l_receiptdate": "1995-07-13", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "d deposits. fluffily even requests haggle b" }, { "l_orderkey": 2309i32, "l_partkey": 15i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 5.0d, "l_extendedprice": 4575.05d, "l_discount": 0.01d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-10", "l_commitdate": "1995-10-29", "l_receiptdate": "1996-01-06", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "s. requests wake blithely specia" }, { "l_orderkey": 774i32, "l_partkey": 15i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 8.0d, "l_extendedprice": 7320.08d, "l_discount": 0.0d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-24", "l_commitdate": "1996-01-15", "l_receiptdate": "1996-02-13", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "ully ironic requests c" }, { "l_orderkey": 4005i32, "l_partkey": 15i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 49.0d, "l_extendedprice": 44835.49d, "l_discount": 0.09d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-31", "l_commitdate": "1996-12-24", "l_receiptdate": "1997-03-02", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "tions sleep across the silent d" }, { "l_orderkey": 3843i32, "l_partkey": 15i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 7.0d, "l_extendedprice": 6405.07d, "l_discount": 0.1d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-13", "l_commitdate": "1997-02-21", "l_receiptdate": "1997-02-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "slyly even instructions. furiously eve" }, { "l_orderkey": 2151i32, "l_partkey": 15i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 29.0d, "l_extendedprice": 26535.29d, "l_discount": 0.0d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-04", "l_commitdate": "1996-12-27", "l_receiptdate": "1997-03-21", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": " bold packages acro" }, { "l_orderkey": 160i32, "l_partkey": 15i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 36.0d, "l_extendedprice": 32940.36d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-11", "l_commitdate": "1997-03-11", "l_receiptdate": "1997-03-20", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "old, ironic deposits are quickly abov" }, { "l_orderkey": 5895i32, "l_partkey": 15i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 38.0d, "l_extendedprice": 34770.38d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-05", "l_commitdate": "1997-03-06", "l_receiptdate": "1997-05-03", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "ts are furiously. regular, final excuses " }, { "l_orderkey": 4450i32, "l_partkey": 15i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 9.0d, "l_extendedprice": 8235.09d, "l_discount": 0.03d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-13", "l_commitdate": "1997-08-16", "l_receiptdate": "1997-08-15", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "gular requests cajole carefully. regular c" }, { "l_orderkey": 2913i32, "l_partkey": 15i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 13.0d, "l_extendedprice": 11895.13d, "l_discount": 0.03d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-10-02", "l_commitdate": "1997-08-20", "l_receiptdate": "1997-10-26", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "inos are carefully alongside of the bol" }, { "l_orderkey": 4832i32, "l_partkey": 15i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 23.0d, "l_extendedprice": 21045.23d, "l_discount": 0.03d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-05", "l_commitdate": "1998-01-05", "l_receiptdate": "1997-12-10", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "y express depo" }, { "l_orderkey": 3846i32, "l_partkey": 15i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 49.0d, "l_extendedprice": 44835.49d, "l_discount": 0.08d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-02-14", "l_commitdate": "1998-03-22", "l_receiptdate": "1998-02-17", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "efully even packages against the blithe" } ] }
-{ "partkey": 16i32, "lines": [ { "l_orderkey": 1346i32, "l_partkey": 16i32, "l_suppkey": 6i32, "l_linenumber": 6i32, "l_quantity": 45.0d, "l_extendedprice": 41220.45d, "l_discount": 0.02d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-09-11", "l_commitdate": "1992-08-06", "l_receiptdate": "1992-09-12", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "press deposits." }, { "l_orderkey": 5858i32, "l_partkey": 16i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 36.0d, "l_extendedprice": 32976.36d, "l_discount": 0.0d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-09-25", "l_commitdate": "1992-08-16", "l_receiptdate": "1992-10-11", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "osits wake quickly quickly sile" }, { "l_orderkey": 5415i32, "l_partkey": 16i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 43.0d, "l_extendedprice": 39388.43d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-11-17", "l_commitdate": "1992-09-14", "l_receiptdate": "1992-12-14", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "yly blithely stealthy deposits. carefu" }, { "l_orderkey": 5697i32, "l_partkey": 16i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 43.0d, "l_extendedprice": 39388.43d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-12-08", "l_commitdate": "1992-12-03", "l_receiptdate": "1992-12-17", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "blithely reg" }, { "l_orderkey": 4771i32, "l_partkey": 16i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 21.0d, "l_extendedprice": 19236.21d, "l_discount": 0.09d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-01-19", "l_commitdate": "1993-02-10", "l_receiptdate": "1993-02-01", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "fluffily pendi" }, { "l_orderkey": 5510i32, "l_partkey": 16i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 8.0d, "l_extendedprice": 7328.08d, "l_discount": 0.01d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-03-16", "l_commitdate": "1993-03-29", "l_receiptdate": "1993-03-24", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "n packages boost sly" }, { "l_orderkey": 4806i32, "l_partkey": 16i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 26.0d, "l_extendedprice": 23816.26d, "l_discount": 0.1d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-05-28", "l_commitdate": "1993-06-07", "l_receiptdate": "1993-05-29", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": " bold pearls sublate blithely. quickly pe" }, { "l_orderkey": 3040i32, "l_partkey": 16i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 18.0d, "l_extendedprice": 16488.18d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-06-25", "l_commitdate": "1993-07-06", "l_receiptdate": "1993-07-19", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "ly thin accou" }, { "l_orderkey": 5189i32, "l_partkey": 16i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 38.0d, "l_extendedprice": 34808.38d, "l_discount": 0.06d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-03-26", "l_commitdate": "1994-01-28", "l_receiptdate": "1994-04-20", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "ideas. idle, final deposits de" }, { "l_orderkey": 1861i32, "l_partkey": 16i32, "l_suppkey": 3i32, "l_linenumber": 5i32, "l_quantity": 2.0d, "l_extendedprice": 1832.02d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-04-26", "l_commitdate": "1994-03-15", "l_receiptdate": "1994-05-15", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "e final, regular requests. carefully " }, { "l_orderkey": 1987i32, "l_partkey": 16i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 7.0d, "l_extendedprice": 6412.07d, "l_discount": 0.03d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-07-30", "l_commitdate": "1994-07-06", "l_receiptdate": "1994-08-29", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": " regular a" }, { "l_orderkey": 295i32, "l_partkey": 16i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 8.0d, "l_extendedprice": 7328.08d, "l_discount": 0.1d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-01-13", "l_commitdate": "1994-11-17", "l_receiptdate": "1995-01-25", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": " final instructions h" }, { "l_orderkey": 3365i32, "l_partkey": 16i32, "l_suppkey": 3i32, "l_linenumber": 5i32, "l_quantity": 2.0d, "l_extendedprice": 1832.02d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-02-04", "l_commitdate": "1994-12-30", "l_receiptdate": "1995-03-06", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "es cajole fluffily pe" }, { "l_orderkey": 3458i32, "l_partkey": 16i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 16.0d, "l_extendedprice": 14656.16d, "l_discount": 0.09d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-03-01", "l_commitdate": "1995-02-25", "l_receiptdate": "1995-03-06", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "s grow carefully. express, final grouc" }, { "l_orderkey": 420i32, "l_partkey": 16i32, "l_suppkey": 7i32, "l_linenumber": 7i32, "l_quantity": 39.0d, "l_extendedprice": 35724.39d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-09", "l_commitdate": "1995-12-16", "l_receiptdate": "1995-12-31", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "s. ironic waters about the car" }, { "l_orderkey": 5217i32, "l_partkey": 16i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 23.0d, "l_extendedprice": 21068.23d, "l_discount": 0.06d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-18", "l_commitdate": "1995-12-24", "l_receiptdate": "1996-02-10", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "ven ideas. requests amo" }, { "l_orderkey": 1i32, "l_partkey": 16i32, "l_suppkey": 3i32, "l_linenumber": 6i32, "l_quantity": 32.0d, "l_extendedprice": 29312.32d, "l_discount": 0.07d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-30", "l_commitdate": "1996-02-07", "l_receiptdate": "1996-02-03", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "arefully slyly ex" }, { "l_orderkey": 3781i32, "l_partkey": 16i32, "l_suppkey": 6i32, "l_linenumber": 5i32, "l_quantity": 23.0d, "l_extendedprice": 21068.23d, "l_discount": 0.09d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-05", "l_commitdate": "1996-08-18", "l_receiptdate": "1996-09-27", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "pendencies are b" }, { "l_orderkey": 2180i32, "l_partkey": 16i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 31.0d, "l_extendedprice": 28396.31d, "l_discount": 0.06d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-20", "l_commitdate": "1996-11-21", "l_receiptdate": "1996-11-06", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "n requests are furiously at the quickly" }, { "l_orderkey": 4966i32, "l_partkey": 16i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 26.0d, "l_extendedprice": 23816.26d, "l_discount": 0.08d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-14", "l_commitdate": "1996-11-29", "l_receiptdate": "1996-12-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "nt pearls haggle carefully slyly even " }, { "l_orderkey": 2178i32, "l_partkey": 16i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 27.0d, "l_extendedprice": 24732.27d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-26", "l_commitdate": "1997-02-19", "l_receiptdate": "1997-03-25", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": " across the ironic reques" }, { "l_orderkey": 5286i32, "l_partkey": 16i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 3.0d, "l_extendedprice": 2748.03d, "l_discount": 0.06d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-04", "l_commitdate": "1997-11-06", "l_receiptdate": "1997-12-09", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "re fluffily" }, { "l_orderkey": 198i32, "l_partkey": 16i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 20.0d, "l_extendedprice": 18320.2d, "l_discount": 0.03d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-15", "l_commitdate": "1998-03-31", "l_receiptdate": "1998-01-25", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "carefully final escapades a" }, { "l_orderkey": 2789i32, "l_partkey": 16i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 47.0d, "l_extendedprice": 43052.47d, "l_discount": 0.02d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-29", "l_commitdate": "1998-05-05", "l_receiptdate": "1998-04-07", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "usly busy packages wake against the unusual" }, { "l_orderkey": 5442i32, "l_partkey": 16i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 25.0d, "l_extendedprice": 22900.25d, "l_discount": 0.04d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-29", "l_commitdate": "1998-02-13", "l_receiptdate": "1998-04-13", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "ake furiously. slyly express th" }, { "l_orderkey": 1696i32, "l_partkey": 16i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 8.0d, "l_extendedprice": 7328.08d, "l_discount": 0.04d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-28", "l_commitdate": "1998-02-07", "l_receiptdate": "1998-05-10", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "the blithely" }, { "l_orderkey": 1315i32, "l_partkey": 16i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 15.0d, "l_extendedprice": 13740.15d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-12", "l_commitdate": "1998-06-10", "l_receiptdate": "1998-08-07", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": ". foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes " }, { "l_orderkey": 3717i32, "l_partkey": 16i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 7.0d, "l_extendedprice": 6412.07d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-09-08", "l_commitdate": "1998-07-18", "l_receiptdate": "1998-09-10", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": " after the packa" }, { "l_orderkey": 5184i32, "l_partkey": 16i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 47.0d, "l_extendedprice": 43052.47d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-11-02", "l_commitdate": "1998-08-19", "l_receiptdate": "1998-11-07", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "se. carefully express pinto beans x" } ] }
-{ "partkey": 19i32, "lines": [ { "l_orderkey": 2023i32, "l_partkey": 19i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 25.0d, "l_extendedprice": 22975.25d, "l_discount": 0.1d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-07-19", "l_commitdate": "1992-07-07", "l_receiptdate": "1992-08-15", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": " wake furiously among the slyly final" }, { "l_orderkey": 481i32, "l_partkey": 19i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 17.0d, "l_extendedprice": 15623.17d, "l_discount": 0.07d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-10-21", "l_commitdate": "1992-12-09", "l_receiptdate": "1992-11-19", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": ". quickly final accounts among the " }, { "l_orderkey": 164i32, "l_partkey": 19i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 24.0d, "l_extendedprice": 22056.24d, "l_discount": 0.05d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-12-22", "l_commitdate": "1992-11-27", "l_receiptdate": "1993-01-06", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "side of the slyly unusual theodolites. f" }, { "l_orderkey": 2437i32, "l_partkey": 19i32, "l_suppkey": 3i32, "l_linenumber": 6i32, "l_quantity": 10.0d, "l_extendedprice": 9190.1d, "l_discount": 0.1d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-05-20", "l_commitdate": "1993-06-23", "l_receiptdate": "1993-05-22", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "unts. even, ironic pl" }, { "l_orderkey": 2149i32, "l_partkey": 19i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 12.0d, "l_extendedprice": 11028.12d, "l_discount": 0.05d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-06-01", "l_commitdate": "1993-05-06", "l_receiptdate": "1993-06-11", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "riously bl" }, { "l_orderkey": 3874i32, "l_partkey": 19i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 48.0d, "l_extendedprice": 44112.48d, "l_discount": 0.06d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-06-13", "l_commitdate": "1993-07-20", "l_receiptdate": "1993-06-20", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": " ideas throughout " }, { "l_orderkey": 4962i32, "l_partkey": 19i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 46.0d, "l_extendedprice": 42274.46d, "l_discount": 0.01d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-08-23", "l_commitdate": "1993-09-04", "l_receiptdate": "1993-08-27", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": " pinto beans grow about the sl" }, { "l_orderkey": 2503i32, "l_partkey": 19i32, "l_suppkey": 6i32, "l_linenumber": 7i32, "l_quantity": 17.0d, "l_extendedprice": 15623.17d, "l_discount": 0.09d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-09-04", "l_commitdate": "1993-07-31", "l_receiptdate": "1993-09-23", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "c accounts haggle blithel" }, { "l_orderkey": 999i32, "l_partkey": 19i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 3.0d, "l_extendedprice": 2757.03d, "l_discount": 0.03d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-09-17", "l_commitdate": "1993-10-22", "l_receiptdate": "1993-10-13", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "nic, pending ideas. bl" }, { "l_orderkey": 230i32, "l_partkey": 19i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 8.0d, "l_extendedprice": 7352.08d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-11-03", "l_commitdate": "1994-01-20", "l_receiptdate": "1993-11-11", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "g the instructions. fluffil" }, { "l_orderkey": 325i32, "l_partkey": 19i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 35.0d, "l_extendedprice": 32165.35d, "l_discount": 0.07d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-12-06", "l_commitdate": "1994-01-03", "l_receiptdate": "1993-12-26", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "packages wa" }, { "l_orderkey": 1888i32, "l_partkey": 19i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 9.0d, "l_extendedprice": 8271.09d, "l_discount": 0.01d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-02-09", "l_commitdate": "1994-01-22", "l_receiptdate": "1994-02-19", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": " packages are blithely. carefu" }, { "l_orderkey": 2304i32, "l_partkey": 19i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 48.0d, "l_extendedprice": 44112.48d, "l_discount": 0.0d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-02-12", "l_commitdate": "1994-02-16", "l_receiptdate": "1994-03-10", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": " deposits cajole blithely e" }, { "l_orderkey": 5538i32, "l_partkey": 19i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 38.0d, "l_extendedprice": 34922.38d, "l_discount": 0.03d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-03-17", "l_commitdate": "1994-02-11", "l_receiptdate": "1994-04-10", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "ular pinto beans. silent ideas above " }, { "l_orderkey": 69i32, "l_partkey": 19i32, "l_suppkey": 3i32, "l_linenumber": 6i32, "l_quantity": 23.0d, "l_extendedprice": 21137.23d, "l_discount": 0.05d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-10-03", "l_commitdate": "1994-08-06", "l_receiptdate": "1994-10-24", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "nding accounts ca" }, { "l_orderkey": 3585i32, "l_partkey": 19i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 40.0d, "l_extendedprice": 36760.4d, "l_discount": 0.03d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-01-22", "l_commitdate": "1995-01-17", "l_receiptdate": "1995-02-07", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "elets affix. even asymptotes play care" }, { "l_orderkey": 418i32, "l_partkey": 19i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 31.0d, "l_extendedprice": 28489.31d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "F", "l_shipdate": "1995-06-05", "l_commitdate": "1995-06-18", "l_receiptdate": "1995-06-26", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "final theodolites. fluffil" }, { "l_orderkey": 3044i32, "l_partkey": 19i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 47.0d, "l_extendedprice": 43193.47d, "l_discount": 0.09d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-24", "l_commitdate": "1996-06-22", "l_receiptdate": "1996-05-30", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "ly around the car" }, { "l_orderkey": 2694i32, "l_partkey": 19i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 15.0d, "l_extendedprice": 13785.15d, "l_discount": 0.08d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-30", "l_commitdate": "1996-05-01", "l_receiptdate": "1996-07-25", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "e blithely even platelets. special wa" }, { "l_orderkey": 3425i32, "l_partkey": 19i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 37.0d, "l_extendedprice": 34003.37d, "l_discount": 0.04d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-10", "l_commitdate": "1996-05-10", "l_receiptdate": "1996-08-02", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "ngside of the furiously thin dol" }, { "l_orderkey": 2695i32, "l_partkey": 19i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 44.0d, "l_extendedprice": 40436.44d, "l_discount": 0.09d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-05", "l_commitdate": "1996-10-10", "l_receiptdate": "1996-11-01", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "ts. busy platelets boost" }, { "l_orderkey": 1634i32, "l_partkey": 19i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 21.0d, "l_extendedprice": 19299.21d, "l_discount": 0.06d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-16", "l_commitdate": "1996-10-21", "l_receiptdate": "1996-11-27", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "y along the excuses." }, { "l_orderkey": 3719i32, "l_partkey": 19i32, "l_suppkey": 10i32, "l_linenumber": 7i32, "l_quantity": 16.0d, "l_extendedprice": 14704.16d, "l_discount": 0.1d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-02", "l_commitdate": "1997-03-18", "l_receiptdate": "1997-03-28", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": " express asymptotes. ir" }, { "l_orderkey": 5127i32, "l_partkey": 19i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 33.0d, "l_extendedprice": 30327.33d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-25", "l_commitdate": "1997-03-02", "l_receiptdate": "1997-04-04", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": " bold deposits use carefully a" }, { "l_orderkey": 1636i32, "l_partkey": 19i32, "l_suppkey": 6i32, "l_linenumber": 5i32, "l_quantity": 22.0d, "l_extendedprice": 20218.22d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-22", "l_commitdate": "1997-08-18", "l_receiptdate": "1997-08-03", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "ular, regu" }, { "l_orderkey": 4263i32, "l_partkey": 19i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 20.0d, "l_extendedprice": 18380.2d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-09", "l_commitdate": "1998-04-30", "l_receiptdate": "1998-05-04", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "uietly regular deposits. sly deposits w" }, { "l_orderkey": 3651i32, "l_partkey": 19i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 20.0d, "l_extendedprice": 18380.2d, "l_discount": 0.01d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-10", "l_commitdate": "1998-06-06", "l_receiptdate": "1998-06-23", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "tect quickly among the r" }, { "l_orderkey": 3207i32, "l_partkey": 19i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 32.0d, "l_extendedprice": 29408.32d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-17", "l_commitdate": "1998-04-26", "l_receiptdate": "1998-07-07", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "y across the slyly express foxes. bl" }, { "l_orderkey": 5344i32, "l_partkey": 19i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 6.0d, "l_extendedprice": 5514.06d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-04", "l_commitdate": "1998-09-03", "l_receiptdate": "1998-08-11", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "ithely about the pending plate" } ] }
-{ "partkey": 20i32, "lines": [ { "l_orderkey": 2023i32, "l_partkey": 20i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 22.0d, "l_extendedprice": 20240.44d, "l_discount": 0.04d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-06-15", "l_commitdate": "1992-07-13", "l_receiptdate": "1992-06-21", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "ronic attainments. " }, { "l_orderkey": 5254i32, "l_partkey": 20i32, "l_suppkey": 7i32, "l_linenumber": 7i32, "l_quantity": 9.0d, "l_extendedprice": 8280.18d, "l_discount": 0.09d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-07-29", "l_commitdate": "1992-10-15", "l_receiptdate": "1992-08-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": " wake blithely fluff" }, { "l_orderkey": 2625i32, "l_partkey": 20i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 42.0d, "l_extendedprice": 38640.84d, "l_discount": 0.02d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-10-18", "l_commitdate": "1992-11-17", "l_receiptdate": "1992-10-23", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": " even accounts haggle furiously" }, { "l_orderkey": 1504i32, "l_partkey": 20i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 7.0d, "l_extendedprice": 6440.14d, "l_discount": 0.02d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-11-20", "l_commitdate": "1992-11-23", "l_receiptdate": "1992-12-13", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "y final packa" }, { "l_orderkey": 3202i32, "l_partkey": 20i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 22.0d, "l_extendedprice": 20240.44d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-02-16", "l_commitdate": "1993-02-16", "l_receiptdate": "1993-03-16", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "the express packages. fu" }, { "l_orderkey": 5510i32, "l_partkey": 20i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 46.0d, "l_extendedprice": 42320.92d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-03-12", "l_commitdate": "1993-02-09", "l_receiptdate": "1993-03-19", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "silent packages cajole doggedly regular " }, { "l_orderkey": 865i32, "l_partkey": 20i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 3.0d, "l_extendedprice": 2760.06d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-07-17", "l_commitdate": "1993-07-14", "l_receiptdate": "1993-08-01", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "fully regular the" }, { "l_orderkey": 3778i32, "l_partkey": 20i32, "l_suppkey": 7i32, "l_linenumber": 6i32, "l_quantity": 26.0d, "l_extendedprice": 23920.52d, "l_discount": 0.0d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-09-24", "l_commitdate": "1993-07-06", "l_receiptdate": "1993-10-22", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": " against the fluffily" }, { "l_orderkey": 1509i32, "l_partkey": 20i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 11.0d, "l_extendedprice": 10120.22d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-11-04", "l_commitdate": "1993-10-03", "l_receiptdate": "1993-11-14", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "ily ironic packages nod carefully." }, { "l_orderkey": 3i32, "l_partkey": 20i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 49.0d, "l_extendedprice": 45080.98d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-11-09", "l_commitdate": "1993-12-20", "l_receiptdate": "1993-11-24", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": " unusual accounts. eve" }, { "l_orderkey": 4193i32, "l_partkey": 20i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 50.0d, "l_extendedprice": 46001.0d, "l_discount": 0.01d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-04-28", "l_commitdate": "1994-03-23", "l_receiptdate": "1994-05-09", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": " beans. regular accounts cajole. de" }, { "l_orderkey": 1985i32, "l_partkey": 20i32, "l_suppkey": 7i32, "l_linenumber": 6i32, "l_quantity": 2.0d, "l_extendedprice": 1840.04d, "l_discount": 0.02d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-11-25", "l_commitdate": "1994-10-09", "l_receiptdate": "1994-12-25", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": " silent inst" }, { "l_orderkey": 1444i32, "l_partkey": 20i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 35.0d, "l_extendedprice": 32200.7d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-02-25", "l_commitdate": "1995-03-05", "l_receiptdate": "1995-03-24", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "aggle furiou" }, { "l_orderkey": 3330i32, "l_partkey": 20i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 49.0d, "l_extendedprice": 45080.98d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-03-02", "l_commitdate": "1995-03-03", "l_receiptdate": "1995-03-16", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "haggle carefully alongside of the bold r" }, { "l_orderkey": 5444i32, "l_partkey": 20i32, "l_suppkey": 7i32, "l_linenumber": 6i32, "l_quantity": 21.0d, "l_extendedprice": 19320.42d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-03-30", "l_commitdate": "1995-05-01", "l_receiptdate": "1995-03-31", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "furiously even theodolites." }, { "l_orderkey": 326i32, "l_partkey": 20i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 38.0d, "l_extendedprice": 34960.76d, "l_discount": 0.02d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-12", "l_commitdate": "1995-08-23", "l_receiptdate": "1995-09-14", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "es sleep slyly. carefully regular inst" }, { "l_orderkey": 1127i32, "l_partkey": 20i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 29.0d, "l_extendedprice": 26680.58d, "l_discount": 0.09d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-20", "l_commitdate": "1995-11-21", "l_receiptdate": "1995-10-11", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "y. blithely r" }, { "l_orderkey": 4773i32, "l_partkey": 20i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 49.0d, "l_extendedprice": 45080.98d, "l_discount": 0.09d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-12", "l_commitdate": "1996-02-17", "l_receiptdate": "1996-02-05", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "ly pending theodolites cajole caref" }, { "l_orderkey": 2694i32, "l_partkey": 20i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 12.0d, "l_extendedprice": 11040.24d, "l_discount": 0.0d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-04-24", "l_commitdate": "1996-04-22", "l_receiptdate": "1996-05-14", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "foxes atop the hockey pla" }, { "l_orderkey": 3910i32, "l_partkey": 20i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 6.0d, "l_extendedprice": 5520.12d, "l_discount": 0.04d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-08", "l_commitdate": "1996-10-30", "l_receiptdate": "1996-12-31", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "ly sly platelets are fluffily slyly si" }, { "l_orderkey": 2273i32, "l_partkey": 20i32, "l_suppkey": 1i32, "l_linenumber": 7i32, "l_quantity": 7.0d, "l_extendedprice": 6440.14d, "l_discount": 0.05d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-19", "l_commitdate": "1997-01-22", "l_receiptdate": "1997-02-21", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "ts. furiou" }, { "l_orderkey": 1120i32, "l_partkey": 20i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 49.0d, "l_extendedprice": 45080.98d, "l_discount": 0.01d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-03", "l_commitdate": "1998-02-02", "l_receiptdate": "1998-01-09", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "heodolites. quick re" }, { "l_orderkey": 5348i32, "l_partkey": 20i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 7.0d, "l_extendedprice": 6440.14d, "l_discount": 0.04d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-29", "l_commitdate": "1997-12-20", "l_receiptdate": "1998-02-10", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "even foxes. epitap" }, { "l_orderkey": 5476i32, "l_partkey": 20i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 17.0d, "l_extendedprice": 15640.34d, "l_discount": 0.1d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-02-02", "l_commitdate": "1998-01-28", "l_receiptdate": "1998-02-14", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "ng dependencies until the f" }, { "l_orderkey": 2372i32, "l_partkey": 20i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 5.0d, "l_extendedprice": 4600.1d, "l_discount": 0.02d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-02-08", "l_commitdate": "1998-01-18", "l_receiptdate": "1998-03-02", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "ets against the " }, { "l_orderkey": 4386i32, "l_partkey": 20i32, "l_suppkey": 4i32, "l_linenumber": 7i32, "l_quantity": 16.0d, "l_extendedprice": 14720.32d, "l_discount": 0.07d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-05", "l_commitdate": "1998-03-17", "l_receiptdate": "1998-06-03", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "e furiously final pint" }, { "l_orderkey": 5956i32, "l_partkey": 20i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 40.0d, "l_extendedprice": 36800.8d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-11", "l_commitdate": "1998-07-19", "l_receiptdate": "1998-06-21", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "final theodolites sleep carefully ironic c" } ] }
-{ "partkey": 22i32, "lines": [ { "l_orderkey": 1285i32, "l_partkey": 22i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 12.0d, "l_extendedprice": 11064.24d, "l_discount": 0.0d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-06-21", "l_commitdate": "1992-08-16", "l_receiptdate": "1992-07-12", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "ss foxes. blithe theodolites cajole slyly" }, { "l_orderkey": 3970i32, "l_partkey": 22i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 34.0d, "l_extendedprice": 31348.68d, "l_discount": 0.05d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-06-25", "l_commitdate": "1992-05-23", "l_receiptdate": "1992-07-12", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "y final gifts are. carefully pe" }, { "l_orderkey": 1447i32, "l_partkey": 22i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 8.0d, "l_extendedprice": 7376.16d, "l_discount": 0.09d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-11-20", "l_commitdate": "1993-01-12", "l_receiptdate": "1992-12-14", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "ost carefully " }, { "l_orderkey": 2566i32, "l_partkey": 22i32, "l_suppkey": 3i32, "l_linenumber": 5i32, "l_quantity": 9.0d, "l_extendedprice": 8298.18d, "l_discount": 0.04d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-12-14", "l_commitdate": "1992-12-28", "l_receiptdate": "1992-12-16", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "blithely bold accounts? quickl" }, { "l_orderkey": 4418i32, "l_partkey": 22i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 14.0d, "l_extendedprice": 12908.28d, "l_discount": 0.03d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-05-20", "l_commitdate": "1993-06-18", "l_receiptdate": "1993-06-05", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": " blithely regular requests. blith" }, { "l_orderkey": 3073i32, "l_partkey": 22i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 47.0d, "l_extendedprice": 43334.94d, "l_discount": 0.09d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-03-26", "l_commitdate": "1994-02-12", "l_receiptdate": "1994-04-21", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "eposits. fluffily" }, { "l_orderkey": 3553i32, "l_partkey": 22i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 18.0d, "l_extendedprice": 16596.36d, "l_discount": 0.04d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-07-03", "l_commitdate": "1994-06-30", "l_receiptdate": "1994-07-07", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": ". quickly ironic" }, { "l_orderkey": 5572i32, "l_partkey": 22i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 24.0d, "l_extendedprice": 22128.48d, "l_discount": 0.08d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-10-30", "l_commitdate": "1994-10-02", "l_receiptdate": "1994-11-27", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "ests cajole. evenly ironic exc" }, { "l_orderkey": 3492i32, "l_partkey": 22i32, "l_suppkey": 7i32, "l_linenumber": 6i32, "l_quantity": 47.0d, "l_extendedprice": 43334.94d, "l_discount": 0.04d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-12-12", "l_commitdate": "1995-01-18", "l_receiptdate": "1994-12-26", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "ronic instructions u" }, { "l_orderkey": 1637i32, "l_partkey": 22i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 10.0d, "l_extendedprice": 9220.2d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-02-21", "l_commitdate": "1995-03-17", "l_receiptdate": "1995-03-11", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "uriously? blithely even sauternes wake. " }, { "l_orderkey": 2757i32, "l_partkey": 22i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 12.0d, "l_extendedprice": 11064.24d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-01", "l_commitdate": "1995-09-04", "l_receiptdate": "1995-08-08", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": " regular, eve" }, { "l_orderkey": 3362i32, "l_partkey": 22i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 14.0d, "l_extendedprice": 12908.28d, "l_discount": 0.06d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-01", "l_commitdate": "1995-09-06", "l_receiptdate": "1995-08-22", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "even Tires" }, { "l_orderkey": 2626i32, "l_partkey": 22i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 45.0d, "l_extendedprice": 41490.9d, "l_discount": 0.09d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-22", "l_commitdate": "1995-11-01", "l_receiptdate": "1995-11-23", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "deposits wake blithely according to " }, { "l_orderkey": 4803i32, "l_partkey": 22i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 24.0d, "l_extendedprice": 22128.48d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-02-24", "l_commitdate": "1996-04-02", "l_receiptdate": "1996-02-28", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "t blithely slyly special decoys. " }, { "l_orderkey": 4551i32, "l_partkey": 22i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 22.0d, "l_extendedprice": 20284.44d, "l_discount": 0.08d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-12", "l_commitdate": "1996-03-17", "l_receiptdate": "1996-05-29", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "ly ironic reques" }, { "l_orderkey": 3974i32, "l_partkey": 22i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 47.0d, "l_extendedprice": 43334.94d, "l_discount": 0.1d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-03", "l_commitdate": "1996-05-08", "l_receiptdate": "1996-06-28", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "dencies above the re" }, { "l_orderkey": 1510i32, "l_partkey": 22i32, "l_suppkey": 1i32, "l_linenumber": 7i32, "l_quantity": 50.0d, "l_extendedprice": 46101.0d, "l_discount": 0.04d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-01", "l_commitdate": "1996-10-17", "l_receiptdate": "1996-11-28", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "even packages. carefully regular fo" }, { "l_orderkey": 67i32, "l_partkey": 22i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 4.0d, "l_extendedprice": 3688.08d, "l_discount": 0.09d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-17", "l_commitdate": "1997-01-31", "l_receiptdate": "1997-04-20", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": " cajole thinly expres" }, { "l_orderkey": 5090i32, "l_partkey": 22i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 22.0d, "l_extendedprice": 20284.44d, "l_discount": 0.07d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-10", "l_commitdate": "1997-05-25", "l_receiptdate": "1997-05-24", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "ets integrate ironic, regul" }, { "l_orderkey": 3719i32, "l_partkey": 22i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 35.0d, "l_extendedprice": 32270.7d, "l_discount": 0.06d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-11", "l_commitdate": "1997-04-03", "l_receiptdate": "1997-06-15", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "ly foxes. pending braids haggle furio" }, { "l_orderkey": 2913i32, "l_partkey": 22i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 22.0d, "l_extendedprice": 20284.44d, "l_discount": 0.1d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-18", "l_commitdate": "1997-08-11", "l_receiptdate": "1997-10-02", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "riously pending realms. blithely even pac" }, { "l_orderkey": 1667i32, "l_partkey": 22i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 29.0d, "l_extendedprice": 26738.58d, "l_discount": 0.06d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-10-15", "l_commitdate": "1997-11-09", "l_receiptdate": "1997-11-11", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "l accounts. furiously final courts h" }, { "l_orderkey": 1090i32, "l_partkey": 22i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 5.0d, "l_extendedprice": 4610.1d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-02-19", "l_commitdate": "1997-12-25", "l_receiptdate": "1998-02-24", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "s above the " }, { "l_orderkey": 4997i32, "l_partkey": 22i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 46.0d, "l_extendedprice": 42412.92d, "l_discount": 0.0d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-28", "l_commitdate": "1998-06-04", "l_receiptdate": "1998-05-08", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "ecial courts are carefully" }, { "l_orderkey": 1348i32, "l_partkey": 22i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 41.0d, "l_extendedprice": 37802.82d, "l_discount": 0.07d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-02", "l_commitdate": "1998-05-26", "l_receiptdate": "1998-05-09", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "kages. platelets about the ca" }, { "l_orderkey": 966i32, "l_partkey": 22i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 42.0d, "l_extendedprice": 38724.84d, "l_discount": 0.06d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-15", "l_commitdate": "1998-06-08", "l_receiptdate": "1998-07-05", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "sly ironic asymptotes hagg" }, { "l_orderkey": 901i32, "l_partkey": 22i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 36.0d, "l_extendedprice": 33192.72d, "l_discount": 0.01d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-11", "l_commitdate": "1998-10-09", "l_receiptdate": "1998-08-27", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": ". accounts are care" }, { "l_orderkey": 4678i32, "l_partkey": 22i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 23.0d, "l_extendedprice": 21206.46d, "l_discount": 0.06d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-09-03", "l_commitdate": "1998-09-20", "l_receiptdate": "1998-09-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "ily sly deposi" } ] }
-{ "partkey": 24i32, "lines": [ { "l_orderkey": 2755i32, "l_partkey": 24i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 11.0d, "l_extendedprice": 10164.22d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-04-12", "l_commitdate": "1992-05-07", "l_receiptdate": "1992-04-21", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "egular excuses sleep carefully." }, { "l_orderkey": 4260i32, "l_partkey": 24i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 21.0d, "l_extendedprice": 19404.42d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-08-06", "l_commitdate": "1992-06-18", "l_receiptdate": "1992-08-22", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "al, pending accounts must" }, { "l_orderkey": 3845i32, "l_partkey": 24i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 16.0d, "l_extendedprice": 14784.32d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-08-08", "l_commitdate": "1992-06-08", "l_receiptdate": "1992-08-26", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "ely bold ideas use. ex" }, { "l_orderkey": 549i32, "l_partkey": 24i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 38.0d, "l_extendedprice": 35112.76d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-08-23", "l_commitdate": "1992-08-12", "l_receiptdate": "1992-08-25", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "eposits. carefully regular depos" }, { "l_orderkey": 4261i32, "l_partkey": 24i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 28.0d, "l_extendedprice": 25872.56d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-10-08", "l_commitdate": "1992-12-23", "l_receiptdate": "1992-10-11", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "packages. fluffily i" }, { "l_orderkey": 4133i32, "l_partkey": 24i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 35.0d, "l_extendedprice": 32340.7d, "l_discount": 0.02d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-11-25", "l_commitdate": "1992-09-15", "l_receiptdate": "1992-12-25", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "g above the quickly bold packages. ev" }, { "l_orderkey": 5126i32, "l_partkey": 24i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 33.0d, "l_extendedprice": 30492.66d, "l_discount": 0.02d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-02-04", "l_commitdate": "1992-12-23", "l_receiptdate": "1993-02-14", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "ipliers promise furiously whithout the " }, { "l_orderkey": 5510i32, "l_partkey": 24i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 29.0d, "l_extendedprice": 26796.58d, "l_discount": 0.09d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-02-28", "l_commitdate": "1993-03-28", "l_receiptdate": "1993-03-12", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "lithely fluffily ironic req" }, { "l_orderkey": 4166i32, "l_partkey": 24i32, "l_suppkey": 5i32, "l_linenumber": 7i32, "l_quantity": 26.0d, "l_extendedprice": 24024.52d, "l_discount": 0.09d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-03-17", "l_commitdate": "1993-05-09", "l_receiptdate": "1993-03-25", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "lar dependencies. s" }, { "l_orderkey": 2083i32, "l_partkey": 24i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 37.0d, "l_extendedprice": 34188.74d, "l_discount": 0.07d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-09-07", "l_commitdate": "1993-09-30", "l_receiptdate": "1993-09-18", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "ng the special foxes wake packages. f" }, { "l_orderkey": 259i32, "l_partkey": 24i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 42.0d, "l_extendedprice": 38808.84d, "l_discount": 0.09d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-10-20", "l_commitdate": "1993-11-18", "l_receiptdate": "1993-11-12", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "the slyly ironic pinto beans. fi" }, { "l_orderkey": 5061i32, "l_partkey": 24i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 26.0d, "l_extendedprice": 24024.52d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-11-07", "l_commitdate": "1993-09-13", "l_receiptdate": "1993-11-13", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": " cajole slyly. carefully spe" }, { "l_orderkey": 677i32, "l_partkey": 24i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 46.0d, "l_extendedprice": 42504.92d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-12-02", "l_commitdate": "1994-02-12", "l_receiptdate": "1993-12-06", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "ng theodolites. furiously unusual theodo" }, { "l_orderkey": 2752i32, "l_partkey": 24i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 40.0d, "l_extendedprice": 36960.8d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-01-24", "l_commitdate": "1994-01-18", "l_receiptdate": "1994-02-22", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "into beans are after the sly" }, { "l_orderkey": 2496i32, "l_partkey": 24i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 30.0d, "l_extendedprice": 27720.6d, "l_discount": 0.04d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-01-27", "l_commitdate": "1994-03-11", "l_receiptdate": "1994-01-31", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "ake. ironic foxes cajole quickly. fu" }, { "l_orderkey": 1861i32, "l_partkey": 24i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 23.0d, "l_extendedprice": 21252.46d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-04-09", "l_commitdate": "1994-03-04", "l_receiptdate": "1994-04-11", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "in packages sleep silent dolphins; sly" }, { "l_orderkey": 1761i32, "l_partkey": 24i32, "l_suppkey": 7i32, "l_linenumber": 6i32, "l_quantity": 12.0d, "l_extendedprice": 11088.24d, "l_discount": 0.01d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-04-16", "l_commitdate": "1994-03-08", "l_receiptdate": "1994-04-21", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": " sleep furiously. deposits are acco" }, { "l_orderkey": 263i32, "l_partkey": 24i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 22.0d, "l_extendedprice": 20328.44d, "l_discount": 0.06d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-08-24", "l_commitdate": "1994-06-20", "l_receiptdate": "1994-09-09", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "efully express fo" }, { "l_orderkey": 5572i32, "l_partkey": 24i32, "l_suppkey": 3i32, "l_linenumber": 5i32, "l_quantity": 34.0d, "l_extendedprice": 31416.68d, "l_discount": 0.1d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-10-22", "l_commitdate": "1994-08-16", "l_receiptdate": "1994-11-08", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "asymptotes integrate. s" }, { "l_orderkey": 4006i32, "l_partkey": 24i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 15.0d, "l_extendedprice": 13860.3d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-02-23", "l_commitdate": "1995-04-02", "l_receiptdate": "1995-02-25", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "n deposits cajole slyl" }, { "l_orderkey": 995i32, "l_partkey": 24i32, "l_suppkey": 5i32, "l_linenumber": 5i32, "l_quantity": 18.0d, "l_extendedprice": 16632.36d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-03", "l_commitdate": "1995-07-29", "l_receiptdate": "1995-07-22", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": " even accounts unwind c" }, { "l_orderkey": 551i32, "l_partkey": 24i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 8.0d, "l_extendedprice": 7392.16d, "l_discount": 0.08d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-29", "l_commitdate": "1995-07-18", "l_receiptdate": "1995-08-02", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": " wake quickly slyly pending platel" }, { "l_orderkey": 3008i32, "l_partkey": 24i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 40.0d, "l_extendedprice": 36960.8d, "l_discount": 0.01d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-18", "l_commitdate": "1996-01-06", "l_receiptdate": "1996-01-11", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "esias. theodolites detect blithely " }, { "l_orderkey": 2595i32, "l_partkey": 24i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 19.0d, "l_extendedprice": 17556.38d, "l_discount": 0.01d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-23", "l_commitdate": "1996-03-02", "l_receiptdate": "1996-01-17", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "ns are neve" }, { "l_orderkey": 3010i32, "l_partkey": 24i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 28.0d, "l_extendedprice": 25872.56d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-05", "l_commitdate": "1996-03-28", "l_receiptdate": "1996-04-03", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "ake carefully carefully even request" }, { "l_orderkey": 1572i32, "l_partkey": 24i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 41.0d, "l_extendedprice": 37884.82d, "l_discount": 0.02d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-16", "l_commitdate": "1996-04-09", "l_receiptdate": "1996-05-28", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": ". pinto beans alongside" }, { "l_orderkey": 4481i32, "l_partkey": 24i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 50.0d, "l_extendedprice": 46201.0d, "l_discount": 0.02d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-22", "l_commitdate": "1996-05-13", "l_receiptdate": "1996-08-14", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "ar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages." }, { "l_orderkey": 1733i32, "l_partkey": 24i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 16.0d, "l_extendedprice": 14784.32d, "l_discount": 0.0d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-28", "l_commitdate": "1996-07-25", "l_receiptdate": "1996-09-27", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "slyly express deposits sleep abo" }, { "l_orderkey": 3623i32, "l_partkey": 24i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 21.0d, "l_extendedprice": 19404.42d, "l_discount": 0.02d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-19", "l_commitdate": "1997-03-18", "l_receiptdate": "1997-01-24", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "ress ideas are furio" }, { "l_orderkey": 517i32, "l_partkey": 24i32, "l_suppkey": 3i32, "l_linenumber": 5i32, "l_quantity": 23.0d, "l_extendedprice": 21252.46d, "l_discount": 0.0d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-19", "l_commitdate": "1997-05-07", "l_receiptdate": "1997-05-12", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": " kindle. furiously bold requests mus" }, { "l_orderkey": 2369i32, "l_partkey": 24i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 30.0d, "l_extendedprice": 27720.6d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-23", "l_commitdate": "1997-02-12", "l_receiptdate": "1997-05-21", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "pecial deposits sleep. blithely unusual w" }, { "l_orderkey": 4224i32, "l_partkey": 24i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 4.0d, "l_extendedprice": 3696.08d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-07", "l_commitdate": "1997-09-05", "l_receiptdate": "1997-09-25", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": " even dinos. carefull" }, { "l_orderkey": 3584i32, "l_partkey": 24i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 6.0d, "l_extendedprice": 5544.12d, "l_discount": 0.03d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-10-28", "l_commitdate": "1997-11-09", "l_receiptdate": "1997-11-24", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "deposits across the" }, { "l_orderkey": 3079i32, "l_partkey": 24i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 2.0d, "l_extendedprice": 1848.04d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-05", "l_commitdate": "1997-11-17", "l_receiptdate": "1998-01-28", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "ly busy requests believ" }, { "l_orderkey": 4192i32, "l_partkey": 24i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 32.0d, "l_extendedprice": 29568.64d, "l_discount": 0.09d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-23", "l_commitdate": "1998-06-25", "l_receiptdate": "1998-07-17", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "ounts are fluffily slyly bold req" } ] }
-{ "partkey": 29i32, "lines": [ { "l_orderkey": 4738i32, "l_partkey": 29i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 22.0d, "l_extendedprice": 20438.44d, "l_discount": 0.02d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-05-25", "l_commitdate": "1992-05-19", "l_receiptdate": "1992-06-12", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "ld, even packages. furio" }, { "l_orderkey": 3205i32, "l_partkey": 29i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 32.0d, "l_extendedprice": 29728.64d, "l_discount": 0.08d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-06-01", "l_commitdate": "1992-07-10", "l_receiptdate": "1992-06-06", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "lar accoun" }, { "l_orderkey": 868i32, "l_partkey": 29i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 13.0d, "l_extendedprice": 12077.26d, "l_discount": 0.05d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-07-25", "l_commitdate": "1992-08-26", "l_receiptdate": "1992-08-04", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "gged instructi" }, { "l_orderkey": 5254i32, "l_partkey": 29i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 23.0d, "l_extendedprice": 21367.46d, "l_discount": 0.02d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-08-16", "l_commitdate": "1992-09-05", "l_receiptdate": "1992-09-15", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "lyly regular accounts. furiously pendin" }, { "l_orderkey": 2630i32, "l_partkey": 29i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 46.0d, "l_extendedprice": 42734.92d, "l_discount": 0.05d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-11-05", "l_commitdate": "1992-12-17", "l_receiptdate": "1992-12-05", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "uests cajole. e" }, { "l_orderkey": 2147i32, "l_partkey": 29i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 50.0d, "l_extendedprice": 46451.0d, "l_discount": 0.04d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-11-18", "l_commitdate": "1992-11-30", "l_receiptdate": "1992-11-30", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "al accounts. even, even foxes wake" }, { "l_orderkey": 1956i32, "l_partkey": 29i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 11.0d, "l_extendedprice": 10219.22d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-12-19", "l_commitdate": "1992-10-29", "l_receiptdate": "1993-01-07", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": " the braids slee" }, { "l_orderkey": 4806i32, "l_partkey": 29i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 8.0d, "l_extendedprice": 7432.16d, "l_discount": 0.09d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-05-08", "l_commitdate": "1993-07-16", "l_receiptdate": "1993-05-28", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "requests boost blithely. qui" }, { "l_orderkey": 132i32, "l_partkey": 29i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 23.0d, "l_extendedprice": 21367.46d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-06-16", "l_commitdate": "1993-08-27", "l_receiptdate": "1993-06-23", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "refully blithely bold acco" }, { "l_orderkey": 3778i32, "l_partkey": 29i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 32.0d, "l_extendedprice": 29728.64d, "l_discount": 0.09d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-06-22", "l_commitdate": "1993-08-18", "l_receiptdate": "1993-07-03", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "tes affix carefully above the " }, { "l_orderkey": 5569i32, "l_partkey": 29i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 25.0d, "l_extendedprice": 23225.5d, "l_discount": 0.1d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-06-29", "l_commitdate": "1993-07-18", "l_receiptdate": "1993-07-05", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": " deposits cajole above" }, { "l_orderkey": 3489i32, "l_partkey": 29i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 46.0d, "l_extendedprice": 42734.92d, "l_discount": 0.0d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-08-02", "l_commitdate": "1993-10-09", "l_receiptdate": "1993-08-10", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "xcuses? quickly stealthy dependenci" }, { "l_orderkey": 358i32, "l_partkey": 29i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 18.0d, "l_extendedprice": 16722.36d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-10-07", "l_commitdate": "1993-11-01", "l_receiptdate": "1993-10-26", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "olphins haggle ironic accounts. f" }, { "l_orderkey": 4161i32, "l_partkey": 29i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 46.0d, "l_extendedprice": 42734.92d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-11-09", "l_commitdate": "1993-11-17", "l_receiptdate": "1993-11-17", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "he stealthily ironic foxes. ideas haggl" }, { "l_orderkey": 773i32, "l_partkey": 29i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 28.0d, "l_extendedprice": 26012.56d, "l_discount": 0.1d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-01-19", "l_commitdate": "1993-11-05", "l_receiptdate": "1994-01-23", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "he furiously slow deposits." }, { "l_orderkey": 3591i32, "l_partkey": 29i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 21.0d, "l_extendedprice": 19509.42d, "l_discount": 0.03d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-02-25", "l_commitdate": "1994-02-02", "l_receiptdate": "1994-03-05", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "structions against " }, { "l_orderkey": 3073i32, "l_partkey": 29i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 14.0d, "l_extendedprice": 13006.28d, "l_discount": 0.09d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-03-24", "l_commitdate": "1994-04-01", "l_receiptdate": "1994-04-07", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "ilently quiet epitaphs." }, { "l_orderkey": 1059i32, "l_partkey": 29i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 7.0d, "l_extendedprice": 6503.14d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-03-30", "l_commitdate": "1994-04-01", "l_receiptdate": "1994-04-24", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "the furiously silent excuses are e" }, { "l_orderkey": 1028i32, "l_partkey": 29i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 27.0d, "l_extendedprice": 25083.54d, "l_discount": 0.0d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-04-03", "l_commitdate": "1994-02-07", "l_receiptdate": "1994-04-26", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "ial accounts nag. slyly" }, { "l_orderkey": 4647i32, "l_partkey": 29i32, "l_suppkey": 4i32, "l_linenumber": 6i32, "l_quantity": 28.0d, "l_extendedprice": 26012.56d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-08-25", "l_commitdate": "1994-08-06", "l_receiptdate": "1994-09-18", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": " are above the fluffily fin" }, { "l_orderkey": 2791i32, "l_partkey": 29i32, "l_suppkey": 2i32, "l_linenumber": 7i32, "l_quantity": 26.0d, "l_extendedprice": 24154.52d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-02-06", "l_commitdate": "1994-12-07", "l_receiptdate": "1995-02-23", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "uriously special instructio" }, { "l_orderkey": 2978i32, "l_partkey": 29i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 33.0d, "l_extendedprice": 30657.66d, "l_discount": 0.09d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-05-06", "l_commitdate": "1995-07-23", "l_receiptdate": "1995-05-16", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "s. blithely unusual pack" }, { "l_orderkey": 4070i32, "l_partkey": 29i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 46.0d, "l_extendedprice": 42734.92d, "l_discount": 0.02d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-06-22", "l_commitdate": "1995-07-14", "l_receiptdate": "1995-07-11", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "nticing ideas. boldly" }, { "l_orderkey": 1575i32, "l_partkey": 29i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 42.0d, "l_extendedprice": 39018.84d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-21", "l_commitdate": "1995-11-25", "l_receiptdate": "1995-10-24", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "ly pending pinto beans." }, { "l_orderkey": 2658i32, "l_partkey": 29i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 22.0d, "l_extendedprice": 20438.44d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-12", "l_commitdate": "1995-11-18", "l_receiptdate": "1995-11-14", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "ts cajole. pending packages affix" }, { "l_orderkey": 4295i32, "l_partkey": 29i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 49.0d, "l_extendedprice": 45521.98d, "l_discount": 0.09d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-25", "l_commitdate": "1996-03-17", "l_receiptdate": "1996-06-19", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "refully silent requests. f" }, { "l_orderkey": 3558i32, "l_partkey": 29i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 38.0d, "l_extendedprice": 35302.76d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-29", "l_commitdate": "1996-05-02", "l_receiptdate": "1996-06-09", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "refully permanently iron" }, { "l_orderkey": 3298i32, "l_partkey": 29i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 25.0d, "l_extendedprice": 23225.5d, "l_discount": 0.1d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-30", "l_commitdate": "1996-05-31", "l_receiptdate": "1996-07-23", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "ly express f" }, { "l_orderkey": 486i32, "l_partkey": 29i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 3.0d, "l_extendedprice": 2787.06d, "l_discount": 0.07d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-07", "l_commitdate": "1996-04-20", "l_receiptdate": "1996-07-23", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "ccounts ha" }, { "l_orderkey": 103i32, "l_partkey": 29i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 23.0d, "l_extendedprice": 21367.46d, "l_discount": 0.01d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-11", "l_commitdate": "1996-09-18", "l_receiptdate": "1996-09-26", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "ironic accou" }, { "l_orderkey": 2784i32, "l_partkey": 29i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 3.0d, "l_extendedprice": 2787.06d, "l_discount": 0.04d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-19", "l_commitdate": "1998-04-05", "l_receiptdate": "1998-02-05", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "n packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggl" }, { "l_orderkey": 838i32, "l_partkey": 29i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 27.0d, "l_extendedprice": 25083.54d, "l_discount": 0.05d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-02-15", "l_commitdate": "1998-04-03", "l_receiptdate": "1998-02-20", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": " pending pinto beans haggle about t" }, { "l_orderkey": 4263i32, "l_partkey": 29i32, "l_suppkey": 4i32, "l_linenumber": 7i32, "l_quantity": 6.0d, "l_extendedprice": 5574.12d, "l_discount": 0.04d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-01", "l_commitdate": "1998-06-02", "l_receiptdate": "1998-05-14", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "g the final, regular instructions: " }, { "l_orderkey": 4997i32, "l_partkey": 29i32, "l_suppkey": 2i32, "l_linenumber": 6i32, "l_quantity": 2.0d, "l_extendedprice": 1858.04d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-09", "l_commitdate": "1998-06-10", "l_receiptdate": "1998-07-21", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "counts. slyl" }, { "l_orderkey": 5410i32, "l_partkey": 29i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 40.0d, "l_extendedprice": 37160.8d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-11-17", "l_commitdate": "1998-10-02", "l_receiptdate": "1998-11-27", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "iously special accounts are along th" } ] }
-{ "partkey": 31i32, "lines": [ { "l_orderkey": 4705i32, "l_partkey": 31i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 14.0d, "l_extendedprice": 13034.42d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-07-14", "l_commitdate": "1992-05-23", "l_receiptdate": "1992-07-25", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "ain carefully amon" }, { "l_orderkey": 1185i32, "l_partkey": 31i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 28.0d, "l_extendedprice": 26068.84d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-09-24", "l_commitdate": "1992-10-07", "l_receiptdate": "1992-10-10", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "ke. slyly regular t" }, { "l_orderkey": 5415i32, "l_partkey": 31i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 16.0d, "l_extendedprice": 14896.48d, "l_discount": 0.08d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-09-29", "l_commitdate": "1992-09-12", "l_receiptdate": "1992-10-10", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "pinto beans haggle furiously" }, { "l_orderkey": 3556i32, "l_partkey": 31i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 43.0d, "l_extendedprice": 40034.29d, "l_discount": 0.02d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-01-18", "l_commitdate": "1992-11-09", "l_receiptdate": "1993-02-04", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "wake carefull" }, { "l_orderkey": 1573i32, "l_partkey": 31i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 17.0d, "l_extendedprice": 15827.51d, "l_discount": 0.0d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-02-24", "l_commitdate": "1993-02-16", "l_receiptdate": "1993-03-08", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "carefully regular deposits. " }, { "l_orderkey": 4864i32, "l_partkey": 31i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 46.0d, "l_extendedprice": 42827.38d, "l_discount": 0.07d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-02-24", "l_commitdate": "1993-01-02", "l_receiptdate": "1993-03-17", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "sts use carefully across the carefull" }, { "l_orderkey": 2753i32, "l_partkey": 31i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 7.0d, "l_extendedprice": 6517.21d, "l_discount": 0.07d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-02-11", "l_commitdate": "1994-01-22", "l_receiptdate": "1994-03-10", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "xpress ideas detect b" }, { "l_orderkey": 5285i32, "l_partkey": 31i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 37.0d, "l_extendedprice": 34448.11d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-02-26", "l_commitdate": "1994-02-18", "l_receiptdate": "1994-03-27", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "uffily regu" }, { "l_orderkey": 2752i32, "l_partkey": 31i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 41.0d, "l_extendedprice": 38172.23d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-03-02", "l_commitdate": "1994-01-31", "l_receiptdate": "1994-03-06", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "tructions hag" }, { "l_orderkey": 1028i32, "l_partkey": 31i32, "l_suppkey": 2i32, "l_linenumber": 7i32, "l_quantity": 22.0d, "l_extendedprice": 20482.66d, "l_discount": 0.03d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-04-24", "l_commitdate": "1994-02-27", "l_receiptdate": "1994-05-08", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": " Tiresias alongside of the carefully spec" }, { "l_orderkey": 994i32, "l_partkey": 31i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 5.0d, "l_extendedprice": 4655.15d, "l_discount": 0.08d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-06-24", "l_commitdate": "1994-06-14", "l_receiptdate": "1994-06-26", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "ainst the pending requests. packages sl" }, { "l_orderkey": 3808i32, "l_partkey": 31i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 45.0d, "l_extendedprice": 41896.35d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-07-03", "l_commitdate": "1994-05-29", "l_receiptdate": "1994-07-14", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": " carefully special" }, { "l_orderkey": 4608i32, "l_partkey": 31i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 36.0d, "l_extendedprice": 33517.08d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-10-04", "l_commitdate": "1994-08-02", "l_receiptdate": "1994-10-21", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "ages wake quickly slyly iron" }, { "l_orderkey": 4870i32, "l_partkey": 31i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 5.0d, "l_extendedprice": 4655.15d, "l_discount": 0.05d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-10-11", "l_commitdate": "1994-10-07", "l_receiptdate": "1994-10-24", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "s haggle furiously. slyly ironic dinos" }, { "l_orderkey": 5249i32, "l_partkey": 31i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 44.0d, "l_extendedprice": 40965.32d, "l_discount": 0.05d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-12-28", "l_commitdate": "1994-11-29", "l_receiptdate": "1994-12-29", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "ole furiousl" }, { "l_orderkey": 4645i32, "l_partkey": 31i32, "l_suppkey": 2i32, "l_linenumber": 7i32, "l_quantity": 42.0d, "l_extendedprice": 39103.26d, "l_discount": 0.1d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-12-31", "l_commitdate": "1994-10-22", "l_receiptdate": "1995-01-28", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "e slyly regular pinto beans. thin" }, { "l_orderkey": 5253i32, "l_partkey": 31i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 35.0d, "l_extendedprice": 32586.05d, "l_discount": 0.02d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-23", "l_commitdate": "1995-06-12", "l_receiptdate": "1995-08-03", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "ven deposits. careful" }, { "l_orderkey": 5575i32, "l_partkey": 31i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 23.0d, "l_extendedprice": 21413.69d, "l_discount": 0.04d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-26", "l_commitdate": "1995-10-09", "l_receiptdate": "1995-11-13", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "enticingly final requests. ironically" }, { "l_orderkey": 3335i32, "l_partkey": 31i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 44.0d, "l_extendedprice": 40965.32d, "l_discount": 0.07d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-05", "l_commitdate": "1995-12-25", "l_receiptdate": "1996-01-18", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "r packages cajole ac" }, { "l_orderkey": 35i32, "l_partkey": 31i32, "l_suppkey": 7i32, "l_linenumber": 6i32, "l_quantity": 28.0d, "l_extendedprice": 26068.84d, "l_discount": 0.03d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-02-01", "l_commitdate": "1995-12-24", "l_receiptdate": "1996-02-28", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "ly alongside of " }, { "l_orderkey": 354i32, "l_partkey": 31i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 18.0d, "l_extendedprice": 16758.54d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-31", "l_commitdate": "1996-05-13", "l_receiptdate": "1996-04-27", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": " about the carefully unusual " }, { "l_orderkey": 1797i32, "l_partkey": 31i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 17.0d, "l_extendedprice": 15827.51d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-06", "l_commitdate": "1996-07-11", "l_receiptdate": "1996-08-29", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": " cajole carefully. unusual Tiresias e" }, { "l_orderkey": 1476i32, "l_partkey": 31i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 20.0d, "l_extendedprice": 18620.6d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-11", "l_commitdate": "1996-09-18", "l_receiptdate": "1996-08-26", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": ". bold deposits are carefully amo" }, { "l_orderkey": 3781i32, "l_partkey": 31i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 15.0d, "l_extendedprice": 13965.45d, "l_discount": 0.05d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-23", "l_commitdate": "1996-08-08", "l_receiptdate": "1996-09-06", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": " carefully blithe" }, { "l_orderkey": 4197i32, "l_partkey": 31i32, "l_suppkey": 7i32, "l_linenumber": 6i32, "l_quantity": 48.0d, "l_extendedprice": 44689.44d, "l_discount": 0.08d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-07", "l_commitdate": "1996-10-25", "l_receiptdate": "1996-10-23", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": " final instructions. blithe, spe" }, { "l_orderkey": 4355i32, "l_partkey": 31i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 50.0d, "l_extendedprice": 46551.5d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-25", "l_commitdate": "1997-01-01", "l_receiptdate": "1996-12-06", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": " regular accounts boost along the " }, { "l_orderkey": 4258i32, "l_partkey": 31i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 46.0d, "l_extendedprice": 42827.38d, "l_discount": 0.04d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-02", "l_commitdate": "1996-12-26", "l_receiptdate": "1997-01-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": " furiously pend" }, { "l_orderkey": 484i32, "l_partkey": 31i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 49.0d, "l_extendedprice": 45620.47d, "l_discount": 0.1d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-06", "l_commitdate": "1997-02-28", "l_receiptdate": "1997-03-23", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "ven accounts" }, { "l_orderkey": 1638i32, "l_partkey": 31i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 5.0d, "l_extendedprice": 4655.15d, "l_discount": 0.08d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-10-15", "l_commitdate": "1997-11-01", "l_receiptdate": "1997-11-08", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "xcuses sleep furiou" }, { "l_orderkey": 5413i32, "l_partkey": 31i32, "l_suppkey": 7i32, "l_linenumber": 7i32, "l_quantity": 32.0d, "l_extendedprice": 29792.96d, "l_discount": 0.06d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-10-23", "l_commitdate": "1997-12-09", "l_receiptdate": "1997-11-17", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "he quickly ironic ideas. slyly ironic ide" }, { "l_orderkey": 2403i32, "l_partkey": 31i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 30.0d, "l_extendedprice": 27930.9d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-08", "l_commitdate": "1998-06-17", "l_receiptdate": "1998-08-20", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "ackages sleep furiously pendin" } ] }
-{ "partkey": 35i32, "lines": [ { "l_orderkey": 4230i32, "l_partkey": 35i32, "l_suppkey": 6i32, "l_linenumber": 6i32, "l_quantity": 30.0d, "l_extendedprice": 28050.9d, "l_discount": 0.05d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-03-11", "l_commitdate": "1992-04-29", "l_receiptdate": "1992-03-30", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "s. final excuses across the" }, { "l_orderkey": 4804i32, "l_partkey": 35i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 41.0d, "l_extendedprice": 38336.23d, "l_discount": 0.1d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-04-06", "l_commitdate": "1992-04-12", "l_receiptdate": "1992-05-03", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": ". deposits haggle express tithes?" }, { "l_orderkey": 2880i32, "l_partkey": 35i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 40.0d, "l_extendedprice": 37401.2d, "l_discount": 0.09d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-05-26", "l_commitdate": "1992-06-01", "l_receiptdate": "1992-05-31", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "even requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven req" }, { "l_orderkey": 1701i32, "l_partkey": 35i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 26.0d, "l_extendedprice": 24310.78d, "l_discount": 0.1d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-06-04", "l_commitdate": "1992-07-11", "l_receiptdate": "1992-07-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": " accounts. blithely pending pinto be" }, { "l_orderkey": 5315i32, "l_partkey": 35i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 12.0d, "l_extendedprice": 11220.36d, "l_discount": 0.08d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-12-18", "l_commitdate": "1993-01-16", "l_receiptdate": "1993-01-10", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "ccounts. furiously ironi" }, { "l_orderkey": 4611i32, "l_partkey": 35i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 31.0d, "l_extendedprice": 28985.93d, "l_discount": 0.04d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-01-28", "l_commitdate": "1993-02-14", "l_receiptdate": "1993-01-29", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": " final pinto beans. permanent, sp" }, { "l_orderkey": 4418i32, "l_partkey": 35i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 32.0d, "l_extendedprice": 29920.96d, "l_discount": 0.02d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-05-28", "l_commitdate": "1993-06-02", "l_receiptdate": "1993-05-30", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "ly. bold pinto b" }, { "l_orderkey": 2914i32, "l_partkey": 35i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 4.0d, "l_extendedprice": 3740.12d, "l_discount": 0.0d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-06-11", "l_commitdate": "1993-04-09", "l_receiptdate": "1993-06-14", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "s integrate. bold deposits sleep req" }, { "l_orderkey": 5414i32, "l_partkey": 35i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 23.0d, "l_extendedprice": 21505.69d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-07-22", "l_commitdate": "1993-05-26", "l_receiptdate": "1993-08-08", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "e bold, express dolphins. spec" }, { "l_orderkey": 2048i32, "l_partkey": 35i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 7.0d, "l_extendedprice": 6545.21d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-12-07", "l_commitdate": "1994-01-31", "l_receiptdate": "1994-01-05", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "lent platelets boost deposits. carefully sp" }, { "l_orderkey": 5856i32, "l_partkey": 35i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 35.0d, "l_extendedprice": 32726.05d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-11-24", "l_commitdate": "1994-12-23", "l_receiptdate": "1994-11-30", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "excuses. finally ir" }, { "l_orderkey": 2724i32, "l_partkey": 35i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 1.0d, "l_extendedprice": 935.03d, "l_discount": 0.07d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-12-26", "l_commitdate": "1994-11-27", "l_receiptdate": "1995-01-07", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "lyly carefully blithe theodolites-- pl" }, { "l_orderkey": 4257i32, "l_partkey": 35i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 5.0d, "l_extendedprice": 4675.15d, "l_discount": 0.01d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-04-29", "l_commitdate": "1995-06-05", "l_receiptdate": "1995-05-13", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "n deposits. furiously e" }, { "l_orderkey": 418i32, "l_partkey": 35i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 3.0d, "l_extendedprice": 2805.09d, "l_discount": 0.04d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-06-29", "l_commitdate": "1995-07-12", "l_receiptdate": "1995-07-01", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "ly furiously regular w" }, { "l_orderkey": 4769i32, "l_partkey": 35i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 16.0d, "l_extendedprice": 14960.48d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-16", "l_commitdate": "1995-07-05", "l_receiptdate": "1995-07-22", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": " deposits. slyly even asymptote" }, { "l_orderkey": 326i32, "l_partkey": 35i32, "l_suppkey": 6i32, "l_linenumber": 5i32, "l_quantity": 31.0d, "l_extendedprice": 28985.93d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-27", "l_commitdate": "1995-07-06", "l_receiptdate": "1995-10-22", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "cies sleep quick" }, { "l_orderkey": 5153i32, "l_partkey": 35i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 42.0d, "l_extendedprice": 39271.26d, "l_discount": 0.03d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-03", "l_commitdate": "1995-11-09", "l_receiptdate": "1995-10-11", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "re thinly. ironic" }, { "l_orderkey": 3460i32, "l_partkey": 35i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 40.0d, "l_extendedprice": 37401.2d, "l_discount": 0.08d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-29", "l_commitdate": "1995-11-10", "l_receiptdate": "1995-11-24", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "o the even deposits" }, { "l_orderkey": 2049i32, "l_partkey": 35i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 31.0d, "l_extendedprice": 28985.93d, "l_discount": 0.1d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-25", "l_commitdate": "1996-02-25", "l_receiptdate": "1995-12-29", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": " packages are slyly alongside" }, { "l_orderkey": 4833i32, "l_partkey": 35i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 4.0d, "l_extendedprice": 3740.12d, "l_discount": 0.1d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-16", "l_commitdate": "1996-06-29", "l_receiptdate": "1996-08-22", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "y pending packages sleep blithely regular r" }, { "l_orderkey": 4258i32, "l_partkey": 35i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 22.0d, "l_extendedprice": 20570.66d, "l_discount": 0.04d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-12", "l_commitdate": "1996-12-06", "l_receiptdate": "1996-12-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "e regular, even asym" }, { "l_orderkey": 1697i32, "l_partkey": 35i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 19.0d, "l_extendedprice": 17765.57d, "l_discount": 0.03d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-08", "l_commitdate": "1996-11-12", "l_receiptdate": "1997-01-11", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "ons? special, special accounts after" }, { "l_orderkey": 3270i32, "l_partkey": 35i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 11.0d, "l_extendedprice": 10285.33d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-29", "l_commitdate": "1997-08-11", "l_receiptdate": "1997-08-05", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": " solve at the regular deposits. " }, { "l_orderkey": 71i32, "l_partkey": 35i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 45.0d, "l_extendedprice": 42076.35d, "l_discount": 0.0d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-02-23", "l_commitdate": "1998-03-20", "l_receiptdate": "1998-03-24", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": " ironic packages believe blithely a" }, { "l_orderkey": 2371i32, "l_partkey": 35i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 21.0d, "l_extendedprice": 19635.63d, "l_discount": 0.0d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-14", "l_commitdate": "1998-02-14", "l_receiptdate": "1998-04-18", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "gle furiously regu" }, { "l_orderkey": 68i32, "l_partkey": 35i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 46.0d, "l_extendedprice": 43011.38d, "l_discount": 0.04d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-13", "l_commitdate": "1998-07-08", "l_receiptdate": "1998-08-29", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "egular dependencies affix ironically along " } ] }
-{ "partkey": 46i32, "lines": [ { "l_orderkey": 4230i32, "l_partkey": 46i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 38.0d, "l_extendedprice": 35949.52d, "l_discount": 0.1d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-04-28", "l_commitdate": "1992-04-21", "l_receiptdate": "1992-05-28", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "ly regular packages. regular ideas boost" }, { "l_orderkey": 3043i32, "l_partkey": 46i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 23.0d, "l_extendedprice": 21758.92d, "l_discount": 0.07d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-05-08", "l_commitdate": "1992-07-22", "l_receiptdate": "1992-05-18", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "uickly above the pending," }, { "l_orderkey": 3845i32, "l_partkey": 46i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 1.0d, "l_extendedprice": 946.04d, "l_discount": 0.04d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-05-21", "l_commitdate": "1992-06-07", "l_receiptdate": "1992-06-17", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": " blithely ironic t" }, { "l_orderkey": 5767i32, "l_partkey": 46i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 36.0d, "l_extendedprice": 34057.44d, "l_discount": 0.03d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-07-17", "l_commitdate": "1992-06-10", "l_receiptdate": "1992-07-19", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "ake carefully. packages " }, { "l_orderkey": 2560i32, "l_partkey": 46i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 31.0d, "l_extendedprice": 29327.24d, "l_discount": 0.01d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-11-14", "l_commitdate": "1992-10-14", "l_receiptdate": "1992-12-11", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "to beans. blithely regular Tiresias int" }, { "l_orderkey": 2435i32, "l_partkey": 46i32, "l_suppkey": 9i32, "l_linenumber": 6i32, "l_quantity": 17.0d, "l_extendedprice": 16082.68d, "l_discount": 0.02d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-06-05", "l_commitdate": "1993-05-05", "l_receiptdate": "1993-06-14", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "cajole aft" }, { "l_orderkey": 3684i32, "l_partkey": 46i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 6.0d, "l_extendedprice": 5676.24d, "l_discount": 0.06d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-08-09", "l_commitdate": "1993-10-05", "l_receiptdate": "1993-09-06", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "he silent requests. packages sleep fu" }, { "l_orderkey": 3648i32, "l_partkey": 46i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 34.0d, "l_extendedprice": 32165.36d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-08-21", "l_commitdate": "1993-07-25", "l_receiptdate": "1993-09-15", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": " deposits are furiously. careful, " }, { "l_orderkey": 2503i32, "l_partkey": 46i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 50.0d, "l_extendedprice": 47302.0d, "l_discount": 0.09d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-09-22", "l_commitdate": "1993-08-17", "l_receiptdate": "1993-09-29", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "s around the slyly " }, { "l_orderkey": 3201i32, "l_partkey": 46i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 11.0d, "l_extendedprice": 10406.44d, "l_discount": 0.1d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-09-27", "l_commitdate": "1993-08-29", "l_receiptdate": "1993-10-18", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "ing to the furiously expr" }, { "l_orderkey": 5665i32, "l_partkey": 46i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 47.0d, "l_extendedprice": 44463.88d, "l_discount": 0.01d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-10-06", "l_commitdate": "1993-09-19", "l_receiptdate": "1993-11-01", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "s mold fluffily. final deposits along the" }, { "l_orderkey": 70i32, "l_partkey": 46i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 11.0d, "l_extendedprice": 10406.44d, "l_discount": 0.01d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-03-17", "l_commitdate": "1994-03-17", "l_receiptdate": "1994-03-27", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "alongside of the deposits. fur" }, { "l_orderkey": 2370i32, "l_partkey": 46i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 3.0d, "l_extendedprice": 2838.12d, "l_discount": 0.03d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-03-24", "l_commitdate": "1994-03-26", "l_receiptdate": "1994-04-15", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "ly regular Tiresia" }, { "l_orderkey": 2919i32, "l_partkey": 46i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 44.0d, "l_extendedprice": 41625.76d, "l_discount": 0.07d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-04-01", "l_commitdate": "1994-01-12", "l_receiptdate": "1994-04-07", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "final ideas haggle carefully fluff" }, { "l_orderkey": 356i32, "l_partkey": 46i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 4.0d, "l_extendedprice": 3784.16d, "l_discount": 0.1d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-07-28", "l_commitdate": "1994-08-01", "l_receiptdate": "1994-08-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": " the dependencies nod unusual, final ac" }, { "l_orderkey": 4514i32, "l_partkey": 46i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 15.0d, "l_extendedprice": 14190.6d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-08-24", "l_commitdate": "1994-07-11", "l_receiptdate": "1994-09-14", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "! unusual, special deposits afte" }, { "l_orderkey": 1031i32, "l_partkey": 46i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 15.0d, "l_extendedprice": 14190.6d, "l_discount": 0.1d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-11-07", "l_commitdate": "1994-10-29", "l_receiptdate": "1994-11-09", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "about the carefully bold a" }, { "l_orderkey": 2499i32, "l_partkey": 46i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 48.0d, "l_extendedprice": 45409.92d, "l_discount": 0.09d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-14", "l_commitdate": "1995-12-12", "l_receiptdate": "1995-11-11", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "ronic ideas cajole quickly requests. caref" }, { "l_orderkey": 3141i32, "l_partkey": 46i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 47.0d, "l_extendedprice": 44463.88d, "l_discount": 0.03d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-29", "l_commitdate": "1996-01-13", "l_receiptdate": "1995-12-10", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": " are slyly pi" }, { "l_orderkey": 4676i32, "l_partkey": 46i32, "l_suppkey": 7i32, "l_linenumber": 6i32, "l_quantity": 8.0d, "l_extendedprice": 7568.32d, "l_discount": 0.08d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-05", "l_commitdate": "1995-10-18", "l_receiptdate": "1996-01-02", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "cuses boost above" }, { "l_orderkey": 166i32, "l_partkey": 46i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 8.0d, "l_extendedprice": 7568.32d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-30", "l_commitdate": "1995-11-29", "l_receiptdate": "1996-01-29", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "e carefully bold " }, { "l_orderkey": 3525i32, "l_partkey": 46i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 12.0d, "l_extendedprice": 11352.48d, "l_discount": 0.01d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-08", "l_commitdate": "1996-03-18", "l_receiptdate": "1996-03-16", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "lar excuses wake carefull" }, { "l_orderkey": 3173i32, "l_partkey": 46i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 16.0d, "l_extendedprice": 15136.64d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-12", "l_commitdate": "1996-09-21", "l_receiptdate": "1996-08-22", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "e special," }, { "l_orderkey": 4320i32, "l_partkey": 46i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 28.0d, "l_extendedprice": 26489.12d, "l_discount": 0.02d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-28", "l_commitdate": "1997-02-07", "l_receiptdate": "1997-02-07", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "nts. even, ironic excuses hagg" }, { "l_orderkey": 3779i32, "l_partkey": 46i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 28.0d, "l_extendedprice": 26489.12d, "l_discount": 0.04d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-06", "l_commitdate": "1997-04-01", "l_receiptdate": "1997-05-18", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "s. close requests sleep" }, { "l_orderkey": 5859i32, "l_partkey": 46i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 33.0d, "l_extendedprice": 31219.32d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-08", "l_commitdate": "1997-06-22", "l_receiptdate": "1997-07-18", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "eposits unwind furiously final pinto bea" }, { "l_orderkey": 1859i32, "l_partkey": 46i32, "l_suppkey": 3i32, "l_linenumber": 5i32, "l_quantity": 11.0d, "l_extendedprice": 10406.44d, "l_discount": 0.06d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-15", "l_commitdate": "1997-06-05", "l_receiptdate": "1997-07-29", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "ffily ironic pac" }, { "l_orderkey": 1120i32, "l_partkey": 46i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 22.0d, "l_extendedprice": 20812.88d, "l_discount": 0.09d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-11-15", "l_commitdate": "1998-01-25", "l_receiptdate": "1997-12-07", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "ons. slyly silent requests sleep silent" }, { "l_orderkey": 4322i32, "l_partkey": 46i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 17.0d, "l_extendedprice": 16082.68d, "l_discount": 0.09d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-31", "l_commitdate": "1998-05-31", "l_receiptdate": "1998-06-10", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "ructions boost " }, { "l_orderkey": 4711i32, "l_partkey": 46i32, "l_suppkey": 5i32, "l_linenumber": 7i32, "l_quantity": 18.0d, "l_extendedprice": 17028.72d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-03", "l_commitdate": "1998-07-31", "l_receiptdate": "1998-07-23", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": " blithely. bold asymptote" }, { "l_orderkey": 1318i32, "l_partkey": 46i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 26.0d, "l_extendedprice": 24597.04d, "l_discount": 0.01d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-09-26", "l_commitdate": "1998-08-09", "l_receiptdate": "1998-10-07", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "ly. regular, u" }, { "l_orderkey": 5633i32, "l_partkey": 46i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 27.0d, "l_extendedprice": 25543.08d, "l_discount": 0.03d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-09-28", "l_commitdate": "1998-07-28", "l_receiptdate": "1998-10-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "ructions. even ideas haggle carefully r" }, { "l_orderkey": 3840i32, "l_partkey": 46i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 12.0d, "l_extendedprice": 11352.48d, "l_discount": 0.04d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-10-02", "l_commitdate": "1998-08-19", "l_receiptdate": "1998-10-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "xpress pinto beans. accounts a" }, { "l_orderkey": 901i32, "l_partkey": 46i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 2.0d, "l_extendedprice": 1892.08d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-10-25", "l_commitdate": "1998-09-27", "l_receiptdate": "1998-11-01", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "d foxes use slyly" } ] }
-{ "partkey": 48i32, "lines": [ { "l_orderkey": 2691i32, "l_partkey": 48i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 2.0d, "l_extendedprice": 1896.08d, "l_discount": 0.0d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-05-10", "l_commitdate": "1992-06-04", "l_receiptdate": "1992-05-11", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "s cajole at the blithely ironic warthog" }, { "l_orderkey": 5473i32, "l_partkey": 48i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 9.0d, "l_extendedprice": 8532.36d, "l_discount": 0.03d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-06-03", "l_commitdate": "1992-05-30", "l_receiptdate": "1992-06-09", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": " excuses sleep blithely! regular dep" }, { "l_orderkey": 832i32, "l_partkey": 48i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 24.0d, "l_extendedprice": 22752.96d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-06-15", "l_commitdate": "1992-07-14", "l_receiptdate": "1992-06-17", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "ully. carefully speci" }, { "l_orderkey": 5474i32, "l_partkey": 48i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 31.0d, "l_extendedprice": 29389.24d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-08-02", "l_commitdate": "1992-07-12", "l_receiptdate": "1992-08-04", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "the furiously express ideas. speci" }, { "l_orderkey": 1793i32, "l_partkey": 48i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 29.0d, "l_extendedprice": 27493.16d, "l_discount": 0.01d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-10-24", "l_commitdate": "1992-09-20", "l_receiptdate": "1992-11-23", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "ar excuses. " }, { "l_orderkey": 2213i32, "l_partkey": 48i32, "l_suppkey": 5i32, "l_linenumber": 6i32, "l_quantity": 41.0d, "l_extendedprice": 38869.64d, "l_discount": 0.01d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-01-31", "l_commitdate": "1993-03-31", "l_receiptdate": "1993-02-28", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": " carefully pend" }, { "l_orderkey": 2503i32, "l_partkey": 48i32, "l_suppkey": 5i32, "l_linenumber": 5i32, "l_quantity": 3.0d, "l_extendedprice": 2844.12d, "l_discount": 0.04d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-07-10", "l_commitdate": "1993-09-17", "l_receiptdate": "1993-07-19", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "s cajole. slyly close courts nod f" }, { "l_orderkey": 3104i32, "l_partkey": 48i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 47.0d, "l_extendedprice": 44557.88d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-12-25", "l_commitdate": "1993-11-02", "l_receiptdate": "1994-01-12", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "ily daring acc" }, { "l_orderkey": 2753i32, "l_partkey": 48i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 40.0d, "l_extendedprice": 37921.6d, "l_discount": 0.03d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-01-06", "l_commitdate": "1994-02-13", "l_receiptdate": "1994-02-03", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "latelets kindle slyly final depos" }, { "l_orderkey": 2304i32, "l_partkey": 48i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 3.0d, "l_extendedprice": 2844.12d, "l_discount": 0.0d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-03-19", "l_commitdate": "1994-03-04", "l_receiptdate": "1994-03-20", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "l excuses after the ev" }, { "l_orderkey": 1831i32, "l_partkey": 48i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 9.0d, "l_extendedprice": 8532.36d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-03-22", "l_commitdate": "1994-01-07", "l_receiptdate": "1994-04-06", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "ent deposits. regular saute" }, { "l_orderkey": 5155i32, "l_partkey": 48i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 1.0d, "l_extendedprice": 948.04d, "l_discount": 0.0d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-07-03", "l_commitdate": "1994-08-11", "l_receiptdate": "1994-07-29", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "oze slyly after the silent, regular idea" }, { "l_orderkey": 2050i32, "l_partkey": 48i32, "l_suppkey": 5i32, "l_linenumber": 7i32, "l_quantity": 25.0d, "l_extendedprice": 23701.0d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-08-18", "l_commitdate": "1994-07-04", "l_receiptdate": "1994-09-04", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "y according to " }, { "l_orderkey": 1218i32, "l_partkey": 48i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 44.0d, "l_extendedprice": 41713.76d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-10-05", "l_commitdate": "1994-09-03", "l_receiptdate": "1994-10-30", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "thely ironic accounts wake slyly" }, { "l_orderkey": 2211i32, "l_partkey": 48i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 25.0d, "l_extendedprice": 23701.0d, "l_discount": 0.04d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-10-09", "l_commitdate": "1994-08-04", "l_receiptdate": "1994-11-03", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "deas. carefully special theodolites along" }, { "l_orderkey": 4870i32, "l_partkey": 48i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 49.0d, "l_extendedprice": 46453.96d, "l_discount": 0.05d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-11-14", "l_commitdate": "1994-10-24", "l_receiptdate": "1994-12-12", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": " regular packages " }, { "l_orderkey": 3585i32, "l_partkey": 48i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 33.0d, "l_extendedprice": 31285.32d, "l_discount": 0.08d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-12-14", "l_commitdate": "1995-01-19", "l_receiptdate": "1994-12-22", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "ironic dependencies serve furi" }, { "l_orderkey": 3042i32, "l_partkey": 48i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 19.0d, "l_extendedprice": 18012.76d, "l_discount": 0.02d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-03-05", "l_commitdate": "1995-01-24", "l_receiptdate": "1995-03-17", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "e carefully. regul" }, { "l_orderkey": 928i32, "l_partkey": 48i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 24.0d, "l_extendedprice": 22752.96d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-04-06", "l_commitdate": "1995-05-08", "l_receiptdate": "1995-04-24", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "s the furiously regular warthogs im" }, { "l_orderkey": 4422i32, "l_partkey": 48i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 41.0d, "l_extendedprice": 38869.64d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "F", "l_shipdate": "1995-06-12", "l_commitdate": "1995-07-09", "l_receiptdate": "1995-06-20", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": " theodolites shal" }, { "l_orderkey": 2660i32, "l_partkey": 48i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 17.0d, "l_extendedprice": 16116.68d, "l_discount": 0.0d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-18", "l_commitdate": "1995-09-13", "l_receiptdate": "1995-09-17", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "al pinto beans wake after the furious" }, { "l_orderkey": 2785i32, "l_partkey": 48i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 34.0d, "l_extendedprice": 32233.36d, "l_discount": 0.0d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-16", "l_commitdate": "1995-09-09", "l_receiptdate": "1995-10-11", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "kages wake carefully silent " }, { "l_orderkey": 4324i32, "l_partkey": 48i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 12.0d, "l_extendedprice": 11376.48d, "l_discount": 0.04d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-05", "l_commitdate": "1995-09-07", "l_receiptdate": "1995-10-18", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "c packages. furiously express sauternes" }, { "l_orderkey": 420i32, "l_partkey": 48i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 45.0d, "l_extendedprice": 42661.8d, "l_discount": 0.09d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-14", "l_commitdate": "1996-01-01", "l_receiptdate": "1996-01-26", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": " final accounts. furiously express forges" }, { "l_orderkey": 1634i32, "l_partkey": 48i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 21.0d, "l_extendedprice": 19908.84d, "l_discount": 0.0d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-04", "l_commitdate": "1996-10-22", "l_receiptdate": "1996-11-01", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "counts alo" }, { "l_orderkey": 4836i32, "l_partkey": 48i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 16.0d, "l_extendedprice": 15168.64d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-14", "l_commitdate": "1997-03-05", "l_receiptdate": "1997-01-30", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "gular packages against the express reque" }, { "l_orderkey": 3619i32, "l_partkey": 48i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 46.0d, "l_extendedprice": 43609.84d, "l_discount": 0.08d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-31", "l_commitdate": "1997-01-27", "l_receiptdate": "1997-02-11", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "press, expres" }, { "l_orderkey": 1574i32, "l_partkey": 48i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 41.0d, "l_extendedprice": 38869.64d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-08", "l_commitdate": "1997-02-09", "l_receiptdate": "1997-04-01", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "s. slyly regular depen" }, { "l_orderkey": 5090i32, "l_partkey": 48i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 21.0d, "l_extendedprice": 19908.84d, "l_discount": 0.1d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-29", "l_commitdate": "1997-04-24", "l_receiptdate": "1997-04-25", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "ly express accounts. slyly even r" }, { "l_orderkey": 5056i32, "l_partkey": 48i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 7.0d, "l_extendedprice": 6636.28d, "l_discount": 0.09d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-28", "l_commitdate": "1997-04-07", "l_receiptdate": "1997-05-15", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "rouches after the pending instruc" }, { "l_orderkey": 997i32, "l_partkey": 48i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 17.0d, "l_extendedprice": 16116.68d, "l_discount": 0.03d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-28", "l_commitdate": "1997-07-26", "l_receiptdate": "1997-08-20", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "aggle quickly furiously" }, { "l_orderkey": 992i32, "l_partkey": 48i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 21.0d, "l_extendedprice": 19908.84d, "l_discount": 0.06d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-11-13", "l_commitdate": "1997-12-28", "l_receiptdate": "1997-12-10", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "fily. quickly special deposit" }, { "l_orderkey": 5476i32, "l_partkey": 48i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 13.0d, "l_extendedprice": 12324.52d, "l_discount": 0.01d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-27", "l_commitdate": "1997-12-08", "l_receiptdate": "1997-12-29", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "iously special ac" }, { "l_orderkey": 3937i32, "l_partkey": 48i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 30.0d, "l_extendedprice": 28441.2d, "l_discount": 0.01d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-17", "l_commitdate": "1998-01-03", "l_receiptdate": "1998-02-08", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "al packages slee" }, { "l_orderkey": 1667i32, "l_partkey": 48i32, "l_suppkey": 7i32, "l_linenumber": 6i32, "l_quantity": 6.0d, "l_extendedprice": 5688.24d, "l_discount": 0.01d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-21", "l_commitdate": "1997-12-19", "l_receiptdate": "1998-01-28", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": " nag quickly above th" }, { "l_orderkey": 1157i32, "l_partkey": 48i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 8.0d, "l_extendedprice": 7584.32d, "l_discount": 0.02d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-25", "l_commitdate": "1998-03-16", "l_receiptdate": "1998-03-29", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "blithely even pa" }, { "l_orderkey": 4192i32, "l_partkey": 48i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 48.0d, "l_extendedprice": 45505.92d, "l_discount": 0.08d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-17", "l_commitdate": "1998-07-11", "l_receiptdate": "1998-09-03", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "ests. quickly bol" } ] }
-{ "partkey": 52i32, "lines": [ { "l_orderkey": 1057i32, "l_partkey": 52i32, "l_suppkey": 7i32, "l_linenumber": 6i32, "l_quantity": 19.0d, "l_extendedprice": 18088.95d, "l_discount": 0.04d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-05-31", "l_commitdate": "1992-05-09", "l_receiptdate": "1992-06-02", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "r-- packages haggle alon" }, { "l_orderkey": 4838i32, "l_partkey": 52i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 26.0d, "l_extendedprice": 24753.3d, "l_discount": 0.06d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-09-03", "l_commitdate": "1992-10-25", "l_receiptdate": "1992-09-11", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "ular requests boost about the packages. r" }, { "l_orderkey": 3907i32, "l_partkey": 52i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 45.0d, "l_extendedprice": 42842.25d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-09-21", "l_commitdate": "1992-09-19", "l_receiptdate": "1992-10-18", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": " about the regular pac" }, { "l_orderkey": 1571i32, "l_partkey": 52i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 47.0d, "l_extendedprice": 44746.35d, "l_discount": 0.0d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-12-07", "l_commitdate": "1993-02-24", "l_receiptdate": "1993-01-01", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "ng to the fluffily unusual " }, { "l_orderkey": 2019i32, "l_partkey": 52i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 18.0d, "l_extendedprice": 17136.9d, "l_discount": 0.04d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-01-24", "l_commitdate": "1992-12-22", "l_receiptdate": "1993-02-02", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "are carefully furiously regular requ" }, { "l_orderkey": 4003i32, "l_partkey": 52i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 18.0d, "l_extendedprice": 17136.9d, "l_discount": 0.04d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-02-02", "l_commitdate": "1993-04-15", "l_receiptdate": "1993-02-28", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "ar grouches s" }, { "l_orderkey": 2279i32, "l_partkey": 52i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 42.0d, "l_extendedprice": 39986.1d, "l_discount": 0.02d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-02-28", "l_commitdate": "1993-04-25", "l_receiptdate": "1993-03-02", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": " above the furiously ironic deposits. " }, { "l_orderkey": 4611i32, "l_partkey": 52i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 47.0d, "l_extendedprice": 44746.35d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-03-05", "l_commitdate": "1993-03-01", "l_receiptdate": "1993-03-17", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "iously. furiously regular" }, { "l_orderkey": 1280i32, "l_partkey": 52i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 24.0d, "l_extendedprice": 22849.2d, "l_discount": 0.07d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-03-20", "l_commitdate": "1993-03-01", "l_receiptdate": "1993-04-09", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "y pending orbits boost after the slyly" }, { "l_orderkey": 3040i32, "l_partkey": 52i32, "l_suppkey": 3i32, "l_linenumber": 5i32, "l_quantity": 43.0d, "l_extendedprice": 40938.15d, "l_discount": 0.04d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-05-21", "l_commitdate": "1993-05-25", "l_receiptdate": "1993-05-26", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "sts nag slyly alongside of the depos" }, { "l_orderkey": 1761i32, "l_partkey": 52i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 33.0d, "l_extendedprice": 31417.65d, "l_discount": 0.09d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-01-03", "l_commitdate": "1994-01-23", "l_receiptdate": "1994-01-31", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "s. excuses a" }, { "l_orderkey": 1761i32, "l_partkey": 52i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 37.0d, "l_extendedprice": 35225.85d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-02-17", "l_commitdate": "1994-03-08", "l_receiptdate": "1994-03-16", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": " integrate. quickly unusual" }, { "l_orderkey": 4454i32, "l_partkey": 52i32, "l_suppkey": 4i32, "l_linenumber": 5i32, "l_quantity": 48.0d, "l_extendedprice": 45698.4d, "l_discount": 0.0d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-04-23", "l_commitdate": "1994-04-03", "l_receiptdate": "1994-04-26", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "to beans wake across th" }, { "l_orderkey": 1799i32, "l_partkey": 52i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 8.0d, "l_extendedprice": 7616.4d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-06-14", "l_commitdate": "1994-05-27", "l_receiptdate": "1994-06-27", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "ealms upon the special, ironic waters" }, { "l_orderkey": 3075i32, "l_partkey": 52i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 2.0d, "l_extendedprice": 1904.1d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-06-14", "l_commitdate": "1994-06-10", "l_receiptdate": "1994-06-25", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": ". unusual, unusual accounts haggle furious" }, { "l_orderkey": 1313i32, "l_partkey": 52i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 48.0d, "l_extendedprice": 45698.4d, "l_discount": 0.01d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-12-20", "l_commitdate": "1994-10-29", "l_receiptdate": "1995-01-07", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "s are quick" }, { "l_orderkey": 3430i32, "l_partkey": 52i32, "l_suppkey": 7i32, "l_linenumber": 7i32, "l_quantity": 23.0d, "l_extendedprice": 21897.15d, "l_discount": 0.09d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-03-06", "l_commitdate": "1995-03-01", "l_receiptdate": "1995-03-10", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "eas according to the" }, { "l_orderkey": 928i32, "l_partkey": 52i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 43.0d, "l_extendedprice": 40938.15d, "l_discount": 0.1d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-04-14", "l_commitdate": "1995-04-21", "l_receiptdate": "1995-05-09", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "blithely. express, silent requests doze at" }, { "l_orderkey": 1767i32, "l_partkey": 52i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 40.0d, "l_extendedprice": 38082.0d, "l_discount": 0.06d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-04-16", "l_commitdate": "1995-05-06", "l_receiptdate": "1995-04-21", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "ep. accounts nag blithely fu" }, { "l_orderkey": 1637i32, "l_partkey": 52i32, "l_suppkey": 10i32, "l_linenumber": 7i32, "l_quantity": 21.0d, "l_extendedprice": 19993.05d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-04-30", "l_commitdate": "1995-04-30", "l_receiptdate": "1995-05-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "ly ironic theodolites use b" }, { "l_orderkey": 3111i32, "l_partkey": 52i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 10.0d, "l_extendedprice": 9520.5d, "l_discount": 0.02d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-10", "l_commitdate": "1995-11-02", "l_receiptdate": "1995-12-04", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "ng the slyly ironic inst" }, { "l_orderkey": 2945i32, "l_partkey": 52i32, "l_suppkey": 10i32, "l_linenumber": 7i32, "l_quantity": 47.0d, "l_extendedprice": 44746.35d, "l_discount": 0.07d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-05", "l_commitdate": "1996-02-11", "l_receiptdate": "1996-01-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "quests use" }, { "l_orderkey": 4388i32, "l_partkey": 52i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 13.0d, "l_extendedprice": 12376.65d, "l_discount": 0.07d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-28", "l_commitdate": "1996-05-23", "l_receiptdate": "1996-07-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "ly even, expre" }, { "l_orderkey": 2183i32, "l_partkey": 52i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 25.0d, "l_extendedprice": 23801.25d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-06", "l_commitdate": "1996-08-21", "l_receiptdate": "1996-08-05", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "he quickly f" }, { "l_orderkey": 5159i32, "l_partkey": 52i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 5.0d, "l_extendedprice": 4760.25d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-25", "l_commitdate": "1996-12-19", "l_receiptdate": "1996-12-25", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "nal deposits. pending, ironic ideas grow" }, { "l_orderkey": 4934i32, "l_partkey": 52i32, "l_suppkey": 3i32, "l_linenumber": 6i32, "l_quantity": 42.0d, "l_extendedprice": 39986.1d, "l_discount": 0.0d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-19", "l_commitdate": "1997-05-05", "l_receiptdate": "1997-03-25", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "ven, ironic ideas" }, { "l_orderkey": 3106i32, "l_partkey": 52i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 42.0d, "l_extendedprice": 39986.1d, "l_discount": 0.09d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-05", "l_commitdate": "1997-03-17", "l_receiptdate": "1997-04-22", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "nstructions wake. furiously " }, { "l_orderkey": 3969i32, "l_partkey": 52i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 39.0d, "l_extendedprice": 37129.95d, "l_discount": 0.04d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-12", "l_commitdate": "1997-06-13", "l_receiptdate": "1997-07-05", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "ly bold ideas s" }, { "l_orderkey": 2338i32, "l_partkey": 52i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 30.0d, "l_extendedprice": 28561.5d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-10", "l_commitdate": "1997-10-15", "l_receiptdate": "1997-12-11", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "ould have to nag quickly" }, { "l_orderkey": 5282i32, "l_partkey": 52i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 32.0d, "l_extendedprice": 30465.6d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-01", "l_commitdate": "1998-03-31", "l_receiptdate": "1998-03-03", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "onic deposits; furiou" }, { "l_orderkey": 2567i32, "l_partkey": 52i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 6.0d, "l_extendedprice": 5712.3d, "l_discount": 0.03d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-21", "l_commitdate": "1998-04-14", "l_receiptdate": "1998-05-11", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "s cajole regular, final acco" }, { "l_orderkey": 4448i32, "l_partkey": 52i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 24.0d, "l_extendedprice": 22849.2d, "l_discount": 0.1d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-09-09", "l_commitdate": "1998-07-06", "l_receiptdate": "1998-09-27", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "nal packages along the ironic instructi" } ] }
-{ "partkey": 55i32, "lines": [ { "l_orderkey": 5382i32, "l_partkey": 55i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 13.0d, "l_extendedprice": 12415.65d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-01-16", "l_commitdate": "1992-03-12", "l_receiptdate": "1992-02-06", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "eodolites. final foxes " }, { "l_orderkey": 1856i32, "l_partkey": 55i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 10.0d, "l_extendedprice": 9550.5d, "l_discount": 0.05d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-05-11", "l_commitdate": "1992-05-20", "l_receiptdate": "1992-06-02", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "he furiously even theodolites. account" }, { "l_orderkey": 2022i32, "l_partkey": 55i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 38.0d, "l_extendedprice": 36291.9d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-06-17", "l_commitdate": "1992-05-15", "l_receiptdate": "1992-06-28", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "instructions dazzle carefull" }, { "l_orderkey": 5699i32, "l_partkey": 55i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 26.0d, "l_extendedprice": 24831.3d, "l_discount": 0.06d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-08-11", "l_commitdate": "1992-09-21", "l_receiptdate": "1992-08-14", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "y final deposits wake fluffily u" }, { "l_orderkey": 4897i32, "l_partkey": 55i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 42.0d, "l_extendedprice": 40112.1d, "l_discount": 0.09d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-09-23", "l_commitdate": "1992-10-28", "l_receiptdate": "1992-10-02", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "sts. blithely regular deposits will have" }, { "l_orderkey": 5697i32, "l_partkey": 55i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 24.0d, "l_extendedprice": 22921.2d, "l_discount": 0.1d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-10-27", "l_commitdate": "1992-11-28", "l_receiptdate": "1992-11-20", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "uffily iro" }, { "l_orderkey": 5699i32, "l_partkey": 55i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 46.0d, "l_extendedprice": 43932.3d, "l_discount": 0.08d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-11-28", "l_commitdate": "1992-09-23", "l_receiptdate": "1992-12-27", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "o the slyly" }, { "l_orderkey": 4897i32, "l_partkey": 55i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 26.0d, "l_extendedprice": 24831.3d, "l_discount": 0.01d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-12-22", "l_commitdate": "1992-10-25", "l_receiptdate": "1992-12-27", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": ". carefully ironic dep" }, { "l_orderkey": 4519i32, "l_partkey": 55i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 30.0d, "l_extendedprice": 28651.5d, "l_discount": 0.09d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-04-11", "l_commitdate": "1993-06-05", "l_receiptdate": "1993-04-22", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "totes. slyly bold somas after the " }, { "l_orderkey": 5569i32, "l_partkey": 55i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 48.0d, "l_extendedprice": 45842.4d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-06-16", "l_commitdate": "1993-06-15", "l_receiptdate": "1993-07-09", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "the fluffily" }, { "l_orderkey": 3588i32, "l_partkey": 55i32, "l_suppkey": 3i32, "l_linenumber": 5i32, "l_quantity": 28.0d, "l_extendedprice": 26741.4d, "l_discount": 0.03d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-04-23", "l_commitdate": "1995-05-25", "l_receiptdate": "1995-04-28", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": " express sheaves. unusual theodo" }, { "l_orderkey": 4006i32, "l_partkey": 55i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 11.0d, "l_extendedprice": 10505.55d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-04-29", "l_commitdate": "1995-02-21", "l_receiptdate": "1995-05-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "ress foxes cajole quick" }, { "l_orderkey": 3399i32, "l_partkey": 55i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 8.0d, "l_extendedprice": 7640.4d, "l_discount": 0.01d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-05-15", "l_commitdate": "1995-04-19", "l_receiptdate": "1995-06-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "s use carefully carefully ir" }, { "l_orderkey": 928i32, "l_partkey": 55i32, "l_suppkey": 6i32, "l_linenumber": 6i32, "l_quantity": 50.0d, "l_extendedprice": 47752.5d, "l_discount": 0.05d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "F", "l_shipdate": "1995-06-07", "l_commitdate": "1995-04-15", "l_receiptdate": "1995-07-01", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": " slyly slyly special request" }, { "l_orderkey": 964i32, "l_partkey": 55i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 44.0d, "l_extendedprice": 42022.2d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-18", "l_commitdate": "1995-08-02", "l_receiptdate": "1995-10-17", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "ronic deposit" }, { "l_orderkey": 2657i32, "l_partkey": 55i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 11.0d, "l_extendedprice": 10505.55d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-19", "l_commitdate": "1995-12-11", "l_receiptdate": "1995-11-24", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "ckly enticing requests. fur" }, { "l_orderkey": 2181i32, "l_partkey": 55i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 28.0d, "l_extendedprice": 26741.4d, "l_discount": 0.04d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-21", "l_commitdate": "1995-10-23", "l_receiptdate": "1996-01-04", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "s excuses sleep car" }, { "l_orderkey": 871i32, "l_partkey": 55i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 47.0d, "l_extendedprice": 44887.35d, "l_discount": 0.07d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-25", "l_commitdate": "1996-02-01", "l_receiptdate": "1996-01-24", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "ss, final dep" }, { "l_orderkey": 4672i32, "l_partkey": 55i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 45.0d, "l_extendedprice": 42977.25d, "l_discount": 0.08d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-02-07", "l_commitdate": "1996-01-16", "l_receiptdate": "1996-02-14", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": " platelets use amon" }, { "l_orderkey": 2849i32, "l_partkey": 55i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 48.0d, "l_extendedprice": 45842.4d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-03", "l_commitdate": "1996-06-05", "l_receiptdate": "1996-05-28", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "mong the carefully regular theodol" }, { "l_orderkey": 5605i32, "l_partkey": 55i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 45.0d, "l_extendedprice": 42977.25d, "l_discount": 0.0d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-05", "l_commitdate": "1996-10-04", "l_receiptdate": "1996-09-13", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "ly unusual instructions. carefully ironic p" }, { "l_orderkey": 39i32, "l_partkey": 55i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 43.0d, "l_extendedprice": 41067.15d, "l_discount": 0.01d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-17", "l_commitdate": "1996-11-14", "l_receiptdate": "1996-10-26", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "yly regular i" }, { "l_orderkey": 5186i32, "l_partkey": 55i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 38.0d, "l_extendedprice": 36291.9d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-23", "l_commitdate": "1996-09-21", "l_receiptdate": "1996-12-11", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "y ruthless foxes. fluffily " }, { "l_orderkey": 2180i32, "l_partkey": 55i32, "l_suppkey": 6i32, "l_linenumber": 6i32, "l_quantity": 48.0d, "l_extendedprice": 45842.4d, "l_discount": 0.09d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-30", "l_commitdate": "1996-11-22", "l_receiptdate": "1997-01-16", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "nic instructions haggle careful" }, { "l_orderkey": 1574i32, "l_partkey": 55i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 25.0d, "l_extendedprice": 23876.25d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-16", "l_commitdate": "1997-02-14", "l_receiptdate": "1997-02-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "ly silent accounts." }, { "l_orderkey": 2177i32, "l_partkey": 55i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 34.0d, "l_extendedprice": 32471.7d, "l_discount": 0.05d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-03", "l_commitdate": "1997-04-10", "l_receiptdate": "1997-02-21", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "tes are doggedly quickly" }, { "l_orderkey": 5124i32, "l_partkey": 55i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 43.0d, "l_extendedprice": 41067.15d, "l_discount": 0.0d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-10", "l_commitdate": "1997-05-13", "l_receiptdate": "1997-07-31", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "onic package" }, { "l_orderkey": 5157i32, "l_partkey": 55i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 35.0d, "l_extendedprice": 33426.75d, "l_discount": 0.06d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-28", "l_commitdate": "1997-09-30", "l_receiptdate": "1997-08-15", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "to the furiously sil" }, { "l_orderkey": 1408i32, "l_partkey": 55i32, "l_suppkey": 6i32, "l_linenumber": 7i32, "l_quantity": 26.0d, "l_extendedprice": 24831.3d, "l_discount": 0.0d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-19", "l_commitdate": "1998-03-14", "l_receiptdate": "1998-04-01", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "ic foxes ca" }, { "l_orderkey": 5956i32, "l_partkey": 55i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 23.0d, "l_extendedprice": 21966.15d, "l_discount": 0.08d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-06", "l_commitdate": "1998-07-10", "l_receiptdate": "1998-06-15", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "ly slyly special " } ] }
-{ "partkey": 56i32, "lines": [ { "l_orderkey": 1248i32, "l_partkey": 56i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 26.0d, "l_extendedprice": 24857.3d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-01-16", "l_commitdate": "1992-03-01", "l_receiptdate": "1992-02-06", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": " ironic dependen" }, { "l_orderkey": 3685i32, "l_partkey": 56i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 37.0d, "l_extendedprice": 35373.85d, "l_discount": 0.0d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-03-02", "l_commitdate": "1992-04-10", "l_receiptdate": "1992-03-04", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": ". carefully sly requests are regular, regu" }, { "l_orderkey": 3205i32, "l_partkey": 56i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 10.0d, "l_extendedprice": 9560.5d, "l_discount": 0.01d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-06-18", "l_commitdate": "1992-07-04", "l_receiptdate": "1992-07-16", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": " deposits cajole careful" }, { "l_orderkey": 4705i32, "l_partkey": 56i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 16.0d, "l_extendedprice": 15296.8d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-07-02", "l_commitdate": "1992-06-06", "l_receiptdate": "1992-07-06", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "special ideas nag sl" }, { "l_orderkey": 5190i32, "l_partkey": 56i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 43.0d, "l_extendedprice": 41110.15d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-08-19", "l_commitdate": "1992-06-10", "l_receiptdate": "1992-09-01", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "encies use fluffily unusual requests? hoc" }, { "l_orderkey": 4996i32, "l_partkey": 56i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 35.0d, "l_extendedprice": 33461.75d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-10-30", "l_commitdate": "1992-10-27", "l_receiptdate": "1992-11-05", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "s. unusual, regular dolphins integrate care" }, { "l_orderkey": 2308i32, "l_partkey": 56i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 36.0d, "l_extendedprice": 34417.8d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-11-11", "l_commitdate": "1992-11-27", "l_receiptdate": "1992-11-23", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "ong the pending hockey players. blithe" }, { "l_orderkey": 5697i32, "l_partkey": 56i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 42.0d, "l_extendedprice": 40154.1d, "l_discount": 0.03d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-12-19", "l_commitdate": "1992-12-08", "l_receiptdate": "1993-01-03", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "inal theodolites cajole after the bli" }, { "l_orderkey": 3680i32, "l_partkey": 56i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 33.0d, "l_extendedprice": 31549.65d, "l_discount": 0.09d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-03-16", "l_commitdate": "1993-02-19", "l_receiptdate": "1993-04-05", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "ts. ironic, fina" }, { "l_orderkey": 2272i32, "l_partkey": 56i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 36.0d, "l_extendedprice": 34417.8d, "l_discount": 0.03d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-05-25", "l_commitdate": "1993-05-23", "l_receiptdate": "1993-06-09", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "about the ironic packages; quickly iron" }, { "l_orderkey": 4129i32, "l_partkey": 56i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 32.0d, "l_extendedprice": 30593.6d, "l_discount": 0.03d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-09-16", "l_commitdate": "1993-08-25", "l_receiptdate": "1993-09-25", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "ckages haggl" }, { "l_orderkey": 2752i32, "l_partkey": 56i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 4.0d, "l_extendedprice": 3824.2d, "l_discount": 0.08d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-12-14", "l_commitdate": "1994-02-13", "l_receiptdate": "1994-01-05", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "telets haggle. regular, final " }, { "l_orderkey": 70i32, "l_partkey": 56i32, "l_suppkey": 8i32, "l_linenumber": 6i32, "l_quantity": 19.0d, "l_extendedprice": 18164.95d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-01-26", "l_commitdate": "1994-02-17", "l_receiptdate": "1994-02-06", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": " packages wake pending accounts." }, { "l_orderkey": 356i32, "l_partkey": 56i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 41.0d, "l_extendedprice": 39198.05d, "l_discount": 0.07d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-09-28", "l_commitdate": "1994-09-20", "l_receiptdate": "1994-10-07", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": " according to the express foxes will" }, { "l_orderkey": 5347i32, "l_partkey": 56i32, "l_suppkey": 1i32, "l_linenumber": 6i32, "l_quantity": 6.0d, "l_extendedprice": 5736.3d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-04-11", "l_commitdate": "1995-04-14", "l_receiptdate": "1995-05-02", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "lly unusual ideas. sl" }, { "l_orderkey": 3590i32, "l_partkey": 56i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 26.0d, "l_extendedprice": 24857.3d, "l_discount": 0.01d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-08", "l_commitdate": "1995-06-17", "l_receiptdate": "1995-08-02", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "arefully along th" }, { "l_orderkey": 903i32, "l_partkey": 56i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 9.0d, "l_extendedprice": 8604.45d, "l_discount": 0.09d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-06", "l_commitdate": "1995-09-14", "l_receiptdate": "1995-10-24", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "he slyly ev" }, { "l_orderkey": 2531i32, "l_partkey": 56i32, "l_suppkey": 4i32, "l_linenumber": 5i32, "l_quantity": 28.0d, "l_extendedprice": 26769.4d, "l_discount": 0.03d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-06", "l_commitdate": "1996-07-31", "l_receiptdate": "1996-07-19", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "its. busily" }, { "l_orderkey": 387i32, "l_partkey": 56i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 19.0d, "l_extendedprice": 18164.95d, "l_discount": 0.08d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-14", "l_commitdate": "1997-04-21", "l_receiptdate": "1997-04-04", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "gular dependencies" }, { "l_orderkey": 4421i32, "l_partkey": 56i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 46.0d, "l_extendedprice": 43978.3d, "l_discount": 0.04d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-21", "l_commitdate": "1997-05-13", "l_receiptdate": "1997-05-15", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "reful packages. bold, " }, { "l_orderkey": 4450i32, "l_partkey": 56i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 6.0d, "l_extendedprice": 5736.3d, "l_discount": 0.09d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-02", "l_commitdate": "1997-09-30", "l_receiptdate": "1997-09-09", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "eposits. foxes cajole unusual fox" }, { "l_orderkey": 5411i32, "l_partkey": 56i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 5.0d, "l_extendedprice": 4780.25d, "l_discount": 0.1d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-12", "l_commitdate": "1997-08-03", "l_receiptdate": "1997-09-23", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": " bold, ironic theodo" }, { "l_orderkey": 1638i32, "l_partkey": 56i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 19.0d, "l_extendedprice": 18164.95d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-10-15", "l_commitdate": "1997-10-27", "l_receiptdate": "1997-11-03", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": " quickly expres" }, { "l_orderkey": 708i32, "l_partkey": 56i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 5.0d, "l_extendedprice": 4780.25d, "l_discount": 0.07d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-22", "l_commitdate": "1998-08-15", "l_receiptdate": "1998-07-28", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "c pinto beans nag after the account" } ] }
-{ "partkey": 57i32, "lines": [ { "l_orderkey": 3271i32, "l_partkey": 57i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 30.0d, "l_extendedprice": 28711.5d, "l_discount": 0.01d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-01-16", "l_commitdate": "1992-03-20", "l_receiptdate": "1992-01-17", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "r the unusual Tiresia" }, { "l_orderkey": 194i32, "l_partkey": 57i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 8.0d, "l_extendedprice": 7656.4d, "l_discount": 0.04d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-07-06", "l_commitdate": "1992-06-25", "l_receiptdate": "1992-07-11", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "uriously unusual excuses" }, { "l_orderkey": 2146i32, "l_partkey": 57i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 42.0d, "l_extendedprice": 40196.1d, "l_discount": 0.1d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-09-21", "l_commitdate": "1992-11-02", "l_receiptdate": "1992-09-23", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "ns according to the doggedly " }, { "l_orderkey": 4096i32, "l_partkey": 57i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 17.0d, "l_extendedprice": 16269.85d, "l_discount": 0.07d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-09-30", "l_commitdate": "1992-08-11", "l_receiptdate": "1992-10-11", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "platelets alongside of the " }, { "l_orderkey": 2630i32, "l_partkey": 57i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 8.0d, "l_extendedprice": 7656.4d, "l_discount": 0.09d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-11-16", "l_commitdate": "1993-01-01", "l_receiptdate": "1992-12-07", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "indle fluffily silent, ironic pi" }, { "l_orderkey": 1345i32, "l_partkey": 57i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 31.0d, "l_extendedprice": 29668.55d, "l_discount": 0.08d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-12-02", "l_commitdate": "1992-12-29", "l_receiptdate": "1992-12-14", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": ". slyly silent accounts sublat" }, { "l_orderkey": 3778i32, "l_partkey": 57i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 21.0d, "l_extendedprice": 20098.05d, "l_discount": 0.01d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-05-27", "l_commitdate": "1993-07-10", "l_receiptdate": "1993-06-03", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "ts. blithely special theodoli" }, { "l_orderkey": 4007i32, "l_partkey": 57i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 32.0d, "l_extendedprice": 30625.6d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-09-30", "l_commitdate": "1993-08-16", "l_receiptdate": "1993-10-03", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "nal accounts across t" }, { "l_orderkey": 4034i32, "l_partkey": 57i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 47.0d, "l_extendedprice": 44981.35d, "l_discount": 0.07d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-01-27", "l_commitdate": "1993-12-26", "l_receiptdate": "1994-02-04", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "eodolites was slyly ironic ideas. de" }, { "l_orderkey": 3072i32, "l_partkey": 57i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 6.0d, "l_extendedprice": 5742.3d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-02-09", "l_commitdate": "1994-03-24", "l_receiptdate": "1994-02-28", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "gular requests abov" }, { "l_orderkey": 1189i32, "l_partkey": 57i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 22.0d, "l_extendedprice": 21055.1d, "l_discount": 0.05d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-06-09", "l_commitdate": "1994-06-29", "l_receiptdate": "1994-06-23", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "quickly unusual platelets lose forges. ca" }, { "l_orderkey": 837i32, "l_partkey": 57i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 39.0d, "l_extendedprice": 37324.95d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-07-22", "l_commitdate": "1994-08-10", "l_receiptdate": "1994-08-11", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "ecial pinto bea" }, { "l_orderkey": 962i32, "l_partkey": 57i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 36.0d, "l_extendedprice": 34453.8d, "l_discount": 0.01d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-08-09", "l_commitdate": "1994-07-10", "l_receiptdate": "1994-09-02", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "al foxes. iron" }, { "l_orderkey": 962i32, "l_partkey": 57i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 20.0d, "l_extendedprice": 19141.0d, "l_discount": 0.04d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-08-26", "l_commitdate": "1994-06-27", "l_receiptdate": "1994-09-11", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": " deposits use fluffily according to " }, { "l_orderkey": 548i32, "l_partkey": 57i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 21.0d, "l_extendedprice": 20098.05d, "l_discount": 0.08d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-10-27", "l_commitdate": "1994-12-04", "l_receiptdate": "1994-11-21", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": " engage quickly. regular theo" }, { "l_orderkey": 231i32, "l_partkey": 57i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 31.0d, "l_extendedprice": 29668.55d, "l_discount": 0.08d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-11-05", "l_commitdate": "1994-12-27", "l_receiptdate": "1994-11-30", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "iously special decoys wake q" }, { "l_orderkey": 1444i32, "l_partkey": 57i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 34.0d, "l_extendedprice": 32539.7d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-02-22", "l_commitdate": "1995-02-15", "l_receiptdate": "1995-03-19", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "y. doggedly pend" }, { "l_orderkey": 450i32, "l_partkey": 57i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 40.0d, "l_extendedprice": 38282.0d, "l_discount": 0.05d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-03-20", "l_commitdate": "1995-05-25", "l_receiptdate": "1995-04-14", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "ve. asymptote" }, { "l_orderkey": 3110i32, "l_partkey": 57i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 31.0d, "l_extendedprice": 29668.55d, "l_discount": 0.01d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-03-31", "l_commitdate": "1995-03-07", "l_receiptdate": "1995-04-21", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "en deposits. ironic" }, { "l_orderkey": 3975i32, "l_partkey": 57i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 38.0d, "l_extendedprice": 36367.9d, "l_discount": 0.01d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-02", "l_commitdate": "1995-06-18", "l_receiptdate": "1995-08-19", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "es are furiously: furi" }, { "l_orderkey": 805i32, "l_partkey": 57i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 29.0d, "l_extendedprice": 27754.45d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-24", "l_commitdate": "1995-08-15", "l_receiptdate": "1995-09-16", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "dolites according to the slyly f" }, { "l_orderkey": 964i32, "l_partkey": 57i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 49.0d, "l_extendedprice": 46895.45d, "l_discount": 0.01d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-06", "l_commitdate": "1995-08-10", "l_receiptdate": "1995-10-05", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "ounts. blithely regular packag" }, { "l_orderkey": 4672i32, "l_partkey": 57i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 13.0d, "l_extendedprice": 12441.65d, "l_discount": 0.1d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-02-02", "l_commitdate": "1995-12-13", "l_receiptdate": "1996-03-02", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "ar requests? pending accounts against" }, { "l_orderkey": 1664i32, "l_partkey": 57i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 9.0d, "l_extendedprice": 8613.45d, "l_discount": 0.07d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-04-15", "l_commitdate": "1996-05-14", "l_receiptdate": "1996-05-11", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "ges. fluffil" }, { "l_orderkey": 2215i32, "l_partkey": 57i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 30.0d, "l_extendedprice": 28711.5d, "l_discount": 0.07d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-09", "l_commitdate": "1996-07-20", "l_receiptdate": "1996-09-28", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "against the carefu" }, { "l_orderkey": 1924i32, "l_partkey": 57i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 40.0d, "l_extendedprice": 38282.0d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-31", "l_commitdate": "1996-11-30", "l_receiptdate": "1996-11-21", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "ains sleep carefully" }, { "l_orderkey": 4068i32, "l_partkey": 57i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 31.0d, "l_extendedprice": 29668.55d, "l_discount": 0.08d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-11", "l_commitdate": "1996-12-07", "l_receiptdate": "1996-12-30", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "ds wake carefully amon" }, { "l_orderkey": 5922i32, "l_partkey": 57i32, "l_suppkey": 5i32, "l_linenumber": 5i32, "l_quantity": 39.0d, "l_extendedprice": 37324.95d, "l_discount": 0.04d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-04", "l_commitdate": "1997-01-17", "l_receiptdate": "1997-03-25", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "e of the instructions. quick" }, { "l_orderkey": 1632i32, "l_partkey": 57i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 33.0d, "l_extendedprice": 31582.65d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-01", "l_commitdate": "1997-02-24", "l_receiptdate": "1997-04-29", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "ructions! slyly" }, { "l_orderkey": 3682i32, "l_partkey": 57i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 30.0d, "l_extendedprice": 28711.5d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-16", "l_commitdate": "1997-04-16", "l_receiptdate": "1997-04-29", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "he requests cajole quickly pending package" }, { "l_orderkey": 2404i32, "l_partkey": 57i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 19.0d, "l_extendedprice": 18183.95d, "l_discount": 0.09d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-07", "l_commitdate": "1997-05-24", "l_receiptdate": "1997-05-24", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "cuses. quickly even in" }, { "l_orderkey": 2177i32, "l_partkey": 57i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 46.0d, "l_extendedprice": 44024.3d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-10", "l_commitdate": "1997-02-23", "l_receiptdate": "1997-05-28", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "ending asymptotes." }, { "l_orderkey": 3270i32, "l_partkey": 57i32, "l_suppkey": 5i32, "l_linenumber": 6i32, "l_quantity": 29.0d, "l_extendedprice": 27754.45d, "l_discount": 0.01d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-22", "l_commitdate": "1997-08-17", "l_receiptdate": "1997-09-06", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "ptotes nag above the quickly bold deposits" }, { "l_orderkey": 582i32, "l_partkey": 57i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 7.0d, "l_extendedprice": 6699.35d, "l_discount": 0.07d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-11-16", "l_commitdate": "1997-11-29", "l_receiptdate": "1997-12-10", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "ithely unusual t" }, { "l_orderkey": 2372i32, "l_partkey": 57i32, "l_suppkey": 8i32, "l_linenumber": 7i32, "l_quantity": 19.0d, "l_extendedprice": 18183.95d, "l_discount": 0.01d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-26", "l_commitdate": "1998-02-19", "l_receiptdate": "1998-01-02", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": " beans haggle sometimes" }, { "l_orderkey": 198i32, "l_partkey": 57i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 33.0d, "l_extendedprice": 31582.65d, "l_discount": 0.07d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-05", "l_commitdate": "1998-03-20", "l_receiptdate": "1998-01-10", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "carefully caref" }, { "l_orderkey": 736i32, "l_partkey": 57i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 13.0d, "l_extendedprice": 12441.65d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-16", "l_commitdate": "1998-07-26", "l_receiptdate": "1998-08-19", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "st furiously among the " } ] }
-{ "partkey": 59i32, "lines": [ { "l_orderkey": 2688i32, "l_partkey": 59i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 22.0d, "l_extendedprice": 21099.1d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-02-09", "l_commitdate": "1992-04-09", "l_receiptdate": "1992-02-11", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "press, ironic excuses wake carefully id" }, { "l_orderkey": 4998i32, "l_partkey": 59i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 27.0d, "l_extendedprice": 25894.35d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-03-17", "l_commitdate": "1992-02-26", "l_receiptdate": "1992-04-05", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "the blithely ironic " }, { "l_orderkey": 3845i32, "l_partkey": 59i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 17.0d, "l_extendedprice": 16303.85d, "l_discount": 0.08d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-06-12", "l_commitdate": "1992-07-05", "l_receiptdate": "1992-06-26", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "counts haggle. reg" }, { "l_orderkey": 1282i32, "l_partkey": 59i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 19.0d, "l_extendedprice": 18221.95d, "l_discount": 0.0d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-06-20", "l_commitdate": "1992-04-17", "l_receiptdate": "1992-07-05", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "nto beans. carefully close theodo" }, { "l_orderkey": 3906i32, "l_partkey": 59i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 36.0d, "l_extendedprice": 34525.8d, "l_discount": 0.08d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-08-07", "l_commitdate": "1992-08-08", "l_receiptdate": "1992-08-24", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "y. ironic deposits haggle sl" }, { "l_orderkey": 967i32, "l_partkey": 59i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 41.0d, "l_extendedprice": 39321.05d, "l_discount": 0.05d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-09-21", "l_commitdate": "1992-08-15", "l_receiptdate": "1992-10-21", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "ld foxes wake closely special" }, { "l_orderkey": 674i32, "l_partkey": 59i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 4.0d, "l_extendedprice": 3836.2d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-10-05", "l_commitdate": "1992-11-22", "l_receiptdate": "1992-10-22", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "ly express pinto beans sleep car" }, { "l_orderkey": 4099i32, "l_partkey": 59i32, "l_suppkey": 10i32, "l_linenumber": 6i32, "l_quantity": 39.0d, "l_extendedprice": 37402.95d, "l_discount": 0.07d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-12-13", "l_commitdate": "1992-11-13", "l_receiptdate": "1992-12-26", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "fluffy accounts impress pending, iro" }, { "l_orderkey": 3521i32, "l_partkey": 59i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 48.0d, "l_extendedprice": 46034.4d, "l_discount": 0.09d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-01-03", "l_commitdate": "1992-12-31", "l_receiptdate": "1993-01-22", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "ses use. furiously express ideas wake f" }, { "l_orderkey": 1571i32, "l_partkey": 59i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 18.0d, "l_extendedprice": 17262.9d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-01-09", "l_commitdate": "1993-01-12", "l_receiptdate": "1993-01-31", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": " pending grouches " }, { "l_orderkey": 165i32, "l_partkey": 59i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 15.0d, "l_extendedprice": 14385.75d, "l_discount": 0.0d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-04-10", "l_commitdate": "1993-03-29", "l_receiptdate": "1993-05-01", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": " bold packages mainta" }, { "l_orderkey": 5569i32, "l_partkey": 59i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 15.0d, "l_extendedprice": 14385.75d, "l_discount": 0.02d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-06-29", "l_commitdate": "1993-07-06", "l_receiptdate": "1993-07-05", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "lithely bold requests boost fur" }, { "l_orderkey": 5472i32, "l_partkey": 59i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 27.0d, "l_extendedprice": 25894.35d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-08-04", "l_commitdate": "1993-07-07", "l_receiptdate": "1993-09-03", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "fily pending attainments. unus" }, { "l_orderkey": 2759i32, "l_partkey": 59i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 10.0d, "l_extendedprice": 9590.5d, "l_discount": 0.1d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-12-14", "l_commitdate": "1994-01-08", "l_receiptdate": "1994-01-01", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "s. busily ironic theodo" }, { "l_orderkey": 677i32, "l_partkey": 59i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 32.0d, "l_extendedprice": 30689.6d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-01-06", "l_commitdate": "1994-01-31", "l_receiptdate": "1994-02-02", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "slyly final" }, { "l_orderkey": 5957i32, "l_partkey": 59i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 46.0d, "l_extendedprice": 44116.3d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-01-23", "l_commitdate": "1994-01-30", "l_receiptdate": "1994-02-07", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "platelets. furiously unusual requests " }, { "l_orderkey": 1249i32, "l_partkey": 59i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 49.0d, "l_extendedprice": 46993.45d, "l_discount": 0.07d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-03-03", "l_commitdate": "1994-02-28", "l_receiptdate": "1994-03-08", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "ffily express theodo" }, { "l_orderkey": 2816i32, "l_partkey": 59i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 33.0d, "l_extendedprice": 31648.65d, "l_discount": 0.0d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-10-19", "l_commitdate": "1994-11-10", "l_receiptdate": "1994-11-09", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "s; slyly even theodo" }, { "l_orderkey": 2791i32, "l_partkey": 59i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 49.0d, "l_extendedprice": 46993.45d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-01-11", "l_commitdate": "1994-11-10", "l_receiptdate": "1995-02-08", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": " accounts sleep at the bold, regular pinto " }, { "l_orderkey": 5444i32, "l_partkey": 59i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 33.0d, "l_extendedprice": 31648.65d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-06-24", "l_commitdate": "1995-04-24", "l_receiptdate": "1995-07-13", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "ut the courts cajole blithely excuses" }, { "l_orderkey": 5696i32, "l_partkey": 59i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 46.0d, "l_extendedprice": 44116.3d, "l_discount": 0.01d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-10", "l_commitdate": "1995-07-08", "l_receiptdate": "1995-08-25", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "ter the instruct" }, { "l_orderkey": 4672i32, "l_partkey": 59i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 22.0d, "l_extendedprice": 21099.1d, "l_discount": 0.01d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-03", "l_commitdate": "1995-12-08", "l_receiptdate": "1995-12-17", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "l instructions. blithely ironic packages " }, { "l_orderkey": 2945i32, "l_partkey": 59i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 37.0d, "l_extendedprice": 35484.85d, "l_discount": 0.0d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-02-10", "l_commitdate": "1996-03-20", "l_receiptdate": "1996-02-12", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "l instructions. regular, regular " }, { "l_orderkey": 262i32, "l_partkey": 59i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 35.0d, "l_extendedprice": 33566.75d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-12", "l_commitdate": "1996-02-14", "l_receiptdate": "1996-04-11", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "lites cajole along the pending packag" }, { "l_orderkey": 354i32, "l_partkey": 59i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 50.0d, "l_extendedprice": 47952.5d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-21", "l_commitdate": "1996-05-20", "l_receiptdate": "1996-04-04", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "to beans s" }, { "l_orderkey": 1284i32, "l_partkey": 59i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 1.0d, "l_extendedprice": 959.05d, "l_discount": 0.01d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-04-28", "l_commitdate": "1996-04-02", "l_receiptdate": "1996-05-08", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "al packages use carefully express de" }, { "l_orderkey": 1510i32, "l_partkey": 59i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 27.0d, "l_extendedprice": 25894.35d, "l_discount": 0.08d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-20", "l_commitdate": "1996-12-05", "l_receiptdate": "1996-11-02", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "he blithely regular req" }, { "l_orderkey": 2406i32, "l_partkey": 59i32, "l_suppkey": 4i32, "l_linenumber": 6i32, "l_quantity": 22.0d, "l_extendedprice": 21099.1d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-22", "l_commitdate": "1997-01-17", "l_receiptdate": "1996-12-15", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "hely even foxes unwind furiously aga" }, { "l_orderkey": 3429i32, "l_partkey": 59i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 15.0d, "l_extendedprice": 14385.75d, "l_discount": 0.03d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-04", "l_commitdate": "1997-03-09", "l_receiptdate": "1997-03-01", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "beans are fu" }, { "l_orderkey": 1890i32, "l_partkey": 59i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 24.0d, "l_extendedprice": 23017.2d, "l_discount": 0.06d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-09", "l_commitdate": "1997-02-10", "l_receiptdate": "1997-02-12", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "is wake carefully above the even id" }, { "l_orderkey": 3620i32, "l_partkey": 59i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 41.0d, "l_extendedprice": 39321.05d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-21", "l_commitdate": "1997-04-20", "l_receiptdate": "1997-03-30", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "t attainments cajole qui" }, { "l_orderkey": 5923i32, "l_partkey": 59i32, "l_suppkey": 4i32, "l_linenumber": 5i32, "l_quantity": 35.0d, "l_extendedprice": 33566.75d, "l_discount": 0.04d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-21", "l_commitdate": "1997-07-11", "l_receiptdate": "1997-08-01", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "sts affix unusual, final requests. request" }, { "l_orderkey": 5157i32, "l_partkey": 59i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 25.0d, "l_extendedprice": 23976.25d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-24", "l_commitdate": "1997-09-23", "l_receiptdate": "1997-08-28", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": " packages detect. even requests against th" }, { "l_orderkey": 1667i32, "l_partkey": 59i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 24.0d, "l_extendedprice": 23017.2d, "l_discount": 0.04d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-10-14", "l_commitdate": "1997-12-01", "l_receiptdate": "1997-11-09", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "hrash final requests. care" }, { "l_orderkey": 935i32, "l_partkey": 59i32, "l_suppkey": 1i32, "l_linenumber": 6i32, "l_quantity": 1.0d, "l_extendedprice": 959.05d, "l_discount": 0.01d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-14", "l_commitdate": "1997-11-22", "l_receiptdate": "1998-01-08", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": " instructions. ironic acc" }, { "l_orderkey": 2087i32, "l_partkey": 59i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 6.0d, "l_extendedprice": 5754.3d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-23", "l_commitdate": "1998-03-27", "l_receiptdate": "1998-05-18", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "dazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the s" }, { "l_orderkey": 1605i32, "l_partkey": 59i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 39.0d, "l_extendedprice": 37402.95d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-12", "l_commitdate": "1998-06-05", "l_receiptdate": "1998-08-09", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "nal dependencies-- quickly final frets acc" } ] }
-{ "partkey": 62i32, "lines": [ { "l_orderkey": 1248i32, "l_partkey": 62i32, "l_suppkey": 9i32, "l_linenumber": 6i32, "l_quantity": 30.0d, "l_extendedprice": 28861.8d, "l_discount": 0.1d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-02-01", "l_commitdate": "1992-03-24", "l_receiptdate": "1992-02-08", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "fily special foxes kindle am" }, { "l_orderkey": 5382i32, "l_partkey": 62i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 20.0d, "l_extendedprice": 19241.2d, "l_discount": 0.08d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-03-26", "l_commitdate": "1992-02-17", "l_receiptdate": "1992-04-15", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "carefully regular accounts. slyly ev" }, { "l_orderkey": 4483i32, "l_partkey": 62i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 50.0d, "l_extendedprice": 48103.0d, "l_discount": 0.01d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-06-19", "l_commitdate": "1992-05-12", "l_receiptdate": "1992-07-08", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "ag blithely even" }, { "l_orderkey": 3907i32, "l_partkey": 62i32, "l_suppkey": 3i32, "l_linenumber": 5i32, "l_quantity": 22.0d, "l_extendedprice": 21165.32d, "l_discount": 0.09d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-09-20", "l_commitdate": "1992-10-30", "l_receiptdate": "1992-09-29", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "ly. furiously unusual deposits use afte" }, { "l_orderkey": 5378i32, "l_partkey": 62i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 46.0d, "l_extendedprice": 44254.76d, "l_discount": 0.01d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-02-17", "l_commitdate": "1993-01-20", "l_receiptdate": "1993-02-26", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "into beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto bea" }, { "l_orderkey": 33i32, "l_partkey": 62i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 31.0d, "l_extendedprice": 29823.86d, "l_discount": 0.09d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-10-29", "l_commitdate": "1993-12-19", "l_receiptdate": "1993-11-08", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "ng to the furiously ironic package" }, { "l_orderkey": 1287i32, "l_partkey": 62i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 10.0d, "l_extendedprice": 9620.6d, "l_discount": 0.01d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-09-03", "l_commitdate": "1994-08-12", "l_receiptdate": "1994-09-16", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "ding, regular accounts" }, { "l_orderkey": 5955i32, "l_partkey": 62i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 15.0d, "l_extendedprice": 14430.9d, "l_discount": 0.08d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-04-22", "l_commitdate": "1995-05-28", "l_receiptdate": "1995-04-27", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "y final accounts above the regu" }, { "l_orderkey": 513i32, "l_partkey": 62i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 20.0d, "l_extendedprice": 19241.2d, "l_discount": 0.09d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-12", "l_commitdate": "1995-05-31", "l_receiptdate": "1995-07-31", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "efully ironic ideas doze slyl" }, { "l_orderkey": 3393i32, "l_partkey": 62i32, "l_suppkey": 7i32, "l_linenumber": 6i32, "l_quantity": 17.0d, "l_extendedprice": 16355.02d, "l_discount": 0.04d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-15", "l_commitdate": "1995-09-07", "l_receiptdate": "1995-09-10", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "kly ironic deposits could" }, { "l_orderkey": 4070i32, "l_partkey": 62i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 11.0d, "l_extendedprice": 10582.66d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-23", "l_commitdate": "1995-08-15", "l_receiptdate": "1995-08-31", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": " carefully final pack" }, { "l_orderkey": 354i32, "l_partkey": 62i32, "l_suppkey": 1i32, "l_linenumber": 6i32, "l_quantity": 36.0d, "l_extendedprice": 34634.16d, "l_discount": 0.03d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-19", "l_commitdate": "1996-05-29", "l_receiptdate": "1996-03-30", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "onic requests thrash bold g" }, { "l_orderkey": 482i32, "l_partkey": 62i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 31.0d, "l_extendedprice": 29823.86d, "l_discount": 0.04d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-01", "l_commitdate": "1996-05-06", "l_receiptdate": "1996-06-17", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": " blithe pin" }, { "l_orderkey": 5888i32, "l_partkey": 62i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 46.0d, "l_extendedprice": 44254.76d, "l_discount": 0.02d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-18", "l_commitdate": "1996-11-05", "l_receiptdate": "1996-12-08", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "yly final accounts hag" }, { "l_orderkey": 3936i32, "l_partkey": 62i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 12.0d, "l_extendedprice": 11544.72d, "l_discount": 0.06d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-25", "l_commitdate": "1997-01-09", "l_receiptdate": "1996-12-06", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "ithely across the carefully brave req" }, { "l_orderkey": 1511i32, "l_partkey": 62i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 32.0d, "l_extendedprice": 30785.92d, "l_discount": 0.04d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-06", "l_commitdate": "1997-03-21", "l_receiptdate": "1997-01-26", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": " deposits. carefully ironi" }, { "l_orderkey": 4453i32, "l_partkey": 62i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 48.0d, "l_extendedprice": 46178.88d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-29", "l_commitdate": "1997-06-24", "l_receiptdate": "1997-06-03", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "eep. fluffily express accounts at the furi" }, { "l_orderkey": 102i32, "l_partkey": 62i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 15.0d, "l_extendedprice": 14430.9d, "l_discount": 0.07d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-02", "l_commitdate": "1997-07-13", "l_receiptdate": "1997-06-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "final packages. carefully even excu" }, { "l_orderkey": 4450i32, "l_partkey": 62i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 13.0d, "l_extendedprice": 12506.78d, "l_discount": 0.0d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-26", "l_commitdate": "1997-09-18", "l_receiptdate": "1997-09-20", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": " brave foxes. slyly unusual" }, { "l_orderkey": 5602i32, "l_partkey": 62i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 31.0d, "l_extendedprice": 29823.86d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-04", "l_commitdate": "1997-10-24", "l_receiptdate": "1997-09-07", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "rate fluffily regular platelets. blithel" }, { "l_orderkey": 5027i32, "l_partkey": 62i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 39.0d, "l_extendedprice": 37520.34d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-09", "l_commitdate": "1997-11-13", "l_receiptdate": "1997-09-21", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "ess requests! quickly regular pac" }, { "l_orderkey": 71i32, "l_partkey": 62i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 25.0d, "l_extendedprice": 24051.5d, "l_discount": 0.09d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-10", "l_commitdate": "1998-04-22", "l_receiptdate": "1998-04-11", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "ckly. slyly" }, { "l_orderkey": 5536i32, "l_partkey": 62i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 20.0d, "l_extendedprice": 19241.2d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-08", "l_commitdate": "1998-05-10", "l_receiptdate": "1998-05-31", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "equests mo" }, { "l_orderkey": 2087i32, "l_partkey": 62i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 1.0d, "l_extendedprice": 962.06d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-27", "l_commitdate": "1998-04-11", "l_receiptdate": "1998-06-12", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "hely final acc" } ] }
-{ "partkey": 63i32, "lines": [ { "l_orderkey": 4998i32, "l_partkey": 63i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 47.0d, "l_extendedprice": 45263.82d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-02-07", "l_commitdate": "1992-03-07", "l_receiptdate": "1992-02-19", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "mong the careful" }, { "l_orderkey": 3650i32, "l_partkey": 63i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 31.0d, "l_extendedprice": 29854.86d, "l_discount": 0.1d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-06-15", "l_commitdate": "1992-07-01", "l_receiptdate": "1992-07-15", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": " against the ironic accounts cajol" }, { "l_orderkey": 4545i32, "l_partkey": 63i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 27.0d, "l_extendedprice": 26002.62d, "l_discount": 0.01d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-02-07", "l_commitdate": "1993-02-18", "l_receiptdate": "1993-02-18", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "ously bold asymptotes! blithely pen" }, { "l_orderkey": 3461i32, "l_partkey": 63i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 27.0d, "l_extendedprice": 26002.62d, "l_discount": 0.06d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-02-10", "l_commitdate": "1993-03-02", "l_receiptdate": "1993-03-04", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "ely unusual deposits. quickly ir" }, { "l_orderkey": 5381i32, "l_partkey": 63i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 49.0d, "l_extendedprice": 47189.94d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-05-08", "l_commitdate": "1993-04-07", "l_receiptdate": "1993-06-03", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": " accounts. regular, regula" }, { "l_orderkey": 3104i32, "l_partkey": 63i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 11.0d, "l_extendedprice": 10593.66d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-10-05", "l_commitdate": "1993-11-30", "l_receiptdate": "1993-10-27", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": " special deposits u" }, { "l_orderkey": 1863i32, "l_partkey": 63i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 48.0d, "l_extendedprice": 46226.88d, "l_discount": 0.09d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-10-10", "l_commitdate": "1993-12-09", "l_receiptdate": "1993-10-19", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "ans hinder furiou" }, { "l_orderkey": 3i32, "l_partkey": 63i32, "l_suppkey": 8i32, "l_linenumber": 6i32, "l_quantity": 26.0d, "l_extendedprice": 25039.56d, "l_discount": 0.1d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-10-29", "l_commitdate": "1993-12-18", "l_receiptdate": "1993-11-04", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "ges sleep after the caref" }, { "l_orderkey": 5702i32, "l_partkey": 63i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 31.0d, "l_extendedprice": 29854.86d, "l_discount": 0.0d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-01-04", "l_commitdate": "1993-10-22", "l_receiptdate": "1994-01-26", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "pinto beans. blithely " }, { "l_orderkey": 1986i32, "l_partkey": 63i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 14.0d, "l_extendedprice": 13482.84d, "l_discount": 0.04d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-07-14", "l_commitdate": "1994-06-19", "l_receiptdate": "1994-08-08", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "the packages. pending, unusual" }, { "l_orderkey": 2886i32, "l_partkey": 63i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 2.0d, "l_extendedprice": 1926.12d, "l_discount": 0.04d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-11-18", "l_commitdate": "1995-01-31", "l_receiptdate": "1994-12-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "ar theodolites. e" }, { "l_orderkey": 4451i32, "l_partkey": 63i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 34.0d, "l_extendedprice": 32744.04d, "l_discount": 0.1d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-11-30", "l_commitdate": "1994-12-04", "l_receiptdate": "1994-12-13", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": " regular ideas." }, { "l_orderkey": 2791i32, "l_partkey": 63i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 4.0d, "l_extendedprice": 3852.24d, "l_discount": 0.1d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-01-02", "l_commitdate": "1994-12-28", "l_receiptdate": "1995-01-29", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "slyly bold packages boost. slyly" }, { "l_orderkey": 4769i32, "l_partkey": 63i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 34.0d, "l_extendedprice": 32744.04d, "l_discount": 0.06d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-26", "l_commitdate": "1995-05-18", "l_receiptdate": "1995-08-03", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "ven instructions. ca" }, { "l_orderkey": 5575i32, "l_partkey": 63i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 16.0d, "l_extendedprice": 15408.96d, "l_discount": 0.0d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-17", "l_commitdate": "1995-10-14", "l_receiptdate": "1995-08-30", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "jole boldly beyond the final as" }, { "l_orderkey": 4871i32, "l_partkey": 63i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 3.0d, "l_extendedprice": 2889.18d, "l_discount": 0.03d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-03", "l_commitdate": "1995-08-10", "l_receiptdate": "1995-10-06", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "y special packages wak" }, { "l_orderkey": 3460i32, "l_partkey": 63i32, "l_suppkey": 10i32, "l_linenumber": 6i32, "l_quantity": 46.0d, "l_extendedprice": 44300.76d, "l_discount": 0.03d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-27", "l_commitdate": "1996-01-01", "l_receiptdate": "1996-02-01", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "uses run among the carefully even deposits" }, { "l_orderkey": 4130i32, "l_partkey": 63i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 2.0d, "l_extendedprice": 1926.12d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-19", "l_commitdate": "1996-04-24", "l_receiptdate": "1996-06-17", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "uriously regular instructions around th" }, { "l_orderkey": 4160i32, "l_partkey": 63i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 48.0d, "l_extendedprice": 46226.88d, "l_discount": 0.04d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-19", "l_commitdate": "1996-11-02", "l_receiptdate": "1996-09-24", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": " unusual dolphins " }, { "l_orderkey": 2016i32, "l_partkey": 63i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 15.0d, "l_extendedprice": 14445.9d, "l_discount": 0.04d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-24", "l_commitdate": "1996-10-05", "l_receiptdate": "1996-10-21", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "uests haggle carefully furiously regul" }, { "l_orderkey": 3264i32, "l_partkey": 63i32, "l_suppkey": 4i32, "l_linenumber": 5i32, "l_quantity": 6.0d, "l_extendedprice": 5778.36d, "l_discount": 0.04d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-10", "l_commitdate": "1996-12-05", "l_receiptdate": "1996-11-22", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "press packages. ironical" }, { "l_orderkey": 869i32, "l_partkey": 63i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 27.0d, "l_extendedprice": 26002.62d, "l_discount": 0.07d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-30", "l_commitdate": "1997-02-17", "l_receiptdate": "1997-02-26", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "uffily even excuses? slyly even deposits " }, { "l_orderkey": 2624i32, "l_partkey": 63i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 15.0d, "l_extendedprice": 14445.9d, "l_discount": 0.03d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-28", "l_commitdate": "1997-02-19", "l_receiptdate": "1997-03-21", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "le. quickly pending requests" }, { "l_orderkey": 1636i32, "l_partkey": 63i32, "l_suppkey": 2i32, "l_linenumber": 6i32, "l_quantity": 34.0d, "l_extendedprice": 32744.04d, "l_discount": 0.1d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-11", "l_commitdate": "1997-09-09", "l_receiptdate": "1997-08-23", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "ular depos" }, { "l_orderkey": 3618i32, "l_partkey": 63i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 24.0d, "l_extendedprice": 23113.44d, "l_discount": 0.01d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-26", "l_commitdate": "1998-01-15", "l_receiptdate": "1998-02-17", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "xpress acc" }, { "l_orderkey": 100i32, "l_partkey": 63i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 28.0d, "l_extendedprice": 26965.68d, "l_discount": 0.04d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-08", "l_commitdate": "1998-05-13", "l_receiptdate": "1998-06-07", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "sts haggle. slowl" } ] }
-{ "partkey": 64i32, "lines": [ { "l_orderkey": 2755i32, "l_partkey": 64i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 21.0d, "l_extendedprice": 20245.26d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-02-13", "l_commitdate": "1992-04-20", "l_receiptdate": "1992-03-02", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "furious re" }, { "l_orderkey": 5409i32, "l_partkey": 64i32, "l_suppkey": 3i32, "l_linenumber": 6i32, "l_quantity": 14.0d, "l_extendedprice": 13496.84d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-02-14", "l_commitdate": "1992-03-26", "l_receiptdate": "1992-02-29", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "osits cajole furiously" }, { "l_orderkey": 3271i32, "l_partkey": 64i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 29.0d, "l_extendedprice": 27957.74d, "l_discount": 0.07d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-03-10", "l_commitdate": "1992-02-05", "l_receiptdate": "1992-03-14", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "lar instructions. carefully regular" }, { "l_orderkey": 3712i32, "l_partkey": 64i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 44.0d, "l_extendedprice": 42418.64d, "l_discount": 0.01d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-03-26", "l_commitdate": "1992-02-19", "l_receiptdate": "1992-04-18", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "ously permanently regular req" }, { "l_orderkey": 384i32, "l_partkey": 64i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 49.0d, "l_extendedprice": 47238.94d, "l_discount": 0.09d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-04-01", "l_commitdate": "1992-04-25", "l_receiptdate": "1992-04-18", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "refully carefully ironic instructions. bl" }, { "l_orderkey": 2209i32, "l_partkey": 64i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 11.0d, "l_extendedprice": 10604.66d, "l_discount": 0.01d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-07-12", "l_commitdate": "1992-08-24", "l_receiptdate": "1992-08-10", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "express, regular pinto be" }, { "l_orderkey": 3172i32, "l_partkey": 64i32, "l_suppkey": 5i32, "l_linenumber": 5i32, "l_quantity": 31.0d, "l_extendedprice": 29885.86d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-09-01", "l_commitdate": "1992-08-27", "l_receiptdate": "1992-09-23", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": ". slyly regular dependencies haggle quiet" }, { "l_orderkey": 2213i32, "l_partkey": 64i32, "l_suppkey": 9i32, "l_linenumber": 7i32, "l_quantity": 3.0d, "l_extendedprice": 2892.18d, "l_discount": 0.02d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-03-09", "l_commitdate": "1993-03-17", "l_receiptdate": "1993-04-07", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "o wake. ironic platel" }, { "l_orderkey": 4545i32, "l_partkey": 64i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 2.0d, "l_extendedprice": 1928.12d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-04-16", "l_commitdate": "1993-04-17", "l_receiptdate": "1993-05-03", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "ages use. slyly even i" }, { "l_orderkey": 4037i32, "l_partkey": 64i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 32.0d, "l_extendedprice": 30849.92d, "l_discount": 0.0d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-05-06", "l_commitdate": "1993-06-08", "l_receiptdate": "1993-05-31", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "e of the pending, iron" }, { "l_orderkey": 4004i32, "l_partkey": 64i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 47.0d, "l_extendedprice": 45310.82d, "l_discount": 0.07d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-06-25", "l_commitdate": "1993-08-03", "l_receiptdate": "1993-07-12", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "thely instead of the even, unu" }, { "l_orderkey": 3331i32, "l_partkey": 64i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 9.0d, "l_extendedprice": 8676.54d, "l_discount": 0.08d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-07-18", "l_commitdate": "1993-07-03", "l_receiptdate": "1993-08-16", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "odolites. bold accounts" }, { "l_orderkey": 2628i32, "l_partkey": 64i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 42.0d, "l_extendedprice": 40490.52d, "l_discount": 0.0d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-11-20", "l_commitdate": "1994-01-04", "l_receiptdate": "1993-12-19", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "ld notornis alongside " }, { "l_orderkey": 3653i32, "l_partkey": 64i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 29.0d, "l_extendedprice": 27957.74d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-04-11", "l_commitdate": "1994-06-11", "l_receiptdate": "1994-04-29", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "ording to the special, final" }, { "l_orderkey": 352i32, "l_partkey": 64i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 17.0d, "l_extendedprice": 16389.02d, "l_discount": 0.07d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-06-02", "l_commitdate": "1994-05-31", "l_receiptdate": "1994-06-29", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "pending deposits sleep furiously " }, { "l_orderkey": 577i32, "l_partkey": 64i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 14.0d, "l_extendedprice": 13496.84d, "l_discount": 0.08d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-03-19", "l_commitdate": "1995-02-25", "l_receiptdate": "1995-04-09", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "l accounts wake deposits. ironic packa" }, { "l_orderkey": 3266i32, "l_partkey": 64i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 31.0d, "l_extendedprice": 29885.86d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-06-19", "l_commitdate": "1995-05-04", "l_receiptdate": "1995-07-06", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "grate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate am" }, { "l_orderkey": 1541i32, "l_partkey": 64i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 44.0d, "l_extendedprice": 42418.64d, "l_discount": 0.1d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-24", "l_commitdate": "1995-07-13", "l_receiptdate": "1995-08-26", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "o beans boost fluffily abou" }, { "l_orderkey": 4676i32, "l_partkey": 64i32, "l_suppkey": 1i32, "l_linenumber": 7i32, "l_quantity": 13.0d, "l_extendedprice": 12532.78d, "l_discount": 0.05d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-18", "l_commitdate": "1995-11-07", "l_receiptdate": "1995-12-10", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": " at the slyly bold attainments. silently e" }, { "l_orderkey": 1666i32, "l_partkey": 64i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 20.0d, "l_extendedprice": 19281.2d, "l_discount": 0.01d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-27", "l_commitdate": "1995-12-12", "l_receiptdate": "1996-01-31", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "uietly regular foxes wake quick" }, { "l_orderkey": 1i32, "l_partkey": 64i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 8.0d, "l_extendedprice": 7712.48d, "l_discount": 0.1d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-29", "l_commitdate": "1996-03-05", "l_receiptdate": "1996-01-31", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "riously. regular, express dep" }, { "l_orderkey": 4704i32, "l_partkey": 64i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 44.0d, "l_extendedprice": 42418.64d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-02", "l_commitdate": "1996-10-07", "l_receiptdate": "1996-09-17", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "out the care" }, { "l_orderkey": 5540i32, "l_partkey": 64i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 19.0d, "l_extendedprice": 18317.14d, "l_discount": 0.01d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-06", "l_commitdate": "1996-11-18", "l_receiptdate": "1997-02-20", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": " slyly slyl" }, { "l_orderkey": 581i32, "l_partkey": 64i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 41.0d, "l_extendedprice": 39526.46d, "l_discount": 0.09d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-26", "l_commitdate": "1997-04-06", "l_receiptdate": "1997-06-10", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "nts. quickly" }, { "l_orderkey": 2470i32, "l_partkey": 64i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 10.0d, "l_extendedprice": 9640.6d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-20", "l_commitdate": "1997-06-19", "l_receiptdate": "1997-06-24", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": " ironic requests a" }, { "l_orderkey": 3520i32, "l_partkey": 64i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 41.0d, "l_extendedprice": 39526.46d, "l_discount": 0.01d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-06", "l_commitdate": "1997-09-20", "l_receiptdate": "1997-08-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": " carefully pendi" }, { "l_orderkey": 4832i32, "l_partkey": 64i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 6.0d, "l_extendedprice": 5784.36d, "l_discount": 0.02d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-08", "l_commitdate": "1998-02-03", "l_receiptdate": "1997-12-10", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "ages cajole after the bold requests. furi" }, { "l_orderkey": 4039i32, "l_partkey": 64i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 9.0d, "l_extendedprice": 8676.54d, "l_discount": 0.1d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-08", "l_commitdate": "1998-02-05", "l_receiptdate": "1998-04-05", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "t? pinto beans cajole across the thinly r" }, { "l_orderkey": 3717i32, "l_partkey": 64i32, "l_suppkey": 1i32, "l_linenumber": 6i32, "l_quantity": 38.0d, "l_extendedprice": 36634.28d, "l_discount": 0.01d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-10", "l_commitdate": "1998-07-08", "l_receiptdate": "1998-07-29", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "ly about the car" }, { "l_orderkey": 5826i32, "l_partkey": 64i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 18.0d, "l_extendedprice": 17353.08d, "l_discount": 0.04d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-17", "l_commitdate": "1998-09-03", "l_receiptdate": "1998-07-22", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "atelets use above t" }, { "l_orderkey": 2407i32, "l_partkey": 64i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 14.0d, "l_extendedprice": 13496.84d, "l_discount": 0.04d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-10-10", "l_commitdate": "1998-08-25", "l_receiptdate": "1998-10-27", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "l dependencies s" } ] }
-{ "partkey": 65i32, "lines": [ { "l_orderkey": 4804i32, "l_partkey": 65i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 33.0d, "l_extendedprice": 31846.98d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-03-02", "l_commitdate": "1992-04-14", "l_receiptdate": "1992-03-13", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": ", thin excuses. " }, { "l_orderkey": 2848i32, "l_partkey": 65i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 44.0d, "l_extendedprice": 42462.64d, "l_discount": 0.01d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-04-14", "l_commitdate": "1992-05-09", "l_receiptdate": "1992-04-19", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "ions. slyly express instructions n" }, { "l_orderkey": 5095i32, "l_partkey": 65i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 46.0d, "l_extendedprice": 44392.76d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-06-26", "l_commitdate": "1992-06-25", "l_receiptdate": "1992-07-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "egular instruction" }, { "l_orderkey": 4805i32, "l_partkey": 65i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 13.0d, "l_extendedprice": 12545.78d, "l_discount": 0.04d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-07-16", "l_commitdate": "1992-06-07", "l_receiptdate": "1992-08-10", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "its serve about the accounts. slyly regu" }, { "l_orderkey": 388i32, "l_partkey": 65i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 40.0d, "l_extendedprice": 38602.4d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-12-24", "l_commitdate": "1993-01-28", "l_receiptdate": "1993-01-19", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "quests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests a" }, { "l_orderkey": 1409i32, "l_partkey": 65i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 36.0d, "l_extendedprice": 34742.16d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-01-27", "l_commitdate": "1993-01-31", "l_receiptdate": "1993-02-07", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "ncies sleep carefully r" }, { "l_orderkey": 2503i32, "l_partkey": 65i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 28.0d, "l_extendedprice": 27021.68d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-08-08", "l_commitdate": "1993-08-31", "l_receiptdate": "1993-08-10", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "s wake quickly slyly " }, { "l_orderkey": 70i32, "l_partkey": 65i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 8.0d, "l_extendedprice": 7720.48d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-01-12", "l_commitdate": "1994-02-27", "l_receiptdate": "1994-01-14", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "ggle. carefully pending dependenc" }, { "l_orderkey": 2563i32, "l_partkey": 65i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 10.0d, "l_extendedprice": 9650.6d, "l_discount": 0.07d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-01-26", "l_commitdate": "1993-12-19", "l_receiptdate": "1994-01-28", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "tealthily abo" }, { "l_orderkey": 3751i32, "l_partkey": 65i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 45.0d, "l_extendedprice": 43427.7d, "l_discount": 0.08d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-05-27", "l_commitdate": "1994-06-19", "l_receiptdate": "1994-06-14", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "according to " }, { "l_orderkey": 994i32, "l_partkey": 65i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 4.0d, "l_extendedprice": 3860.24d, "l_discount": 0.07d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-07-05", "l_commitdate": "1994-05-21", "l_receiptdate": "1994-07-20", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "aggle carefully acc" }, { "l_orderkey": 3553i32, "l_partkey": 65i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 26.0d, "l_extendedprice": 25091.56d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-08-06", "l_commitdate": "1994-07-30", "l_receiptdate": "1994-08-23", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "fily special p" }, { "l_orderkey": 5539i32, "l_partkey": 65i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 42.0d, "l_extendedprice": 40532.52d, "l_discount": 0.1d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-09-29", "l_commitdate": "1994-09-17", "l_receiptdate": "1994-10-20", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "ons across the carefully si" }, { "l_orderkey": 1030i32, "l_partkey": 65i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 17.0d, "l_extendedprice": 16406.02d, "l_discount": 0.06d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-10-13", "l_commitdate": "1994-08-01", "l_receiptdate": "1994-11-10", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "ly. carefully even packages dazz" }, { "l_orderkey": 5376i32, "l_partkey": 65i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 18.0d, "l_extendedprice": 17371.08d, "l_discount": 0.02d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-10-29", "l_commitdate": "1994-09-13", "l_receiptdate": "1994-11-01", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": " accounts boo" }, { "l_orderkey": 3430i32, "l_partkey": 65i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 50.0d, "l_extendedprice": 48253.0d, "l_discount": 0.01d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-12-15", "l_commitdate": "1995-03-03", "l_receiptdate": "1994-12-24", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "ironic theodolites. carefully regular pac" }, { "l_orderkey": 930i32, "l_partkey": 65i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 10.0d, "l_extendedprice": 9650.6d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-12-18", "l_commitdate": "1995-01-27", "l_receiptdate": "1995-01-16", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "ckly regular requests: regular instructions" }, { "l_orderkey": 2528i32, "l_partkey": 65i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 37.0d, "l_extendedprice": 35707.22d, "l_discount": 0.0d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-12-25", "l_commitdate": "1995-02-02", "l_receiptdate": "1994-12-31", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "ng the pending excuses haggle after the bl" }, { "l_orderkey": 4354i32, "l_partkey": 65i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 37.0d, "l_extendedprice": 35707.22d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-01-13", "l_commitdate": "1994-12-29", "l_receiptdate": "1995-01-31", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "deas use blithely! special foxes print af" }, { "l_orderkey": 2053i32, "l_partkey": 65i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 46.0d, "l_extendedprice": 44392.76d, "l_discount": 0.01d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-04-01", "l_commitdate": "1995-04-02", "l_receiptdate": "1995-04-18", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "tions. furiously even requests hagg" }, { "l_orderkey": 512i32, "l_partkey": 65i32, "l_suppkey": 6i32, "l_linenumber": 5i32, "l_quantity": 6.0d, "l_extendedprice": 5790.36d, "l_discount": 0.03d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-06-10", "l_commitdate": "1995-06-21", "l_receiptdate": "1995-06-16", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "en ideas haggle " }, { "l_orderkey": 4257i32, "l_partkey": 65i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 3.0d, "l_extendedprice": 2895.18d, "l_discount": 0.1d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-06-18", "l_commitdate": "1995-05-01", "l_receiptdate": "1995-07-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "thin the theodolites use after the bl" }, { "l_orderkey": 903i32, "l_partkey": 65i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 27.0d, "l_extendedprice": 26056.62d, "l_discount": 0.04d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-18", "l_commitdate": "1995-09-20", "l_receiptdate": "1995-10-02", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "lly pending foxes. furiously" }, { "l_orderkey": 2785i32, "l_partkey": 65i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 33.0d, "l_extendedprice": 31846.98d, "l_discount": 0.08d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-16", "l_commitdate": "1995-08-24", "l_receiptdate": "1995-11-02", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "fter the furiously final p" }, { "l_orderkey": 166i32, "l_partkey": 65i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 37.0d, "l_extendedprice": 35707.22d, "l_discount": 0.09d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-16", "l_commitdate": "1995-10-17", "l_receiptdate": "1995-12-13", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "lar frays wake blithely a" }, { "l_orderkey": 1927i32, "l_partkey": 65i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 6.0d, "l_extendedprice": 5790.36d, "l_discount": 0.05d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-29", "l_commitdate": "1995-11-20", "l_receiptdate": "1995-12-08", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "furiously even wat" }, { "l_orderkey": 4995i32, "l_partkey": 65i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 16.0d, "l_extendedprice": 15440.96d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-02-27", "l_commitdate": "1996-04-03", "l_receiptdate": "1996-02-29", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "egular, bold packages. accou" }, { "l_orderkey": 4388i32, "l_partkey": 65i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 30.0d, "l_extendedprice": 28951.8d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-07", "l_commitdate": "1996-05-07", "l_receiptdate": "1996-06-22", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "s cajole fluffil" }, { "l_orderkey": 4614i32, "l_partkey": 65i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 3.0d, "l_extendedprice": 2895.18d, "l_discount": 0.08d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-22", "l_commitdate": "1996-07-21", "l_receiptdate": "1996-08-07", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "ions engage final, ironic " }, { "l_orderkey": 419i32, "l_partkey": 65i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 32.0d, "l_extendedprice": 30881.92d, "l_discount": 0.01d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-04", "l_commitdate": "1996-12-04", "l_receiptdate": "1996-12-24", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "blithely regular requests. special pinto" }, { "l_orderkey": 3106i32, "l_partkey": 65i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 16.0d, "l_extendedprice": 15440.96d, "l_discount": 0.09d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-25", "l_commitdate": "1997-04-10", "l_receiptdate": "1997-03-16", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "sits wake slyl" }, { "l_orderkey": 3270i32, "l_partkey": 65i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 20.0d, "l_extendedprice": 19301.2d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-26", "l_commitdate": "1997-07-31", "l_receiptdate": "1997-08-30", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "en accounts among the c" }, { "l_orderkey": 4865i32, "l_partkey": 65i32, "l_suppkey": 2i32, "l_linenumber": 6i32, "l_quantity": 47.0d, "l_extendedprice": 45357.82d, "l_discount": 0.0d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-26", "l_commitdate": "1997-08-07", "l_receiptdate": "1997-08-31", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "y unusual packages. packages" }, { "l_orderkey": 1347i32, "l_partkey": 65i32, "l_suppkey": 6i32, "l_linenumber": 5i32, "l_quantity": 9.0d, "l_extendedprice": 8685.54d, "l_discount": 0.01d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-28", "l_commitdate": "1997-09-16", "l_receiptdate": "1997-09-26", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": " detect blithely above the fina" }, { "l_orderkey": 935i32, "l_partkey": 65i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 23.0d, "l_extendedprice": 22196.38d, "l_discount": 0.02d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-11", "l_commitdate": "1997-11-25", "l_receiptdate": "1998-02-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "hes haggle furiously dolphins. qu" }, { "l_orderkey": 4711i32, "l_partkey": 65i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 8.0d, "l_extendedprice": 7720.48d, "l_discount": 0.07d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-17", "l_commitdate": "1998-06-13", "l_receiptdate": "1998-06-27", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "g to the carefully ironic deposits. specia" } ] }
-{ "partkey": 68i32, "lines": [ { "l_orderkey": 3842i32, "l_partkey": 68i32, "l_suppkey": 3i32, "l_linenumber": 5i32, "l_quantity": 13.0d, "l_extendedprice": 12584.78d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-04-13", "l_commitdate": "1992-06-22", "l_receiptdate": "1992-05-11", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "t blithely. busily regular accounts alon" }, { "l_orderkey": 5121i32, "l_partkey": 68i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 10.0d, "l_extendedprice": 9680.6d, "l_discount": 0.04d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-06-08", "l_commitdate": "1992-07-10", "l_receiptdate": "1992-07-02", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "e quickly according " }, { "l_orderkey": 868i32, "l_partkey": 68i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 19.0d, "l_extendedprice": 18393.14d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-06-22", "l_commitdate": "1992-08-27", "l_receiptdate": "1992-07-04", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "lyly ironic platelets wake. rut" }, { "l_orderkey": 2052i32, "l_partkey": 68i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 50.0d, "l_extendedprice": 48403.0d, "l_discount": 0.09d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-06-22", "l_commitdate": "1992-06-03", "l_receiptdate": "1992-07-19", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "wake after the decoy" }, { "l_orderkey": 3205i32, "l_partkey": 68i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 7.0d, "l_extendedprice": 6776.42d, "l_discount": 0.09d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-07-05", "l_commitdate": "1992-06-17", "l_receiptdate": "1992-07-07", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "ly alongsi" }, { "l_orderkey": 1826i32, "l_partkey": 68i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 9.0d, "l_extendedprice": 8712.54d, "l_discount": 0.07d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-07-12", "l_commitdate": "1992-07-11", "l_receiptdate": "1992-07-15", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": " blithely special" }, { "l_orderkey": 4706i32, "l_partkey": 68i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 6.0d, "l_extendedprice": 5808.36d, "l_discount": 0.01d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-01-20", "l_commitdate": "1993-03-18", "l_receiptdate": "1993-01-26", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "efully eve" }, { "l_orderkey": 5414i32, "l_partkey": 68i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 40.0d, "l_extendedprice": 38722.4d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-04-07", "l_commitdate": "1993-05-18", "l_receiptdate": "1993-04-23", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "ts are evenly across" }, { "l_orderkey": 5504i32, "l_partkey": 68i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 4.0d, "l_extendedprice": 3872.24d, "l_discount": 0.1d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-04-30", "l_commitdate": "1993-03-01", "l_receiptdate": "1993-05-22", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "into beans boost. " }, { "l_orderkey": 5472i32, "l_partkey": 68i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 28.0d, "l_extendedprice": 27105.68d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-07-28", "l_commitdate": "1993-05-28", "l_receiptdate": "1993-08-11", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "ffily pendin" }, { "l_orderkey": 2438i32, "l_partkey": 68i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 10.0d, "l_extendedprice": 9680.6d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-08-18", "l_commitdate": "1993-08-28", "l_receiptdate": "1993-09-08", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "engage car" }, { "l_orderkey": 1507i32, "l_partkey": 68i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 25.0d, "l_extendedprice": 24201.5d, "l_discount": 0.01d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-01-07", "l_commitdate": "1994-01-06", "l_receiptdate": "1994-01-11", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "xes. slyly busy de" }, { "l_orderkey": 1861i32, "l_partkey": 68i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 7.0d, "l_extendedprice": 6776.42d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-01-14", "l_commitdate": "1994-04-03", "l_receiptdate": "1994-01-16", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "s foxes. slyly" }, { "l_orderkey": 5921i32, "l_partkey": 68i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 17.0d, "l_extendedprice": 16457.02d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-05-20", "l_commitdate": "1994-05-26", "l_receiptdate": "1994-05-23", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "final asymptotes. even packages boost " }, { "l_orderkey": 1539i32, "l_partkey": 68i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 7.0d, "l_extendedprice": 6776.42d, "l_discount": 0.09d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-05-14", "l_commitdate": "1995-04-16", "l_receiptdate": "1995-05-30", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": ". fluffily reg" }, { "l_orderkey": 2465i32, "l_partkey": 68i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 27.0d, "l_extendedprice": 26137.62d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-05", "l_commitdate": "1995-09-07", "l_receiptdate": "1995-09-17", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "posits boost carefully unusual instructio" }, { "l_orderkey": 1927i32, "l_partkey": 68i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 3.0d, "l_extendedprice": 2904.18d, "l_discount": 0.0d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-06", "l_commitdate": "1995-12-08", "l_receiptdate": "1995-11-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "ccounts affi" }, { "l_orderkey": 610i32, "l_partkey": 68i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 11.0d, "l_extendedprice": 10648.66d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-31", "l_commitdate": "1995-10-25", "l_receiptdate": "1995-11-18", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "blithely final " }, { "l_orderkey": 5153i32, "l_partkey": 68i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 30.0d, "l_extendedprice": 29041.8d, "l_discount": 0.09d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-10", "l_commitdate": "1995-11-14", "l_receiptdate": "1995-11-16", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "beans sleep bl" }, { "l_orderkey": 135i32, "l_partkey": 68i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 34.0d, "l_extendedprice": 32914.04d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-12", "l_commitdate": "1996-01-19", "l_receiptdate": "1996-02-05", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "counts doze against the blithely ironi" }, { "l_orderkey": 1i32, "l_partkey": 68i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 36.0d, "l_extendedprice": 34850.16d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-04-12", "l_commitdate": "1996-02-28", "l_receiptdate": "1996-04-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "ly final dependencies: slyly bold " }, { "l_orderkey": 1926i32, "l_partkey": 68i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 13.0d, "l_extendedprice": 12584.78d, "l_discount": 0.04d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-04-26", "l_commitdate": "1996-04-13", "l_receiptdate": "1996-05-08", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "eans wake bli" }, { "l_orderkey": 5252i32, "l_partkey": 68i32, "l_suppkey": 5i32, "l_linenumber": 5i32, "l_quantity": 24.0d, "l_extendedprice": 23233.44d, "l_discount": 0.04d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-11", "l_commitdate": "1996-04-17", "l_receiptdate": "1996-05-12", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "posits after the fluffi" }, { "l_orderkey": 486i32, "l_partkey": 68i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 40.0d, "l_extendedprice": 38722.4d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-21", "l_commitdate": "1996-06-06", "l_receiptdate": "1996-06-07", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "ts nag quickly among the slyl" }, { "l_orderkey": 39i32, "l_partkey": 68i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 46.0d, "l_extendedprice": 44530.76d, "l_discount": 0.06d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-26", "l_commitdate": "1996-12-19", "l_receiptdate": "1996-10-26", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "he carefully e" }, { "l_orderkey": 1634i32, "l_partkey": 68i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 17.0d, "l_extendedprice": 16457.02d, "l_discount": 0.08d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-29", "l_commitdate": "1996-10-15", "l_receiptdate": "1996-11-02", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "cial, bold platelets alongside of the f" }, { "l_orderkey": 1543i32, "l_partkey": 68i32, "l_suppkey": 7i32, "l_linenumber": 7i32, "l_quantity": 3.0d, "l_extendedprice": 2904.18d, "l_discount": 0.0d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-22", "l_commitdate": "1997-04-06", "l_receiptdate": "1997-03-30", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "quickly. final accounts haggle slyl" }, { "l_orderkey": 1890i32, "l_partkey": 68i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 43.0d, "l_extendedprice": 41626.58d, "l_discount": 0.09d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-08", "l_commitdate": "1997-02-19", "l_receiptdate": "1997-04-30", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "lyly. instructions across the furiously" }, { "l_orderkey": 1473i32, "l_partkey": 68i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 32.0d, "l_extendedprice": 30977.92d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-18", "l_commitdate": "1997-05-12", "l_receiptdate": "1997-05-10", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "out the packages lose furiously ab" }, { "l_orderkey": 4865i32, "l_partkey": 68i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 44.0d, "l_extendedprice": 42594.64d, "l_discount": 0.1d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-25", "l_commitdate": "1997-08-20", "l_receiptdate": "1997-08-22", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "even deposits sleep against the quickly r" }, { "l_orderkey": 3041i32, "l_partkey": 68i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 9.0d, "l_extendedprice": 8712.54d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-28", "l_commitdate": "1997-07-23", "l_receiptdate": "1997-09-16", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "scapades after the special" }, { "l_orderkey": 5602i32, "l_partkey": 68i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 30.0d, "l_extendedprice": 29041.8d, "l_discount": 0.04d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-20", "l_commitdate": "1997-10-25", "l_receiptdate": "1997-10-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "e slyly even packages. careful" }, { "l_orderkey": 5857i32, "l_partkey": 68i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 1.0d, "l_extendedprice": 968.06d, "l_discount": 0.03d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-02-01", "l_commitdate": "1997-12-09", "l_receiptdate": "1998-02-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "instructions detect final reques" }, { "l_orderkey": 3873i32, "l_partkey": 68i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 19.0d, "l_extendedprice": 18393.14d, "l_discount": 0.04d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-15", "l_commitdate": "1998-05-10", "l_receiptdate": "1998-05-17", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "y final ac" }, { "l_orderkey": 4837i32, "l_partkey": 68i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 42.0d, "l_extendedprice": 40658.52d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-19", "l_commitdate": "1998-07-06", "l_receiptdate": "1998-06-23", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "o the furiously final theodolites boost" }, { "l_orderkey": 5664i32, "l_partkey": 68i32, "l_suppkey": 5i32, "l_linenumber": 6i32, "l_quantity": 34.0d, "l_extendedprice": 32914.04d, "l_discount": 0.09d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-09-10", "l_commitdate": "1998-10-05", "l_receiptdate": "1998-09-15", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "st. fluffily pending foxes na" } ] }
-{ "partkey": 71i32, "lines": [ { "l_orderkey": 2497i32, "l_partkey": 71i32, "l_suppkey": 2i32, "l_linenumber": 6i32, "l_quantity": 19.0d, "l_extendedprice": 18450.33d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-11-10", "l_commitdate": "1992-11-20", "l_receiptdate": "1992-12-05", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": " instructions? carefully daring accounts" }, { "l_orderkey": 2146i32, "l_partkey": 71i32, "l_suppkey": 9i32, "l_linenumber": 6i32, "l_quantity": 32.0d, "l_extendedprice": 31074.24d, "l_discount": 0.07d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-01-10", "l_commitdate": "1992-10-19", "l_receiptdate": "1993-02-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "y regular foxes wake among the final" }, { "l_orderkey": 4611i32, "l_partkey": 71i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 48.0d, "l_extendedprice": 46611.36d, "l_discount": 0.02d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-02-28", "l_commitdate": "1993-02-12", "l_receiptdate": "1993-03-01", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "ular accounts " }, { "l_orderkey": 2341i32, "l_partkey": 71i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 37.0d, "l_extendedprice": 35929.59d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-09-23", "l_commitdate": "1993-07-25", "l_receiptdate": "1993-10-14", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "was blithel" }, { "l_orderkey": 641i32, "l_partkey": 71i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 25.0d, "l_extendedprice": 24276.75d, "l_discount": 0.03d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-12-04", "l_commitdate": "1993-11-18", "l_receiptdate": "1993-12-18", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "d, regular d" }, { "l_orderkey": 5285i32, "l_partkey": 71i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 1.0d, "l_extendedprice": 971.07d, "l_discount": 0.03d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-03-14", "l_commitdate": "1994-02-20", "l_receiptdate": "1994-04-10", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "e fluffily about the slyly special pa" }, { "l_orderkey": 673i32, "l_partkey": 71i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 22.0d, "l_extendedprice": 21363.54d, "l_discount": 0.03d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-03-15", "l_commitdate": "1994-04-27", "l_receiptdate": "1994-03-29", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": " the regular, even requests. carefully fin" }, { "l_orderkey": 1921i32, "l_partkey": 71i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 27.0d, "l_extendedprice": 26218.89d, "l_discount": 0.0d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-04-26", "l_commitdate": "1994-04-07", "l_receiptdate": "1994-04-30", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "ing pinto beans above the pend" }, { "l_orderkey": 4839i32, "l_partkey": 71i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 9.0d, "l_extendedprice": 8739.63d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-06-17", "l_commitdate": "1994-06-18", "l_receiptdate": "1994-07-10", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "ounts haggle carefully above" }, { "l_orderkey": 2212i32, "l_partkey": 71i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 18.0d, "l_extendedprice": 17479.26d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-06-22", "l_commitdate": "1994-06-18", "l_receiptdate": "1994-06-25", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": " cajole. final, pending ideas should are bl" }, { "l_orderkey": 4870i32, "l_partkey": 71i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 36.0d, "l_extendedprice": 34958.52d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-09-06", "l_commitdate": "1994-09-17", "l_receiptdate": "1994-10-01", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": " instructions. carefully pending pac" }, { "l_orderkey": 4772i32, "l_partkey": 71i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 15.0d, "l_extendedprice": 14566.05d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-09-19", "l_commitdate": "1994-10-22", "l_receiptdate": "1994-09-26", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": " requests. express, regular th" }, { "l_orderkey": 4482i32, "l_partkey": 71i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 32.0d, "l_extendedprice": 31074.24d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-05-16", "l_commitdate": "1995-07-22", "l_receiptdate": "1995-06-07", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": " quickly pendin" }, { "l_orderkey": 4295i32, "l_partkey": 71i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 4.0d, "l_extendedprice": 3884.28d, "l_discount": 0.09d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-05", "l_commitdate": "1996-04-26", "l_receiptdate": "1996-06-13", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "arefully according to the pending ac" }, { "l_orderkey": 2183i32, "l_partkey": 71i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 29.0d, "l_extendedprice": 28161.03d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-21", "l_commitdate": "1996-08-24", "l_receiptdate": "1996-08-15", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "ly unusual deposits sleep carefully" }, { "l_orderkey": 4834i32, "l_partkey": 71i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 26.0d, "l_extendedprice": 25247.82d, "l_discount": 0.01d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-04", "l_commitdate": "1996-10-21", "l_receiptdate": "1996-10-10", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "ages dazzle carefully. slyly daring foxes" }, { "l_orderkey": 547i32, "l_partkey": 71i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 44.0d, "l_extendedprice": 42727.08d, "l_discount": 0.08d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-18", "l_commitdate": "1996-08-17", "l_receiptdate": "1996-10-27", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "thely express dependencies. qu" }, { "l_orderkey": 419i32, "l_partkey": 71i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 15.0d, "l_extendedprice": 14566.05d, "l_discount": 0.07d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-17", "l_commitdate": "1996-11-28", "l_receiptdate": "1996-12-19", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": " sleep final, regular theodolites. fluffi" }, { "l_orderkey": 3910i32, "l_partkey": 71i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 31.0d, "l_extendedprice": 30103.17d, "l_discount": 0.05d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-22", "l_commitdate": "1996-11-14", "l_receiptdate": "1997-01-01", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "ess instructions. " }, { "l_orderkey": 1635i32, "l_partkey": 71i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 3.0d, "l_extendedprice": 2913.21d, "l_discount": 0.06d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-13", "l_commitdate": "1997-03-25", "l_receiptdate": "1997-03-27", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": " quickly ironic r" }, { "l_orderkey": 2112i32, "l_partkey": 71i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 18.0d, "l_extendedprice": 17479.26d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-02", "l_commitdate": "1997-03-16", "l_receiptdate": "1997-05-25", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "lphins solve ideas. even, special reque" }, { "l_orderkey": 1606i32, "l_partkey": 71i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 14.0d, "l_extendedprice": 13594.98d, "l_discount": 0.1d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-19", "l_commitdate": "1997-07-05", "l_receiptdate": "1997-06-10", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "structions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions h" }, { "l_orderkey": 1543i32, "l_partkey": 71i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 34.0d, "l_extendedprice": 33016.38d, "l_discount": 0.02d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-25", "l_commitdate": "1997-03-30", "l_receiptdate": "1997-06-04", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "ic requests are ac" }, { "l_orderkey": 4967i32, "l_partkey": 71i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 50.0d, "l_extendedprice": 48553.5d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-27", "l_commitdate": "1997-05-13", "l_receiptdate": "1997-06-12", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "kages. final, unusual accounts c" }, { "l_orderkey": 5952i32, "l_partkey": 71i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 43.0d, "l_extendedprice": 41756.01d, "l_discount": 0.01d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-29", "l_commitdate": "1997-06-06", "l_receiptdate": "1997-07-15", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "posits sleep furiously quickly final p" }, { "l_orderkey": 4544i32, "l_partkey": 71i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 20.0d, "l_extendedprice": 19421.4d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-10-12", "l_commitdate": "1997-10-11", "l_receiptdate": "1997-10-13", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": " waters about the" }, { "l_orderkey": 2884i32, "l_partkey": 71i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 41.0d, "l_extendedprice": 39813.87d, "l_discount": 0.03d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-02", "l_commitdate": "1997-12-17", "l_receiptdate": "1998-01-20", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "ep. slyly even accounts a" }, { "l_orderkey": 518i32, "l_partkey": 71i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 16.0d, "l_extendedprice": 15537.12d, "l_discount": 0.01d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-15", "l_commitdate": "1998-03-24", "l_receiptdate": "1998-04-08", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "use quickly expre" }, { "l_orderkey": 899i32, "l_partkey": 71i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 4.0d, "l_extendedprice": 3884.28d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-11", "l_commitdate": "1998-05-14", "l_receiptdate": "1998-04-27", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "ges. blithe, ironic waters cajole care" }, { "l_orderkey": 3207i32, "l_partkey": 71i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 42.0d, "l_extendedprice": 40784.94d, "l_discount": 0.0d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-02", "l_commitdate": "1998-05-10", "l_receiptdate": "1998-06-01", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "to the quickly special accounts? ironically" }, { "l_orderkey": 3360i32, "l_partkey": 71i32, "l_suppkey": 1i32, "l_linenumber": 6i32, "l_quantity": 42.0d, "l_extendedprice": 40784.94d, "l_discount": 0.04d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-07", "l_commitdate": "1998-04-18", "l_receiptdate": "1998-06-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "ages cajole. pending, " }, { "l_orderkey": 2017i32, "l_partkey": 71i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 14.0d, "l_extendedprice": 13594.98d, "l_discount": 0.07d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-28", "l_commitdate": "1998-06-15", "l_receiptdate": "1998-07-11", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "ily final w" }, { "l_orderkey": 2407i32, "l_partkey": 71i32, "l_suppkey": 9i32, "l_linenumber": 6i32, "l_quantity": 18.0d, "l_extendedprice": 17479.26d, "l_discount": 0.04d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-10-03", "l_commitdate": "1998-08-30", "l_receiptdate": "1998-10-19", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": " wake carefully. fluffily " } ] }
-{ "partkey": 73i32, "lines": [ { "l_orderkey": 5601i32, "l_partkey": 73i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 38.0d, "l_extendedprice": 36976.66d, "l_discount": 0.07d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-01-08", "l_commitdate": "1992-03-01", "l_receiptdate": "1992-01-09", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "ter the evenly final deposit" }, { "l_orderkey": 4741i32, "l_partkey": 73i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 24.0d, "l_extendedprice": 23353.68d, "l_discount": 0.0d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-09-16", "l_commitdate": "1992-09-19", "l_receiptdate": "1992-09-20", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "deas boost furiously slyly regular id" }, { "l_orderkey": 4743i32, "l_partkey": 73i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 21.0d, "l_extendedprice": 20434.47d, "l_discount": 0.08d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-07-02", "l_commitdate": "1993-06-15", "l_receiptdate": "1993-07-26", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "ake blithely against the packages. reg" }, { "l_orderkey": 1732i32, "l_partkey": 73i32, "l_suppkey": 1i32, "l_linenumber": 6i32, "l_quantity": 16.0d, "l_extendedprice": 15569.12d, "l_discount": 0.01d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-01-07", "l_commitdate": "1994-01-02", "l_receiptdate": "1994-01-25", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "ix carefully at the furiously regular pac" }, { "l_orderkey": 1761i32, "l_partkey": 73i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 49.0d, "l_extendedprice": 47680.43d, "l_discount": 0.06d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-01-08", "l_commitdate": "1994-03-03", "l_receiptdate": "1994-02-05", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "y even packages promise" }, { "l_orderkey": 3783i32, "l_partkey": 73i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 36.0d, "l_extendedprice": 35030.52d, "l_discount": 0.02d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-03-02", "l_commitdate": "1994-02-09", "l_receiptdate": "1994-03-15", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "egular accounts" }, { "l_orderkey": 2050i32, "l_partkey": 73i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 47.0d, "l_extendedprice": 45734.29d, "l_discount": 0.05d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-08-25", "l_commitdate": "1994-07-18", "l_receiptdate": "1994-09-15", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "tside the blithely pending packages eat f" }, { "l_orderkey": 2790i32, "l_partkey": 73i32, "l_suppkey": 3i32, "l_linenumber": 6i32, "l_quantity": 13.0d, "l_extendedprice": 12649.91d, "l_discount": 0.08d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-09-20", "l_commitdate": "1994-10-10", "l_receiptdate": "1994-10-20", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "n deposits according to the regul" }, { "l_orderkey": 1762i32, "l_partkey": 73i32, "l_suppkey": 3i32, "l_linenumber": 7i32, "l_quantity": 47.0d, "l_extendedprice": 45734.29d, "l_discount": 0.03d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-11-02", "l_commitdate": "1994-10-07", "l_receiptdate": "1994-11-08", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": " blithely brave" }, { "l_orderkey": 998i32, "l_partkey": 73i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 1.0d, "l_extendedprice": 973.07d, "l_discount": 0.04d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-01-05", "l_commitdate": "1995-01-06", "l_receiptdate": "1995-01-13", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "es sleep. regular dependencies use bl" }, { "l_orderkey": 1637i32, "l_partkey": 73i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 1.0d, "l_extendedprice": 973.07d, "l_discount": 0.1d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-02-14", "l_commitdate": "1995-03-26", "l_receiptdate": "1995-03-09", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "ly final pinto beans. furiously" }, { "l_orderkey": 2757i32, "l_partkey": 73i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 17.0d, "l_extendedprice": 16542.19d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-06", "l_commitdate": "1995-09-27", "l_receiptdate": "1995-09-22", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "er the furiously silent " }, { "l_orderkey": 420i32, "l_partkey": 73i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 37.0d, "l_extendedprice": 36003.59d, "l_discount": 0.02d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-16", "l_commitdate": "1995-12-13", "l_receiptdate": "1995-11-19", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "rbits. bold requests along the quickl" }, { "l_orderkey": 1958i32, "l_partkey": 73i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 9.0d, "l_extendedprice": 8757.63d, "l_discount": 0.01d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-08", "l_commitdate": "1995-12-17", "l_receiptdate": "1995-12-18", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "ickly. slyly bold " }, { "l_orderkey": 1927i32, "l_partkey": 73i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 15.0d, "l_extendedprice": 14596.05d, "l_discount": 0.08d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-25", "l_commitdate": "1995-12-26", "l_receiptdate": "1995-12-31", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": " carefully regular requests sleep car" }, { "l_orderkey": 2951i32, "l_partkey": 73i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 21.0d, "l_extendedprice": 20434.47d, "l_discount": 0.06d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-04-12", "l_commitdate": "1996-04-27", "l_receiptdate": "1996-04-14", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "nt instructions toward the f" }, { "l_orderkey": 1378i32, "l_partkey": 73i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 11.0d, "l_extendedprice": 10703.77d, "l_discount": 0.1d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-07", "l_commitdate": "1996-05-09", "l_receiptdate": "1996-07-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": " blithely express hoc" }, { "l_orderkey": 4614i32, "l_partkey": 73i32, "l_suppkey": 3i32, "l_linenumber": 5i32, "l_quantity": 24.0d, "l_extendedprice": 23353.68d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-01", "l_commitdate": "1996-06-24", "l_receiptdate": "1996-07-08", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "regular, even" }, { "l_orderkey": 2215i32, "l_partkey": 73i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 33.0d, "l_extendedprice": 32111.31d, "l_discount": 0.0d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-19", "l_commitdate": "1996-08-10", "l_receiptdate": "1996-07-30", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "dolites cajole b" }, { "l_orderkey": 4994i32, "l_partkey": 73i32, "l_suppkey": 4i32, "l_linenumber": 6i32, "l_quantity": 6.0d, "l_extendedprice": 5838.42d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-05", "l_commitdate": "1996-08-04", "l_receiptdate": "1996-09-30", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "grate carefully around th" }, { "l_orderkey": 1924i32, "l_partkey": 73i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 7.0d, "l_extendedprice": 6811.49d, "l_discount": 0.06d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-01", "l_commitdate": "1996-12-02", "l_receiptdate": "1997-01-08", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "osits. even accounts nag furious" }, { "l_orderkey": 676i32, "l_partkey": 73i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 24.0d, "l_extendedprice": 23353.68d, "l_discount": 0.01d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-05", "l_commitdate": "1997-01-16", "l_receiptdate": "1997-03-07", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "ress, regular dep" }, { "l_orderkey": 5824i32, "l_partkey": 73i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 16.0d, "l_extendedprice": 15569.12d, "l_discount": 0.03d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-13", "l_commitdate": "1997-01-07", "l_receiptdate": "1997-02-17", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "sly express Ti" }, { "l_orderkey": 4868i32, "l_partkey": 73i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 47.0d, "l_extendedprice": 45734.29d, "l_discount": 0.03d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-29", "l_commitdate": "1997-04-27", "l_receiptdate": "1997-05-11", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "gle unusual, fluffy packages. foxes cajol" }, { "l_orderkey": 1379i32, "l_partkey": 73i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 13.0d, "l_extendedprice": 12649.91d, "l_discount": 0.04d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-08", "l_commitdate": "1998-07-13", "l_receiptdate": "1998-06-16", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "ully across the furiously iron" }, { "l_orderkey": 4167i32, "l_partkey": 73i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 1.0d, "l_extendedprice": 973.07d, "l_discount": 0.03d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-10-11", "l_commitdate": "1998-08-14", "l_receiptdate": "1998-10-13", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "xpress platelets. blithely " }, { "l_orderkey": 3840i32, "l_partkey": 73i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 45.0d, "l_extendedprice": 43788.15d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-10-12", "l_commitdate": "1998-10-12", "l_receiptdate": "1998-10-28", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "onic, even packages are. pe" } ] }
-{ "partkey": 75i32, "lines": [ { "l_orderkey": 4000i32, "l_partkey": 75i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 44.0d, "l_extendedprice": 42903.08d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-03-27", "l_commitdate": "1992-02-18", "l_receiptdate": "1992-03-31", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "equests use blithely blithely bold d" }, { "l_orderkey": 4230i32, "l_partkey": 75i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 28.0d, "l_extendedprice": 27301.96d, "l_discount": 0.01d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-05-12", "l_commitdate": "1992-05-10", "l_receiptdate": "1992-06-01", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "nt instruct" }, { "l_orderkey": 4103i32, "l_partkey": 75i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 40.0d, "l_extendedprice": 39002.8d, "l_discount": 0.05d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-09-19", "l_commitdate": "1992-08-14", "l_receiptdate": "1992-09-21", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "usly across the slyly busy accounts! fin" }, { "l_orderkey": 3014i32, "l_partkey": 75i32, "l_suppkey": 5i32, "l_linenumber": 5i32, "l_quantity": 28.0d, "l_extendedprice": 27301.96d, "l_discount": 0.02d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-01-09", "l_commitdate": "1992-12-18", "l_receiptdate": "1993-01-10", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "es are. final braids nag slyly. fluff" }, { "l_orderkey": 1216i32, "l_partkey": 75i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 48.0d, "l_extendedprice": 46803.36d, "l_discount": 0.1d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-01-17", "l_commitdate": "1993-02-01", "l_receiptdate": "1993-02-13", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "symptotes use against th" }, { "l_orderkey": 5062i32, "l_partkey": 75i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 4.0d, "l_extendedprice": 3900.28d, "l_discount": 0.02d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-02-06", "l_commitdate": "1992-12-14", "l_receiptdate": "1993-03-03", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "ke furiously express theodolites. " }, { "l_orderkey": 5472i32, "l_partkey": 75i32, "l_suppkey": 6i32, "l_linenumber": 5i32, "l_quantity": 40.0d, "l_extendedprice": 39002.8d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-04-13", "l_commitdate": "1993-07-04", "l_receiptdate": "1993-05-04", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "e requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une reques" }, { "l_orderkey": 3494i32, "l_partkey": 75i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 23.0d, "l_extendedprice": 22426.61d, "l_discount": 0.1d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-06-19", "l_commitdate": "1993-06-04", "l_receiptdate": "1993-07-14", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "osits nag " }, { "l_orderkey": 4610i32, "l_partkey": 75i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 26.0d, "l_extendedprice": 25351.82d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-07-01", "l_commitdate": "1993-07-19", "l_receiptdate": "1993-07-19", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": " to the fluffily ironic requests h" }, { "l_orderkey": 3396i32, "l_partkey": 75i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 32.0d, "l_extendedprice": 31202.24d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-08-07", "l_commitdate": "1994-08-10", "l_receiptdate": "1994-09-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "osits are slyly. final, bold foxes s" }, { "l_orderkey": 4708i32, "l_partkey": 75i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 5.0d, "l_extendedprice": 4875.35d, "l_discount": 0.05d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-10-15", "l_commitdate": "1994-12-02", "l_receiptdate": "1994-11-12", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "ely. carefully sp" }, { "l_orderkey": 900i32, "l_partkey": 75i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 24.0d, "l_extendedprice": 23401.68d, "l_discount": 0.03d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-10-21", "l_commitdate": "1994-12-25", "l_receiptdate": "1994-10-22", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "-ray furiously un" }, { "l_orderkey": 2791i32, "l_partkey": 75i32, "l_suppkey": 3i32, "l_linenumber": 6i32, "l_quantity": 9.0d, "l_extendedprice": 8775.63d, "l_discount": 0.08d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-11-19", "l_commitdate": "1994-12-14", "l_receiptdate": "1994-12-10", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "pendencies. blithely bold patterns acr" }, { "l_orderkey": 2082i32, "l_partkey": 75i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 36.0d, "l_extendedprice": 35102.52d, "l_discount": 0.0d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-01-20", "l_commitdate": "1995-03-18", "l_receiptdate": "1995-01-31", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "haggle furiously silent pinto beans" }, { "l_orderkey": 4227i32, "l_partkey": 75i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 11.0d, "l_extendedprice": 10725.77d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-03-30", "l_commitdate": "1995-05-02", "l_receiptdate": "1995-04-26", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "l requests-- bold requests cajole dogg" }, { "l_orderkey": 5892i32, "l_partkey": 75i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 23.0d, "l_extendedprice": 22426.61d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-05-18", "l_commitdate": "1995-07-06", "l_receiptdate": "1995-05-29", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": " foxes nag slyly about the qui" }, { "l_orderkey": 420i32, "l_partkey": 75i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 12.0d, "l_extendedprice": 11700.84d, "l_discount": 0.08d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-02-05", "l_commitdate": "1996-01-03", "l_receiptdate": "1996-02-12", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "c instructions are " }, { "l_orderkey": 3525i32, "l_partkey": 75i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 31.0d, "l_extendedprice": 30227.17d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-08", "l_commitdate": "1996-02-27", "l_receiptdate": "1996-03-13", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "he careful" }, { "l_orderkey": 3234i32, "l_partkey": 75i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 16.0d, "l_extendedprice": 15601.12d, "l_discount": 0.06d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-10", "l_commitdate": "1996-05-30", "l_receiptdate": "1996-06-18", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "ithely ironic accounts wake along t" }, { "l_orderkey": 2534i32, "l_partkey": 75i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 43.0d, "l_extendedprice": 41928.01d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-25", "l_commitdate": "1996-09-30", "l_receiptdate": "1996-11-05", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "ngly final depos" }, { "l_orderkey": 1697i32, "l_partkey": 75i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 6.0d, "l_extendedprice": 5850.42d, "l_discount": 0.05d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-28", "l_commitdate": "1996-11-27", "l_receiptdate": "1997-01-31", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "accounts breach slyly even de" }, { "l_orderkey": 581i32, "l_partkey": 75i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 30.0d, "l_extendedprice": 29252.1d, "l_discount": 0.1d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-19", "l_commitdate": "1997-05-21", "l_receiptdate": "1997-06-22", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": " regular ideas grow furio" }, { "l_orderkey": 1859i32, "l_partkey": 75i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 18.0d, "l_extendedprice": 17551.26d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-08", "l_commitdate": "1997-06-30", "l_receiptdate": "1997-08-26", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "e carefully a" }, { "l_orderkey": 1668i32, "l_partkey": 75i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 42.0d, "l_extendedprice": 40952.94d, "l_discount": 0.08d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-09", "l_commitdate": "1997-09-08", "l_receiptdate": "1997-08-31", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "ole carefully excuses. final" }, { "l_orderkey": 992i32, "l_partkey": 75i32, "l_suppkey": 3i32, "l_linenumber": 6i32, "l_quantity": 41.0d, "l_extendedprice": 39977.87d, "l_discount": 0.1d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-11-14", "l_commitdate": "1998-02-04", "l_receiptdate": "1997-11-23", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "eodolites cajole across the accounts." }, { "l_orderkey": 2944i32, "l_partkey": 75i32, "l_suppkey": 4i32, "l_linenumber": 5i32, "l_quantity": 18.0d, "l_extendedprice": 17551.26d, "l_discount": 0.1d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-07", "l_commitdate": "1997-10-26", "l_receiptdate": "1998-01-27", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": " furiously slyl" }, { "l_orderkey": 1569i32, "l_partkey": 75i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 5.0d, "l_extendedprice": 4875.35d, "l_discount": 0.07d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-16", "l_commitdate": "1998-06-21", "l_receiptdate": "1998-04-18", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": " packages. ironic, even excuses a" }, { "l_orderkey": 4417i32, "l_partkey": 75i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 28.0d, "l_extendedprice": 27301.96d, "l_discount": 0.08d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-09-04", "l_commitdate": "1998-10-04", "l_receiptdate": "1998-09-19", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "ies across the furious" }, { "l_orderkey": 1124i32, "l_partkey": 75i32, "l_suppkey": 5i32, "l_linenumber": 5i32, "l_quantity": 33.0d, "l_extendedprice": 32177.31d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-10-19", "l_commitdate": "1998-09-17", "l_receiptdate": "1998-10-26", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "eposits sleep slyly. stealthily f" } ] }
-{ "partkey": 81i32, "lines": [ { "l_orderkey": 2240i32, "l_partkey": 81i32, "l_suppkey": 2i32, "l_linenumber": 6i32, "l_quantity": 32.0d, "l_extendedprice": 31394.56d, "l_discount": 0.06d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-04-11", "l_commitdate": "1992-04-18", "l_receiptdate": "1992-04-22", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "ss thinly deposits. blithely bold package" }, { "l_orderkey": 1221i32, "l_partkey": 81i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 43.0d, "l_extendedprice": 42186.44d, "l_discount": 0.05d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-06-22", "l_commitdate": "1992-07-15", "l_receiptdate": "1992-07-20", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "y slyly above the slyly unusual ideas" }, { "l_orderkey": 5954i32, "l_partkey": 81i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 40.0d, "l_extendedprice": 39243.2d, "l_discount": 0.02d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-12-30", "l_commitdate": "1993-01-16", "l_receiptdate": "1993-01-09", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "iously ironic deposits after" }, { "l_orderkey": 3687i32, "l_partkey": 81i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 2.0d, "l_extendedprice": 1962.16d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-02-23", "l_commitdate": "1993-03-25", "l_receiptdate": "1993-03-11", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": " express requests. slyly regular depend" }, { "l_orderkey": 611i32, "l_partkey": 81i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 1.0d, "l_extendedprice": 981.08d, "l_discount": 0.08d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-05-17", "l_commitdate": "1993-02-26", "l_receiptdate": "1993-06-15", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "ts. pending platelets aff" }, { "l_orderkey": 3238i32, "l_partkey": 81i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 1.0d, "l_extendedprice": 981.08d, "l_discount": 0.0d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-05-17", "l_commitdate": "1993-04-18", "l_receiptdate": "1993-05-27", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "wake alongs" }, { "l_orderkey": 4675i32, "l_partkey": 81i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 18.0d, "l_extendedprice": 17659.44d, "l_discount": 0.01d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-02-23", "l_commitdate": "1994-01-18", "l_receiptdate": "1994-03-05", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "cajole unusual dep" }, { "l_orderkey": 2915i32, "l_partkey": 81i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 43.0d, "l_extendedprice": 42186.44d, "l_discount": 0.06d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-06-02", "l_commitdate": "1994-05-24", "l_receiptdate": "1994-06-06", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "into beans dazzle alongside of" }, { "l_orderkey": 1312i32, "l_partkey": 81i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 9.0d, "l_extendedprice": 8829.72d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-07-19", "l_commitdate": "1994-06-29", "l_receiptdate": "1994-07-24", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": ". furiously " }, { "l_orderkey": 4514i32, "l_partkey": 81i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 9.0d, "l_extendedprice": 8829.72d, "l_discount": 0.1d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-08-04", "l_commitdate": "1994-07-01", "l_receiptdate": "1994-09-01", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "wly. quick" }, { "l_orderkey": 3430i32, "l_partkey": 81i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 32.0d, "l_extendedprice": 31394.56d, "l_discount": 0.08d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-01-17", "l_commitdate": "1995-01-28", "l_receiptdate": "1995-02-06", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "egular instruction" }, { "l_orderkey": 5248i32, "l_partkey": 81i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 39.0d, "l_extendedprice": 38262.12d, "l_discount": 0.05d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-10", "l_commitdate": "1995-07-04", "l_receiptdate": "1995-09-09", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "yly even accounts. spe" }, { "l_orderkey": 5217i32, "l_partkey": 81i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 47.0d, "l_extendedprice": 46110.76d, "l_discount": 0.04d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-24", "l_commitdate": "1995-12-25", "l_receiptdate": "1995-11-25", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "ronic packages i" }, { "l_orderkey": 4995i32, "l_partkey": 81i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 43.0d, "l_extendedprice": 42186.44d, "l_discount": 0.0d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-02-24", "l_commitdate": "1996-02-20", "l_receiptdate": "1996-03-07", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "ts. blithely silent ideas after t" }, { "l_orderkey": 3394i32, "l_partkey": 81i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 14.0d, "l_extendedprice": 13735.12d, "l_discount": 0.08d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-02", "l_commitdate": "1996-07-02", "l_receiptdate": "1996-06-19", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "e furiously final theodolites. furio" }, { "l_orderkey": 2177i32, "l_partkey": 81i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 23.0d, "l_extendedprice": 22564.84d, "l_discount": 0.07d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-28", "l_commitdate": "1997-03-02", "l_receiptdate": "1997-02-13", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "he silent foxes. iro" }, { "l_orderkey": 1347i32, "l_partkey": 81i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 45.0d, "l_extendedprice": 44148.6d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-24", "l_commitdate": "1997-09-03", "l_receiptdate": "1997-09-08", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "ages wake around t" }, { "l_orderkey": 5027i32, "l_partkey": 81i32, "l_suppkey": 2i32, "l_linenumber": 7i32, "l_quantity": 50.0d, "l_extendedprice": 49054.0d, "l_discount": 0.07d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-18", "l_commitdate": "1997-11-07", "l_receiptdate": "1997-10-05", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": " beans dazzle according to the fluffi" }, { "l_orderkey": 3875i32, "l_partkey": 81i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 24.0d, "l_extendedprice": 23545.92d, "l_discount": 0.02d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-10-15", "l_commitdate": "1997-11-27", "l_receiptdate": "1997-11-09", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "ecial packages. " }, { "l_orderkey": 3364i32, "l_partkey": 81i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 3.0d, "l_extendedprice": 2943.24d, "l_discount": 0.01d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-10-19", "l_commitdate": "1997-08-15", "l_receiptdate": "1997-10-28", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "c theodolites. blithely ir" }, { "l_orderkey": 2567i32, "l_partkey": 81i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 46.0d, "l_extendedprice": 45129.68d, "l_discount": 0.07d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-02", "l_commitdate": "1998-04-30", "l_receiptdate": "1998-06-13", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "efully pending epitaphs. carefully reg" } ] }
-{ "partkey": 91i32, "lines": [ { "l_orderkey": 3043i32, "l_partkey": 91i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 5.0d, "l_extendedprice": 4955.45d, "l_discount": 0.1d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-05-22", "l_commitdate": "1992-07-02", "l_receiptdate": "1992-06-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "ake blithely re" }, { "l_orderkey": 2691i32, "l_partkey": 91i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 11.0d, "l_extendedprice": 10901.99d, "l_discount": 0.04d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-06-21", "l_commitdate": "1992-06-08", "l_receiptdate": "1992-07-09", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "leep alongside of the accounts. slyly ironi" }, { "l_orderkey": 3015i32, "l_partkey": 91i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 23.0d, "l_extendedprice": 22795.07d, "l_discount": 0.03d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-12-03", "l_commitdate": "1992-11-19", "l_receiptdate": "1992-12-23", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "s are slyly carefully special pinto bea" }, { "l_orderkey": 2275i32, "l_partkey": 91i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 11.0d, "l_extendedprice": 10901.99d, "l_discount": 0.08d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-01-16", "l_commitdate": "1992-12-10", "l_receiptdate": "1993-01-25", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "ost across the never express instruction" }, { "l_orderkey": 2503i32, "l_partkey": 91i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 27.0d, "l_extendedprice": 26759.43d, "l_discount": 0.09d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-07-12", "l_commitdate": "1993-07-24", "l_receiptdate": "1993-07-22", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "lly even p" }, { "l_orderkey": 2373i32, "l_partkey": 91i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 5.0d, "l_extendedprice": 4955.45d, "l_discount": 0.1d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-06-02", "l_commitdate": "1994-05-03", "l_receiptdate": "1994-06-21", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "uffily blithely ironic requests" }, { "l_orderkey": 5376i32, "l_partkey": 91i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 44.0d, "l_extendedprice": 43607.96d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-08-30", "l_commitdate": "1994-08-05", "l_receiptdate": "1994-09-07", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "ithe packages detect final theodolites. f" }, { "l_orderkey": 4321i32, "l_partkey": 91i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 4.0d, "l_extendedprice": 3964.36d, "l_discount": 0.02d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-09-10", "l_commitdate": "1994-10-06", "l_receiptdate": "1994-09-11", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "ironic deposi" }, { "l_orderkey": 4835i32, "l_partkey": 91i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 3.0d, "l_extendedprice": 2973.27d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-01-24", "l_commitdate": "1995-01-12", "l_receiptdate": "1995-02-16", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "etimes final pac" }, { "l_orderkey": 2818i32, "l_partkey": 91i32, "l_suppkey": 5i32, "l_linenumber": 6i32, "l_quantity": 7.0d, "l_extendedprice": 6937.63d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-03-24", "l_commitdate": "1995-03-09", "l_receiptdate": "1995-04-06", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "ly according to the r" }, { "l_orderkey": 3588i32, "l_partkey": 91i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 28.0d, "l_extendedprice": 27750.52d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-05-03", "l_commitdate": "1995-05-03", "l_receiptdate": "1995-05-14", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "special pinto beans cajole slyly. slyly " }, { "l_orderkey": 897i32, "l_partkey": 91i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 15.0d, "l_extendedprice": 14866.35d, "l_discount": 0.07d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-05-25", "l_commitdate": "1995-05-09", "l_receiptdate": "1995-06-07", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "r ideas. slyly spec" }, { "l_orderkey": 961i32, "l_partkey": 91i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 18.0d, "l_extendedprice": 17839.62d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-01", "l_commitdate": "1995-08-14", "l_receiptdate": "1995-07-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "rmanent foxes haggle speci" }, { "l_orderkey": 613i32, "l_partkey": 91i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 17.0d, "l_extendedprice": 16848.53d, "l_discount": 0.06d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-23", "l_commitdate": "1995-08-04", "l_receiptdate": "1995-10-15", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "ar dependencie" }, { "l_orderkey": 2181i32, "l_partkey": 91i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 15.0d, "l_extendedprice": 14866.35d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-05", "l_commitdate": "1995-10-27", "l_receiptdate": "1995-11-03", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "e above the fluffily regul" }, { "l_orderkey": 3558i32, "l_partkey": 91i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 22.0d, "l_extendedprice": 21803.98d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-04-27", "l_commitdate": "1996-04-19", "l_receiptdate": "1996-04-30", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "refully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are f" }, { "l_orderkey": 806i32, "l_partkey": 91i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 4.0d, "l_extendedprice": 3964.36d, "l_discount": 0.04d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-09", "l_commitdate": "1996-09-18", "l_receiptdate": "1996-08-13", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "eans. quickly ironic ideas " }, { "l_orderkey": 5186i32, "l_partkey": 91i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 31.0d, "l_extendedprice": 30723.79d, "l_discount": 0.09d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-19", "l_commitdate": "1996-09-26", "l_receiptdate": "1996-10-25", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": " accounts use furiously slyly spe" }, { "l_orderkey": 3105i32, "l_partkey": 91i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 23.0d, "l_extendedprice": 22795.07d, "l_discount": 0.04d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-08", "l_commitdate": "1996-12-14", "l_receiptdate": "1997-03-18", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": " detect slyly. blithely unusual requests ar" }, { "l_orderkey": 5158i32, "l_partkey": 91i32, "l_suppkey": 5i32, "l_linenumber": 7i32, "l_quantity": 38.0d, "l_extendedprice": 37661.42d, "l_discount": 0.1d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-09", "l_commitdate": "1997-03-03", "l_receiptdate": "1997-06-04", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "uffily regular ac" }, { "l_orderkey": 2117i32, "l_partkey": 91i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 24.0d, "l_extendedprice": 23786.16d, "l_discount": 0.0d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-15", "l_commitdate": "1997-05-27", "l_receiptdate": "1997-06-18", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "thely slyly pending platelets. ironic, " }, { "l_orderkey": 3077i32, "l_partkey": 91i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 40.0d, "l_extendedprice": 39643.6d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-10-22", "l_commitdate": "1997-09-19", "l_receiptdate": "1997-11-19", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "to the enticing packag" }, { "l_orderkey": 1794i32, "l_partkey": 91i32, "l_suppkey": 3i32, "l_linenumber": 6i32, "l_quantity": 37.0d, "l_extendedprice": 36670.33d, "l_discount": 0.01d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-12", "l_commitdate": "1997-12-21", "l_receiptdate": "1998-01-17", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "ackages. pinto" }, { "l_orderkey": 3360i32, "l_partkey": 91i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 29.0d, "l_extendedprice": 28741.61d, "l_discount": 0.0d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-15", "l_commitdate": "1998-02-25", "l_receiptdate": "1998-05-13", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "press asymptotes. furiously final " }, { "l_orderkey": 4486i32, "l_partkey": 91i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 28.0d, "l_extendedprice": 27750.52d, "l_discount": 0.07d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-21", "l_commitdate": "1998-04-19", "l_receiptdate": "1998-04-26", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "to the furious, regular foxes play abov" }, { "l_orderkey": 4448i32, "l_partkey": 91i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 41.0d, "l_extendedprice": 40634.69d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-30", "l_commitdate": "1998-08-09", "l_receiptdate": "1998-08-03", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "pon the permanently even excuses nag " }, { "l_orderkey": 2407i32, "l_partkey": 91i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 10.0d, "l_extendedprice": 9910.9d, "l_discount": 0.01d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-14", "l_commitdate": "1998-09-10", "l_receiptdate": "1998-08-29", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": " pending instructions. theodolites x-" }, { "l_orderkey": 741i32, "l_partkey": 91i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 22.0d, "l_extendedprice": 21803.98d, "l_discount": 0.09d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-09-07", "l_commitdate": "1998-09-28", "l_receiptdate": "1998-09-12", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "ven deposits about the regular, ironi" } ] }
-{ "partkey": 97i32, "lines": [ { "l_orderkey": 4800i32, "l_partkey": 97i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 11.0d, "l_extendedprice": 10967.99d, "l_discount": 0.03d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-01-27", "l_commitdate": "1992-03-16", "l_receiptdate": "1992-02-19", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "ic dependenc" }, { "l_orderkey": 1856i32, "l_partkey": 97i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 47.0d, "l_extendedprice": 46863.23d, "l_discount": 0.07d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-03-22", "l_commitdate": "1992-06-09", "l_receiptdate": "1992-04-17", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "ingly blithe theodolites. slyly pending " }, { "l_orderkey": 4035i32, "l_partkey": 97i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 4.0d, "l_extendedprice": 3988.36d, "l_discount": 0.08d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-04-21", "l_commitdate": "1992-04-23", "l_receiptdate": "1992-04-25", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "ilent, even pear" }, { "l_orderkey": 1057i32, "l_partkey": 97i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 7.0d, "l_extendedprice": 6979.63d, "l_discount": 0.06d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-06-05", "l_commitdate": "1992-04-30", "l_receiptdate": "1992-06-20", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "y slyly express theodolites. slyly bo" }, { "l_orderkey": 1154i32, "l_partkey": 97i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 5.0d, "l_extendedprice": 4985.45d, "l_discount": 0.09d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-06-07", "l_commitdate": "1992-05-07", "l_receiptdate": "1992-07-05", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "the furiously " }, { "l_orderkey": 5121i32, "l_partkey": 97i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 27.0d, "l_extendedprice": 26921.43d, "l_discount": 0.08d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-06-17", "l_commitdate": "1992-06-11", "l_receiptdate": "1992-06-19", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "ly silent theodolit" }, { "l_orderkey": 5095i32, "l_partkey": 97i32, "l_suppkey": 8i32, "l_linenumber": 6i32, "l_quantity": 15.0d, "l_extendedprice": 14956.35d, "l_discount": 0.01d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-07-11", "l_commitdate": "1992-07-12", "l_receiptdate": "1992-08-09", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": " to the packages wake sly" }, { "l_orderkey": 3655i32, "l_partkey": 97i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 1.0d, "l_extendedprice": 997.09d, "l_discount": 0.1d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-10-24", "l_commitdate": "1992-12-18", "l_receiptdate": "1992-11-07", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "arefully slow pinto beans are" }, { "l_orderkey": 5029i32, "l_partkey": 97i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 2.0d, "l_extendedprice": 1994.18d, "l_discount": 0.0d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-11-25", "l_commitdate": "1993-01-04", "l_receiptdate": "1992-12-20", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "packages. furiously ironi" }, { "l_orderkey": 1216i32, "l_partkey": 97i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 8.0d, "l_extendedprice": 7976.72d, "l_discount": 0.03d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-02-01", "l_commitdate": "1993-03-06", "l_receiptdate": "1993-02-08", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": " of the carefully express" }, { "l_orderkey": 226i32, "l_partkey": 97i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 4.0d, "l_extendedprice": 3988.36d, "l_discount": 0.0d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-03-31", "l_commitdate": "1993-04-30", "l_receiptdate": "1993-04-10", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "c foxes integrate carefully against th" }, { "l_orderkey": 2241i32, "l_partkey": 97i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 48.0d, "l_extendedprice": 47860.32d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-05-14", "l_commitdate": "1993-07-30", "l_receiptdate": "1993-05-26", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "ss accounts engage furiously. slyly even re" }, { "l_orderkey": 358i32, "l_partkey": 97i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 15.0d, "l_extendedprice": 14956.35d, "l_discount": 0.08d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-10-04", "l_commitdate": "1993-12-17", "l_receiptdate": "1993-10-23", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "out the blithely ironic deposits slee" }, { "l_orderkey": 261i32, "l_partkey": 97i32, "l_suppkey": 9i32, "l_linenumber": 6i32, "l_quantity": 20.0d, "l_extendedprice": 19941.8d, "l_discount": 0.06d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-10-15", "l_commitdate": "1993-09-05", "l_receiptdate": "1993-11-07", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "ing to the special, ironic deposi" }, { "l_orderkey": 2048i32, "l_partkey": 97i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 11.0d, "l_extendedprice": 10967.99d, "l_discount": 0.1d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-12-20", "l_commitdate": "1994-01-19", "l_receiptdate": "1994-01-04", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "totes. idly ironic packages nag" }, { "l_orderkey": 3072i32, "l_partkey": 97i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 7.0d, "l_extendedprice": 6979.63d, "l_discount": 0.04d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-05-09", "l_commitdate": "1994-03-31", "l_receiptdate": "1994-05-19", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "uests. ironic, ironic depos" }, { "l_orderkey": 355i32, "l_partkey": 97i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 41.0d, "l_extendedprice": 40880.69d, "l_discount": 0.05d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-08-15", "l_commitdate": "1994-07-19", "l_receiptdate": "1994-09-06", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": " deposits. carefully r" }, { "l_orderkey": 4065i32, "l_partkey": 97i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 33.0d, "l_extendedprice": 32903.97d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-09-03", "l_commitdate": "1994-08-16", "l_receiptdate": "1994-09-13", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "ain blithely " }, { "l_orderkey": 3430i32, "l_partkey": 97i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 41.0d, "l_extendedprice": 40880.69d, "l_discount": 0.06d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-02-18", "l_commitdate": "1995-02-21", "l_receiptdate": "1995-03-11", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "cuses. silent excuses h" }, { "l_orderkey": 2208i32, "l_partkey": 97i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 11.0d, "l_extendedprice": 10967.99d, "l_discount": 0.08d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-05-06", "l_commitdate": "1995-07-19", "l_receiptdate": "1995-05-22", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "ding waters lose. furiously regu" }, { "l_orderkey": 961i32, "l_partkey": 97i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 42.0d, "l_extendedprice": 41877.78d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-24", "l_commitdate": "1995-08-21", "l_receiptdate": "1995-09-10", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "ests do cajole blithely. furiously bo" }, { "l_orderkey": 3393i32, "l_partkey": 97i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 25.0d, "l_extendedprice": 24927.25d, "l_discount": 0.07d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-17", "l_commitdate": "1995-08-12", "l_receiptdate": "1995-11-11", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "ng excuses" }, { "l_orderkey": 871i32, "l_partkey": 97i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 48.0d, "l_extendedprice": 47860.32d, "l_discount": 0.1d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-02-25", "l_commitdate": "1996-02-09", "l_receiptdate": "1996-03-18", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "coys dazzle slyly slow notornis. f" }, { "l_orderkey": 2945i32, "l_partkey": 97i32, "l_suppkey": 9i32, "l_linenumber": 6i32, "l_quantity": 45.0d, "l_extendedprice": 44869.05d, "l_discount": 0.07d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-01", "l_commitdate": "1996-03-25", "l_receiptdate": "1996-03-08", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "ainst the final packages" }, { "l_orderkey": 3715i32, "l_partkey": 97i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 13.0d, "l_extendedprice": 12962.17d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-11", "l_commitdate": "1996-04-25", "l_receiptdate": "1996-06-09", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "e quickly ironic" }, { "l_orderkey": 5987i32, "l_partkey": 97i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 37.0d, "l_extendedprice": 36892.33d, "l_discount": 0.08d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-15", "l_commitdate": "1996-10-27", "l_receiptdate": "1996-11-09", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "le furiously carefully special " }, { "l_orderkey": 5537i32, "l_partkey": 97i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 38.0d, "l_extendedprice": 37889.42d, "l_discount": 0.01d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-06", "l_commitdate": "1996-11-23", "l_receiptdate": "1996-11-12", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "s above the carefully ironic deposits " }, { "l_orderkey": 2850i32, "l_partkey": 97i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 43.0d, "l_extendedprice": 42874.87d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-11", "l_commitdate": "1996-11-03", "l_receiptdate": "1997-02-01", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "unusual accounts" }, { "l_orderkey": 387i32, "l_partkey": 97i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 40.0d, "l_extendedprice": 39883.6d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-08", "l_commitdate": "1997-04-18", "l_receiptdate": "1997-03-31", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": " quickly ironic platelets are slyly. fluff" }, { "l_orderkey": 484i32, "l_partkey": 97i32, "l_suppkey": 9i32, "l_linenumber": 6i32, "l_quantity": 10.0d, "l_extendedprice": 9970.9d, "l_discount": 0.01d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-06", "l_commitdate": "1997-02-14", "l_receiptdate": "1997-04-16", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "x fluffily carefully regular" }, { "l_orderkey": 1606i32, "l_partkey": 97i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 20.0d, "l_extendedprice": 19941.8d, "l_discount": 0.02d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-01", "l_commitdate": "1997-05-26", "l_receiptdate": "1997-05-28", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "fily carefu" }, { "l_orderkey": 1698i32, "l_partkey": 97i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 44.0d, "l_extendedprice": 43871.96d, "l_discount": 0.05d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-16", "l_commitdate": "1997-07-05", "l_receiptdate": "1997-05-27", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "ts wake slyly after t" }, { "l_orderkey": 4934i32, "l_partkey": 97i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 48.0d, "l_extendedprice": 47860.32d, "l_discount": 0.0d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-20", "l_commitdate": "1997-04-22", "l_receiptdate": "1997-06-02", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": " ideas cajol" }, { "l_orderkey": 5286i32, "l_partkey": 97i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 7.0d, "l_extendedprice": 6979.63d, "l_discount": 0.06d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-10-23", "l_commitdate": "1997-12-10", "l_receiptdate": "1997-11-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "y express instructions sleep carefull" }, { "l_orderkey": 5412i32, "l_partkey": 97i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 26.0d, "l_extendedprice": 25924.34d, "l_discount": 0.02d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-22", "l_commitdate": "1998-04-19", "l_receiptdate": "1998-02-17", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": " the blithel" }, { "l_orderkey": 4644i32, "l_partkey": 97i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 16.0d, "l_extendedprice": 15953.44d, "l_discount": 0.03d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-13", "l_commitdate": "1998-02-21", "l_receiptdate": "1998-04-03", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "lar excuses across the " }, { "l_orderkey": 5280i32, "l_partkey": 97i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 16.0d, "l_extendedprice": 15953.44d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-29", "l_commitdate": "1998-01-28", "l_receiptdate": "1998-04-03", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": " foxes are furiously. theodoli" }, { "l_orderkey": 71i32, "l_partkey": 97i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 33.0d, "l_extendedprice": 32903.97d, "l_discount": 0.0d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-12", "l_commitdate": "1998-03-20", "l_receiptdate": "1998-04-15", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": " serve quickly fluffily bold deposi" }, { "l_orderkey": 2278i32, "l_partkey": 97i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 22.0d, "l_extendedprice": 21935.98d, "l_discount": 0.03d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-15", "l_commitdate": "1998-07-14", "l_receiptdate": "1998-06-04", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "ep regular accounts. blithely even" } ] }
-{ "partkey": 98i32, "lines": [ { "l_orderkey": 5603i32, "l_partkey": 98i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 50.0d, "l_extendedprice": 49904.5d, "l_discount": 0.03d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-10-06", "l_commitdate": "1992-08-20", "l_receiptdate": "1992-10-08", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "final theodolites accor" }, { "l_orderkey": 1159i32, "l_partkey": 98i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 11.0d, "l_extendedprice": 10978.99d, "l_discount": 0.1d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-12-09", "l_commitdate": "1992-12-07", "l_receiptdate": "1992-12-18", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "h furiousl" }, { "l_orderkey": 678i32, "l_partkey": 98i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 16.0d, "l_extendedprice": 15969.44d, "l_discount": 0.06d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-03-09", "l_commitdate": "1993-04-18", "l_receiptdate": "1993-04-07", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": " about the " }, { "l_orderkey": 5414i32, "l_partkey": 98i32, "l_suppkey": 1i32, "l_linenumber": 6i32, "l_quantity": 28.0d, "l_extendedprice": 27946.52d, "l_discount": 0.1d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-03-27", "l_commitdate": "1993-06-04", "l_receiptdate": "1993-04-07", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "ts sleep sl" }, { "l_orderkey": 3778i32, "l_partkey": 98i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 28.0d, "l_extendedprice": 27946.52d, "l_discount": 0.01d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-09-02", "l_commitdate": "1993-08-08", "l_receiptdate": "1993-10-02", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "r deposits. theodol" }, { "l_orderkey": 4932i32, "l_partkey": 98i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 11.0d, "l_extendedprice": 10978.99d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-09-21", "l_commitdate": "1993-09-30", "l_receiptdate": "1993-09-23", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "as. special depende" }, { "l_orderkey": 3463i32, "l_partkey": 98i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 43.0d, "l_extendedprice": 42917.87d, "l_discount": 0.04d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-10-28", "l_commitdate": "1993-09-24", "l_receiptdate": "1993-11-03", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": " across the " }, { "l_orderkey": 1888i32, "l_partkey": 98i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 27.0d, "l_extendedprice": 26948.43d, "l_discount": 0.03d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-02-13", "l_commitdate": "1994-01-16", "l_receiptdate": "1994-02-25", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": ". carefully special dolphins sle" }, { "l_orderkey": 3777i32, "l_partkey": 98i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 14.0d, "l_extendedprice": 13973.26d, "l_discount": 0.04d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-05-06", "l_commitdate": "1994-06-24", "l_receiptdate": "1994-05-31", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "ording to the iro" }, { "l_orderkey": 963i32, "l_partkey": 98i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 48.0d, "l_extendedprice": 47908.32d, "l_discount": 0.1d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-08-25", "l_commitdate": "1994-08-12", "l_receiptdate": "1994-09-21", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "ages. quickly express deposits cajole pe" }, { "l_orderkey": 1125i32, "l_partkey": 98i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 29.0d, "l_extendedprice": 28944.61d, "l_discount": 0.06d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-11-29", "l_commitdate": "1994-12-20", "l_receiptdate": "1994-12-10", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": " platelets wake against the carefully i" }, { "l_orderkey": 2883i32, "l_partkey": 98i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 23.0d, "l_extendedprice": 22956.07d, "l_discount": 0.0d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-02-03", "l_commitdate": "1995-03-17", "l_receiptdate": "1995-02-19", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": " even requests cajole. special, regular " }, { "l_orderkey": 4960i32, "l_partkey": 98i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 8.0d, "l_extendedprice": 7984.72d, "l_discount": 0.07d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-03-14", "l_commitdate": "1995-04-18", "l_receiptdate": "1995-04-09", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "as. busily regular packages nag. " }, { "l_orderkey": 3526i32, "l_partkey": 98i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 11.0d, "l_extendedprice": 10978.99d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-05-23", "l_commitdate": "1995-05-28", "l_receiptdate": "1995-05-24", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "ges. furiously regular d" }, { "l_orderkey": 5696i32, "l_partkey": 98i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 20.0d, "l_extendedprice": 19961.8d, "l_discount": 0.08d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-06-25", "l_commitdate": "1995-07-18", "l_receiptdate": "1995-07-16", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "silent, pending ideas sleep fluffil" }, { "l_orderkey": 4390i32, "l_partkey": 98i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 32.0d, "l_extendedprice": 31938.88d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-15", "l_commitdate": "1995-08-12", "l_receiptdate": "1995-10-05", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "ctions across" }, { "l_orderkey": 3617i32, "l_partkey": 98i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 32.0d, "l_extendedprice": 31938.88d, "l_discount": 0.0d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-04-20", "l_commitdate": "1996-06-07", "l_receiptdate": "1996-05-19", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "uriously against the express accounts. ex" }, { "l_orderkey": 3617i32, "l_partkey": 98i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 16.0d, "l_extendedprice": 15969.44d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-08", "l_commitdate": "1996-06-03", "l_receiptdate": "1996-05-19", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": " slyly on th" }, { "l_orderkey": 1510i32, "l_partkey": 98i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 11.0d, "l_extendedprice": 10978.99d, "l_discount": 0.09d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-23", "l_commitdate": "1996-12-03", "l_receiptdate": "1996-10-01", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "e of the unusual accounts. stealthy deposit" }, { "l_orderkey": 1511i32, "l_partkey": 98i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 29.0d, "l_extendedprice": 28944.61d, "l_discount": 0.01d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-17", "l_commitdate": "1997-02-11", "l_receiptdate": "1997-03-27", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "s cajole furiously against " }, { "l_orderkey": 4225i32, "l_partkey": 98i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 28.0d, "l_extendedprice": 27946.52d, "l_discount": 0.08d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-11", "l_commitdate": "1997-09-01", "l_receiptdate": "1997-08-03", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "ts are requests. even, bold depos" }, { "l_orderkey": 4421i32, "l_partkey": 98i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 37.0d, "l_extendedprice": 36929.33d, "l_discount": 0.09d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-22", "l_commitdate": "1997-06-27", "l_receiptdate": "1997-07-25", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "l accounts. ironic request" }, { "l_orderkey": 5027i32, "l_partkey": 98i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 6.0d, "l_extendedprice": 5988.54d, "l_discount": 0.04d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-28", "l_commitdate": "1997-11-24", "l_receiptdate": "1997-10-25", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "ar, ironic deposi" }, { "l_orderkey": 864i32, "l_partkey": 98i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 7.0d, "l_extendedprice": 6986.63d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-11-13", "l_commitdate": "1997-10-07", "l_receiptdate": "1997-12-13", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "ven requests should sleep along " }, { "l_orderkey": 2561i32, "l_partkey": 98i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 5.0d, "l_extendedprice": 4990.45d, "l_discount": 0.07d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-27", "l_commitdate": "1998-01-23", "l_receiptdate": "1998-01-13", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "p ironic, regular pinto beans." }, { "l_orderkey": 192i32, "l_partkey": 98i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 23.0d, "l_extendedprice": 22956.07d, "l_discount": 0.0d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-02-05", "l_commitdate": "1998-02-06", "l_receiptdate": "1998-03-07", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "ly pending theodolites haggle quickly fluf" }, { "l_orderkey": 1348i32, "l_partkey": 98i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 2.0d, "l_extendedprice": 1996.18d, "l_discount": 0.01d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-30", "l_commitdate": "1998-06-20", "l_receiptdate": "1998-06-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "lly final packages use fluffily express ac" }, { "l_orderkey": 4417i32, "l_partkey": 98i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 35.0d, "l_extendedprice": 34933.15d, "l_discount": 0.06d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-08", "l_commitdate": "1998-09-23", "l_receiptdate": "1998-09-02", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "slyly regular, silent courts. even packag" }, { "l_orderkey": 736i32, "l_partkey": 98i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 14.0d, "l_extendedprice": 13973.26d, "l_discount": 0.06d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-10-04", "l_commitdate": "1998-08-14", "l_receiptdate": "1998-10-16", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "nstructions." } ] }
-{ "partkey": 100i32, "lines": [ { "l_orderkey": 292i32, "l_partkey": 100i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 24.0d, "l_extendedprice": 24002.4d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-03-24", "l_commitdate": "1992-03-06", "l_receiptdate": "1992-04-20", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": " bold, pending theodolites u" }, { "l_orderkey": 2022i32, "l_partkey": 100i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 36.0d, "l_extendedprice": 36003.6d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-03-24", "l_commitdate": "1992-05-07", "l_receiptdate": "1992-04-13", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "ly after the foxes. regular, final inst" }, { "l_orderkey": 4738i32, "l_partkey": 100i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 50.0d, "l_extendedprice": 50005.0d, "l_discount": 0.04d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-06-18", "l_commitdate": "1992-07-04", "l_receiptdate": "1992-07-07", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "the blithely ironic braids sleep slyly" }, { "l_orderkey": 1027i32, "l_partkey": 100i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 13.0d, "l_extendedprice": 13001.3d, "l_discount": 0.08d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-08-22", "l_commitdate": "1992-07-10", "l_receiptdate": "1992-09-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "ily ironic ideas use" }, { "l_orderkey": 933i32, "l_partkey": 100i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 26.0d, "l_extendedprice": 26002.6d, "l_discount": 0.05d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-11-09", "l_commitdate": "1992-11-03", "l_receiptdate": "1992-11-16", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": " the deposits affix slyly after t" }, { "l_orderkey": 2852i32, "l_partkey": 100i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 12.0d, "l_extendedprice": 12001.2d, "l_discount": 0.08d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-02-25", "l_commitdate": "1993-03-24", "l_receiptdate": "1993-03-07", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "le. request" }, { "l_orderkey": 3461i32, "l_partkey": 100i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 49.0d, "l_extendedprice": 49004.9d, "l_discount": 0.06d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-03-09", "l_commitdate": "1993-04-16", "l_receiptdate": "1993-03-13", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "ual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual reques" }, { "l_orderkey": 5954i32, "l_partkey": 100i32, "l_suppkey": 4i32, "l_linenumber": 5i32, "l_quantity": 35.0d, "l_extendedprice": 35003.5d, "l_discount": 0.04d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-03-17", "l_commitdate": "1993-02-06", "l_receiptdate": "1993-04-10", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "tions maintain slyly. furious" }, { "l_orderkey": 1857i32, "l_partkey": 100i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 41.0d, "l_extendedprice": 41004.1d, "l_discount": 0.07d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-04-16", "l_commitdate": "1993-02-16", "l_receiptdate": "1993-04-18", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": " the slyly" }, { "l_orderkey": 4739i32, "l_partkey": 100i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 30.0d, "l_extendedprice": 30003.0d, "l_discount": 0.09d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-05-29", "l_commitdate": "1993-04-12", "l_receiptdate": "1993-06-18", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "ly even packages use across th" }, { "l_orderkey": 3683i32, "l_partkey": 100i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 23.0d, "l_extendedprice": 23002.3d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-07-02", "l_commitdate": "1993-05-16", "l_receiptdate": "1993-07-30", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "xpress accounts sleep slyly re" }, { "l_orderkey": 4928i32, "l_partkey": 100i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 4.0d, "l_extendedprice": 4000.4d, "l_discount": 0.04d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-10-25", "l_commitdate": "1993-12-24", "l_receiptdate": "1993-11-16", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "bout the slyly final accounts. carefull" }, { "l_orderkey": 773i32, "l_partkey": 100i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 5.0d, "l_extendedprice": 5000.5d, "l_discount": 0.06d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-11-21", "l_commitdate": "1993-12-19", "l_receiptdate": "1993-12-21", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "ar requests. regular, thin packages u" }, { "l_orderkey": 641i32, "l_partkey": 100i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 1.0d, "l_extendedprice": 1000.1d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-12-03", "l_commitdate": "1993-10-28", "l_receiptdate": "1993-12-26", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": " nag across the regular foxes." }, { "l_orderkey": 1028i32, "l_partkey": 100i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 8.0d, "l_extendedprice": 8000.8d, "l_discount": 0.03d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-02-14", "l_commitdate": "1994-03-28", "l_receiptdate": "1994-02-22", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "e carefully final packages. furiously fi" }, { "l_orderkey": 3777i32, "l_partkey": 100i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 11.0d, "l_extendedprice": 11001.1d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-04-09", "l_commitdate": "1994-06-05", "l_receiptdate": "1994-04-14", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "ld ideas. even theodolites" }, { "l_orderkey": 4839i32, "l_partkey": 100i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 19.0d, "l_extendedprice": 19001.9d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-05-20", "l_commitdate": "1994-07-14", "l_receiptdate": "1994-05-30", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": " deposits sublate furiously ir" }, { "l_orderkey": 1828i32, "l_partkey": 100i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 33.0d, "l_extendedprice": 33003.3d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-06-27", "l_commitdate": "1994-06-10", "l_receiptdate": "1994-07-24", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "s boost carefully. pending d" }, { "l_orderkey": 3649i32, "l_partkey": 100i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 24.0d, "l_extendedprice": 24002.4d, "l_discount": 0.05d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-07-07", "l_commitdate": "1994-08-20", "l_receiptdate": "1994-07-27", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "c accounts. quickly final theodo" }, { "l_orderkey": 5509i32, "l_partkey": 100i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 45.0d, "l_extendedprice": 45004.5d, "l_discount": 0.0d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-07-24", "l_commitdate": "1994-05-28", "l_receiptdate": "1994-08-20", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "counts sleep. f" }, { "l_orderkey": 3808i32, "l_partkey": 100i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 34.0d, "l_extendedprice": 34003.4d, "l_discount": 0.07d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-08-13", "l_commitdate": "1994-07-22", "l_receiptdate": "1994-08-31", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": " pearls will have to " }, { "l_orderkey": 1152i32, "l_partkey": 100i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 25.0d, "l_extendedprice": 25002.5d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-10-20", "l_commitdate": "1994-09-18", "l_receiptdate": "1994-10-28", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "efully ironic accounts. sly instructions wa" }, { "l_orderkey": 5920i32, "l_partkey": 100i32, "l_suppkey": 4i32, "l_linenumber": 5i32, "l_quantity": 42.0d, "l_extendedprice": 42004.2d, "l_discount": 0.09d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-12-18", "l_commitdate": "1995-01-07", "l_receiptdate": "1995-01-14", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "lar, ironic dependencies sno" }, { "l_orderkey": 3233i32, "l_partkey": 100i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 2.0d, "l_extendedprice": 2000.2d, "l_discount": 0.04d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-01-03", "l_commitdate": "1995-01-02", "l_receiptdate": "1995-01-21", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": " across the bold packages" }, { "l_orderkey": 930i32, "l_partkey": 100i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 21.0d, "l_extendedprice": 21002.1d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-02-16", "l_commitdate": "1995-03-03", "l_receiptdate": "1995-03-13", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "foxes. regular deposits integrate carefu" }, { "l_orderkey": 1445i32, "l_partkey": 100i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 24.0d, "l_extendedprice": 24002.4d, "l_discount": 0.01d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-02-21", "l_commitdate": "1995-02-22", "l_receiptdate": "1995-03-18", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "al accounts use furiously a" }, { "l_orderkey": 4134i32, "l_partkey": 100i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 45.0d, "l_extendedprice": 45004.5d, "l_discount": 0.08d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-04-11", "l_commitdate": "1995-03-27", "l_receiptdate": "1995-04-17", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "ironic pin" }, { "l_orderkey": 4742i32, "l_partkey": 100i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 45.0d, "l_extendedprice": 45004.5d, "l_discount": 0.05d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-05-12", "l_commitdate": "1995-05-14", "l_receiptdate": "1995-06-07", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "ke carefully. do" }, { "l_orderkey": 2785i32, "l_partkey": 100i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 34.0d, "l_extendedprice": 34003.4d, "l_discount": 0.08d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-07", "l_commitdate": "1995-09-09", "l_receiptdate": "1995-09-05", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "ly final packages haggl" }, { "l_orderkey": 5799i32, "l_partkey": 100i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 30.0d, "l_extendedprice": 30003.0d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-12", "l_commitdate": "1995-09-13", "l_receiptdate": "1995-09-19", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": " furiously s" }, { "l_orderkey": 166i32, "l_partkey": 100i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 41.0d, "l_extendedprice": 41004.1d, "l_discount": 0.07d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-13", "l_commitdate": "1995-11-07", "l_receiptdate": "1995-12-08", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "hily along the blithely pending fo" }, { "l_orderkey": 1223i32, "l_partkey": 100i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 28.0d, "l_extendedprice": 28002.8d, "l_discount": 0.1d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-07", "l_commitdate": "1996-07-24", "l_receiptdate": "1996-08-13", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": " quickly ironic requests. furious" }, { "l_orderkey": 4262i32, "l_partkey": 100i32, "l_suppkey": 3i32, "l_linenumber": 5i32, "l_quantity": 28.0d, "l_extendedprice": 28002.8d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-22", "l_commitdate": "1996-09-06", "l_receiptdate": "1996-11-13", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "ironic, regular depend" }, { "l_orderkey": 1890i32, "l_partkey": 100i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 43.0d, "l_extendedprice": 43004.3d, "l_discount": 0.07d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-30", "l_commitdate": "1997-01-31", "l_receiptdate": "1997-01-19", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "p ironic, express accounts. fu" }, { "l_orderkey": 1606i32, "l_partkey": 100i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 23.0d, "l_extendedprice": 23002.3d, "l_discount": 0.0d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-19", "l_commitdate": "1997-06-26", "l_receiptdate": "1997-04-30", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "ously final requests. slowly ironic ex" }, { "l_orderkey": 2470i32, "l_partkey": 100i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 50.0d, "l_extendedprice": 50005.0d, "l_discount": 0.03d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-02", "l_commitdate": "1997-06-01", "l_receiptdate": "1997-06-09", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": " packages " }, { "l_orderkey": 675i32, "l_partkey": 100i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 15.0d, "l_extendedprice": 15001.5d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-10-18", "l_commitdate": "1997-09-28", "l_receiptdate": "1997-11-13", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "posits after the furio" }, { "l_orderkey": 3170i32, "l_partkey": 100i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 21.0d, "l_extendedprice": 21002.1d, "l_discount": 0.01d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-09", "l_commitdate": "1998-01-31", "l_receiptdate": "1997-12-21", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "o beans. carefully final requests dou" }, { "l_orderkey": 4961i32, "l_partkey": 100i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 10.0d, "l_extendedprice": 10001.0d, "l_discount": 0.02d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-15", "l_commitdate": "1998-07-03", "l_receiptdate": "1998-04-18", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "quests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. " }, { "l_orderkey": 2567i32, "l_partkey": 100i32, "l_suppkey": 3i32, "l_linenumber": 6i32, "l_quantity": 32.0d, "l_extendedprice": 32003.2d, "l_discount": 0.01d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-24", "l_commitdate": "1998-04-30", "l_receiptdate": "1998-06-14", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": " the even, iro" }, { "l_orderkey": 5633i32, "l_partkey": 100i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 48.0d, "l_extendedprice": 48004.8d, "l_discount": 0.01d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-24", "l_commitdate": "1998-07-22", "l_receiptdate": "1998-07-18", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "even courts haggle slyly at the requ" } ] }
-{ "partkey": 106i32, "lines": [ { "l_orderkey": 5095i32, "l_partkey": 106i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 2.0d, "l_extendedprice": 2012.2d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-07-09", "l_commitdate": "1992-05-25", "l_receiptdate": "1992-07-21", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "detect car" }, { "l_orderkey": 3681i32, "l_partkey": 106i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 35.0d, "l_extendedprice": 35213.5d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-07-31", "l_commitdate": "1992-05-18", "l_receiptdate": "1992-08-07", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "lyly special pinto " }, { "l_orderkey": 967i32, "l_partkey": 106i32, "l_suppkey": 9i32, "l_linenumber": 6i32, "l_quantity": 17.0d, "l_extendedprice": 17103.7d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-10-02", "l_commitdate": "1992-08-19", "l_receiptdate": "1992-10-25", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "y ironic foxes caj" }, { "l_orderkey": 3014i32, "l_partkey": 106i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 36.0d, "l_extendedprice": 36219.6d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-12-28", "l_commitdate": "1992-12-29", "l_receiptdate": "1993-01-24", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "iously ironic r" }, { "l_orderkey": 3076i32, "l_partkey": 106i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 22.0d, "l_extendedprice": 22134.2d, "l_discount": 0.08d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-09-05", "l_commitdate": "1993-09-10", "l_receiptdate": "1993-09-27", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "packages wake furiou" }, { "l_orderkey": 2628i32, "l_partkey": 106i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 44.0d, "l_extendedprice": 44268.4d, "l_discount": 0.07d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-01-11", "l_commitdate": "1994-01-14", "l_receiptdate": "1994-01-13", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "lyly final, pending ide" }, { "l_orderkey": 229i32, "l_partkey": 106i32, "l_suppkey": 9i32, "l_linenumber": 6i32, "l_quantity": 29.0d, "l_extendedprice": 29176.9d, "l_discount": 0.04d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-01-14", "l_commitdate": "1994-02-16", "l_receiptdate": "1994-01-22", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "uriously pending " }, { "l_orderkey": 2628i32, "l_partkey": 106i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 14.0d, "l_extendedprice": 14085.4d, "l_discount": 0.01d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-01-28", "l_commitdate": "1993-11-30", "l_receiptdate": "1994-02-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "g the furiously unusual pi" }, { "l_orderkey": 5155i32, "l_partkey": 106i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 28.0d, "l_extendedprice": 28170.8d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-07-01", "l_commitdate": "1994-07-19", "l_receiptdate": "1994-07-18", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "s cajole. accounts wake. thinly quiet pla" }, { "l_orderkey": 4327i32, "l_partkey": 106i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 40.0d, "l_extendedprice": 40244.0d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "F", "l_shipdate": "1995-05-26", "l_commitdate": "1995-04-17", "l_receiptdate": "1995-06-18", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "quests. packages are after th" }, { "l_orderkey": 3457i32, "l_partkey": 106i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 22.0d, "l_extendedprice": 22134.2d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-06-23", "l_commitdate": "1995-06-16", "l_receiptdate": "1995-06-29", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "packages nag furiously against" }, { "l_orderkey": 197i32, "l_partkey": 106i32, "l_suppkey": 1i32, "l_linenumber": 6i32, "l_quantity": 1.0d, "l_extendedprice": 1006.1d, "l_discount": 0.07d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-15", "l_commitdate": "1995-06-21", "l_receiptdate": "1995-08-11", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": " even, thin dependencies sno" }, { "l_orderkey": 1317i32, "l_partkey": 106i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 35.0d, "l_extendedprice": 35213.5d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-16", "l_commitdate": "1995-07-07", "l_receiptdate": "1995-07-22", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "r packages impress blithely car" }, { "l_orderkey": 1926i32, "l_partkey": 106i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 29.0d, "l_extendedprice": 29176.9d, "l_discount": 0.09d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-02-26", "l_commitdate": "1996-03-14", "l_receiptdate": "1996-03-14", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "es. dependencies according to the fl" }, { "l_orderkey": 5632i32, "l_partkey": 106i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 21.0d, "l_extendedprice": 21128.1d, "l_discount": 0.02d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-22", "l_commitdate": "1996-03-10", "l_receiptdate": "1996-04-10", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "refully regular pinto beans. ironic reques" }, { "l_orderkey": 2598i32, "l_partkey": 106i32, "l_suppkey": 3i32, "l_linenumber": 5i32, "l_quantity": 12.0d, "l_extendedprice": 12073.2d, "l_discount": 0.01d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-04-14", "l_commitdate": "1996-04-24", "l_receiptdate": "1996-04-21", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "eposits cajol" }, { "l_orderkey": 1283i32, "l_partkey": 106i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 1.0d, "l_extendedprice": 1006.1d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-07", "l_commitdate": "1996-10-12", "l_receiptdate": "1996-10-08", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "d the sauternes. slyly ev" }, { "l_orderkey": 1186i32, "l_partkey": 106i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 27.0d, "l_extendedprice": 27164.7d, "l_discount": 0.06d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-08", "l_commitdate": "1996-11-06", "l_receiptdate": "1996-10-09", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "accounts. express, e" }, { "l_orderkey": 1122i32, "l_partkey": 106i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 40.0d, "l_extendedprice": 40244.0d, "l_discount": 0.08d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-07", "l_commitdate": "1997-03-25", "l_receiptdate": "1997-02-25", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "packages sleep after the asym" }, { "l_orderkey": 4836i32, "l_partkey": 106i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 15.0d, "l_extendedprice": 15091.5d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-08", "l_commitdate": "1997-03-14", "l_receiptdate": "1997-03-30", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "eep slyly. even requests cajole" }, { "l_orderkey": 2501i32, "l_partkey": 106i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 33.0d, "l_extendedprice": 33201.3d, "l_discount": 0.01d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-14", "l_commitdate": "1997-08-09", "l_receiptdate": "1997-07-26", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "leep furiously packages. even sauternes " }, { "l_orderkey": 4001i32, "l_partkey": 106i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 26.0d, "l_extendedprice": 26158.6d, "l_discount": 0.0d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-26", "l_commitdate": "1997-06-18", "l_receiptdate": "1997-08-08", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "tegrate blithely" }, { "l_orderkey": 3520i32, "l_partkey": 106i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 5.0d, "l_extendedprice": 5030.5d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-11-13", "l_commitdate": "1997-09-22", "l_receiptdate": "1997-12-09", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "ly even ideas haggle " }, { "l_orderkey": 519i32, "l_partkey": 106i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 19.0d, "l_extendedprice": 19115.9d, "l_discount": 0.0d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-09", "l_commitdate": "1998-01-03", "l_receiptdate": "1998-02-06", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "asymptotes. p" }, { "l_orderkey": 4352i32, "l_partkey": 106i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 18.0d, "l_extendedprice": 18109.8d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-02-27", "l_commitdate": "1998-02-02", "l_receiptdate": "1998-03-01", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "ding to th" }, { "l_orderkey": 5351i32, "l_partkey": 106i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 2.0d, "l_extendedprice": 2012.2d, "l_discount": 0.0d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-12", "l_commitdate": "1998-07-15", "l_receiptdate": "1998-05-24", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "g accounts wake furiously slyly even dolph" }, { "l_orderkey": 3717i32, "l_partkey": 106i32, "l_suppkey": 7i32, "l_linenumber": 7i32, "l_quantity": 28.0d, "l_extendedprice": 28170.8d, "l_discount": 0.03d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-25", "l_commitdate": "1998-08-12", "l_receiptdate": "1998-08-16", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "ts sleep q" } ] }
-{ "partkey": 114i32, "lines": [ { "l_orderkey": 3014i32, "l_partkey": 114i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 14.0d, "l_extendedprice": 14197.54d, "l_discount": 0.1d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-11-19", "l_commitdate": "1993-01-01", "l_receiptdate": "1992-12-17", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": ". slyly brave platelets nag. careful," }, { "l_orderkey": 1506i32, "l_partkey": 114i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 30.0d, "l_extendedprice": 30423.3d, "l_discount": 0.07d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-11-22", "l_commitdate": "1992-10-25", "l_receiptdate": "1992-12-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "deposits cajole " }, { "l_orderkey": 710i32, "l_partkey": 114i32, "l_suppkey": 4i32, "l_linenumber": 6i32, "l_quantity": 21.0d, "l_extendedprice": 21296.31d, "l_discount": 0.04d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-03-22", "l_commitdate": "1993-03-05", "l_receiptdate": "1993-03-27", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "es. furiously p" }, { "l_orderkey": 1253i32, "l_partkey": 114i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 19.0d, "l_extendedprice": 19268.09d, "l_discount": 0.05d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-04-01", "l_commitdate": "1993-04-22", "l_receiptdate": "1993-04-14", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "al pinto bea" }, { "l_orderkey": 4004i32, "l_partkey": 114i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 39.0d, "l_extendedprice": 39550.29d, "l_discount": 0.1d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-07-12", "l_commitdate": "1993-07-27", "l_receiptdate": "1993-07-18", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "ccounts sleep furious" }, { "l_orderkey": 1604i32, "l_partkey": 114i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 19.0d, "l_extendedprice": 19268.09d, "l_discount": 0.09d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-10-15", "l_commitdate": "1993-10-04", "l_receiptdate": "1993-11-09", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": " ideas. bol" }, { "l_orderkey": 1795i32, "l_partkey": 114i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 34.0d, "l_extendedprice": 34479.74d, "l_discount": 0.08d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-04-24", "l_commitdate": "1994-06-01", "l_receiptdate": "1994-05-08", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "closely regular instructions wake. " }, { "l_orderkey": 355i32, "l_partkey": 114i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 31.0d, "l_extendedprice": 31437.41d, "l_discount": 0.09d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-07-13", "l_commitdate": "1994-08-18", "l_receiptdate": "1994-07-18", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "y unusual, ironic" }, { "l_orderkey": 4452i32, "l_partkey": 114i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 21.0d, "l_extendedprice": 21296.31d, "l_discount": 0.07d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-10-06", "l_commitdate": "1994-08-23", "l_receiptdate": "1994-10-15", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "multipliers x-ray carefully in place of " }, { "l_orderkey": 4006i32, "l_partkey": 114i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 25.0d, "l_extendedprice": 25352.75d, "l_discount": 0.0d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-02-23", "l_commitdate": "1995-02-09", "l_receiptdate": "1995-02-24", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": " requests use depos" }, { "l_orderkey": 1440i32, "l_partkey": 114i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 46.0d, "l_extendedprice": 46649.06d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-21", "l_commitdate": "1995-10-19", "l_receiptdate": "1995-10-19", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "blithely even instructions. " }, { "l_orderkey": 5281i32, "l_partkey": 114i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 37.0d, "l_extendedprice": 37522.07d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-10", "l_commitdate": "1996-01-31", "l_receiptdate": "1995-11-22", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "ronic dependencies. fluffily final p" }, { "l_orderkey": 2532i32, "l_partkey": 114i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 9.0d, "l_extendedprice": 9126.99d, "l_discount": 0.09d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-30", "l_commitdate": "1995-11-23", "l_receiptdate": "1995-12-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "cial ideas haggle slyly pending request" }, { "l_orderkey": 2663i32, "l_partkey": 114i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 35.0d, "l_extendedprice": 35493.85d, "l_discount": 0.02d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-11", "l_commitdate": "1995-10-16", "l_receiptdate": "1996-01-07", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "tect. slyly fina" }, { "l_orderkey": 357i32, "l_partkey": 114i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 26.0d, "l_extendedprice": 26366.86d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-28", "l_commitdate": "1996-11-26", "l_receiptdate": "1997-01-13", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": " carefully pending accounts use a" }, { "l_orderkey": 2469i32, "l_partkey": 114i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 16.0d, "l_extendedprice": 16225.76d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-19", "l_commitdate": "1997-02-04", "l_receiptdate": "1997-03-18", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "ing asymptotes " }, { "l_orderkey": 5090i32, "l_partkey": 114i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 2.0d, "l_extendedprice": 2028.22d, "l_discount": 0.03d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-07", "l_commitdate": "1997-04-23", "l_receiptdate": "1997-05-01", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "tes. slowly iro" }, { "l_orderkey": 1635i32, "l_partkey": 114i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 20.0d, "l_extendedprice": 20282.2d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-19", "l_commitdate": "1997-04-01", "l_receiptdate": "1997-06-17", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "oost according to the carefully even accou" }, { "l_orderkey": 1636i32, "l_partkey": 114i32, "l_suppkey": 1i32, "l_linenumber": 7i32, "l_quantity": 7.0d, "l_extendedprice": 7098.77d, "l_discount": 0.04d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-28", "l_commitdate": "1997-09-10", "l_receiptdate": "1997-07-31", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "ronic instructions. final" }, { "l_orderkey": 5345i32, "l_partkey": 114i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 37.0d, "l_extendedprice": 37522.07d, "l_discount": 0.01d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-11-01", "l_commitdate": "1997-10-09", "l_receiptdate": "1997-11-26", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": " along the ironically fina" }, { "l_orderkey": 2692i32, "l_partkey": 114i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 21.0d, "l_extendedprice": 21296.31d, "l_discount": 0.03d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-11", "l_commitdate": "1998-02-11", "l_receiptdate": "1998-03-19", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "posits. final, express requests nag furi" }, { "l_orderkey": 5671i32, "l_partkey": 114i32, "l_suppkey": 1i32, "l_linenumber": 6i32, "l_quantity": 30.0d, "l_extendedprice": 30423.3d, "l_discount": 0.09d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-06", "l_commitdate": "1998-04-15", "l_receiptdate": "1998-07-01", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "fily ironi" }, { "l_orderkey": 4196i32, "l_partkey": 114i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 42.0d, "l_extendedprice": 42592.62d, "l_discount": 0.04d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-13", "l_commitdate": "1998-07-18", "l_receiptdate": "1998-09-07", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": " instructions. courts cajole slyly ev" }, { "l_orderkey": 1318i32, "l_partkey": 114i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 24.0d, "l_extendedprice": 24338.64d, "l_discount": 0.08d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-09-27", "l_commitdate": "1998-09-15", "l_receiptdate": "1998-10-12", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "ual, unusual packages. fluffy, iro" } ] }
-{ "partkey": 119i32, "lines": [ { "l_orderkey": 5574i32, "l_partkey": 119i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 27.0d, "l_extendedprice": 27515.97d, "l_discount": 0.1d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-05-08", "l_commitdate": "1992-05-19", "l_receiptdate": "1992-06-05", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "ecial realms. furiously entici" }, { "l_orderkey": 5959i32, "l_partkey": 119i32, "l_suppkey": 3i32, "l_linenumber": 6i32, "l_quantity": 35.0d, "l_extendedprice": 35668.85d, "l_discount": 0.03d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-05-27", "l_commitdate": "1992-06-19", "l_receiptdate": "1992-06-23", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "ely silent deposits. " }, { "l_orderkey": 4294i32, "l_partkey": 119i32, "l_suppkey": 3i32, "l_linenumber": 5i32, "l_quantity": 37.0d, "l_extendedprice": 37707.07d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-09-07", "l_commitdate": "1992-10-13", "l_receiptdate": "1992-09-08", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "cial packages nag f" }, { "l_orderkey": 1857i32, "l_partkey": 119i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 8.0d, "l_extendedprice": 8152.88d, "l_discount": 0.01d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-01-27", "l_commitdate": "1993-04-04", "l_receiptdate": "1993-02-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "slyly about the fluffily silent req" }, { "l_orderkey": 2279i32, "l_partkey": 119i32, "l_suppkey": 9i32, "l_linenumber": 7i32, "l_quantity": 32.0d, "l_extendedprice": 32611.52d, "l_discount": 0.05d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-04-20", "l_commitdate": "1993-05-22", "l_receiptdate": "1993-05-18", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "re quickly. furiously ironic ide" }, { "l_orderkey": 3687i32, "l_partkey": 119i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 31.0d, "l_extendedprice": 31592.41d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-05-28", "l_commitdate": "1993-03-20", "l_receiptdate": "1993-06-05", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "foxes cajole quickly about the furiously f" }, { "l_orderkey": 261i32, "l_partkey": 119i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 49.0d, "l_extendedprice": 49936.39d, "l_discount": 0.04d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-09-12", "l_commitdate": "1993-08-31", "l_receiptdate": "1993-10-07", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "ions. bold accounts " }, { "l_orderkey": 3201i32, "l_partkey": 119i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 50.0d, "l_extendedprice": 50955.5d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-10-27", "l_commitdate": "1993-09-30", "l_receiptdate": "1993-11-16", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": " deposits. express, ir" }, { "l_orderkey": 256i32, "l_partkey": 119i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 40.0d, "l_extendedprice": 40764.4d, "l_discount": 0.1d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-11-30", "l_commitdate": "1993-12-13", "l_receiptdate": "1993-12-02", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "nal theodolites. deposits cajole s" }, { "l_orderkey": 2563i32, "l_partkey": 119i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 39.0d, "l_extendedprice": 39745.29d, "l_discount": 0.07d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-02-10", "l_commitdate": "1993-12-31", "l_receiptdate": "1994-02-19", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "lent requests should integrate; carefully e" }, { "l_orderkey": 2659i32, "l_partkey": 119i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 2.0d, "l_extendedprice": 2038.22d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-02-19", "l_commitdate": "1994-03-12", "l_receiptdate": "1994-02-21", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "sts above the fluffily express fo" }, { "l_orderkey": 4675i32, "l_partkey": 119i32, "l_suppkey": 10i32, "l_linenumber": 6i32, "l_quantity": 1.0d, "l_extendedprice": 1019.11d, "l_discount": 0.1d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-03-18", "l_commitdate": "1994-02-14", "l_receiptdate": "1994-04-17", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "unts. caref" }, { "l_orderkey": 356i32, "l_partkey": 119i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 35.0d, "l_extendedprice": 35668.85d, "l_discount": 0.08d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-10-14", "l_commitdate": "1994-07-31", "l_receiptdate": "1994-10-23", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "s. unusual, final" }, { "l_orderkey": 1444i32, "l_partkey": 119i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 6.0d, "l_extendedprice": 6114.66d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-01-07", "l_commitdate": "1995-03-05", "l_receiptdate": "1995-01-17", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "al accounts. br" }, { "l_orderkey": 3911i32, "l_partkey": 119i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 14.0d, "l_extendedprice": 14267.54d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-04-28", "l_commitdate": "1995-05-03", "l_receiptdate": "1995-05-22", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "e blithely brave depo" }, { "l_orderkey": 3590i32, "l_partkey": 119i32, "l_suppkey": 10i32, "l_linenumber": 6i32, "l_quantity": 31.0d, "l_extendedprice": 31592.41d, "l_discount": 0.03d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-06-24", "l_commitdate": "1995-07-12", "l_receiptdate": "1995-06-25", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "ve furiously final instructions. slyly regu" }, { "l_orderkey": 4775i32, "l_partkey": 119i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 39.0d, "l_extendedprice": 39745.29d, "l_discount": 0.07d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-30", "l_commitdate": "1995-10-12", "l_receiptdate": "1995-09-20", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "eep never with the slyly regular acc" }, { "l_orderkey": 2306i32, "l_partkey": 119i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 21.0d, "l_extendedprice": 21401.31d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-07", "l_commitdate": "1995-09-18", "l_receiptdate": "1995-10-17", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": " ironic pinto " }, { "l_orderkey": 2499i32, "l_partkey": 119i32, "l_suppkey": 3i32, "l_linenumber": 6i32, "l_quantity": 12.0d, "l_extendedprice": 12229.32d, "l_discount": 0.04d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-18", "l_commitdate": "1995-12-13", "l_receiptdate": "1995-11-23", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "le furiously along the r" }, { "l_orderkey": 1607i32, "l_partkey": 119i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 37.0d, "l_extendedprice": 37707.07d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-02-27", "l_commitdate": "1996-02-18", "l_receiptdate": "1996-03-16", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "alongside " }, { "l_orderkey": 2276i32, "l_partkey": 119i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 5.0d, "l_extendedprice": 5095.55d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-09", "l_commitdate": "1996-06-18", "l_receiptdate": "1996-05-13", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "ias instea" }, { "l_orderkey": 5478i32, "l_partkey": 119i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 25.0d, "l_extendedprice": 25477.75d, "l_discount": 0.09d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-08", "l_commitdate": "1996-07-12", "l_receiptdate": "1996-07-07", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "unusual, pending requests haggle accoun" }, { "l_orderkey": 101i32, "l_partkey": 119i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 49.0d, "l_extendedprice": 49936.39d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-21", "l_commitdate": "1996-05-27", "l_receiptdate": "1996-06-29", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "ts-- final packages sleep furiousl" }, { "l_orderkey": 5158i32, "l_partkey": 119i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 20.0d, "l_extendedprice": 20382.2d, "l_discount": 0.01d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-03", "l_commitdate": "1997-02-20", "l_receiptdate": "1997-02-08", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "latelets use accordin" }, { "l_orderkey": 5219i32, "l_partkey": 119i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 20.0d, "l_extendedprice": 20382.2d, "l_discount": 0.05d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-20", "l_commitdate": "1997-05-26", "l_receiptdate": "1997-05-13", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "e along the ironic," }, { "l_orderkey": 3427i32, "l_partkey": 119i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 31.0d, "l_extendedprice": 31592.41d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-12", "l_commitdate": "1997-07-26", "l_receiptdate": "1997-08-25", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "s are carefull" }, { "l_orderkey": 5923i32, "l_partkey": 119i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 42.0d, "l_extendedprice": 42802.62d, "l_discount": 0.01d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-16", "l_commitdate": "1997-07-23", "l_receiptdate": "1997-09-27", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "y regular theodolites w" }, { "l_orderkey": 4613i32, "l_partkey": 119i32, "l_suppkey": 3i32, "l_linenumber": 7i32, "l_quantity": 39.0d, "l_extendedprice": 39745.29d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-12", "l_commitdate": "1998-06-01", "l_receiptdate": "1998-07-06", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "ously express" }, { "l_orderkey": 1957i32, "l_partkey": 119i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 31.0d, "l_extendedprice": 31592.41d, "l_discount": 0.1d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-13", "l_commitdate": "1998-08-31", "l_receiptdate": "1998-08-16", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "express packages maintain fluffi" }, { "l_orderkey": 1061i32, "l_partkey": 119i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 2.0d, "l_extendedprice": 2038.22d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-15", "l_commitdate": "1998-08-05", "l_receiptdate": "1998-08-24", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": ". regular accounts impre" } ] }
-{ "partkey": 121i32, "lines": [ { "l_orderkey": 4903i32, "l_partkey": 121i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 1.0d, "l_extendedprice": 1021.12d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-04-23", "l_commitdate": "1992-06-13", "l_receiptdate": "1992-05-03", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "nusual requests" }, { "l_orderkey": 1764i32, "l_partkey": 121i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 20.0d, "l_extendedprice": 20422.4d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-06-09", "l_commitdate": "1992-05-22", "l_receiptdate": "1992-07-06", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "y quickly regular packages. car" }, { "l_orderkey": 2054i32, "l_partkey": 121i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 32.0d, "l_extendedprice": 32675.84d, "l_discount": 0.06d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-06-23", "l_commitdate": "1992-07-08", "l_receiptdate": "1992-07-22", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": " packages thrash. carefully final" }, { "l_orderkey": 5858i32, "l_partkey": 121i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 20.0d, "l_extendedprice": 20422.4d, "l_discount": 0.02d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-07-23", "l_commitdate": "1992-08-26", "l_receiptdate": "1992-07-24", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "uffily unusual pinto beans sleep" }, { "l_orderkey": 1060i32, "l_partkey": 121i32, "l_suppkey": 10i32, "l_linenumber": 7i32, "l_quantity": 36.0d, "l_extendedprice": 36760.32d, "l_discount": 0.09d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-03-14", "l_commitdate": "1993-03-24", "l_receiptdate": "1993-04-02", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "r the quickly" }, { "l_orderkey": 2435i32, "l_partkey": 121i32, "l_suppkey": 10i32, "l_linenumber": 7i32, "l_quantity": 8.0d, "l_extendedprice": 8168.96d, "l_discount": 0.07d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-05-03", "l_commitdate": "1993-04-02", "l_receiptdate": "1993-05-17", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "ng the fluffily special foxes nag " }, { "l_orderkey": 2914i32, "l_partkey": 121i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 9.0d, "l_extendedprice": 9190.08d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-06-17", "l_commitdate": "1993-05-26", "l_receiptdate": "1993-06-19", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "s. carefully final foxes ar" }, { "l_orderkey": 2720i32, "l_partkey": 121i32, "l_suppkey": 6i32, "l_linenumber": 5i32, "l_quantity": 27.0d, "l_extendedprice": 27570.24d, "l_discount": 0.04d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-06-29", "l_commitdate": "1993-08-06", "l_receiptdate": "1993-07-28", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "eas. carefully regular " }, { "l_orderkey": 4004i32, "l_partkey": 121i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 23.0d, "l_extendedprice": 23485.76d, "l_discount": 0.07d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-08-12", "l_commitdate": "1993-07-13", "l_receiptdate": "1993-08-16", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": " bold theodolites? special packages accordi" }, { "l_orderkey": 2919i32, "l_partkey": 121i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 49.0d, "l_extendedprice": 50034.88d, "l_discount": 0.07d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-12-16", "l_commitdate": "1994-02-28", "l_receiptdate": "1993-12-19", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "hely final inst" }, { "l_orderkey": 5093i32, "l_partkey": 121i32, "l_suppkey": 6i32, "l_linenumber": 6i32, "l_quantity": 31.0d, "l_extendedprice": 31654.72d, "l_discount": 0.01d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-12-17", "l_commitdate": "1993-11-14", "l_receiptdate": "1994-01-02", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "he final foxes. fluffily ironic " }, { "l_orderkey": 2563i32, "l_partkey": 121i32, "l_suppkey": 2i32, "l_linenumber": 6i32, "l_quantity": 5.0d, "l_extendedprice": 5105.6d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-12-27", "l_commitdate": "1993-12-19", "l_receiptdate": "1994-01-02", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": " the quickly final theodolite" }, { "l_orderkey": 5346i32, "l_partkey": 121i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 25.0d, "l_extendedprice": 25528.0d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-12-28", "l_commitdate": "1994-03-19", "l_receiptdate": "1994-01-09", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "he ironic ideas are boldly slyly ironi" }, { "l_orderkey": 1825i32, "l_partkey": 121i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 23.0d, "l_extendedprice": 23485.76d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-01-08", "l_commitdate": "1994-02-08", "l_receiptdate": "1994-01-19", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": " wake express, even r" }, { "l_orderkey": 5538i32, "l_partkey": 121i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 4.0d, "l_extendedprice": 4084.48d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-03-21", "l_commitdate": "1994-02-17", "l_receiptdate": "1994-04-11", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "ithely along the c" }, { "l_orderkey": 2433i32, "l_partkey": 121i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 43.0d, "l_extendedprice": 43908.16d, "l_discount": 0.01d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-10-16", "l_commitdate": "1994-10-23", "l_receiptdate": "1994-11-08", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "ular requests. slyly even pa" }, { "l_orderkey": 2816i32, "l_partkey": 121i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 4.0d, "l_extendedprice": 4084.48d, "l_discount": 0.02d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-12-12", "l_commitdate": "1994-12-05", "l_receiptdate": "1994-12-30", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": " requests print above the final deposits" }, { "l_orderkey": 2818i32, "l_partkey": 121i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 12.0d, "l_extendedprice": 12253.44d, "l_discount": 0.1d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-02-01", "l_commitdate": "1995-03-10", "l_receiptdate": "1995-02-16", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "lms. quickly bold asymp" }, { "l_orderkey": 1056i32, "l_partkey": 121i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 37.0d, "l_extendedprice": 37781.44d, "l_discount": 0.04d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-02-18", "l_commitdate": "1995-04-01", "l_receiptdate": "1995-03-20", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": " special packages. qui" }, { "l_orderkey": 2053i32, "l_partkey": 121i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 31.0d, "l_extendedprice": 31654.72d, "l_discount": 0.06d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-03-23", "l_commitdate": "1995-03-13", "l_receiptdate": "1995-04-16", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "ts. fluffily final mul" }, { "l_orderkey": 4134i32, "l_partkey": 121i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 34.0d, "l_extendedprice": 34718.08d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-04-29", "l_commitdate": "1995-03-13", "l_receiptdate": "1995-05-11", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "e furiously regular sheaves sleep" }, { "l_orderkey": 35i32, "l_partkey": 121i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 7.0d, "l_extendedprice": 7147.84d, "l_discount": 0.06d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-19", "l_commitdate": "1995-12-22", "l_receiptdate": "1996-01-29", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": " the carefully regular " }, { "l_orderkey": 4197i32, "l_partkey": 121i32, "l_suppkey": 6i32, "l_linenumber": 5i32, "l_quantity": 37.0d, "l_extendedprice": 37781.44d, "l_discount": 0.03d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-20", "l_commitdate": "1996-10-10", "l_receiptdate": "1996-11-10", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "carefully enticing decoys boo" }, { "l_orderkey": 2469i32, "l_partkey": 121i32, "l_suppkey": 4i32, "l_linenumber": 5i32, "l_quantity": 30.0d, "l_extendedprice": 30633.6d, "l_discount": 0.09d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-21", "l_commitdate": "1997-01-29", "l_receiptdate": "1997-01-02", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": " accounts. regular theodolites affix fu" }, { "l_orderkey": 1890i32, "l_partkey": 121i32, "l_suppkey": 4i32, "l_linenumber": 7i32, "l_quantity": 10.0d, "l_extendedprice": 10211.2d, "l_discount": 0.01d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-24", "l_commitdate": "1997-02-19", "l_receiptdate": "1997-01-01", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": ". even, unusual inst" }, { "l_orderkey": 1410i32, "l_partkey": 121i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 15.0d, "l_extendedprice": 15316.8d, "l_discount": 0.06d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-25", "l_commitdate": "1997-07-08", "l_receiptdate": "1997-06-15", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": " bold packages are fluf" }, { "l_orderkey": 163i32, "l_partkey": 121i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 13.0d, "l_extendedprice": 13274.56d, "l_discount": 0.01d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-11-11", "l_commitdate": "1997-10-18", "l_receiptdate": "1997-12-07", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "inal requests. even pinto beans hag" }, { "l_orderkey": 5477i32, "l_partkey": 121i32, "l_suppkey": 6i32, "l_linenumber": 6i32, "l_quantity": 19.0d, "l_extendedprice": 19401.28d, "l_discount": 0.1d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-02-03", "l_commitdate": "1998-01-30", "l_receiptdate": "1998-03-04", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "ost carefully packages." }, { "l_orderkey": 4231i32, "l_partkey": 121i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 31.0d, "l_extendedprice": 31654.72d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-02-14", "l_commitdate": "1997-12-27", "l_receiptdate": "1998-03-01", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "ublate. theodoli" }, { "l_orderkey": 4386i32, "l_partkey": 121i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 21.0d, "l_extendedprice": 21443.52d, "l_discount": 0.09d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-05", "l_commitdate": "1998-03-19", "l_receiptdate": "1998-05-13", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "e pending, sp" }, { "l_orderkey": 4192i32, "l_partkey": 121i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 15.0d, "l_extendedprice": 15316.8d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-26", "l_commitdate": "1998-05-26", "l_receiptdate": "1998-07-16", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "e slyly special grouches. express pinto b" }, { "l_orderkey": 1377i32, "l_partkey": 121i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 39.0d, "l_extendedprice": 39823.68d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-27", "l_commitdate": "1998-07-18", "l_receiptdate": "1998-08-13", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "e ironic, regular requests. carefully " }, { "l_orderkey": 2758i32, "l_partkey": 121i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 20.0d, "l_extendedprice": 20422.4d, "l_discount": 0.02d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-27", "l_commitdate": "1998-09-10", "l_receiptdate": "1998-08-21", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "ptotes sleep furiously" }, { "l_orderkey": 5763i32, "l_partkey": 121i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 47.0d, "l_extendedprice": 47992.64d, "l_discount": 0.09d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-22", "l_commitdate": "1998-09-22", "l_receiptdate": "1998-09-04", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "gle slyly. slyly final re" } ] }
-{ "partkey": 122i32, "lines": [ { "l_orderkey": 1248i32, "l_partkey": 122i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 20.0d, "l_extendedprice": 20442.4d, "l_discount": 0.08d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-03-12", "l_commitdate": "1992-03-23", "l_receiptdate": "1992-04-07", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "nal foxes cajole carefully slyl" }, { "l_orderkey": 2912i32, "l_partkey": 122i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 8.0d, "l_extendedprice": 8176.96d, "l_discount": 0.06d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-04-09", "l_commitdate": "1992-04-19", "l_receiptdate": "1992-04-26", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "hs cajole over the slyl" }, { "l_orderkey": 801i32, "l_partkey": 122i32, "l_suppkey": 7i32, "l_linenumber": 6i32, "l_quantity": 10.0d, "l_extendedprice": 10221.2d, "l_discount": 0.08d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-06-05", "l_commitdate": "1992-05-15", "l_receiptdate": "1992-06-21", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "al accounts. carefully regular foxes wake" }, { "l_orderkey": 868i32, "l_partkey": 122i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 43.0d, "l_extendedprice": 43951.16d, "l_discount": 0.02d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-07-02", "l_commitdate": "1992-07-22", "l_receiptdate": "1992-07-21", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "kly silent deposits wake dar" }, { "l_orderkey": 3842i32, "l_partkey": 122i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 21.0d, "l_extendedprice": 21464.52d, "l_discount": 0.07d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-07-15", "l_commitdate": "1992-06-02", "l_receiptdate": "1992-07-21", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "r pinto be" }, { "l_orderkey": 4838i32, "l_partkey": 122i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 35.0d, "l_extendedprice": 35774.2d, "l_discount": 0.01d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-10-30", "l_commitdate": "1992-10-23", "l_receiptdate": "1992-11-21", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "ly blithely unusual foxes. even package" }, { "l_orderkey": 4706i32, "l_partkey": 122i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 23.0d, "l_extendedprice": 23508.76d, "l_discount": 0.03d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-04-01", "l_commitdate": "1993-03-13", "l_receiptdate": "1993-05-01", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "deas across t" }, { "l_orderkey": 4161i32, "l_partkey": 122i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 12.0d, "l_extendedprice": 12265.44d, "l_discount": 0.08d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-08-25", "l_commitdate": "1993-10-04", "l_receiptdate": "1993-09-22", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "onic dolphins. in" }, { "l_orderkey": 5350i32, "l_partkey": 122i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 19.0d, "l_extendedprice": 19420.28d, "l_discount": 0.02d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-10-20", "l_commitdate": "1993-11-15", "l_receiptdate": "1993-11-17", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "romise slyly alongsi" }, { "l_orderkey": 2631i32, "l_partkey": 122i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 42.0d, "l_extendedprice": 42929.04d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-01-04", "l_commitdate": "1993-12-01", "l_receiptdate": "1994-01-16", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "ect carefully at the furiously final the" }, { "l_orderkey": 5666i32, "l_partkey": 122i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 7.0d, "l_extendedprice": 7154.84d, "l_discount": 0.09d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-05-10", "l_commitdate": "1994-04-06", "l_receiptdate": "1994-05-21", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": " ideas. regular packag" }, { "l_orderkey": 3649i32, "l_partkey": 122i32, "l_suppkey": 3i32, "l_linenumber": 6i32, "l_quantity": 3.0d, "l_extendedprice": 3066.36d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-07-17", "l_commitdate": "1994-08-10", "l_receiptdate": "1994-08-03", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "lly bold requests nag; " }, { "l_orderkey": 4583i32, "l_partkey": 122i32, "l_suppkey": 7i32, "l_linenumber": 6i32, "l_quantity": 14.0d, "l_extendedprice": 14309.68d, "l_discount": 0.09d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-11-17", "l_commitdate": "1994-11-08", "l_receiptdate": "1994-11-21", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "detect. doggedly regular pi" }, { "l_orderkey": 3395i32, "l_partkey": 122i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 39.0d, "l_extendedprice": 39862.68d, "l_discount": 0.05d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-12-03", "l_commitdate": "1995-01-17", "l_receiptdate": "1994-12-10", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "riously unusual theodolites. fur" }, { "l_orderkey": 3585i32, "l_partkey": 122i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 21.0d, "l_extendedprice": 21464.52d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-12-04", "l_commitdate": "1994-12-25", "l_receiptdate": "1995-01-01", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "ounts use. express, final platelets us" }, { "l_orderkey": 5511i32, "l_partkey": 122i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 4.0d, "l_extendedprice": 4088.48d, "l_discount": 0.08d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-12-28", "l_commitdate": "1995-01-16", "l_receiptdate": "1995-01-24", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "lphins. carefully blithe de" }, { "l_orderkey": 4869i32, "l_partkey": 122i32, "l_suppkey": 5i32, "l_linenumber": 6i32, "l_quantity": 30.0d, "l_extendedprice": 30663.6d, "l_discount": 0.0d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-01-09", "l_commitdate": "1994-11-20", "l_receiptdate": "1995-02-02", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "gedly even requests. s" }, { "l_orderkey": 391i32, "l_partkey": 122i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 14.0d, "l_extendedprice": 14309.68d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-02-11", "l_commitdate": "1995-02-03", "l_receiptdate": "1995-02-13", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": " escapades sleep furiously about " }, { "l_orderkey": 1125i32, "l_partkey": 122i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 26.0d, "l_extendedprice": 26575.12d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-02-24", "l_commitdate": "1995-01-18", "l_receiptdate": "1995-03-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "l instruction" }, { "l_orderkey": 3492i32, "l_partkey": 122i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 47.0d, "l_extendedprice": 48039.64d, "l_discount": 0.09d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-03-24", "l_commitdate": "1994-12-28", "l_receiptdate": "1995-03-29", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "deposits. quickly express " }, { "l_orderkey": 2311i32, "l_partkey": 122i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 49.0d, "l_extendedprice": 50083.88d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-05-14", "l_commitdate": "1995-07-11", "l_receiptdate": "1995-05-20", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "ideas sleep" }, { "l_orderkey": 513i32, "l_partkey": 122i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 44.0d, "l_extendedprice": 44973.28d, "l_discount": 0.01d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-14", "l_commitdate": "1995-07-14", "l_receiptdate": "1995-08-12", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "kages sleep boldly ironic theodolites. acco" }, { "l_orderkey": 4676i32, "l_partkey": 122i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 29.0d, "l_extendedprice": 29641.48d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-29", "l_commitdate": "1995-11-12", "l_receiptdate": "1996-01-06", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "ly regular theodolites sleep." }, { "l_orderkey": 4387i32, "l_partkey": 122i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 3.0d, "l_extendedprice": 3066.36d, "l_discount": 0.02d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-17", "l_commitdate": "1996-01-14", "l_receiptdate": "1996-01-28", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": " boost slyly ironic instructions. furiou" }, { "l_orderkey": 482i32, "l_partkey": 122i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 1.0d, "l_extendedprice": 1022.12d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-29", "l_commitdate": "1996-05-20", "l_receiptdate": "1996-05-31", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "es. quickly ironic escapades sleep furious" }, { "l_orderkey": 3234i32, "l_partkey": 122i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 50.0d, "l_extendedprice": 51106.0d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-11", "l_commitdate": "1996-05-19", "l_receiptdate": "1996-06-18", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "ly regular ideas according to the regula" }, { "l_orderkey": 2016i32, "l_partkey": 122i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 8.0d, "l_extendedprice": 8176.96d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-19", "l_commitdate": "1996-10-21", "l_receiptdate": "1996-10-13", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "mptotes haggle ideas. packages wake flu" }, { "l_orderkey": 4160i32, "l_partkey": 122i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 12.0d, "l_extendedprice": 12265.44d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-22", "l_commitdate": "1996-09-25", "l_receiptdate": "1996-12-10", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "y bold package" }, { "l_orderkey": 3236i32, "l_partkey": 122i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 21.0d, "l_extendedprice": 21464.52d, "l_discount": 0.01d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-23", "l_commitdate": "1996-12-12", "l_receiptdate": "1997-01-21", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": " final pinto " }, { "l_orderkey": 4484i32, "l_partkey": 122i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 41.0d, "l_extendedprice": 41906.92d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-25", "l_commitdate": "1997-02-15", "l_receiptdate": "1997-01-29", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "ress accounts. ironic deposits unwind fur" }, { "l_orderkey": 4355i32, "l_partkey": 122i32, "l_suppkey": 7i32, "l_linenumber": 6i32, "l_quantity": 35.0d, "l_extendedprice": 35774.2d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-28", "l_commitdate": "1997-01-28", "l_receiptdate": "1997-02-20", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "ess accounts affix ironic" }, { "l_orderkey": 2177i32, "l_partkey": 122i32, "l_suppkey": 7i32, "l_linenumber": 6i32, "l_quantity": 11.0d, "l_extendedprice": 11243.32d, "l_discount": 0.02d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-20", "l_commitdate": "1997-03-07", "l_receiptdate": "1997-04-09", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "gainst the ca" }, { "l_orderkey": 1890i32, "l_partkey": 122i32, "l_suppkey": 3i32, "l_linenumber": 5i32, "l_quantity": 45.0d, "l_extendedprice": 45995.4d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-15", "l_commitdate": "1997-03-16", "l_receiptdate": "1997-04-19", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "he carefully regular sauternes. ironic fret" }, { "l_orderkey": 4807i32, "l_partkey": 122i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 9.0d, "l_extendedprice": 9199.08d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-23", "l_commitdate": "1997-03-01", "l_receiptdate": "1997-05-15", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "may are blithely. carefully even pinto b" }, { "l_orderkey": 4868i32, "l_partkey": 122i32, "l_suppkey": 3i32, "l_linenumber": 5i32, "l_quantity": 22.0d, "l_extendedprice": 22486.64d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-26", "l_commitdate": "1997-05-16", "l_receiptdate": "1997-05-01", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "osits. final foxes boost regular," }, { "l_orderkey": 5895i32, "l_partkey": 122i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 47.0d, "l_extendedprice": 48039.64d, "l_discount": 0.04d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-27", "l_commitdate": "1997-03-17", "l_receiptdate": "1997-05-07", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "r packages wake carefull" }, { "l_orderkey": 1670i32, "l_partkey": 122i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 10.0d, "l_extendedprice": 10221.2d, "l_discount": 0.07d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-14", "l_commitdate": "1997-08-16", "l_receiptdate": "1997-09-23", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "fily special ideas " }, { "l_orderkey": 2372i32, "l_partkey": 122i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 4.0d, "l_extendedprice": 4088.48d, "l_discount": 0.0d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-14", "l_commitdate": "1997-12-28", "l_receiptdate": "1997-12-16", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "e carefully blithely even epitaphs. r" }, { "l_orderkey": 4039i32, "l_partkey": 122i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 17.0d, "l_extendedprice": 17376.04d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-15", "l_commitdate": "1998-01-20", "l_receiptdate": "1998-01-28", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": " regular foxes haggle carefully bo" }, { "l_orderkey": 518i32, "l_partkey": 122i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 46.0d, "l_extendedprice": 47017.52d, "l_discount": 0.07d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-07", "l_commitdate": "1998-04-17", "l_receiptdate": "1998-04-29", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": ". blithely even ideas cajole furiously. b" }, { "l_orderkey": 3686i32, "l_partkey": 122i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 7.0d, "l_extendedprice": 7154.84d, "l_discount": 0.02d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-15", "l_commitdate": "1998-08-22", "l_receiptdate": "1998-07-30", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": " furiously unusual accou" }, { "l_orderkey": 3491i32, "l_partkey": 122i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 22.0d, "l_extendedprice": 22486.64d, "l_discount": 0.08d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-19", "l_commitdate": "1998-08-22", "l_receiptdate": "1998-09-03", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": " grow against the boldly pending pinto bea" }, { "l_orderkey": 708i32, "l_partkey": 122i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 33.0d, "l_extendedprice": 33729.96d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-09-10", "l_commitdate": "1998-09-20", "l_receiptdate": "1998-09-22", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "s boost carefully ruthless theodolites. f" }, { "l_orderkey": 5664i32, "l_partkey": 122i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 25.0d, "l_extendedprice": 25553.0d, "l_discount": 0.0d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-10-29", "l_commitdate": "1998-09-23", "l_receiptdate": "1998-11-25", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "eposits: furiously ironic grouch" } ] }
-{ "partkey": 127i32, "lines": [ { "l_orderkey": 2023i32, "l_partkey": 127i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 9.0d, "l_extendedprice": 9244.08d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-06-04", "l_commitdate": "1992-06-30", "l_receiptdate": "1992-06-10", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "ly regular pinto beans poa" }, { "l_orderkey": 37i32, "l_partkey": 127i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 39.0d, "l_extendedprice": 40057.68d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-07-02", "l_commitdate": "1992-08-18", "l_receiptdate": "1992-07-28", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "the final requests. ca" }, { "l_orderkey": 1316i32, "l_partkey": 127i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 46.0d, "l_extendedprice": 47247.52d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-01-13", "l_commitdate": "1994-01-24", "l_receiptdate": "1994-02-03", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "ges haggle of the" }, { "l_orderkey": 3808i32, "l_partkey": 127i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 47.0d, "l_extendedprice": 48274.64d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-06-12", "l_commitdate": "1994-06-03", "l_receiptdate": "1994-07-02", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "fully for the quickly final deposits: flu" }, { "l_orderkey": 5926i32, "l_partkey": 127i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 46.0d, "l_extendedprice": 47247.52d, "l_discount": 0.01d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-09-05", "l_commitdate": "1994-08-12", "l_receiptdate": "1994-09-11", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "ts integrate. courts haggl" }, { "l_orderkey": 4870i32, "l_partkey": 127i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 6.0d, "l_extendedprice": 6162.72d, "l_discount": 0.06d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-09-09", "l_commitdate": "1994-10-16", "l_receiptdate": "1994-09-21", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "ress requests. bold, silent pinto bea" }, { "l_orderkey": 646i32, "l_partkey": 127i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 1.0d, "l_extendedprice": 1027.12d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-12-05", "l_commitdate": "1995-01-07", "l_receiptdate": "1994-12-31", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "t blithely regular deposits. quic" }, { "l_orderkey": 3588i32, "l_partkey": 127i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 22.0d, "l_extendedprice": 22596.64d, "l_discount": 0.05d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-04-08", "l_commitdate": "1995-05-06", "l_receiptdate": "1995-04-27", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "inal accounts. pending, bo" }, { "l_orderkey": 2243i32, "l_partkey": 127i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 10.0d, "l_extendedprice": 10271.2d, "l_discount": 0.04d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-26", "l_commitdate": "1995-07-18", "l_receiptdate": "1995-08-03", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "express, daring foxes affix fur" }, { "l_orderkey": 2978i32, "l_partkey": 127i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 42.0d, "l_extendedprice": 43139.04d, "l_discount": 0.01d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-19", "l_commitdate": "1995-07-18", "l_receiptdate": "1995-09-07", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "ial requests nag blithely alongside of th" }, { "l_orderkey": 5281i32, "l_partkey": 127i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 23.0d, "l_extendedprice": 23623.76d, "l_discount": 0.08d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-30", "l_commitdate": "1996-01-26", "l_receiptdate": "1996-01-23", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": ". final theodolites cajole. ironic p" }, { "l_orderkey": 3392i32, "l_partkey": 127i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 34.0d, "l_extendedprice": 34922.08d, "l_discount": 0.1d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-20", "l_commitdate": "1996-01-21", "l_receiptdate": "1996-01-24", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "e carefully even braids. " }, { "l_orderkey": 2945i32, "l_partkey": 127i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 28.0d, "l_extendedprice": 28759.36d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-17", "l_commitdate": "1996-03-13", "l_receiptdate": "1996-04-15", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "le slyly along the eve" }, { "l_orderkey": 3394i32, "l_partkey": 127i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 30.0d, "l_extendedprice": 30813.6d, "l_discount": 0.04d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-12", "l_commitdate": "1996-07-24", "l_receiptdate": "1996-05-19", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "t ideas according to the fluffily iro" }, { "l_orderkey": 3780i32, "l_partkey": 127i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 25.0d, "l_extendedprice": 25678.0d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-27", "l_commitdate": "1996-07-02", "l_receiptdate": "1996-07-22", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "l, unusual " }, { "l_orderkey": 1827i32, "l_partkey": 127i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 4.0d, "l_extendedprice": 4108.48d, "l_discount": 0.04d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-22", "l_commitdate": "1996-09-10", "l_receiptdate": "1996-08-11", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "special requests. blithely" }, { "l_orderkey": 3876i32, "l_partkey": 127i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 41.0d, "l_extendedprice": 42111.92d, "l_discount": 0.02d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-15", "l_commitdate": "1996-10-17", "l_receiptdate": "1996-10-19", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": " quickly blit" }, { "l_orderkey": 1671i32, "l_partkey": 127i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 12.0d, "l_extendedprice": 12325.44d, "l_discount": 0.07d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-17", "l_commitdate": "1996-09-02", "l_receiptdate": "1996-12-17", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "special, ironic" }, { "l_orderkey": 5606i32, "l_partkey": 127i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 46.0d, "l_extendedprice": 47247.52d, "l_discount": 0.04d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-11", "l_commitdate": "1997-01-13", "l_receiptdate": "1997-03-23", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "ter the ironic accounts. even, ironic depos" }, { "l_orderkey": 2469i32, "l_partkey": 127i32, "l_suppkey": 10i32, "l_linenumber": 7i32, "l_quantity": 8.0d, "l_extendedprice": 8216.96d, "l_discount": 0.02d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-15", "l_commitdate": "1997-01-20", "l_receiptdate": "1997-04-13", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "s. regular" }, { "l_orderkey": 2434i32, "l_partkey": 127i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 39.0d, "l_extendedprice": 40057.68d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-10", "l_commitdate": "1997-06-08", "l_receiptdate": "1997-07-03", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "r deposits sleep furiou" }, { "l_orderkey": 4036i32, "l_partkey": 127i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 20.0d, "l_extendedprice": 20542.4d, "l_discount": 0.08d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-11", "l_commitdate": "1997-07-11", "l_receiptdate": "1997-09-03", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "slyly bold deposits cajole pending, blithe" }, { "l_orderkey": 163i32, "l_partkey": 127i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 12.0d, "l_extendedprice": 12325.44d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-18", "l_commitdate": "1997-10-26", "l_receiptdate": "1997-12-22", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "ly blithe accounts cajole " }, { "l_orderkey": 2087i32, "l_partkey": 127i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 1.0d, "l_extendedprice": 1027.12d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-27", "l_commitdate": "1998-03-24", "l_receiptdate": "1998-04-18", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "the quickly idle acco" }, { "l_orderkey": 5798i32, "l_partkey": 127i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 2.0d, "l_extendedprice": 2054.24d, "l_discount": 0.09d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-25", "l_commitdate": "1998-06-22", "l_receiptdate": "1998-06-09", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "e furiously across " } ] }
-{ "partkey": 129i32, "lines": [ { "l_orderkey": 2022i32, "l_partkey": 129i32, "l_suppkey": 2i32, "l_linenumber": 6i32, "l_quantity": 20.0d, "l_extendedprice": 20582.4d, "l_discount": 0.08d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-03-31", "l_commitdate": "1992-04-17", "l_receiptdate": "1992-04-02", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "r deposits kindle " }, { "l_orderkey": 5953i32, "l_partkey": 129i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 36.0d, "l_extendedprice": 37048.32d, "l_discount": 0.03d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-05-28", "l_commitdate": "1992-06-24", "l_receiptdate": "1992-05-29", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": " cajole furio" }, { "l_orderkey": 130i32, "l_partkey": 129i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 14.0d, "l_extendedprice": 14407.68d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-08-15", "l_commitdate": "1992-07-25", "l_receiptdate": "1992-09-13", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": " requests. final instruction" }, { "l_orderkey": 4069i32, "l_partkey": 129i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 39.0d, "l_extendedprice": 40135.68d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-09-06", "l_commitdate": "1992-07-22", "l_receiptdate": "1992-09-25", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "ven theodolites nag quickly. fluffi" }, { "l_orderkey": 5699i32, "l_partkey": 129i32, "l_suppkey": 8i32, "l_linenumber": 7i32, "l_quantity": 45.0d, "l_extendedprice": 46310.4d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-09-23", "l_commitdate": "1992-10-22", "l_receiptdate": "1992-10-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "rmanent packages sleep across the f" }, { "l_orderkey": 929i32, "l_partkey": 129i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 45.0d, "l_extendedprice": 46310.4d, "l_discount": 0.09d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-01-24", "l_commitdate": "1992-12-06", "l_receiptdate": "1993-02-16", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "ges haggle careful" }, { "l_orderkey": 1280i32, "l_partkey": 129i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 17.0d, "l_extendedprice": 17495.04d, "l_discount": 0.01d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-02-04", "l_commitdate": "1993-04-10", "l_receiptdate": "1993-02-07", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "ructions integrate across the th" }, { "l_orderkey": 3557i32, "l_partkey": 129i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 37.0d, "l_extendedprice": 38077.44d, "l_discount": 0.03d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-02-16", "l_commitdate": "1993-01-05", "l_receiptdate": "1993-03-15", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "gside of the ca" }, { "l_orderkey": 2149i32, "l_partkey": 129i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 18.0d, "l_extendedprice": 18524.16d, "l_discount": 0.06d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-04-05", "l_commitdate": "1993-05-11", "l_receiptdate": "1993-04-23", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "uriously final pac" }, { "l_orderkey": 2274i32, "l_partkey": 129i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 18.0d, "l_extendedprice": 18524.16d, "l_discount": 0.03d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-09-28", "l_commitdate": "1993-11-22", "l_receiptdate": "1993-10-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": " express packages. even accounts hagg" }, { "l_orderkey": 5543i32, "l_partkey": 129i32, "l_suppkey": 8i32, "l_linenumber": 7i32, "l_quantity": 39.0d, "l_extendedprice": 40135.68d, "l_discount": 0.06d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-10-07", "l_commitdate": "1993-11-15", "l_receiptdate": "1993-10-28", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "l excuses are furiously. slyly unusual requ" }, { "l_orderkey": 5350i32, "l_partkey": 129i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 27.0d, "l_extendedprice": 27786.24d, "l_discount": 0.07d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-11-25", "l_commitdate": "1993-12-27", "l_receiptdate": "1993-12-08", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "es. blithe theodolites haggl" }, { "l_orderkey": 3i32, "l_partkey": 129i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 27.0d, "l_extendedprice": 27786.24d, "l_discount": 0.06d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-01-16", "l_commitdate": "1993-11-22", "l_receiptdate": "1994-01-23", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "nal foxes wake. " }, { "l_orderkey": 290i32, "l_partkey": 129i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 2.0d, "l_extendedprice": 2058.24d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-01-30", "l_commitdate": "1994-02-13", "l_receiptdate": "1994-02-21", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": ". permanently furious reques" }, { "l_orderkey": 229i32, "l_partkey": 129i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 29.0d, "l_extendedprice": 29844.48d, "l_discount": 0.07d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-03-15", "l_commitdate": "1994-03-02", "l_receiptdate": "1994-03-26", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "s, final request" }, { "l_orderkey": 4647i32, "l_partkey": 129i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 34.0d, "l_extendedprice": 34990.08d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-05-20", "l_commitdate": "1994-06-20", "l_receiptdate": "1994-05-29", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "ly sly accounts" }, { "l_orderkey": 4993i32, "l_partkey": 129i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 39.0d, "l_extendedprice": 40135.68d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-09-10", "l_commitdate": "1994-09-04", "l_receiptdate": "1994-09-26", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "pending, regular requests solve caref" }, { "l_orderkey": 3175i32, "l_partkey": 129i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 12.0d, "l_extendedprice": 12349.44d, "l_discount": 0.09d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-10-16", "l_commitdate": "1994-09-15", "l_receiptdate": "1994-10-18", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "ter the pending deposits. slyly e" }, { "l_orderkey": 3749i32, "l_partkey": 129i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 9.0d, "l_extendedprice": 9262.08d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-04-23", "l_commitdate": "1995-04-18", "l_receiptdate": "1995-04-26", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "uses cajole blithely pla" }, { "l_orderkey": 2018i32, "l_partkey": 129i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 23.0d, "l_extendedprice": 23669.76d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-05-05", "l_commitdate": "1995-05-12", "l_receiptdate": "1995-05-22", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "ingly even theodolites s" }, { "l_orderkey": 995i32, "l_partkey": 129i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 28.0d, "l_extendedprice": 28815.36d, "l_discount": 0.08d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "F", "l_shipdate": "1995-06-12", "l_commitdate": "1995-07-20", "l_receiptdate": "1995-06-19", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "pades. quick, final frays use flu" }, { "l_orderkey": 3300i32, "l_partkey": 129i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 3.0d, "l_extendedprice": 3087.36d, "l_discount": 0.07d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-01", "l_commitdate": "1995-10-02", "l_receiptdate": "1995-11-20", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "g according to the dugouts. caref" }, { "l_orderkey": 2723i32, "l_partkey": 129i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 40.0d, "l_extendedprice": 41164.8d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-17", "l_commitdate": "1995-11-22", "l_receiptdate": "1995-11-18", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "unwind fluffily carefully regular realms." }, { "l_orderkey": 1219i32, "l_partkey": 129i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 4.0d, "l_extendedprice": 4116.48d, "l_discount": 0.01d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-24", "l_commitdate": "1995-11-22", "l_receiptdate": "1995-12-07", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "lly quick requests. blithely even h" }, { "l_orderkey": 5637i32, "l_partkey": 129i32, "l_suppkey": 4i32, "l_linenumber": 6i32, "l_quantity": 27.0d, "l_extendedprice": 27786.24d, "l_discount": 0.01d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-27", "l_commitdate": "1996-08-09", "l_receiptdate": "1996-07-27", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "oss the carefully express warhorses" }, { "l_orderkey": 4197i32, "l_partkey": 129i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 50.0d, "l_extendedprice": 51456.0d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-15", "l_commitdate": "1996-11-01", "l_receiptdate": "1996-11-20", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": ". carefully bold asymptotes nag blithe" }, { "l_orderkey": 5829i32, "l_partkey": 129i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 6.0d, "l_extendedprice": 6174.72d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-22", "l_commitdate": "1997-03-12", "l_receiptdate": "1997-02-02", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "sts. slyly special fo" }, { "l_orderkey": 2177i32, "l_partkey": 129i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 45.0d, "l_extendedprice": 46310.4d, "l_discount": 0.02d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-11", "l_commitdate": "1997-02-27", "l_receiptdate": "1997-02-17", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": ". theodolites haggle carefu" }, { "l_orderkey": 5090i32, "l_partkey": 129i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 46.0d, "l_extendedprice": 47339.52d, "l_discount": 0.05d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-05", "l_commitdate": "1997-04-14", "l_receiptdate": "1997-05-01", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "lose theodolites sleep blit" }, { "l_orderkey": 3462i32, "l_partkey": 129i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 6.0d, "l_extendedprice": 6174.72d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-02", "l_commitdate": "1997-08-09", "l_receiptdate": "1997-06-30", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "iously regular fo" }, { "l_orderkey": 5063i32, "l_partkey": 129i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 31.0d, "l_extendedprice": 31902.72d, "l_discount": 0.08d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-02", "l_commitdate": "1997-06-20", "l_receiptdate": "1997-06-27", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "kages. ironic, ironic courts wake. carefu" }, { "l_orderkey": 5411i32, "l_partkey": 129i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 15.0d, "l_extendedprice": 15436.8d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-01", "l_commitdate": "1997-07-15", "l_receiptdate": "1997-07-07", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "attainments sleep slyly ironic" }, { "l_orderkey": 5671i32, "l_partkey": 129i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 46.0d, "l_extendedprice": 47339.52d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-28", "l_commitdate": "1998-04-22", "l_receiptdate": "1998-04-19", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "lar pinto beans detect care" }, { "l_orderkey": 5671i32, "l_partkey": 129i32, "l_suppkey": 4i32, "l_linenumber": 5i32, "l_quantity": 13.0d, "l_extendedprice": 13378.56d, "l_discount": 0.09d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-24", "l_commitdate": "1998-03-26", "l_receiptdate": "1998-04-27", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "ers according to the ironic, unusual excu" }, { "l_orderkey": 1318i32, "l_partkey": 129i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 31.0d, "l_extendedprice": 31902.72d, "l_discount": 0.01d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-25", "l_commitdate": "1998-07-31", "l_receiptdate": "1998-08-31", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "ve the carefully expr" } ] }
-{ "partkey": 130i32, "lines": [ { "l_orderkey": 4705i32, "l_partkey": 130i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 31.0d, "l_extendedprice": 31934.03d, "l_discount": 0.03d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-04-03", "l_commitdate": "1992-05-30", "l_receiptdate": "1992-04-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "furiously final accou" }, { "l_orderkey": 1856i32, "l_partkey": 130i32, "l_suppkey": 3i32, "l_linenumber": 7i32, "l_quantity": 42.0d, "l_extendedprice": 43265.46d, "l_discount": 0.04d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-05-23", "l_commitdate": "1992-06-06", "l_receiptdate": "1992-06-19", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "usly final deposits" }, { "l_orderkey": 644i32, "l_partkey": 130i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 11.0d, "l_extendedprice": 11331.43d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-08-20", "l_commitdate": "1992-07-21", "l_receiptdate": "1992-09-11", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "ealthy pinto beans use carefu" }, { "l_orderkey": 1447i32, "l_partkey": 130i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 23.0d, "l_extendedprice": 23692.99d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-12-07", "l_commitdate": "1992-12-25", "l_receiptdate": "1993-01-06", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": " dazzle quickly deposits. f" }, { "l_orderkey": 4774i32, "l_partkey": 130i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 30.0d, "l_extendedprice": 30903.9d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-08-18", "l_commitdate": "1993-06-08", "l_receiptdate": "1993-08-21", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "tions against the blithely final theodolit" }, { "l_orderkey": 256i32, "l_partkey": 130i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 45.0d, "l_extendedprice": 46355.85d, "l_discount": 0.02d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-01-14", "l_commitdate": "1994-01-17", "l_receiptdate": "1994-02-10", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": " grouches. ideas wake quickly ar" }, { "l_orderkey": 5223i32, "l_partkey": 130i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 40.0d, "l_extendedprice": 41205.2d, "l_discount": 0.01d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-10-01", "l_commitdate": "1994-09-18", "l_receiptdate": "1994-10-28", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "kly pending " }, { "l_orderkey": 3522i32, "l_partkey": 130i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 7.0d, "l_extendedprice": 7210.91d, "l_discount": 0.1d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-10-31", "l_commitdate": "1994-11-19", "l_receiptdate": "1994-11-28", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "e stealthil" }, { "l_orderkey": 3459i32, "l_partkey": 130i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 30.0d, "l_extendedprice": 30903.9d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-11-22", "l_commitdate": "1994-09-12", "l_receiptdate": "1994-12-11", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "nic theodolites; evenly i" }, { "l_orderkey": 2886i32, "l_partkey": 130i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 46.0d, "l_extendedprice": 47385.98d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-02-02", "l_commitdate": "1995-01-26", "l_receiptdate": "1995-02-15", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "ously final packages sleep blithely regular" }, { "l_orderkey": 1538i32, "l_partkey": 130i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 36.0d, "l_extendedprice": 37084.68d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-11", "l_commitdate": "1995-09-10", "l_receiptdate": "1995-07-26", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "al deposits mo" }, { "l_orderkey": 2499i32, "l_partkey": 130i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 6.0d, "l_extendedprice": 6180.78d, "l_discount": 0.02d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-19", "l_commitdate": "1995-12-14", "l_receiptdate": "1995-12-08", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "cording to the" }, { "l_orderkey": 3460i32, "l_partkey": 130i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 47.0d, "l_extendedprice": 48416.11d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-09", "l_commitdate": "1995-11-12", "l_receiptdate": "1995-12-22", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "es haggle slyly regular accounts. fi" }, { "l_orderkey": 2051i32, "l_partkey": 130i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 48.0d, "l_extendedprice": 49446.24d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-04", "l_commitdate": "1996-06-14", "l_receiptdate": "1996-05-19", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "unts. pending platelets believe about" }, { "l_orderkey": 5255i32, "l_partkey": 130i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 41.0d, "l_extendedprice": 42235.33d, "l_discount": 0.09d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-21", "l_commitdate": "1996-09-24", "l_receiptdate": "1996-09-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "tect blithely against t" }, { "l_orderkey": 4994i32, "l_partkey": 130i32, "l_suppkey": 1i32, "l_linenumber": 7i32, "l_quantity": 31.0d, "l_extendedprice": 31934.03d, "l_discount": 0.07d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-14", "l_commitdate": "1996-09-23", "l_receiptdate": "1996-11-08", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "lar decoys cajole fluffil" }, { "l_orderkey": 2179i32, "l_partkey": 130i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 22.0d, "l_extendedprice": 22662.86d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-16", "l_commitdate": "1996-11-03", "l_receiptdate": "1996-11-25", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "lphins cajole acr" }, { "l_orderkey": 3782i32, "l_partkey": 130i32, "l_suppkey": 3i32, "l_linenumber": 5i32, "l_quantity": 40.0d, "l_extendedprice": 41205.2d, "l_discount": 0.09d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-16", "l_commitdate": "1996-11-22", "l_receiptdate": "1997-01-01", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "s instructions. regular accou" }, { "l_orderkey": 583i32, "l_partkey": 130i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 34.0d, "l_extendedprice": 35024.42d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-11", "l_commitdate": "1997-04-24", "l_receiptdate": "1997-06-03", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "express req" }, { "l_orderkey": 3009i32, "l_partkey": 130i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 26.0d, "l_extendedprice": 26783.38d, "l_discount": 0.08d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-15", "l_commitdate": "1997-05-10", "l_receiptdate": "1997-06-13", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "uriously specia" }, { "l_orderkey": 2434i32, "l_partkey": 130i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 28.0d, "l_extendedprice": 28843.64d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-28", "l_commitdate": "1997-06-26", "l_receiptdate": "1997-07-15", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "ven theodolites around the slyly" }, { "l_orderkey": 2950i32, "l_partkey": 130i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 32.0d, "l_extendedprice": 32964.16d, "l_discount": 0.01d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-21", "l_commitdate": "1997-08-25", "l_receiptdate": "1997-10-08", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "its wake carefully slyly final ideas." }, { "l_orderkey": 3815i32, "l_partkey": 130i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 11.0d, "l_extendedprice": 11331.43d, "l_discount": 0.02d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-11-01", "l_commitdate": "1997-11-05", "l_receiptdate": "1997-11-27", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "sleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep bl" }, { "l_orderkey": 864i32, "l_partkey": 130i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 34.0d, "l_extendedprice": 35024.42d, "l_discount": 0.03d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-16", "l_commitdate": "1997-10-23", "l_receiptdate": "1998-01-12", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "gside of the furiously special" }, { "l_orderkey": 4386i32, "l_partkey": 130i32, "l_suppkey": 3i32, "l_linenumber": 5i32, "l_quantity": 39.0d, "l_extendedprice": 40175.07d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-05", "l_commitdate": "1998-03-15", "l_receiptdate": "1998-03-16", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "structions cajole quickly express" }, { "l_orderkey": 4386i32, "l_partkey": 130i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 10.0d, "l_extendedprice": 10301.3d, "l_discount": 0.05d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-03", "l_commitdate": "1998-04-16", "l_receiptdate": "1998-06-28", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "gainst the quickly expre" }, { "l_orderkey": 451i32, "l_partkey": 130i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 36.0d, "l_extendedprice": 37084.68d, "l_discount": 0.02d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-18", "l_commitdate": "1998-08-14", "l_receiptdate": "1998-06-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "rges can haggle carefully ironic, dogged " }, { "l_orderkey": 3713i32, "l_partkey": 130i32, "l_suppkey": 1i32, "l_linenumber": 7i32, "l_quantity": 14.0d, "l_extendedprice": 14421.82d, "l_discount": 0.04d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-19", "l_commitdate": "1998-07-02", "l_receiptdate": "1998-07-28", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "eposits impress according" } ] }
-{ "partkey": 131i32, "lines": [ { "l_orderkey": 2755i32, "l_partkey": 131i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 5.0d, "l_extendedprice": 5155.65d, "l_discount": 0.01d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-02-27", "l_commitdate": "1992-04-07", "l_receiptdate": "1992-03-09", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "e the furi" }, { "l_orderkey": 4292i32, "l_partkey": 131i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 6.0d, "l_extendedprice": 6186.78d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-03-03", "l_commitdate": "1992-02-24", "l_receiptdate": "1992-03-25", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "bove the silently regula" }, { "l_orderkey": 2627i32, "l_partkey": 131i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 28.0d, "l_extendedprice": 28871.64d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-05-14", "l_commitdate": "1992-05-09", "l_receiptdate": "1992-05-31", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "ggedly final excuses nag packages. f" }, { "l_orderkey": 1793i32, "l_partkey": 131i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 6.0d, "l_extendedprice": 6186.78d, "l_discount": 0.01d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-09-21", "l_commitdate": "1992-09-05", "l_receiptdate": "1992-10-01", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "uctions; depo" }, { "l_orderkey": 1187i32, "l_partkey": 131i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 15.0d, "l_extendedprice": 15466.95d, "l_discount": 0.03d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-12-22", "l_commitdate": "1993-01-13", "l_receiptdate": "1993-01-01", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "ests. foxes wake. carefu" }, { "l_orderkey": 3328i32, "l_partkey": 131i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 25.0d, "l_extendedprice": 25778.25d, "l_discount": 0.05d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-01-28", "l_commitdate": "1993-01-04", "l_receiptdate": "1993-01-31", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "e unusual, r" }, { "l_orderkey": 3521i32, "l_partkey": 131i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 2.0d, "l_extendedprice": 2062.26d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-01-29", "l_commitdate": "1992-12-20", "l_receiptdate": "1993-02-23", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "refully duri" }, { "l_orderkey": 515i32, "l_partkey": 131i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 32.0d, "l_extendedprice": 32996.16d, "l_discount": 0.01d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-10-10", "l_commitdate": "1993-10-08", "l_receiptdate": "1993-11-02", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "r sauternes boost. final theodolites wake a" }, { "l_orderkey": 5445i32, "l_partkey": 131i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 12.0d, "l_extendedprice": 12373.56d, "l_discount": 0.09d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-11-02", "l_commitdate": "1993-09-05", "l_receiptdate": "1993-11-26", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": " slyly pending pinto beans was slyly al" }, { "l_orderkey": 5702i32, "l_partkey": 131i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 44.0d, "l_extendedprice": 45369.72d, "l_discount": 0.0d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-11-28", "l_commitdate": "1993-12-02", "l_receiptdate": "1993-12-22", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "ake according to th" }, { "l_orderkey": 4965i32, "l_partkey": 131i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 28.0d, "l_extendedprice": 28871.64d, "l_discount": 0.05d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-01-02", "l_commitdate": "1993-11-20", "l_receiptdate": "1994-01-04", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": " deposits. requests sublate quickly " }, { "l_orderkey": 5666i32, "l_partkey": 131i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 24.0d, "l_extendedprice": 24747.12d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-02-14", "l_commitdate": "1994-03-09", "l_receiptdate": "1994-03-06", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "on the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asympto" }, { "l_orderkey": 4193i32, "l_partkey": 131i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 37.0d, "l_extendedprice": 38151.81d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-04-25", "l_commitdate": "1994-02-24", "l_receiptdate": "1994-05-08", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "er the quickly regular dependencies wake" }, { "l_orderkey": 994i32, "l_partkey": 131i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 25.0d, "l_extendedprice": 25778.25d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-06-03", "l_commitdate": "1994-06-02", "l_receiptdate": "1994-06-06", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "usual pinto beans." }, { "l_orderkey": 5441i32, "l_partkey": 131i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 49.0d, "l_extendedprice": 50525.37d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-09-23", "l_commitdate": "1994-09-22", "l_receiptdate": "1994-10-22", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "ording to the furio" }, { "l_orderkey": 2116i32, "l_partkey": 131i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 2.0d, "l_extendedprice": 2062.26d, "l_discount": 0.0d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-10-16", "l_commitdate": "1994-11-24", "l_receiptdate": "1994-11-09", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "r theodolites use blithely about the ir" }, { "l_orderkey": 802i32, "l_partkey": 131i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 44.0d, "l_extendedprice": 45369.72d, "l_discount": 0.07d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-01-09", "l_commitdate": "1995-02-04", "l_receiptdate": "1995-01-18", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "rmanently idly special requ" }, { "l_orderkey": 3749i32, "l_partkey": 131i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 7.0d, "l_extendedprice": 7217.91d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-03-31", "l_commitdate": "1995-04-05", "l_receiptdate": "1995-04-11", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "he slyly ironic packages" }, { "l_orderkey": 5347i32, "l_partkey": 131i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 21.0d, "l_extendedprice": 21653.73d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-04-01", "l_commitdate": "1995-04-16", "l_receiptdate": "1995-04-23", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "sly slyly final requests. careful" }, { "l_orderkey": 3814i32, "l_partkey": 131i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 7.0d, "l_extendedprice": 7217.91d, "l_discount": 0.02d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-05-01", "l_commitdate": "1995-05-09", "l_receiptdate": "1995-05-28", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "es sleep furiou" }, { "l_orderkey": 386i32, "l_partkey": 131i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 37.0d, "l_extendedprice": 38151.81d, "l_discount": 0.09d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-05-23", "l_commitdate": "1995-03-01", "l_receiptdate": "1995-05-25", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "ending pearls breach fluffily. slyly pen" }, { "l_orderkey": 225i32, "l_partkey": 131i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 3.0d, "l_extendedprice": 3093.39d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-25", "l_commitdate": "1995-07-08", "l_receiptdate": "1995-08-17", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": " fluffily about the carefully bold a" }, { "l_orderkey": 3269i32, "l_partkey": 131i32, "l_suppkey": 7i32, "l_linenumber": 6i32, "l_quantity": 16.0d, "l_extendedprice": 16498.08d, "l_discount": 0.01d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-03", "l_commitdate": "1996-04-06", "l_receiptdate": "1996-03-06", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "s cajole. silent deposits are f" }, { "l_orderkey": 3200i32, "l_partkey": 131i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 36.0d, "l_extendedprice": 37120.68d, "l_discount": 0.01d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-22", "l_commitdate": "1996-03-19", "l_receiptdate": "1996-03-30", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "f the carefu" }, { "l_orderkey": 5255i32, "l_partkey": 131i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 2.0d, "l_extendedprice": 2062.26d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-27", "l_commitdate": "1996-10-04", "l_receiptdate": "1996-10-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "ajole blithely fluf" }, { "l_orderkey": 2529i32, "l_partkey": 131i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 4.0d, "l_extendedprice": 4124.52d, "l_discount": 0.07d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-19", "l_commitdate": "1996-11-18", "l_receiptdate": "1996-10-24", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "al dependencies haggle slyly alongsi" }, { "l_orderkey": 3264i32, "l_partkey": 131i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 34.0d, "l_extendedprice": 35058.42d, "l_discount": 0.0d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-03", "l_commitdate": "1997-01-06", "l_receiptdate": "1997-01-29", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "rns haggle carefully. blit" }, { "l_orderkey": 5158i32, "l_partkey": 131i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 49.0d, "l_extendedprice": 50525.37d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-10", "l_commitdate": "1997-03-21", "l_receiptdate": "1997-04-30", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "r requests sleep q" }, { "l_orderkey": 4544i32, "l_partkey": 131i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 40.0d, "l_extendedprice": 41245.2d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-15", "l_commitdate": "1997-10-16", "l_receiptdate": "1997-08-20", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": " detect slyly. evenly pending instru" }, { "l_orderkey": 4866i32, "l_partkey": 131i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 17.0d, "l_extendedprice": 17529.21d, "l_discount": 0.07d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-11-26", "l_commitdate": "1997-10-11", "l_receiptdate": "1997-12-12", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "ess packages doubt. even somas wake f" }, { "l_orderkey": 1061i32, "l_partkey": 131i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 50.0d, "l_extendedprice": 51556.5d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-25", "l_commitdate": "1998-07-22", "l_receiptdate": "1998-06-22", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "nding excuses are around the e" }, { "l_orderkey": 5763i32, "l_partkey": 131i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 32.0d, "l_extendedprice": 32996.16d, "l_discount": 0.02d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-16", "l_commitdate": "1998-09-13", "l_receiptdate": "1998-08-02", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "ding instruct" }, { "l_orderkey": 2407i32, "l_partkey": 131i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 39.0d, "l_extendedprice": 40214.07d, "l_discount": 0.02d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-20", "l_commitdate": "1998-09-12", "l_receiptdate": "1998-08-22", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "iously final deposits solv" } ] }
-{ "partkey": 140i32, "lines": [ { "l_orderkey": 1537i32, "l_partkey": 140i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 3.0d, "l_extendedprice": 3120.42d, "l_discount": 0.08d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-03-20", "l_commitdate": "1992-04-14", "l_receiptdate": "1992-03-21", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "s, final ideas detect sl" }, { "l_orderkey": 6i32, "l_partkey": 140i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 37.0d, "l_extendedprice": 38485.18d, "l_discount": 0.08d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-04-27", "l_commitdate": "1992-05-15", "l_receiptdate": "1992-05-02", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "p furiously special foxes" }, { "l_orderkey": 2881i32, "l_partkey": 140i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 7.0d, "l_extendedprice": 7280.98d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-08-03", "l_commitdate": "1992-07-10", "l_receiptdate": "1992-08-27", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "ironic packages are carefully final ac" }, { "l_orderkey": 4896i32, "l_partkey": 140i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 44.0d, "l_extendedprice": 45766.16d, "l_discount": 0.04d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-11-24", "l_commitdate": "1992-11-15", "l_receiptdate": "1992-12-18", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "e after the slowly f" }, { "l_orderkey": 165i32, "l_partkey": 140i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 49.0d, "l_extendedprice": 50966.86d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-02-20", "l_commitdate": "1993-04-02", "l_receiptdate": "1993-03-10", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "uses sleep slyly ruthlessly regular a" }, { "l_orderkey": 1058i32, "l_partkey": 140i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 24.0d, "l_extendedprice": 24963.36d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-07-09", "l_commitdate": "1993-05-28", "l_receiptdate": "1993-07-22", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "fully ironic accounts. express accou" }, { "l_orderkey": 2307i32, "l_partkey": 140i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 2.0d, "l_extendedprice": 2080.28d, "l_discount": 0.01d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-09-21", "l_commitdate": "1993-08-22", "l_receiptdate": "1993-10-03", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "ously. furiously furious requ" }, { "l_orderkey": 5506i32, "l_partkey": 140i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 2.0d, "l_extendedprice": 2080.28d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-02-04", "l_commitdate": "1994-01-13", "l_receiptdate": "1994-02-17", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "onic theodolites are fluffil" }, { "l_orderkey": 1921i32, "l_partkey": 140i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 21.0d, "l_extendedprice": 21842.94d, "l_discount": 0.02d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-02-08", "l_commitdate": "1994-03-28", "l_receiptdate": "1994-02-15", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "ckly regula" }, { "l_orderkey": 1218i32, "l_partkey": 140i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 16.0d, "l_extendedprice": 16642.24d, "l_discount": 0.04d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-06-26", "l_commitdate": "1994-08-07", "l_receiptdate": "1994-06-30", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "ven realms be" }, { "l_orderkey": 5698i32, "l_partkey": 140i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 37.0d, "l_extendedprice": 38485.18d, "l_discount": 0.06d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-06-30", "l_commitdate": "1994-06-23", "l_receiptdate": "1994-07-22", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "ts. even, ironic " }, { "l_orderkey": 2116i32, "l_partkey": 140i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 47.0d, "l_extendedprice": 48886.58d, "l_discount": 0.1d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-09-01", "l_commitdate": "1994-11-18", "l_receiptdate": "1994-09-25", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "iously ironic dependencies around the iro" }, { "l_orderkey": 2211i32, "l_partkey": 140i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 40.0d, "l_extendedprice": 41605.6d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-09-30", "l_commitdate": "1994-09-10", "l_receiptdate": "1994-10-26", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "posits among the express dolphins" }, { "l_orderkey": 3296i32, "l_partkey": 140i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 47.0d, "l_extendedprice": 48886.58d, "l_discount": 0.06d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-11-08", "l_commitdate": "1994-12-20", "l_receiptdate": "1994-11-30", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "egular deposits. quic" }, { "l_orderkey": 3110i32, "l_partkey": 140i32, "l_suppkey": 6i32, "l_linenumber": 5i32, "l_quantity": 39.0d, "l_extendedprice": 40565.46d, "l_discount": 0.09d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-02-09", "l_commitdate": "1995-01-21", "l_receiptdate": "1995-02-21", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "side of the blithely unusual courts. slyly " }, { "l_orderkey": 5955i32, "l_partkey": 140i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 14.0d, "l_extendedprice": 14561.96d, "l_discount": 0.08d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-06-22", "l_commitdate": "1995-05-23", "l_receiptdate": "1995-06-24", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": " unusual, bold theodolit" }, { "l_orderkey": 4871i32, "l_partkey": 140i32, "l_suppkey": 6i32, "l_linenumber": 7i32, "l_quantity": 10.0d, "l_extendedprice": 10401.4d, "l_discount": 0.1d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-13", "l_commitdate": "1995-08-19", "l_receiptdate": "1995-07-29", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "p ironic theodolites. slyly even platel" }, { "l_orderkey": 3335i32, "l_partkey": 140i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 16.0d, "l_extendedprice": 16642.24d, "l_discount": 0.01d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-18", "l_commitdate": "1995-12-08", "l_receiptdate": "1995-11-03", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "g packages. carefully regular reque" }, { "l_orderkey": 2757i32, "l_partkey": 140i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 25.0d, "l_extendedprice": 26003.5d, "l_discount": 0.08d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-09", "l_commitdate": "1995-09-12", "l_receiptdate": "1995-11-23", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "uickly regular " }, { "l_orderkey": 5092i32, "l_partkey": 140i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 13.0d, "l_extendedprice": 13521.82d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-21", "l_commitdate": "1996-01-05", "l_receiptdate": "1995-12-19", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "es detect sly" }, { "l_orderkey": 2690i32, "l_partkey": 140i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 44.0d, "l_extendedprice": 45766.16d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-30", "l_commitdate": "1996-05-19", "l_receiptdate": "1996-06-26", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "ly alongside of th" }, { "l_orderkey": 4102i32, "l_partkey": 140i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 39.0d, "l_extendedprice": 40565.46d, "l_discount": 0.02d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-15", "l_commitdate": "1996-06-06", "l_receiptdate": "1996-06-30", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "y among the furiously special" }, { "l_orderkey": 5669i32, "l_partkey": 140i32, "l_suppkey": 6i32, "l_linenumber": 5i32, "l_quantity": 30.0d, "l_extendedprice": 31204.2d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-14", "l_commitdate": "1996-07-28", "l_receiptdate": "1996-08-10", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "l accounts. care" }, { "l_orderkey": 1700i32, "l_partkey": 140i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 38.0d, "l_extendedprice": 39525.32d, "l_discount": 0.04d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-03", "l_commitdate": "1996-07-27", "l_receiptdate": "1996-10-22", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly u" }, { "l_orderkey": 3876i32, "l_partkey": 140i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 37.0d, "l_extendedprice": 38485.18d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-30", "l_commitdate": "1996-10-18", "l_receiptdate": "1996-12-18", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "t dependencies. blithely final packages u" }, { "l_orderkey": 3623i32, "l_partkey": 140i32, "l_suppkey": 6i32, "l_linenumber": 7i32, "l_quantity": 13.0d, "l_extendedprice": 13521.82d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-02", "l_commitdate": "1997-02-26", "l_receiptdate": "1997-01-26", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "deas. furiously expres" }, { "l_orderkey": 3872i32, "l_partkey": 140i32, "l_suppkey": 6i32, "l_linenumber": 6i32, "l_quantity": 40.0d, "l_extendedprice": 41605.6d, "l_discount": 0.07d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-02", "l_commitdate": "1996-10-29", "l_receiptdate": "1997-01-14", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "nts? regularly ironic ex" }, { "l_orderkey": 4320i32, "l_partkey": 140i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 6.0d, "l_extendedprice": 6240.84d, "l_discount": 0.08d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-11", "l_commitdate": "1997-01-26", "l_receiptdate": "1997-01-22", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "against the carefully careful asym" }, { "l_orderkey": 4934i32, "l_partkey": 140i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 8.0d, "l_extendedprice": 8321.12d, "l_discount": 0.03d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-20", "l_commitdate": "1997-04-30", "l_receiptdate": "1997-05-27", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "arefully express pains cajo" }, { "l_orderkey": 1155i32, "l_partkey": 140i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 12.0d, "l_extendedprice": 12481.68d, "l_discount": 0.01d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-11-01", "l_commitdate": "1998-01-03", "l_receiptdate": "1997-11-19", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "packages do" }, { "l_orderkey": 3618i32, "l_partkey": 140i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 38.0d, "l_extendedprice": 39525.32d, "l_discount": 0.08d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-22", "l_commitdate": "1998-02-23", "l_receiptdate": "1998-01-03", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "nts haggle fluffily above the regular " }, { "l_orderkey": 4386i32, "l_partkey": 140i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 4.0d, "l_extendedprice": 4160.56d, "l_discount": 0.07d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-07", "l_commitdate": "1998-03-25", "l_receiptdate": "1998-04-19", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "ns wake carefully carefully iron" }, { "l_orderkey": 4322i32, "l_partkey": 140i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 9.0d, "l_extendedprice": 9361.26d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-18", "l_commitdate": "1998-04-27", "l_receiptdate": "1998-05-28", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "ual instructio" }, { "l_orderkey": 3873i32, "l_partkey": 140i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 29.0d, "l_extendedprice": 30164.06d, "l_discount": 0.01d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-22", "l_commitdate": "1998-05-20", "l_receiptdate": "1998-07-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "olphins af" }, { "l_orderkey": 68i32, "l_partkey": 140i32, "l_suppkey": 6i32, "l_linenumber": 7i32, "l_quantity": 41.0d, "l_extendedprice": 42645.74d, "l_discount": 0.09d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-24", "l_commitdate": "1998-06-27", "l_receiptdate": "1998-07-06", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "eposits nag special ideas. furiousl" } ] }
-{ "partkey": 143i32, "lines": [ { "l_orderkey": 1154i32, "l_partkey": 143i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 31.0d, "l_extendedprice": 32337.34d, "l_discount": 0.06d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-04-17", "l_commitdate": "1992-04-26", "l_receiptdate": "1992-05-17", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "ithely. final, blithe " }, { "l_orderkey": 3524i32, "l_partkey": 143i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 17.0d, "l_extendedprice": 17733.38d, "l_discount": 0.09d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-09-01", "l_commitdate": "1992-07-17", "l_receiptdate": "1992-09-05", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "g, final epitaphs about the pinto " }, { "l_orderkey": 1285i32, "l_partkey": 143i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 45.0d, "l_extendedprice": 46941.3d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-09-05", "l_commitdate": "1992-08-08", "l_receiptdate": "1992-10-02", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": " special requests haggle blithely." }, { "l_orderkey": 4897i32, "l_partkey": 143i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 34.0d, "l_extendedprice": 35466.76d, "l_discount": 0.02d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-12-31", "l_commitdate": "1992-11-11", "l_receiptdate": "1993-01-30", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "ts. special dependencies use fluffily " }, { "l_orderkey": 2176i32, "l_partkey": 143i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 2.0d, "l_extendedprice": 2086.28d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-02-26", "l_commitdate": "1993-01-08", "l_receiptdate": "1993-03-23", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "s pinto beans" }, { "l_orderkey": 678i32, "l_partkey": 143i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 16.0d, "l_extendedprice": 16690.24d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-03-20", "l_commitdate": "1993-04-13", "l_receiptdate": "1993-04-16", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "equests cajole around the carefully regular" }, { "l_orderkey": 5094i32, "l_partkey": 143i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 19.0d, "l_extendedprice": 19819.66d, "l_discount": 0.03d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-03-31", "l_commitdate": "1993-06-12", "l_receiptdate": "1993-04-04", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "ronic foxes. furi" }, { "l_orderkey": 2307i32, "l_partkey": 143i32, "l_suppkey": 4i32, "l_linenumber": 5i32, "l_quantity": 7.0d, "l_extendedprice": 7301.98d, "l_discount": 0.01d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-09-01", "l_commitdate": "1993-08-08", "l_receiptdate": "1993-09-29", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": " packages cajo" }, { "l_orderkey": 3109i32, "l_partkey": 143i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 50.0d, "l_extendedprice": 52157.0d, "l_discount": 0.01d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-09-17", "l_commitdate": "1993-10-16", "l_receiptdate": "1993-10-11", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": " regular packages boost blithely even, re" }, { "l_orderkey": 5543i32, "l_partkey": 143i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 14.0d, "l_extendedprice": 14603.96d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-10-09", "l_commitdate": "1993-12-09", "l_receiptdate": "1993-10-21", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "ecial reque" }, { "l_orderkey": 1542i32, "l_partkey": 143i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 21.0d, "l_extendedprice": 21905.94d, "l_discount": 0.01d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-10-13", "l_commitdate": "1993-12-13", "l_receiptdate": "1993-11-12", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "y pending foxes nag blithely " }, { "l_orderkey": 2498i32, "l_partkey": 143i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 48.0d, "l_extendedprice": 50070.72d, "l_discount": 0.1d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-11-25", "l_commitdate": "1994-01-09", "l_receiptdate": "1993-12-24", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "onic requests wake" }, { "l_orderkey": 807i32, "l_partkey": 143i32, "l_suppkey": 6i32, "l_linenumber": 5i32, "l_quantity": 30.0d, "l_extendedprice": 31294.2d, "l_discount": 0.02d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-01-19", "l_commitdate": "1994-01-09", "l_receiptdate": "1994-01-27", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "cial accoun" }, { "l_orderkey": 5921i32, "l_partkey": 143i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 41.0d, "l_extendedprice": 42768.74d, "l_discount": 0.04d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-04-13", "l_commitdate": "1994-05-31", "l_receiptdate": "1994-04-26", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "nusual, regular theodol" }, { "l_orderkey": 3553i32, "l_partkey": 143i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 4.0d, "l_extendedprice": 4172.56d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-06-13", "l_commitdate": "1994-07-10", "l_receiptdate": "1994-07-03", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "olites boost bli" }, { "l_orderkey": 323i32, "l_partkey": 143i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 9.0d, "l_extendedprice": 9388.26d, "l_discount": 0.07d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-06-26", "l_commitdate": "1994-06-10", "l_receiptdate": "1994-07-13", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "nic accounts. regular, regular pack" }, { "l_orderkey": 672i32, "l_partkey": 143i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 35.0d, "l_extendedprice": 36509.9d, "l_discount": 0.02d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-07-13", "l_commitdate": "1994-06-04", "l_receiptdate": "1994-07-14", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": " dependencies haggle quickly. theo" }, { "l_orderkey": 263i32, "l_partkey": 143i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 50.0d, "l_extendedprice": 52157.0d, "l_discount": 0.06d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-08-18", "l_commitdate": "1994-07-31", "l_receiptdate": "1994-08-22", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "re the packages. special" }, { "l_orderkey": 5729i32, "l_partkey": 143i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 5.0d, "l_extendedprice": 5215.7d, "l_discount": 0.07d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-11-27", "l_commitdate": "1994-11-11", "l_receiptdate": "1994-12-23", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "s. even sheaves nag courts. " }, { "l_orderkey": 802i32, "l_partkey": 143i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 40.0d, "l_extendedprice": 41725.6d, "l_discount": 0.08d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-01-07", "l_commitdate": "1995-04-03", "l_receiptdate": "1995-01-23", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "y bold accou" }, { "l_orderkey": 5511i32, "l_partkey": 143i32, "l_suppkey": 2i32, "l_linenumber": 7i32, "l_quantity": 23.0d, "l_extendedprice": 23992.22d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-02-03", "l_commitdate": "1995-01-05", "l_receiptdate": "1995-02-18", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "ully deposits. warthogs hagg" }, { "l_orderkey": 3458i32, "l_partkey": 143i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 36.0d, "l_extendedprice": 37553.04d, "l_discount": 0.01d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-04-20", "l_commitdate": "1995-02-14", "l_receiptdate": "1995-05-09", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "s lose. blithely ironic requests boost" }, { "l_orderkey": 450i32, "l_partkey": 143i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 32.0d, "l_extendedprice": 33380.48d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-02", "l_commitdate": "1995-04-25", "l_receiptdate": "1995-07-30", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": " accounts nod fluffily even, pending" }, { "l_orderkey": 871i32, "l_partkey": 143i32, "l_suppkey": 2i32, "l_linenumber": 6i32, "l_quantity": 26.0d, "l_extendedprice": 27121.64d, "l_discount": 0.0d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-02-07", "l_commitdate": "1996-01-05", "l_receiptdate": "1996-02-25", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "symptotes use quickly near the " }, { "l_orderkey": 2180i32, "l_partkey": 143i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 23.0d, "l_extendedprice": 23992.22d, "l_discount": 0.02d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-08", "l_commitdate": "1996-10-25", "l_receiptdate": "1996-11-28", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "ggle alongside of the fluffily speci" }, { "l_orderkey": 1763i32, "l_partkey": 143i32, "l_suppkey": 4i32, "l_linenumber": 6i32, "l_quantity": 3.0d, "l_extendedprice": 3129.42d, "l_discount": 0.05d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-10", "l_commitdate": "1996-12-06", "l_receiptdate": "1997-01-04", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "ut the slyly pending deposi" }, { "l_orderkey": 4834i32, "l_partkey": 143i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 38.0d, "l_extendedprice": 39639.32d, "l_discount": 0.03d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-10", "l_commitdate": "1996-12-06", "l_receiptdate": "1997-01-22", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "alongside of the carefully even plate" }, { "l_orderkey": 676i32, "l_partkey": 143i32, "l_suppkey": 6i32, "l_linenumber": 7i32, "l_quantity": 11.0d, "l_extendedprice": 11474.54d, "l_discount": 0.07d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-09", "l_commitdate": "1997-03-06", "l_receiptdate": "1997-03-31", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "he final acco" }, { "l_orderkey": 1347i32, "l_partkey": 143i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 34.0d, "l_extendedprice": 35466.76d, "l_discount": 0.07d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-25", "l_commitdate": "1997-09-08", "l_receiptdate": "1997-07-24", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "r packages. f" }, { "l_orderkey": 4198i32, "l_partkey": 143i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 46.0d, "l_extendedprice": 47984.44d, "l_discount": 0.09d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-17", "l_commitdate": "1997-09-08", "l_receiptdate": "1997-09-11", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "posits among th" }, { "l_orderkey": 5027i32, "l_partkey": 143i32, "l_suppkey": 4i32, "l_linenumber": 5i32, "l_quantity": 3.0d, "l_extendedprice": 3129.42d, "l_discount": 0.03d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-30", "l_commitdate": "1997-11-26", "l_receiptdate": "1997-10-05", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "t the even mu" }, { "l_orderkey": 1638i32, "l_partkey": 143i32, "l_suppkey": 6i32, "l_linenumber": 5i32, "l_quantity": 25.0d, "l_extendedprice": 26078.5d, "l_discount": 0.05d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-10-06", "l_commitdate": "1997-09-30", "l_receiptdate": "1997-11-02", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "gle final, ironic pinto beans. " }, { "l_orderkey": 2913i32, "l_partkey": 143i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 5.0d, "l_extendedprice": 5215.7d, "l_discount": 0.1d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-10-07", "l_commitdate": "1997-08-25", "l_receiptdate": "1997-10-09", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "haggle. even, bold instructi" }, { "l_orderkey": 4964i32, "l_partkey": 143i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 18.0d, "l_extendedprice": 18776.52d, "l_discount": 0.0d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-10-13", "l_commitdate": "1997-09-01", "l_receiptdate": "1997-11-10", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": " platelets. furio" }, { "l_orderkey": 5348i32, "l_partkey": 143i32, "l_suppkey": 10i32, "l_linenumber": 6i32, "l_quantity": 14.0d, "l_extendedprice": 14603.96d, "l_discount": 0.06d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-16", "l_commitdate": "1998-01-12", "l_receiptdate": "1997-12-24", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "en pinto beans. somas cajo" }, { "l_orderkey": 708i32, "l_partkey": 143i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 36.0d, "l_extendedprice": 37553.04d, "l_discount": 0.08d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-16", "l_commitdate": "1998-09-04", "l_receiptdate": "1998-08-11", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "ests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. ev" } ] }
-{ "partkey": 144i32, "lines": [ { "l_orderkey": 4992i32, "l_partkey": 144i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 17.0d, "l_extendedprice": 17750.38d, "l_discount": 0.03d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-07-05", "l_commitdate": "1992-07-19", "l_receiptdate": "1992-07-30", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "s along the perma" }, { "l_orderkey": 5415i32, "l_partkey": 144i32, "l_suppkey": 1i32, "l_linenumber": 6i32, "l_quantity": 46.0d, "l_extendedprice": 48030.44d, "l_discount": 0.03d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-08-25", "l_commitdate": "1992-09-10", "l_receiptdate": "1992-09-22", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "ve the fluffily " }, { "l_orderkey": 4996i32, "l_partkey": 144i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 13.0d, "l_extendedprice": 13573.82d, "l_discount": 0.0d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-09-17", "l_commitdate": "1992-12-02", "l_receiptdate": "1992-10-07", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "o beans use about the furious" }, { "l_orderkey": 2497i32, "l_partkey": 144i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 48.0d, "l_extendedprice": 50118.72d, "l_discount": 0.06d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-09-29", "l_commitdate": "1992-11-13", "l_receiptdate": "1992-10-19", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": " even, regular requests across " }, { "l_orderkey": 3361i32, "l_partkey": 144i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 6.0d, "l_extendedprice": 6264.84d, "l_discount": 0.02d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-10-02", "l_commitdate": "1992-10-25", "l_receiptdate": "1992-10-05", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": " packages sleep. furiously unus" }, { "l_orderkey": 3521i32, "l_partkey": 144i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 26.0d, "l_extendedprice": 27147.64d, "l_discount": 0.02d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-01-04", "l_commitdate": "1993-01-20", "l_receiptdate": "1993-01-17", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "onic dependencies haggle. fur" }, { "l_orderkey": 2594i32, "l_partkey": 144i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 46.0d, "l_extendedprice": 48030.44d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-04-17", "l_commitdate": "1993-03-06", "l_receiptdate": "1993-04-21", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "beans. instructions across t" }, { "l_orderkey": 3648i32, "l_partkey": 144i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 16.0d, "l_extendedprice": 16706.24d, "l_discount": 0.02d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-08-14", "l_commitdate": "1993-08-14", "l_receiptdate": "1993-08-15", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "s nag packages." }, { "l_orderkey": 4675i32, "l_partkey": 144i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 12.0d, "l_extendedprice": 12529.68d, "l_discount": 0.0d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-12-22", "l_commitdate": "1994-01-12", "l_receiptdate": "1993-12-23", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "posits affix carefully" }, { "l_orderkey": 4065i32, "l_partkey": 144i32, "l_suppkey": 7i32, "l_linenumber": 7i32, "l_quantity": 11.0d, "l_extendedprice": 11485.54d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-07-25", "l_commitdate": "1994-08-02", "l_receiptdate": "1994-07-30", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "hang silently about " }, { "l_orderkey": 3746i32, "l_partkey": 144i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 28.0d, "l_extendedprice": 29235.92d, "l_discount": 0.06d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-09-20", "l_commitdate": "1994-10-21", "l_receiptdate": "1994-09-27", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "s after the even, special requests" }, { "l_orderkey": 5441i32, "l_partkey": 144i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 33.0d, "l_extendedprice": 34456.62d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-10-09", "l_commitdate": "1994-10-06", "l_receiptdate": "1994-10-30", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "ges. final instruction" }, { "l_orderkey": 4931i32, "l_partkey": 144i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 20.0d, "l_extendedprice": 20882.8d, "l_discount": 0.09d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-01-25", "l_commitdate": "1994-12-21", "l_receiptdate": "1995-02-06", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "the furious" }, { "l_orderkey": 4485i32, "l_partkey": 144i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 43.0d, "l_extendedprice": 44898.02d, "l_discount": 0.08d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-01-28", "l_commitdate": "1995-01-26", "l_receiptdate": "1995-02-07", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": ". blithely" }, { "l_orderkey": 327i32, "l_partkey": 144i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 16.0d, "l_extendedprice": 16706.24d, "l_discount": 0.03d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-05", "l_commitdate": "1995-06-07", "l_receiptdate": "1995-07-09", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "cial ideas sleep af" }, { "l_orderkey": 3457i32, "l_partkey": 144i32, "l_suppkey": 1i32, "l_linenumber": 6i32, "l_quantity": 45.0d, "l_extendedprice": 46986.3d, "l_discount": 0.08d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-12", "l_commitdate": "1995-07-18", "l_receiptdate": "1995-08-23", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": " packages. care" }, { "l_orderkey": 4773i32, "l_partkey": 144i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 23.0d, "l_extendedprice": 24015.22d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-01", "l_commitdate": "1996-03-19", "l_receiptdate": "1996-01-04", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "ly express grouches wak" }, { "l_orderkey": 2695i32, "l_partkey": 144i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 21.0d, "l_extendedprice": 21926.94d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-13", "l_commitdate": "1996-09-25", "l_receiptdate": "1996-10-13", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "s. furiously ironic platelets ar" }, { "l_orderkey": 4966i32, "l_partkey": 144i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 12.0d, "l_extendedprice": 12529.68d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-07", "l_commitdate": "1996-11-23", "l_receiptdate": "1996-12-20", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "eodolites. ironic requests across the exp" }, { "l_orderkey": 2439i32, "l_partkey": 144i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 5.0d, "l_extendedprice": 5220.7d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-23", "l_commitdate": "1997-04-26", "l_receiptdate": "1997-04-28", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "ites. furiously" }, { "l_orderkey": 1441i32, "l_partkey": 144i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 5.0d, "l_extendedprice": 5220.7d, "l_discount": 0.04d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-17", "l_commitdate": "1997-05-11", "l_receiptdate": "1997-05-30", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "egular courts. fluffily even grouches " }, { "l_orderkey": 5154i32, "l_partkey": 144i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 15.0d, "l_extendedprice": 15662.1d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-23", "l_commitdate": "1997-07-11", "l_receiptdate": "1997-07-11", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "even packages. packages use" }, { "l_orderkey": 4518i32, "l_partkey": 144i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 9.0d, "l_extendedprice": 9397.26d, "l_discount": 0.09d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-26", "l_commitdate": "1997-07-07", "l_receiptdate": "1997-07-10", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": " pending deposits. slyly re" }, { "l_orderkey": 3203i32, "l_partkey": 144i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 23.0d, "l_extendedprice": 24015.22d, "l_discount": 0.01d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-04", "l_commitdate": "1998-01-12", "l_receiptdate": "1998-01-24", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "uses. fluffily ironic pinto bea" }, { "l_orderkey": 1475i32, "l_partkey": 144i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 30.0d, "l_extendedprice": 31324.2d, "l_discount": 0.03d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-11", "l_commitdate": "1997-12-30", "l_receiptdate": "1998-03-15", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": " regular theodolites mold across th" }, { "l_orderkey": 3618i32, "l_partkey": 144i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 48.0d, "l_extendedprice": 50118.72d, "l_discount": 0.04d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-12", "l_commitdate": "1998-02-13", "l_receiptdate": "1998-03-29", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "tructions atop the ironi" }, { "l_orderkey": 5442i32, "l_partkey": 144i32, "l_suppkey": 3i32, "l_linenumber": 6i32, "l_quantity": 26.0d, "l_extendedprice": 27147.64d, "l_discount": 0.08d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-21", "l_commitdate": "1998-03-21", "l_receiptdate": "1998-03-25", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "have to sleep furiously bold ideas. blith" }, { "l_orderkey": 2565i32, "l_partkey": 144i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 42.0d, "l_extendedprice": 43853.88d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-07", "l_commitdate": "1998-04-02", "l_receiptdate": "1998-05-04", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "ngly silent " }, { "l_orderkey": 2789i32, "l_partkey": 144i32, "l_suppkey": 5i32, "l_linenumber": 6i32, "l_quantity": 16.0d, "l_extendedprice": 16706.24d, "l_discount": 0.07d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-11", "l_commitdate": "1998-05-08", "l_receiptdate": "1998-05-24", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "d the carefully iron" }, { "l_orderkey": 1061i32, "l_partkey": 144i32, "l_suppkey": 1i32, "l_linenumber": 6i32, "l_quantity": 35.0d, "l_extendedprice": 36544.9d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-05", "l_commitdate": "1998-07-07", "l_receiptdate": "1998-07-30", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "ending requests nag careful" }, { "l_orderkey": 5826i32, "l_partkey": 144i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 4.0d, "l_extendedprice": 4176.56d, "l_discount": 0.03d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-31", "l_commitdate": "1998-09-10", "l_receiptdate": "1998-08-27", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": " packages across the fluffily spec" }, { "l_orderkey": 1381i32, "l_partkey": 144i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 47.0d, "l_extendedprice": 49074.58d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-09-22", "l_commitdate": "1998-08-12", "l_receiptdate": "1998-10-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "ly ironic deposits" } ] }
-{ "partkey": 149i32, "lines": [ { "l_orderkey": 5382i32, "l_partkey": 149i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 3.0d, "l_extendedprice": 3147.42d, "l_discount": 0.1d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-03-22", "l_commitdate": "1992-03-06", "l_receiptdate": "1992-04-19", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "efully unusua" }, { "l_orderkey": 2688i32, "l_partkey": 149i32, "l_suppkey": 10i32, "l_linenumber": 6i32, "l_quantity": 42.0d, "l_extendedprice": 44063.88d, "l_discount": 0.01d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-04-29", "l_commitdate": "1992-04-04", "l_receiptdate": "1992-05-17", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "lly even account" }, { "l_orderkey": 194i32, "l_partkey": 149i32, "l_suppkey": 6i32, "l_linenumber": 6i32, "l_quantity": 16.0d, "l_extendedprice": 16786.24d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-05-14", "l_commitdate": "1992-06-14", "l_receiptdate": "1992-05-21", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "y regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular request" }, { "l_orderkey": 2368i32, "l_partkey": 149i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 39.0d, "l_extendedprice": 40916.46d, "l_discount": 0.08d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-09-03", "l_commitdate": "1993-09-20", "l_receiptdate": "1993-09-28", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "ng the doggedly ironic requests are blithe" }, { "l_orderkey": 5445i32, "l_partkey": 149i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 10.0d, "l_extendedprice": 10491.4d, "l_discount": 0.08d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-09-16", "l_commitdate": "1993-10-05", "l_receiptdate": "1993-10-01", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "ncies abou" }, { "l_orderkey": 2438i32, "l_partkey": 149i32, "l_suppkey": 6i32, "l_linenumber": 6i32, "l_quantity": 23.0d, "l_extendedprice": 24130.22d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-10-06", "l_commitdate": "1993-08-17", "l_receiptdate": "1993-10-16", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "ely; blithely special pinto beans breach" }, { "l_orderkey": 4928i32, "l_partkey": 149i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 34.0d, "l_extendedprice": 35670.76d, "l_discount": 0.06d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-10-12", "l_commitdate": "1993-12-31", "l_receiptdate": "1993-10-14", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": ", regular depos" }, { "l_orderkey": 5766i32, "l_partkey": 149i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 39.0d, "l_extendedprice": 40916.46d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-10-24", "l_commitdate": "1993-12-07", "l_receiptdate": "1993-11-08", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": " furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear f" }, { "l_orderkey": 5346i32, "l_partkey": 149i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 21.0d, "l_extendedprice": 22031.94d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-03-11", "l_commitdate": "1994-03-07", "l_receiptdate": "1994-04-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "integrate blithely a" }, { "l_orderkey": 2754i32, "l_partkey": 149i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 4.0d, "l_extendedprice": 4196.56d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-07-13", "l_commitdate": "1994-05-15", "l_receiptdate": "1994-08-02", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "blithely silent requests. regular depo" }, { "l_orderkey": 4514i32, "l_partkey": 149i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 12.0d, "l_extendedprice": 12589.68d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-08-20", "l_commitdate": "1994-06-09", "l_receiptdate": "1994-09-15", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": " carefully ironic foxes nag caref" }, { "l_orderkey": 1415i32, "l_partkey": 149i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 25.0d, "l_extendedprice": 26228.5d, "l_discount": 0.06d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-09-03", "l_commitdate": "1994-07-12", "l_receiptdate": "1994-09-13", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "ect never fluff" }, { "l_orderkey": 2724i32, "l_partkey": 149i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 29.0d, "l_extendedprice": 30425.06d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-01-10", "l_commitdate": "1994-11-17", "l_receiptdate": "1995-02-04", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "l requests hagg" }, { "l_orderkey": 3296i32, "l_partkey": 149i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 31.0d, "l_extendedprice": 32523.34d, "l_discount": 0.08d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-01-26", "l_commitdate": "1994-12-25", "l_receiptdate": "1995-02-16", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "ainst the furi" }, { "l_orderkey": 4960i32, "l_partkey": 149i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 9.0d, "l_extendedprice": 9442.26d, "l_discount": 0.01d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-03-20", "l_commitdate": "1995-05-05", "l_receiptdate": "1995-04-17", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "e blithely carefully fina" }, { "l_orderkey": 4871i32, "l_partkey": 149i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 35.0d, "l_extendedprice": 36719.9d, "l_discount": 0.08d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-11", "l_commitdate": "1995-07-18", "l_receiptdate": "1995-08-29", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "ackages sle" }, { "l_orderkey": 3300i32, "l_partkey": 149i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 23.0d, "l_extendedprice": 24130.22d, "l_discount": 0.02d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-17", "l_commitdate": "1995-09-03", "l_receiptdate": "1995-09-04", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "he fluffily final a" }, { "l_orderkey": 4546i32, "l_partkey": 149i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 10.0d, "l_extendedprice": 10491.4d, "l_discount": 0.08d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-02", "l_commitdate": "1995-09-16", "l_receiptdate": "1995-09-10", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "above the enticingly ironic dependencies" }, { "l_orderkey": 2306i32, "l_partkey": 149i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 39.0d, "l_extendedprice": 40916.46d, "l_discount": 0.04d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-07", "l_commitdate": "1995-09-13", "l_receiptdate": "1995-10-03", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "f the slyly unusual accounts. furiousl" }, { "l_orderkey": 5958i32, "l_partkey": 149i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 33.0d, "l_extendedprice": 34621.62d, "l_discount": 0.02d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-24", "l_commitdate": "1995-12-12", "l_receiptdate": "1995-10-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "lar, regular accounts wake furi" }, { "l_orderkey": 1479i32, "l_partkey": 149i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 33.0d, "l_extendedprice": 34621.62d, "l_discount": 0.1d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-12", "l_commitdate": "1996-02-28", "l_receiptdate": "1996-03-31", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": " carefully special courts affix. fluff" }, { "l_orderkey": 1671i32, "l_partkey": 149i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 21.0d, "l_extendedprice": 22031.94d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-28", "l_commitdate": "1996-09-28", "l_receiptdate": "1996-08-08", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "s accounts slee" }, { "l_orderkey": 1380i32, "l_partkey": 149i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 6.0d, "l_extendedprice": 6294.84d, "l_discount": 0.0d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-06", "l_commitdate": "1996-10-01", "l_receiptdate": "1996-08-14", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "e foxes. slyly specia" }, { "l_orderkey": 3298i32, "l_partkey": 149i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 9.0d, "l_extendedprice": 9442.26d, "l_discount": 0.01d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-15", "l_commitdate": "1996-05-24", "l_receiptdate": "1996-09-12", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "ly final accou" }, { "l_orderkey": 419i32, "l_partkey": 149i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 17.0d, "l_extendedprice": 17835.38d, "l_discount": 0.01d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-13", "l_commitdate": "1996-12-20", "l_receiptdate": "1997-02-01", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "lar dependencies: carefully regu" }, { "l_orderkey": 387i32, "l_partkey": 149i32, "l_suppkey": 6i32, "l_linenumber": 5i32, "l_quantity": 32.0d, "l_extendedprice": 33572.48d, "l_discount": 0.08d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-02", "l_commitdate": "1997-04-11", "l_receiptdate": "1997-05-11", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "gle. silent, fur" }, { "l_orderkey": 5157i32, "l_partkey": 149i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 40.0d, "l_extendedprice": 41965.6d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-11", "l_commitdate": "1997-08-28", "l_receiptdate": "1997-09-01", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "ial packages according to " }, { "l_orderkey": 2081i32, "l_partkey": 149i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 13.0d, "l_extendedprice": 13638.82d, "l_discount": 0.07d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-23", "l_commitdate": "1997-08-22", "l_receiptdate": "1997-09-09", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "fter the even deposi" }, { "l_orderkey": 3107i32, "l_partkey": 149i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 16.0d, "l_extendedprice": 16786.24d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-30", "l_commitdate": "1997-10-20", "l_receiptdate": "1997-09-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "regular pinto beans. ironic ideas haggle" }, { "l_orderkey": 1638i32, "l_partkey": 149i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 30.0d, "l_extendedprice": 31474.2d, "l_discount": 0.0d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-05", "l_commitdate": "1997-09-17", "l_receiptdate": "1997-12-06", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "s cajole boldly bold requests. closely " }, { "l_orderkey": 4832i32, "l_partkey": 149i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 4.0d, "l_extendedprice": 4196.56d, "l_discount": 0.04d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-16", "l_commitdate": "1998-02-12", "l_receiptdate": "1998-02-08", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "ages. slyly express deposits cajole car" }, { "l_orderkey": 198i32, "l_partkey": 149i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 15.0d, "l_extendedprice": 15737.1d, "l_discount": 0.04d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-12", "l_commitdate": "1998-02-26", "l_receiptdate": "1998-04-15", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "es. quickly pending deposits s" }, { "l_orderkey": 5798i32, "l_partkey": 149i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 7.0d, "l_extendedprice": 7343.98d, "l_discount": 0.06d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-06", "l_commitdate": "1998-05-10", "l_receiptdate": "1998-06-07", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "ts against the blithely final p" } ] }
-{ "partkey": 158i32, "lines": [ { "l_orderkey": 1955i32, "l_partkey": 158i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 41.0d, "l_extendedprice": 43384.15d, "l_discount": 0.08d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-08-01", "l_commitdate": "1992-06-04", "l_receiptdate": "1992-08-07", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": " carefully against the furiously reg" }, { "l_orderkey": 5254i32, "l_partkey": 158i32, "l_suppkey": 3i32, "l_linenumber": 6i32, "l_quantity": 34.0d, "l_extendedprice": 35977.1d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-08-29", "l_commitdate": "1992-10-16", "l_receiptdate": "1992-09-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": " furiously above the furiously " }, { "l_orderkey": 5089i32, "l_partkey": 158i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 4.0d, "l_extendedprice": 4232.6d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-09-18", "l_commitdate": "1992-09-28", "l_receiptdate": "1992-10-13", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "nts sleep blithely " }, { "l_orderkey": 1412i32, "l_partkey": 158i32, "l_suppkey": 6i32, "l_linenumber": 5i32, "l_quantity": 11.0d, "l_extendedprice": 11639.65d, "l_discount": 0.08d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-03-30", "l_commitdate": "1993-05-25", "l_receiptdate": "1993-04-21", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "se slyly. special, unusual accounts nag bl" }, { "l_orderkey": 5794i32, "l_partkey": 158i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 42.0d, "l_extendedprice": 44442.3d, "l_discount": 0.06d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-06-29", "l_commitdate": "1993-05-30", "l_receiptdate": "1993-07-28", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "he careful" }, { "l_orderkey": 5665i32, "l_partkey": 158i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 41.0d, "l_extendedprice": 43384.15d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-08-23", "l_commitdate": "1993-09-22", "l_receiptdate": "1993-09-11", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": " idle ideas across " }, { "l_orderkey": 5828i32, "l_partkey": 158i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 37.0d, "l_extendedprice": 39151.55d, "l_discount": 0.01d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-06-07", "l_commitdate": "1994-05-30", "l_receiptdate": "1994-06-17", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "e carefully spec" }, { "l_orderkey": 2144i32, "l_partkey": 158i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 10.0d, "l_extendedprice": 10581.5d, "l_discount": 0.0d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-06-16", "l_commitdate": "1994-05-03", "l_receiptdate": "1994-07-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": " furiously unusual ideas. carefull" }, { "l_orderkey": 3136i32, "l_partkey": 158i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 43.0d, "l_extendedprice": 45500.45d, "l_discount": 0.0d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-09-05", "l_commitdate": "1994-09-25", "l_receiptdate": "1994-09-11", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": ". special theodolites ha" }, { "l_orderkey": 4993i32, "l_partkey": 158i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 31.0d, "l_extendedprice": 32802.65d, "l_discount": 0.1d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-10-02", "l_commitdate": "1994-10-29", "l_receiptdate": "1994-10-15", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "nwind thinly platelets. a" }, { "l_orderkey": 3522i32, "l_partkey": 158i32, "l_suppkey": 10i32, "l_linenumber": 6i32, "l_quantity": 18.0d, "l_extendedprice": 19046.7d, "l_discount": 0.01d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-11-16", "l_commitdate": "1994-10-29", "l_receiptdate": "1994-11-29", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "sits wake carefully pen" }, { "l_orderkey": 5249i32, "l_partkey": 158i32, "l_suppkey": 6i32, "l_linenumber": 5i32, "l_quantity": 12.0d, "l_extendedprice": 12697.8d, "l_discount": 0.01d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-12-28", "l_commitdate": "1994-11-07", "l_receiptdate": "1995-01-15", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "press depths could have to sleep carefu" }, { "l_orderkey": 4227i32, "l_partkey": 158i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 19.0d, "l_extendedprice": 20104.85d, "l_discount": 0.01d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-05-05", "l_commitdate": "1995-05-03", "l_receiptdate": "1995-05-22", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "ns sleep along the blithely even theodolit" }, { "l_orderkey": 1317i32, "l_partkey": 158i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 26.0d, "l_extendedprice": 27511.9d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-13", "l_commitdate": "1995-06-26", "l_receiptdate": "1995-08-06", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "leep along th" }, { "l_orderkey": 449i32, "l_partkey": 158i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 22.0d, "l_extendedprice": 23279.3d, "l_discount": 0.07d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-17", "l_commitdate": "1995-09-04", "l_receiptdate": "1995-09-10", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "furiously final theodolites eat careful" }, { "l_orderkey": 839i32, "l_partkey": 158i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 23.0d, "l_extendedprice": 24337.45d, "l_discount": 0.07d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-17", "l_commitdate": "1995-11-03", "l_receiptdate": "1995-11-04", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "ng ideas haggle accord" }, { "l_orderkey": 135i32, "l_partkey": 158i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 33.0d, "l_extendedprice": 34918.95d, "l_discount": 0.02d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-03", "l_commitdate": "1995-11-21", "l_receiptdate": "1996-02-01", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "ptotes boost slowly care" }, { "l_orderkey": 7i32, "l_partkey": 158i32, "l_suppkey": 3i32, "l_linenumber": 7i32, "l_quantity": 5.0d, "l_extendedprice": 5290.75d, "l_discount": 0.04d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-02-10", "l_commitdate": "1996-03-26", "l_receiptdate": "1996-02-13", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "ithely regula" }, { "l_orderkey": 4773i32, "l_partkey": 158i32, "l_suppkey": 3i32, "l_linenumber": 7i32, "l_quantity": 6.0d, "l_extendedprice": 6348.9d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-09", "l_commitdate": "1996-03-18", "l_receiptdate": "1996-03-27", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "latelets haggle s" }, { "l_orderkey": 5669i32, "l_partkey": 158i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 40.0d, "l_extendedprice": 42326.0d, "l_discount": 0.0d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-30", "l_commitdate": "1996-06-15", "l_receiptdate": "1996-09-07", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "ar accounts alongside of the final, p" }, { "l_orderkey": 5952i32, "l_partkey": 158i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 23.0d, "l_extendedprice": 24337.45d, "l_discount": 0.0d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-13", "l_commitdate": "1997-06-27", "l_receiptdate": "1997-05-20", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "e blithely packages. eve" }, { "l_orderkey": 1859i32, "l_partkey": 158i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 5.0d, "l_extendedprice": 5290.75d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-20", "l_commitdate": "1997-05-20", "l_receiptdate": "1997-07-19", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "across the p" }, { "l_orderkey": 5442i32, "l_partkey": 158i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 21.0d, "l_extendedprice": 22221.15d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-13", "l_commitdate": "1998-02-19", "l_receiptdate": "1998-04-06", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "ffily furiously ironic theodolites. furio" }, { "l_orderkey": 2567i32, "l_partkey": 158i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 50.0d, "l_extendedprice": 52907.5d, "l_discount": 0.05d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-27", "l_commitdate": "1998-05-25", "l_receiptdate": "1998-04-23", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "pinto beans? r" }, { "l_orderkey": 736i32, "l_partkey": 158i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 46.0d, "l_extendedprice": 48674.9d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-16", "l_commitdate": "1998-09-01", "l_receiptdate": "1998-08-09", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "uctions cajole" } ] }
-{ "partkey": 159i32, "lines": [ { "l_orderkey": 5409i32, "l_partkey": 159i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 37.0d, "l_extendedprice": 39188.55d, "l_discount": 0.06d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-05-07", "l_commitdate": "1992-02-10", "l_receiptdate": "1992-05-20", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "ously regular packages. packages" }, { "l_orderkey": 1955i32, "l_partkey": 159i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 11.0d, "l_extendedprice": 11650.65d, "l_discount": 0.09d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-06-03", "l_commitdate": "1992-07-04", "l_receiptdate": "1992-06-07", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "ously quickly pendi" }, { "l_orderkey": 4738i32, "l_partkey": 159i32, "l_suppkey": 1i32, "l_linenumber": 6i32, "l_quantity": 10.0d, "l_extendedprice": 10591.5d, "l_discount": 0.1d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-07-10", "l_commitdate": "1992-06-16", "l_receiptdate": "1992-07-25", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "hins above the" }, { "l_orderkey": 5062i32, "l_partkey": 159i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 50.0d, "l_extendedprice": 52957.5d, "l_discount": 0.09d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-12-25", "l_commitdate": "1992-12-13", "l_receiptdate": "1992-12-29", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": " the regular, unusual pains. specia" }, { "l_orderkey": 3776i32, "l_partkey": 159i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 14.0d, "l_extendedprice": 14828.1d, "l_discount": 0.06d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-12-30", "l_commitdate": "1993-02-12", "l_receiptdate": "1993-01-27", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "y special ideas. express packages pr" }, { "l_orderkey": 4743i32, "l_partkey": 159i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 3.0d, "l_extendedprice": 3177.45d, "l_discount": 0.01d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-04-14", "l_commitdate": "1993-06-08", "l_receiptdate": "1993-05-09", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "al requests. express idea" }, { "l_orderkey": 1222i32, "l_partkey": 159i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 12.0d, "l_extendedprice": 12709.8d, "l_discount": 0.08d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-05-05", "l_commitdate": "1993-03-27", "l_receiptdate": "1993-05-18", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": " furiously bold instructions" }, { "l_orderkey": 3938i32, "l_partkey": 159i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 46.0d, "l_extendedprice": 48720.9d, "l_discount": 0.1d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-05-20", "l_commitdate": "1993-05-04", "l_receiptdate": "1993-06-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "ly even foxes are slyly fu" }, { "l_orderkey": 4610i32, "l_partkey": 159i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 44.0d, "l_extendedprice": 46602.6d, "l_discount": 0.05d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-08-05", "l_commitdate": "1993-07-20", "l_receiptdate": "1993-08-19", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": " final theodolites " }, { "l_orderkey": 325i32, "l_partkey": 159i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 34.0d, "l_extendedprice": 36011.1d, "l_discount": 0.09d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-10-28", "l_commitdate": "1993-12-13", "l_receiptdate": "1993-11-17", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "ly bold deposits. always iron" }, { "l_orderkey": 5957i32, "l_partkey": 159i32, "l_suppkey": 1i32, "l_linenumber": 7i32, "l_quantity": 32.0d, "l_extendedprice": 33892.8d, "l_discount": 0.1d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-03-05", "l_commitdate": "1994-02-20", "l_receiptdate": "1994-03-09", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": " boost carefully across the " }, { "l_orderkey": 4451i32, "l_partkey": 159i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 19.0d, "l_extendedprice": 20123.85d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-10-09", "l_commitdate": "1994-11-26", "l_receiptdate": "1994-10-23", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "ly after the fluffi" }, { "l_orderkey": 231i32, "l_partkey": 159i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 16.0d, "l_extendedprice": 16946.4d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-11-20", "l_commitdate": "1994-10-29", "l_receiptdate": "1994-12-17", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "e furiously ironic pinto beans." }, { "l_orderkey": 4006i32, "l_partkey": 159i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 18.0d, "l_extendedprice": 19064.7d, "l_discount": 0.05d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-01-29", "l_commitdate": "1995-03-08", "l_receiptdate": "1995-02-02", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "gouts! slyly iron" }, { "l_orderkey": 2277i32, "l_partkey": 159i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 31.0d, "l_extendedprice": 32833.65d, "l_discount": 0.02d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-03-07", "l_commitdate": "1995-03-19", "l_receiptdate": "1995-03-26", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "ic instructions detect ru" }, { "l_orderkey": 5728i32, "l_partkey": 159i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 40.0d, "l_extendedprice": 42366.0d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-03-28", "l_commitdate": "1995-01-17", "l_receiptdate": "1995-04-14", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "final deposits. theodolite" }, { "l_orderkey": 3588i32, "l_partkey": 159i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 45.0d, "l_extendedprice": 47661.75d, "l_discount": 0.04d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-05-07", "l_commitdate": "1995-05-04", "l_receiptdate": "1995-05-28", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "ecial pains integrate blithely. reques" }, { "l_orderkey": 5825i32, "l_partkey": 159i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 23.0d, "l_extendedprice": 24360.45d, "l_discount": 0.1d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-05-10", "l_commitdate": "1995-04-28", "l_receiptdate": "1995-05-13", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": " special pinto beans. dependencies haggl" }, { "l_orderkey": 613i32, "l_partkey": 159i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 7.0d, "l_extendedprice": 7414.05d, "l_discount": 0.02d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-07", "l_commitdate": "1995-08-02", "l_receiptdate": "1995-09-16", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "ously blithely final pinto beans. regula" }, { "l_orderkey": 551i32, "l_partkey": 159i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 20.0d, "l_extendedprice": 21183.0d, "l_discount": 0.0d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-18", "l_commitdate": "1995-08-25", "l_receiptdate": "1995-10-11", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "r ideas. final, even ideas hinder alongside" }, { "l_orderkey": 2499i32, "l_partkey": 159i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 39.0d, "l_extendedprice": 41306.85d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-26", "l_commitdate": "1995-10-27", "l_receiptdate": "1995-11-07", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "otes sublat" }, { "l_orderkey": 5092i32, "l_partkey": 159i32, "l_suppkey": 10i32, "l_linenumber": 7i32, "l_quantity": 50.0d, "l_extendedprice": 52957.5d, "l_discount": 0.1d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-30", "l_commitdate": "1996-01-14", "l_receiptdate": "1995-12-19", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "r platelets maintain car" }, { "l_orderkey": 2595i32, "l_partkey": 159i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 29.0d, "l_extendedprice": 30715.35d, "l_discount": 0.07d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-01", "l_commitdate": "1996-02-13", "l_receiptdate": "1996-01-18", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "ronic accounts haggle carefully fin" }, { "l_orderkey": 3363i32, "l_partkey": 159i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 2.0d, "l_extendedprice": 2118.3d, "l_discount": 0.01d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-22", "l_commitdate": "1995-12-01", "l_receiptdate": "1996-02-18", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "uickly bold ide" }, { "l_orderkey": 4807i32, "l_partkey": 159i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 2.0d, "l_extendedprice": 2118.3d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-09", "l_commitdate": "1997-04-03", "l_receiptdate": "1997-06-05", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "deas wake bli" }, { "l_orderkey": 1954i32, "l_partkey": 159i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 12.0d, "l_extendedprice": 12709.8d, "l_discount": 0.02d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-19", "l_commitdate": "1997-07-04", "l_receiptdate": "1997-08-06", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "ongside of the slyly unusual requests. reg" }, { "l_orderkey": 2468i32, "l_partkey": 159i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 18.0d, "l_extendedprice": 19064.7d, "l_discount": 0.07d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-25", "l_commitdate": "1997-08-26", "l_receiptdate": "1997-08-14", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "cies. fluffily r" }, { "l_orderkey": 519i32, "l_partkey": 159i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 1.0d, "l_extendedprice": 1059.15d, "l_discount": 0.07d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-01", "l_commitdate": "1998-01-26", "l_receiptdate": "1997-12-23", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "bold requests believe furiou" }, { "l_orderkey": 2371i32, "l_partkey": 159i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 37.0d, "l_extendedprice": 39188.55d, "l_discount": 0.05d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-02-11", "l_commitdate": "1998-03-24", "l_receiptdate": "1998-02-27", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "s boost fluffil" }, { "l_orderkey": 4549i32, "l_partkey": 159i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 44.0d, "l_extendedprice": 46602.6d, "l_discount": 0.08d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-13", "l_commitdate": "1998-04-15", "l_receiptdate": "1998-03-27", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "ding to the regular, silent requests" }, { "l_orderkey": 1315i32, "l_partkey": 159i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 32.0d, "l_extendedprice": 33892.8d, "l_discount": 0.1d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-30", "l_commitdate": "1998-06-12", "l_receiptdate": "1998-04-25", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "neath the final p" }, { "l_orderkey": 3714i32, "l_partkey": 159i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 16.0d, "l_extendedprice": 16946.4d, "l_discount": 0.0d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-25", "l_commitdate": "1998-07-07", "l_receiptdate": "1998-06-17", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "ccounts cajole fu" } ] }
-{ "partkey": 161i32, "lines": [ { "l_orderkey": 2240i32, "l_partkey": 161i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 29.0d, "l_extendedprice": 30773.64d, "l_discount": 0.02d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-03-29", "l_commitdate": "1992-05-08", "l_receiptdate": "1992-04-09", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "lyly even ideas w" }, { "l_orderkey": 4391i32, "l_partkey": 161i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 1.0d, "l_extendedprice": 1061.16d, "l_discount": 0.09d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-06-18", "l_commitdate": "1992-04-27", "l_receiptdate": "1992-06-20", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "ong the silent deposits" }, { "l_orderkey": 5060i32, "l_partkey": 161i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 15.0d, "l_extendedprice": 15917.4d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-08-28", "l_commitdate": "1992-08-20", "l_receiptdate": "1992-09-01", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "ular deposits sl" }, { "l_orderkey": 967i32, "l_partkey": 161i32, "l_suppkey": 8i32, "l_linenumber": 7i32, "l_quantity": 18.0d, "l_extendedprice": 19100.88d, "l_discount": 0.0d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-10-06", "l_commitdate": "1992-08-05", "l_receiptdate": "1992-10-15", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "ngage blith" }, { "l_orderkey": 5062i32, "l_partkey": 161i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 18.0d, "l_extendedprice": 19100.88d, "l_discount": 0.03d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-11-04", "l_commitdate": "1992-12-25", "l_receiptdate": "1992-11-05", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "furiously pending requests are ruthles" }, { "l_orderkey": 5858i32, "l_partkey": 161i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 18.0d, "l_extendedprice": 19100.88d, "l_discount": 0.0d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-11-05", "l_commitdate": "1992-10-08", "l_receiptdate": "1992-12-03", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "al excuses. bold" }, { "l_orderkey": 5415i32, "l_partkey": 161i32, "l_suppkey": 6i32, "l_linenumber": 5i32, "l_quantity": 11.0d, "l_extendedprice": 11672.76d, "l_discount": 0.0d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-11-22", "l_commitdate": "1992-10-19", "l_receiptdate": "1992-12-10", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "gle among t" }, { "l_orderkey": 1383i32, "l_partkey": 161i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 19.0d, "l_extendedprice": 20162.04d, "l_discount": 0.06d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-05-24", "l_commitdate": "1993-07-07", "l_receiptdate": "1993-06-14", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "lyly unusual accounts sle" }, { "l_orderkey": 4935i32, "l_partkey": 161i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 13.0d, "l_extendedprice": 13795.08d, "l_discount": 0.09d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-06-20", "l_commitdate": "1993-08-13", "l_receiptdate": "1993-06-27", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "ly requests. final deposits might " }, { "l_orderkey": 898i32, "l_partkey": 161i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 9.0d, "l_extendedprice": 9550.44d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-07-04", "l_commitdate": "1993-07-09", "l_receiptdate": "1993-07-25", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "e slyly across the blithe" }, { "l_orderkey": 4004i32, "l_partkey": 161i32, "l_suppkey": 10i32, "l_linenumber": 6i32, "l_quantity": 44.0d, "l_extendedprice": 46691.04d, "l_discount": 0.07d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-07-25", "l_commitdate": "1993-07-23", "l_receiptdate": "1993-08-16", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "ut the sauternes. bold, ironi" }, { "l_orderkey": 2438i32, "l_partkey": 161i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 27.0d, "l_extendedprice": 28651.32d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-07-27", "l_commitdate": "1993-10-01", "l_receiptdate": "1993-08-06", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "inal accounts. slyly final reques" }, { "l_orderkey": 3012i32, "l_partkey": 161i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 37.0d, "l_extendedprice": 39262.92d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-08-16", "l_commitdate": "1993-06-07", "l_receiptdate": "1993-08-24", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "uickly permanent packages sleep caref" }, { "l_orderkey": 2593i32, "l_partkey": 161i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 44.0d, "l_extendedprice": 46691.04d, "l_discount": 0.02d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-09-05", "l_commitdate": "1993-10-23", "l_receiptdate": "1993-09-29", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "ents impress furiously; unusual theodoli" }, { "l_orderkey": 5863i32, "l_partkey": 161i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 45.0d, "l_extendedprice": 47752.2d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-12-19", "l_commitdate": "1994-01-25", "l_receiptdate": "1994-01-05", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": " deposits are ab" }, { "l_orderkey": 1732i32, "l_partkey": 161i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 41.0d, "l_extendedprice": 43507.56d, "l_discount": 0.0d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-02-20", "l_commitdate": "1994-01-07", "l_receiptdate": "1994-02-27", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "quests sublate against the silent " }, { "l_orderkey": 2817i32, "l_partkey": 161i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 4.0d, "l_extendedprice": 4244.64d, "l_discount": 0.0d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-06-04", "l_commitdate": "1994-06-11", "l_receiptdate": "1994-06-10", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "n accounts wake across the fluf" }, { "l_orderkey": 1895i32, "l_partkey": 161i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 43.0d, "l_extendedprice": 45629.88d, "l_discount": 0.09d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-07-26", "l_commitdate": "1994-07-19", "l_receiptdate": "1994-08-11", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": " carefully eve" }, { "l_orderkey": 5031i32, "l_partkey": 161i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 40.0d, "l_extendedprice": 42446.4d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-12-04", "l_commitdate": "1995-01-27", "l_receiptdate": "1995-01-01", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "ns hang blithely across th" }, { "l_orderkey": 4645i32, "l_partkey": 161i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 35.0d, "l_extendedprice": 37140.6d, "l_discount": 0.03d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-12-08", "l_commitdate": "1994-11-25", "l_receiptdate": "1994-12-09", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "sias believe bl" }, { "l_orderkey": 1092i32, "l_partkey": 161i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 28.0d, "l_extendedprice": 29712.48d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-04-08", "l_commitdate": "1995-05-01", "l_receiptdate": "1995-05-02", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "affix carefully. u" }, { "l_orderkey": 771i32, "l_partkey": 161i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 38.0d, "l_extendedprice": 40324.08d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-22", "l_commitdate": "1995-09-10", "l_receiptdate": "1995-07-29", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": " quickly final requests are final packages." }, { "l_orderkey": 4871i32, "l_partkey": 161i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 17.0d, "l_extendedprice": 18039.72d, "l_discount": 0.07d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-09", "l_commitdate": "1995-09-01", "l_receiptdate": "1995-10-02", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "es. carefully ev" }, { "l_orderkey": 1765i32, "l_partkey": 161i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 36.0d, "l_extendedprice": 38201.76d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-02", "l_commitdate": "1996-02-17", "l_receiptdate": "1996-03-14", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "he blithely pending accou" }, { "l_orderkey": 3269i32, "l_partkey": 161i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 40.0d, "l_extendedprice": 42446.4d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-11", "l_commitdate": "1996-05-06", "l_receiptdate": "1996-06-15", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "es. pending d" }, { "l_orderkey": 5570i32, "l_partkey": 161i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 37.0d, "l_extendedprice": 39262.92d, "l_discount": 0.08d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-29", "l_commitdate": "1996-10-23", "l_receiptdate": "1996-09-11", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "y ironic pin" }, { "l_orderkey": 2273i32, "l_partkey": 161i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 20.0d, "l_extendedprice": 21223.2d, "l_discount": 0.06d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-05", "l_commitdate": "1997-02-25", "l_receiptdate": "1997-04-01", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "cuses. quickly enticing requests wake " }, { "l_orderkey": 1121i32, "l_partkey": 161i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 27.0d, "l_extendedprice": 28651.32d, "l_discount": 0.08d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-08", "l_commitdate": "1997-03-28", "l_receiptdate": "1997-05-14", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "ly ironic accounts cajole slyly abou" }, { "l_orderkey": 3552i32, "l_partkey": 161i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 36.0d, "l_extendedprice": 38201.76d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-29", "l_commitdate": "1997-06-24", "l_receiptdate": "1997-07-21", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "ly regular theodolites. fin" }, { "l_orderkey": 5063i32, "l_partkey": 161i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 1.0d, "l_extendedprice": 1061.16d, "l_discount": 0.06d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-03", "l_commitdate": "1997-06-26", "l_receiptdate": "1997-10-03", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "ously special " }, { "l_orderkey": 3618i32, "l_partkey": 161i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 26.0d, "l_extendedprice": 27590.16d, "l_discount": 0.01d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-23", "l_commitdate": "1998-01-24", "l_receiptdate": "1998-04-15", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "iously regular deposits cajole ruthless" }, { "l_orderkey": 1315i32, "l_partkey": 161i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 19.0d, "l_extendedprice": 20162.04d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-05", "l_commitdate": "1998-05-23", "l_receiptdate": "1998-08-04", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "nal, regular warhorses about the fu" }, { "l_orderkey": 2407i32, "l_partkey": 161i32, "l_suppkey": 8i32, "l_linenumber": 7i32, "l_quantity": 7.0d, "l_extendedprice": 7428.12d, "l_discount": 0.07d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-09-11", "l_commitdate": "1998-08-15", "l_receiptdate": "1998-09-30", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "totes are carefully accordin" } ] }
-{ "partkey": 162i32, "lines": [ { "l_orderkey": 5953i32, "l_partkey": 162i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 5.0d, "l_extendedprice": 5310.8d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-04-10", "l_commitdate": "1992-04-27", "l_receiptdate": "1992-04-14", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "s. blithely " }, { "l_orderkey": 2786i32, "l_partkey": 162i32, "l_suppkey": 1i32, "l_linenumber": 6i32, "l_quantity": 21.0d, "l_extendedprice": 22305.36d, "l_discount": 0.08d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-05-03", "l_commitdate": "1992-05-01", "l_receiptdate": "1992-05-14", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "slow instructi" }, { "l_orderkey": 2691i32, "l_partkey": 162i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 16.0d, "l_extendedprice": 16994.56d, "l_discount": 0.09d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-06-11", "l_commitdate": "1992-07-29", "l_receiptdate": "1992-06-29", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "bove the even foxes. unusual theodoli" }, { "l_orderkey": 3842i32, "l_partkey": 162i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 28.0d, "l_extendedprice": 29740.48d, "l_discount": 0.05d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-06-17", "l_commitdate": "1992-06-03", "l_receiptdate": "1992-06-24", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "s excuses thrash carefully." }, { "l_orderkey": 5635i32, "l_partkey": 162i32, "l_suppkey": 9i32, "l_linenumber": 6i32, "l_quantity": 23.0d, "l_extendedprice": 24429.68d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-08-24", "l_commitdate": "1992-11-10", "l_receiptdate": "1992-09-21", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "ily pending packages. bold," }, { "l_orderkey": 5089i32, "l_partkey": 162i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 20.0d, "l_extendedprice": 21243.2d, "l_discount": 0.0d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-10-10", "l_commitdate": "1992-10-07", "l_receiptdate": "1992-11-06", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": " ironic accounts" }, { "l_orderkey": 2630i32, "l_partkey": 162i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 29.0d, "l_extendedprice": 30802.64d, "l_discount": 0.08d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-12-03", "l_commitdate": "1993-01-04", "l_receiptdate": "1992-12-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "efully unusual dependencies. even i" }, { "l_orderkey": 5510i32, "l_partkey": 162i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 47.0d, "l_extendedprice": 49921.52d, "l_discount": 0.03d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-01-20", "l_commitdate": "1993-03-25", "l_receiptdate": "1993-02-15", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "riously even requests. slyly bold accou" }, { "l_orderkey": 165i32, "l_partkey": 162i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 43.0d, "l_extendedprice": 45672.88d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-02-27", "l_commitdate": "1993-04-19", "l_receiptdate": "1993-03-03", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "jole slyly according " }, { "l_orderkey": 3687i32, "l_partkey": 162i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 19.0d, "l_extendedprice": 20181.04d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-05-14", "l_commitdate": "1993-04-24", "l_receiptdate": "1993-06-01", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "ly final asymptotes according to t" }, { "l_orderkey": 1382i32, "l_partkey": 162i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 18.0d, "l_extendedprice": 19118.88d, "l_discount": 0.08d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-08-30", "l_commitdate": "1993-10-19", "l_receiptdate": "1993-09-03", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "hely regular deposits. fluffy s" }, { "l_orderkey": 5543i32, "l_partkey": 162i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 22.0d, "l_extendedprice": 23367.52d, "l_discount": 0.04d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-11-06", "l_commitdate": "1993-11-02", "l_receiptdate": "1993-12-02", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "instructions. deposits use quickly. ir" }, { "l_orderkey": 259i32, "l_partkey": 162i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 14.0d, "l_extendedprice": 14870.24d, "l_discount": 0.03d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-11-10", "l_commitdate": "1993-11-20", "l_receiptdate": "1993-11-17", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "ully even, regul" }, { "l_orderkey": 358i32, "l_partkey": 162i32, "l_suppkey": 3i32, "l_linenumber": 6i32, "l_quantity": 32.0d, "l_extendedprice": 33989.12d, "l_discount": 0.03d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-12-21", "l_commitdate": "1993-11-06", "l_receiptdate": "1994-01-17", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "lyly express deposits " }, { "l_orderkey": 5346i32, "l_partkey": 162i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 35.0d, "l_extendedprice": 37175.6d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-02-09", "l_commitdate": "1994-03-01", "l_receiptdate": "1994-02-14", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "nic excuses cajole entic" }, { "l_orderkey": 833i32, "l_partkey": 162i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 9.0d, "l_extendedprice": 9559.44d, "l_discount": 0.05d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-02-28", "l_commitdate": "1994-04-26", "l_receiptdate": "1994-03-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "ecial, even requests. even, bold instructi" }, { "l_orderkey": 258i32, "l_partkey": 162i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 45.0d, "l_extendedprice": 47797.2d, "l_discount": 0.07d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-03-04", "l_commitdate": "1994-02-13", "l_receiptdate": "1994-03-30", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "regular excuses-- fluffily ruthl" }, { "l_orderkey": 5638i32, "l_partkey": 162i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 21.0d, "l_extendedprice": 22305.36d, "l_discount": 0.08d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-03-13", "l_commitdate": "1994-03-27", "l_receiptdate": "1994-03-17", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "press courts use f" }, { "l_orderkey": 5765i32, "l_partkey": 162i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 31.0d, "l_extendedprice": 32926.96d, "l_discount": 0.0d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-01-11", "l_commitdate": "1995-02-13", "l_receiptdate": "1995-01-23", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "r foxes. ev" }, { "l_orderkey": 2114i32, "l_partkey": 162i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 25.0d, "l_extendedprice": 26554.0d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-02-15", "l_commitdate": "1995-03-13", "l_receiptdate": "1995-02-22", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "unts. regular, express accounts wake. b" }, { "l_orderkey": 450i32, "l_partkey": 162i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 42.0d, "l_extendedprice": 44610.72d, "l_discount": 0.03d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "F", "l_shipdate": "1995-06-07", "l_commitdate": "1995-05-29", "l_receiptdate": "1995-06-23", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "y asymptotes. regular depen" }, { "l_orderkey": 551i32, "l_partkey": 162i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 16.0d, "l_extendedprice": 16994.56d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-29", "l_commitdate": "1995-08-19", "l_receiptdate": "1995-08-10", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "y along the carefully ex" }, { "l_orderkey": 2723i32, "l_partkey": 162i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 2.0d, "l_extendedprice": 2124.32d, "l_discount": 0.1d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-09", "l_commitdate": "1995-11-10", "l_receiptdate": "1995-11-14", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": " courts boost quickly about th" }, { "l_orderkey": 35i32, "l_partkey": 162i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 34.0d, "l_extendedprice": 36113.44d, "l_discount": 0.06d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-22", "l_commitdate": "1996-01-06", "l_receiptdate": "1996-01-27", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "s are carefully against the f" }, { "l_orderkey": 420i32, "l_partkey": 162i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 22.0d, "l_extendedprice": 23367.52d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-25", "l_commitdate": "1995-12-16", "l_receiptdate": "1996-02-03", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "ly against the blithely re" }, { "l_orderkey": 4512i32, "l_partkey": 162i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 30.0d, "l_extendedprice": 31864.8d, "l_discount": 0.07d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-28", "l_commitdate": "1995-12-22", "l_receiptdate": "1996-02-22", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "ly unusual package" }, { "l_orderkey": 4262i32, "l_partkey": 162i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 5.0d, "l_extendedprice": 5310.8d, "l_discount": 0.08d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-02", "l_commitdate": "1996-10-16", "l_receiptdate": "1996-10-05", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "ironic accounts are unusu" }, { "l_orderkey": 2432i32, "l_partkey": 162i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 8.0d, "l_extendedprice": 8497.28d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-16", "l_commitdate": "1996-10-01", "l_receiptdate": "1996-11-13", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "s about the bold, close deposit" }, { "l_orderkey": 2273i32, "l_partkey": 162i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 18.0d, "l_extendedprice": 19118.88d, "l_discount": 0.07d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-16", "l_commitdate": "1997-01-21", "l_receiptdate": "1997-01-03", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": " beans. doggedly final packages wake" }, { "l_orderkey": 4258i32, "l_partkey": 162i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 19.0d, "l_extendedprice": 20181.04d, "l_discount": 0.03d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-14", "l_commitdate": "1996-12-12", "l_receiptdate": "1997-01-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "ly busily ironic foxes. f" }, { "l_orderkey": 4836i32, "l_partkey": 162i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 22.0d, "l_extendedprice": 23367.52d, "l_discount": 0.01d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-03", "l_commitdate": "1997-02-23", "l_receiptdate": "1997-03-04", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "al pinto beans. care" }, { "l_orderkey": 1122i32, "l_partkey": 162i32, "l_suppkey": 7i32, "l_linenumber": 6i32, "l_quantity": 24.0d, "l_extendedprice": 25491.84d, "l_discount": 0.04d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-08", "l_commitdate": "1997-02-20", "l_receiptdate": "1997-04-05", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "blithely requests. slyly pending r" }, { "l_orderkey": 288i32, "l_partkey": 162i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 31.0d, "l_extendedprice": 32926.96d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-29", "l_commitdate": "1997-04-24", "l_receiptdate": "1997-06-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "ns. fluffily" }, { "l_orderkey": 3527i32, "l_partkey": 162i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 50.0d, "l_extendedprice": 53108.0d, "l_discount": 0.09d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-17", "l_commitdate": "1997-08-03", "l_receiptdate": "1997-07-29", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "e even accounts was about th" }, { "l_orderkey": 2470i32, "l_partkey": 162i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 30.0d, "l_extendedprice": 31864.8d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-04", "l_commitdate": "1997-07-13", "l_receiptdate": "1997-08-14", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "s across the furiously fina" }, { "l_orderkey": 422i32, "l_partkey": 162i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 25.0d, "l_extendedprice": 26554.0d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-24", "l_commitdate": "1997-07-09", "l_receiptdate": "1997-09-22", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "ep along the furiousl" }, { "l_orderkey": 4865i32, "l_partkey": 162i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 16.0d, "l_extendedprice": 16994.56d, "l_discount": 0.07d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-10-02", "l_commitdate": "1997-08-20", "l_receiptdate": "1997-10-04", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "osits haggle. fur" }, { "l_orderkey": 5505i32, "l_partkey": 162i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 46.0d, "l_extendedprice": 48859.36d, "l_discount": 0.05d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-06", "l_commitdate": "1997-11-04", "l_receiptdate": "1998-02-04", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "usly ironic dependencies haggle across " }, { "l_orderkey": 192i32, "l_partkey": 162i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 20.0d, "l_extendedprice": 21243.2d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-13", "l_commitdate": "1998-02-02", "l_receiptdate": "1998-03-31", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "tes. carefu" }, { "l_orderkey": 4961i32, "l_partkey": 162i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 41.0d, "l_extendedprice": 43548.56d, "l_discount": 0.02d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-15", "l_commitdate": "1998-06-15", "l_receiptdate": "1998-08-05", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "ily against the n" }, { "l_orderkey": 1730i32, "l_partkey": 162i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 15.0d, "l_extendedprice": 15932.4d, "l_discount": 0.07d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-09-07", "l_commitdate": "1998-09-12", "l_receiptdate": "1998-09-30", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "pinto beans cajole. bravely bold" }, { "l_orderkey": 1730i32, "l_partkey": 162i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 9.0d, "l_extendedprice": 9559.44d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-09-18", "l_commitdate": "1998-09-15", "l_receiptdate": "1998-09-21", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "gular dependencies wake. blithely final e" } ] }
-{ "partkey": 163i32, "lines": [ { "l_orderkey": 2983i32, "l_partkey": 163i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 44.0d, "l_extendedprice": 46779.04d, "l_discount": 0.03d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-02-09", "l_commitdate": "1992-03-07", "l_receiptdate": "1992-03-09", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "ly regular instruct" }, { "l_orderkey": 4292i32, "l_partkey": 163i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 40.0d, "l_extendedprice": 42526.4d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-04-27", "l_commitdate": "1992-03-07", "l_receiptdate": "1992-05-04", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "ounts according to the furiously " }, { "l_orderkey": 4992i32, "l_partkey": 163i32, "l_suppkey": 8i32, "l_linenumber": 6i32, "l_quantity": 44.0d, "l_extendedprice": 46779.04d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-06-01", "l_commitdate": "1992-07-22", "l_receiptdate": "1992-06-03", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "rmanent, sly packages print slyly. regula" }, { "l_orderkey": 4705i32, "l_partkey": 163i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 28.0d, "l_extendedprice": 29768.48d, "l_discount": 0.1d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-06-03", "l_commitdate": "1992-06-07", "l_receiptdate": "1992-06-22", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "tes wake according to the unusual plate" }, { "l_orderkey": 4099i32, "l_partkey": 163i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 48.0d, "l_extendedprice": 51031.68d, "l_discount": 0.0d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-10-18", "l_commitdate": "1992-10-14", "l_receiptdate": "1992-11-01", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "ts haggle according to the slyly f" }, { "l_orderkey": 5254i32, "l_partkey": 163i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 45.0d, "l_extendedprice": 47842.2d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-11-11", "l_commitdate": "1992-09-01", "l_receiptdate": "1992-12-07", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": " wake. blithely silent excuse" }, { "l_orderkey": 3014i32, "l_partkey": 163i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 36.0d, "l_extendedprice": 38273.76d, "l_discount": 0.05d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-11-16", "l_commitdate": "1993-01-20", "l_receiptdate": "1992-11-28", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "ding accounts boost fu" }, { "l_orderkey": 4578i32, "l_partkey": 163i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 20.0d, "l_extendedprice": 21263.2d, "l_discount": 0.04d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-01-11", "l_commitdate": "1992-11-09", "l_receiptdate": "1993-01-23", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "iously pending theodolites--" }, { "l_orderkey": 710i32, "l_partkey": 163i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 47.0d, "l_extendedprice": 49968.52d, "l_discount": 0.06d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-01-18", "l_commitdate": "1993-03-24", "l_receiptdate": "1993-01-24", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "usual ideas into th" }, { "l_orderkey": 2914i32, "l_partkey": 163i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 25.0d, "l_extendedprice": 26579.0d, "l_discount": 0.03d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-05-14", "l_commitdate": "1993-04-04", "l_receiptdate": "1993-05-22", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "cross the carefully even accounts." }, { "l_orderkey": 2502i32, "l_partkey": 163i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 33.0d, "l_extendedprice": 35084.28d, "l_discount": 0.1d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-08-12", "l_commitdate": "1993-07-22", "l_receiptdate": "1993-09-04", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "have to print" }, { "l_orderkey": 3684i32, "l_partkey": 163i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 19.0d, "l_extendedprice": 20200.04d, "l_discount": 0.04d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-10-19", "l_commitdate": "1993-08-25", "l_receiptdate": "1993-11-02", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "e slyly carefully pending foxes. d" }, { "l_orderkey": 1316i32, "l_partkey": 163i32, "l_suppkey": 8i32, "l_linenumber": 7i32, "l_quantity": 8.0d, "l_extendedprice": 8505.28d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-03-26", "l_commitdate": "1994-02-08", "l_receiptdate": "1994-04-19", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "packages against the express requests wa" }, { "l_orderkey": 1795i32, "l_partkey": 163i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 11.0d, "l_extendedprice": 11694.76d, "l_discount": 0.08d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-06-19", "l_commitdate": "1994-04-24", "l_receiptdate": "1994-07-02", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "slyly. special pa" }, { "l_orderkey": 5698i32, "l_partkey": 163i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 25.0d, "l_extendedprice": 26579.0d, "l_discount": 0.08d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-08-06", "l_commitdate": "1994-06-21", "l_receiptdate": "1994-08-25", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": " asymptotes sleep slyly above the" }, { "l_orderkey": 3841i32, "l_partkey": 163i32, "l_suppkey": 8i32, "l_linenumber": 6i32, "l_quantity": 48.0d, "l_extendedprice": 51031.68d, "l_discount": 0.03d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-11-23", "l_commitdate": "1994-11-22", "l_receiptdate": "1994-12-01", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": " according to the regular, " }, { "l_orderkey": 643i32, "l_partkey": 163i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 23.0d, "l_extendedprice": 24452.68d, "l_discount": 0.05d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-09", "l_commitdate": "1995-05-18", "l_receiptdate": "1995-07-31", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "sits are carefully according to the e" }, { "l_orderkey": 4672i32, "l_partkey": 163i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 24.0d, "l_extendedprice": 25515.84d, "l_discount": 0.04d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-11", "l_commitdate": "1995-12-28", "l_receiptdate": "1995-12-04", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "y fluffily stealt" }, { "l_orderkey": 2246i32, "l_partkey": 163i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 13.0d, "l_extendedprice": 13821.08d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-15", "l_commitdate": "1996-07-21", "l_receiptdate": "1996-10-08", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "equests. fluffily special epitaphs use" }, { "l_orderkey": 3718i32, "l_partkey": 163i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 16.0d, "l_extendedprice": 17010.56d, "l_discount": 0.02d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-11", "l_commitdate": "1996-12-25", "l_receiptdate": "1996-11-12", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "slyly even accounts. blithely special acco" }, { "l_orderkey": 4258i32, "l_partkey": 163i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 9.0d, "l_extendedprice": 9568.44d, "l_discount": 0.04d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-04", "l_commitdate": "1996-12-08", "l_receiptdate": "1996-12-20", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "counts wake permanently after the bravely" }, { "l_orderkey": 676i32, "l_partkey": 163i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 35.0d, "l_extendedprice": 37210.6d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-30", "l_commitdate": "1997-01-13", "l_receiptdate": "1997-01-19", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "into beans. blithe" }, { "l_orderkey": 4064i32, "l_partkey": 163i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 24.0d, "l_extendedprice": 25515.84d, "l_discount": 0.02d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-01", "l_commitdate": "1996-12-31", "l_receiptdate": "1997-01-23", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "ly regular ideas." }, { "l_orderkey": 4326i32, "l_partkey": 163i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 11.0d, "l_extendedprice": 11694.76d, "l_discount": 0.01d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-02", "l_commitdate": "1996-12-10", "l_receiptdate": "1997-02-20", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "press reque" }, { "l_orderkey": 3652i32, "l_partkey": 163i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 39.0d, "l_extendedprice": 41463.24d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-10", "l_commitdate": "1997-04-03", "l_receiptdate": "1997-03-21", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "y express instructions. un" }, { "l_orderkey": 997i32, "l_partkey": 163i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 11.0d, "l_extendedprice": 11694.76d, "l_discount": 0.0d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-16", "l_commitdate": "1997-07-21", "l_receiptdate": "1997-07-14", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "p furiously according to t" }, { "l_orderkey": 3520i32, "l_partkey": 163i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 35.0d, "l_extendedprice": 37210.6d, "l_discount": 0.02d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-16", "l_commitdate": "1997-09-03", "l_receiptdate": "1997-09-24", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "s nag carefully. sometimes unusual account" }, { "l_orderkey": 2789i32, "l_partkey": 163i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 16.0d, "l_extendedprice": 17010.56d, "l_discount": 0.03d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-18", "l_commitdate": "1998-05-25", "l_receiptdate": "1998-05-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "o beans use carefully" } ] }
-{ "partkey": 164i32, "lines": [ { "l_orderkey": 5601i32, "l_partkey": 164i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 45.0d, "l_extendedprice": 47887.2d, "l_discount": 0.1d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-03-25", "l_commitdate": "1992-04-03", "l_receiptdate": "1992-04-04", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "ts-- blithely final accounts cajole. carefu" }, { "l_orderkey": 1248i32, "l_partkey": 164i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 45.0d, "l_extendedprice": 47887.2d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-04-17", "l_commitdate": "1992-03-31", "l_receiptdate": "1992-05-13", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "ter the pending pl" }, { "l_orderkey": 801i32, "l_partkey": 164i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 12.0d, "l_extendedprice": 12769.92d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-06-06", "l_commitdate": "1992-04-14", "l_receiptdate": "1992-06-12", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "s. ironic pinto b" }, { "l_orderkey": 2240i32, "l_partkey": 164i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 6.0d, "l_extendedprice": 6384.96d, "l_discount": 0.01d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-06-23", "l_commitdate": "1992-05-17", "l_receiptdate": "1992-07-20", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "ymptotes boost. furiously bold p" }, { "l_orderkey": 5858i32, "l_partkey": 164i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 46.0d, "l_extendedprice": 48951.36d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-09-07", "l_commitdate": "1992-10-06", "l_receiptdate": "1992-10-06", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "posits withi" }, { "l_orderkey": 2852i32, "l_partkey": 164i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 29.0d, "l_extendedprice": 30860.64d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-04-21", "l_commitdate": "1993-03-22", "l_receiptdate": "1993-05-02", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "lyly ironi" }, { "l_orderkey": 1060i32, "l_partkey": 164i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 11.0d, "l_extendedprice": 11705.76d, "l_discount": 0.01d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-05-13", "l_commitdate": "1993-05-08", "l_receiptdate": "1993-05-17", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "e regular deposits: re" }, { "l_orderkey": 3621i32, "l_partkey": 164i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 45.0d, "l_extendedprice": 47887.2d, "l_discount": 0.07d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-08-09", "l_commitdate": "1993-06-18", "l_receiptdate": "1993-09-05", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": " doubt about the bold deposits. carefully" }, { "l_orderkey": 2821i32, "l_partkey": 164i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 27.0d, "l_extendedprice": 28732.32d, "l_discount": 0.01d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-11-27", "l_commitdate": "1993-10-11", "l_receiptdate": "1993-12-08", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "requests. blit" }, { "l_orderkey": 3591i32, "l_partkey": 164i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 4.0d, "l_extendedprice": 4256.64d, "l_discount": 0.01d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-04-04", "l_commitdate": "1994-02-19", "l_receiptdate": "1994-05-02", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "he final packages. deposits serve quick" }, { "l_orderkey": 323i32, "l_partkey": 164i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 50.0d, "l_extendedprice": 53208.0d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-04-20", "l_commitdate": "1994-04-25", "l_receiptdate": "1994-05-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "cial requests " }, { "l_orderkey": 4514i32, "l_partkey": 164i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 27.0d, "l_extendedprice": 28732.32d, "l_discount": 0.06d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-07-01", "l_commitdate": "1994-07-13", "l_receiptdate": "1994-07-26", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": " even, silent foxes be" }, { "l_orderkey": 5441i32, "l_partkey": 164i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 3.0d, "l_extendedprice": 3192.48d, "l_discount": 0.0d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-08-12", "l_commitdate": "1994-10-14", "l_receiptdate": "1994-09-01", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "are. unusual, " }, { "l_orderkey": 4451i32, "l_partkey": 164i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 40.0d, "l_extendedprice": 42566.4d, "l_discount": 0.03d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-11-18", "l_commitdate": "1994-12-25", "l_receiptdate": "1994-11-26", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "y. slyly special deposits are sly" }, { "l_orderkey": 930i32, "l_partkey": 164i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 50.0d, "l_extendedprice": 53208.0d, "l_discount": 0.03d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-04-03", "l_commitdate": "1995-01-29", "l_receiptdate": "1995-04-22", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": " excuses among the furiously express ideas " }, { "l_orderkey": 2436i32, "l_partkey": 164i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 6.0d, "l_extendedprice": 6384.96d, "l_discount": 0.06d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-25", "l_commitdate": "1995-11-30", "l_receiptdate": "1995-11-24", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "odolites. ep" }, { "l_orderkey": 5092i32, "l_partkey": 164i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 30.0d, "l_extendedprice": 31924.8d, "l_discount": 0.06d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-27", "l_commitdate": "1995-12-08", "l_receiptdate": "1996-01-09", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "ss, ironic deposits. furiously stea" }, { "l_orderkey": 7i32, "l_partkey": 164i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 28.0d, "l_extendedprice": 29796.48d, "l_discount": 0.03d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-21", "l_commitdate": "1996-04-08", "l_receiptdate": "1996-04-20", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": ". slyly special requests haggl" }, { "l_orderkey": 101i32, "l_partkey": 164i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 36.0d, "l_extendedprice": 38309.76d, "l_discount": 0.0d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-19", "l_commitdate": "1996-05-01", "l_receiptdate": "1996-06-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "tes. blithely pending dolphins x-ray f" }, { "l_orderkey": 2439i32, "l_partkey": 164i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 2.0d, "l_extendedprice": 2128.32d, "l_discount": 0.09d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-14", "l_commitdate": "1997-06-11", "l_receiptdate": "1997-05-09", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "courts boos" }, { "l_orderkey": 1184i32, "l_partkey": 164i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 7.0d, "l_extendedprice": 7449.12d, "l_discount": 0.05d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-02-14", "l_commitdate": "1998-01-06", "l_receiptdate": "1998-03-11", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "ckly warthogs. blithely bold foxes hag" }, { "l_orderkey": 2372i32, "l_partkey": 164i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 12.0d, "l_extendedprice": 12769.92d, "l_discount": 0.04d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-21", "l_commitdate": "1997-12-21", "l_receiptdate": "1998-04-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "lyly according to" }, { "l_orderkey": 3937i32, "l_partkey": 164i32, "l_suppkey": 9i32, "l_linenumber": 7i32, "l_quantity": 1.0d, "l_extendedprice": 1064.16d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-29", "l_commitdate": "1998-01-08", "l_receiptdate": "1998-04-27", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "refully agains" }, { "l_orderkey": 3811i32, "l_partkey": 164i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 24.0d, "l_extendedprice": 25539.84d, "l_discount": 0.04d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-13", "l_commitdate": "1998-05-16", "l_receiptdate": "1998-08-12", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "deposits. slyly regular accounts cajo" }, { "l_orderkey": 5633i32, "l_partkey": 164i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 50.0d, "l_extendedprice": 53208.0d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-23", "l_commitdate": "1998-07-09", "l_receiptdate": "1998-08-21", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "ts. slyly regular " }, { "l_orderkey": 5827i32, "l_partkey": 164i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 3.0d, "l_extendedprice": 3192.48d, "l_discount": 0.03d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-10-17", "l_commitdate": "1998-09-29", "l_receiptdate": "1998-10-28", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "uses eat along the furiously" } ] }
-{ "partkey": 165i32, "lines": [ { "l_orderkey": 2848i32, "l_partkey": 165i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 8.0d, "l_extendedprice": 8521.28d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-03-21", "l_commitdate": "1992-05-18", "l_receiptdate": "1992-04-07", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": ". silent, final ideas sublate packages. ir" }, { "l_orderkey": 4903i32, "l_partkey": 165i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 6.0d, "l_extendedprice": 6390.96d, "l_discount": 0.09d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-04-01", "l_commitdate": "1992-05-16", "l_receiptdate": "1992-04-11", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "azzle quickly along the blithely final pla" }, { "l_orderkey": 3168i32, "l_partkey": 165i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 11.0d, "l_extendedprice": 11716.76d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-04-12", "l_commitdate": "1992-03-17", "l_receiptdate": "1992-05-12", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "ously furious dependenc" }, { "l_orderkey": 3654i32, "l_partkey": 165i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 46.0d, "l_extendedprice": 48997.36d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-06-05", "l_commitdate": "1992-08-19", "l_receiptdate": "1992-06-06", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "usly regular foxes. furio" }, { "l_orderkey": 134i32, "l_partkey": 165i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 35.0d, "l_extendedprice": 37280.6d, "l_discount": 0.06d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-08-23", "l_commitdate": "1992-06-01", "l_receiptdate": "1992-08-24", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "ajole furiously. instructio" }, { "l_orderkey": 4581i32, "l_partkey": 165i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 37.0d, "l_extendedprice": 39410.92d, "l_discount": 0.01d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-10-17", "l_commitdate": "1992-11-05", "l_receiptdate": "1992-11-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "e the blithely bold pearls ha" }, { "l_orderkey": 3015i32, "l_partkey": 165i32, "l_suppkey": 4i32, "l_linenumber": 5i32, "l_quantity": 42.0d, "l_extendedprice": 44736.72d, "l_discount": 0.04d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-01-21", "l_commitdate": "1992-11-07", "l_receiptdate": "1993-02-11", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "encies haggle furious" }, { "l_orderkey": 1286i32, "l_partkey": 165i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 14.0d, "l_extendedprice": 14912.24d, "l_discount": 0.0d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-05-23", "l_commitdate": "1993-08-09", "l_receiptdate": "1993-06-01", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "blithely bo" }, { "l_orderkey": 5061i32, "l_partkey": 165i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 18.0d, "l_extendedprice": 19172.88d, "l_discount": 0.03d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-10-20", "l_commitdate": "1993-10-05", "l_receiptdate": "1993-10-28", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "atelets among the ca" }, { "l_orderkey": 2307i32, "l_partkey": 165i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 19.0d, "l_extendedprice": 20238.04d, "l_discount": 0.08d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-10-23", "l_commitdate": "1993-09-09", "l_receiptdate": "1993-11-09", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "olites haggle furiously around the " }, { "l_orderkey": 2438i32, "l_partkey": 165i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 45.0d, "l_extendedprice": 47932.2d, "l_discount": 0.01d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-10-27", "l_commitdate": "1993-09-24", "l_receiptdate": "1993-11-02", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "en theodolites w" }, { "l_orderkey": 902i32, "l_partkey": 165i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 24.0d, "l_extendedprice": 25563.84d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-11-08", "l_commitdate": "1994-10-12", "l_receiptdate": "1994-11-26", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": ". blithely even accounts poach furiously i" }, { "l_orderkey": 1031i32, "l_partkey": 165i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 28.0d, "l_extendedprice": 29824.48d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-12-10", "l_commitdate": "1994-10-29", "l_receiptdate": "1994-12-18", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "ly ironic accounts across the q" }, { "l_orderkey": 3746i32, "l_partkey": 165i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 37.0d, "l_extendedprice": 39410.92d, "l_discount": 0.07d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-12-29", "l_commitdate": "1994-10-25", "l_receiptdate": "1995-01-03", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "e of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the careful" }, { "l_orderkey": 5511i32, "l_partkey": 165i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 16.0d, "l_extendedprice": 17042.56d, "l_discount": 0.1d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-02-02", "l_commitdate": "1995-01-06", "l_receiptdate": "1995-02-19", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "thely bold theodolites " }, { "l_orderkey": 5511i32, "l_partkey": 165i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 31.0d, "l_extendedprice": 33019.96d, "l_discount": 0.09d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-02-23", "l_commitdate": "1995-01-21", "l_receiptdate": "1995-03-02", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "gular excuses. fluffily even pinto beans c" }, { "l_orderkey": 2657i32, "l_partkey": 165i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 15.0d, "l_extendedprice": 15977.4d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-09", "l_commitdate": "1995-12-16", "l_receiptdate": "1995-12-18", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "ole carefully above the ironic ideas. b" }, { "l_orderkey": 4676i32, "l_partkey": 165i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 47.0d, "l_extendedprice": 50062.52d, "l_discount": 0.03d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-20", "l_commitdate": "1995-10-04", "l_receiptdate": "1996-01-09", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "lithely about the carefully special requ" }, { "l_orderkey": 3234i32, "l_partkey": 165i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 14.0d, "l_extendedprice": 14912.24d, "l_discount": 0.01d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-04-06", "l_commitdate": "1996-05-30", "l_receiptdate": "1996-04-13", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "lithely regular f" }, { "l_orderkey": 2979i32, "l_partkey": 165i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 28.0d, "l_extendedprice": 29824.48d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-04", "l_commitdate": "1996-04-23", "l_receiptdate": "1996-06-24", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "ing, regular pinto beans. blithel" }, { "l_orderkey": 1728i32, "l_partkey": 165i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 44.0d, "l_extendedprice": 46867.04d, "l_discount": 0.08d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-31", "l_commitdate": "1996-06-22", "l_receiptdate": "1996-08-06", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "ide of the slyly blithe" }, { "l_orderkey": 2534i32, "l_partkey": 165i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 14.0d, "l_extendedprice": 14912.24d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-12", "l_commitdate": "1996-09-26", "l_receiptdate": "1996-08-28", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "eposits doze quickly final" }, { "l_orderkey": 4966i32, "l_partkey": 165i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 7.0d, "l_extendedprice": 7456.12d, "l_discount": 0.0d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-08", "l_commitdate": "1996-10-09", "l_receiptdate": "1997-01-06", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "ckly ironic tithe" }, { "l_orderkey": 3623i32, "l_partkey": 165i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 42.0d, "l_extendedprice": 44736.72d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-11", "l_commitdate": "1997-03-24", "l_receiptdate": "1997-01-21", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "g to the slyly regular packa" }, { "l_orderkey": 2151i32, "l_partkey": 165i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 49.0d, "l_extendedprice": 52192.84d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-20", "l_commitdate": "1997-02-09", "l_receiptdate": "1997-02-18", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": " packages. f" }, { "l_orderkey": 357i32, "l_partkey": 165i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 32.0d, "l_extendedprice": 34085.12d, "l_discount": 0.05d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-28", "l_commitdate": "1996-12-29", "l_receiptdate": "1997-02-14", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "y above the carefully final accounts" }, { "l_orderkey": 3429i32, "l_partkey": 165i32, "l_suppkey": 6i32, "l_linenumber": 5i32, "l_quantity": 45.0d, "l_extendedprice": 47932.2d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-21", "l_commitdate": "1997-03-08", "l_receiptdate": "1997-05-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "ites poach a" }, { "l_orderkey": 484i32, "l_partkey": 165i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 22.0d, "l_extendedprice": 23433.52d, "l_discount": 0.07d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-29", "l_commitdate": "1997-03-26", "l_receiptdate": "1997-05-17", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "es are pending instructions. furiously unu" }, { "l_orderkey": 2117i32, "l_partkey": 165i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 36.0d, "l_extendedprice": 38345.76d, "l_discount": 0.1d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-06", "l_commitdate": "1997-07-15", "l_receiptdate": "1997-08-07", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "ronic accounts wake" }, { "l_orderkey": 1413i32, "l_partkey": 165i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 49.0d, "l_extendedprice": 52192.84d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-28", "l_commitdate": "1997-08-23", "l_receiptdate": "1997-09-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "nstructions br" }, { "l_orderkey": 3716i32, "l_partkey": 165i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 19.0d, "l_extendedprice": 20238.04d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-25", "l_commitdate": "1997-10-18", "l_receiptdate": "1997-10-12", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "arefully unusual accounts. flu" }, { "l_orderkey": 4901i32, "l_partkey": 165i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 12.0d, "l_extendedprice": 12781.92d, "l_discount": 0.0d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-12", "l_commitdate": "1998-02-06", "l_receiptdate": "1998-02-03", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "y unusual deposits prom" }, { "l_orderkey": 518i32, "l_partkey": 165i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 30.0d, "l_extendedprice": 31954.8d, "l_discount": 0.07d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-02-18", "l_commitdate": "1998-03-27", "l_receiptdate": "1998-03-16", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "slyly by the packages. carefull" }, { "l_orderkey": 2371i32, "l_partkey": 165i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 22.0d, "l_extendedprice": 23433.52d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-26", "l_commitdate": "1998-03-19", "l_receiptdate": "1998-04-16", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "y daring accounts. regular ins" }, { "l_orderkey": 3846i32, "l_partkey": 165i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 33.0d, "l_extendedprice": 35150.28d, "l_discount": 0.05d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-12", "l_commitdate": "1998-03-14", "l_receiptdate": "1998-05-14", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "s instructions are. fu" }, { "l_orderkey": 3748i32, "l_partkey": 165i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 24.0d, "l_extendedprice": 25563.84d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-07", "l_commitdate": "1998-05-02", "l_receiptdate": "1998-06-21", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "al deposits. blithely" } ] }
-{ "partkey": 168i32, "lines": [ { "l_orderkey": 194i32, "l_partkey": 168i32, "l_suppkey": 7i32, "l_linenumber": 7i32, "l_quantity": 21.0d, "l_extendedprice": 22431.36d, "l_discount": 0.02d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-05-06", "l_commitdate": "1992-05-20", "l_receiptdate": "1992-05-07", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "accounts detect quickly dogged " }, { "l_orderkey": 3654i32, "l_partkey": 168i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 11.0d, "l_extendedprice": 11749.76d, "l_discount": 0.08d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-07-20", "l_commitdate": "1992-07-30", "l_receiptdate": "1992-07-23", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "quickly along the express, ironic req" }, { "l_orderkey": 868i32, "l_partkey": 168i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 8.0d, "l_extendedprice": 8545.28d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-10-07", "l_commitdate": "1992-08-01", "l_receiptdate": "1992-10-16", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "l deposits. blithely regular pint" }, { "l_orderkey": 5381i32, "l_partkey": 168i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 17.0d, "l_extendedprice": 18158.72d, "l_discount": 0.05d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-05-25", "l_commitdate": "1993-04-14", "l_receiptdate": "1993-06-17", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "ckly final requests haggle qui" }, { "l_orderkey": 4739i32, "l_partkey": 168i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 8.0d, "l_extendedprice": 8545.28d, "l_discount": 0.07d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-06-22", "l_commitdate": "1993-05-10", "l_receiptdate": "1993-07-11", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "cording to the " }, { "l_orderkey": 5093i32, "l_partkey": 168i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 40.0d, "l_extendedprice": 42726.4d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-09-16", "l_commitdate": "1993-11-04", "l_receiptdate": "1993-10-05", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "ing pinto beans. quickly bold dependenci" }, { "l_orderkey": 677i32, "l_partkey": 168i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 39.0d, "l_extendedprice": 41658.24d, "l_discount": 0.0d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-12-19", "l_commitdate": "1994-02-11", "l_receiptdate": "1994-01-05", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "ges. furiously regular packages use " }, { "l_orderkey": 5638i32, "l_partkey": 168i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 12.0d, "l_extendedprice": 12817.92d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-02-05", "l_commitdate": "1994-04-01", "l_receiptdate": "1994-02-25", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "n, even requests. furiously ironic not" }, { "l_orderkey": 1795i32, "l_partkey": 168i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 25.0d, "l_extendedprice": 26704.0d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-05-18", "l_commitdate": "1994-05-22", "l_receiptdate": "1994-05-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "he always express accounts ca" }, { "l_orderkey": 3808i32, "l_partkey": 168i32, "l_suppkey": 5i32, "l_linenumber": 6i32, "l_quantity": 44.0d, "l_extendedprice": 46999.04d, "l_discount": 0.06d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-06-07", "l_commitdate": "1994-06-04", "l_receiptdate": "1994-06-25", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "the blithely regular foxes. even, final " }, { "l_orderkey": 2050i32, "l_partkey": 168i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 16.0d, "l_extendedprice": 17090.56d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-08-17", "l_commitdate": "1994-07-28", "l_receiptdate": "1994-09-05", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "al accounts. closely even " }, { "l_orderkey": 4930i32, "l_partkey": 168i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 28.0d, "l_extendedprice": 29908.48d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-08-27", "l_commitdate": "1994-06-27", "l_receiptdate": "1994-09-18", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "e ironic, unusual courts. regula" }, { "l_orderkey": 131i32, "l_partkey": 168i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 45.0d, "l_extendedprice": 48067.2d, "l_discount": 0.1d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-09-14", "l_commitdate": "1994-09-02", "l_receiptdate": "1994-10-04", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "ironic, bold accounts. careful" }, { "l_orderkey": 98i32, "l_partkey": 168i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 10.0d, "l_extendedprice": 10681.6d, "l_discount": 0.03d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-10-23", "l_commitdate": "1994-11-08", "l_receiptdate": "1994-11-09", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": " carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas" }, { "l_orderkey": 1445i32, "l_partkey": 168i32, "l_suppkey": 9i32, "l_linenumber": 6i32, "l_quantity": 39.0d, "l_extendedprice": 41658.24d, "l_discount": 0.03d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-02-05", "l_commitdate": "1995-02-20", "l_receiptdate": "1995-02-06", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "ully unusual reques" }, { "l_orderkey": 2114i32, "l_partkey": 168i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 50.0d, "l_extendedprice": 53408.0d, "l_discount": 0.05d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-02-05", "l_commitdate": "1995-03-18", "l_receiptdate": "1995-02-13", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "pecial pinto bean" }, { "l_orderkey": 359i32, "l_partkey": 168i32, "l_suppkey": 5i32, "l_linenumber": 5i32, "l_quantity": 11.0d, "l_extendedprice": 11749.76d, "l_discount": 0.01d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-02-15", "l_commitdate": "1995-01-27", "l_receiptdate": "1995-02-18", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "rets wake blithely. slyly final dep" }, { "l_orderkey": 5191i32, "l_partkey": 168i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 40.0d, "l_extendedprice": 42726.4d, "l_discount": 0.02d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-03-31", "l_commitdate": "1995-02-21", "l_receiptdate": "1995-04-02", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "nes haggle sometimes. requests eng" }, { "l_orderkey": 3814i32, "l_partkey": 168i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 36.0d, "l_extendedprice": 38453.76d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-06-19", "l_commitdate": "1995-04-18", "l_receiptdate": "1995-06-28", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "beans cajole quickly sl" }, { "l_orderkey": 2978i32, "l_partkey": 168i32, "l_suppkey": 7i32, "l_linenumber": 6i32, "l_quantity": 4.0d, "l_extendedprice": 4272.64d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-06", "l_commitdate": "1995-07-31", "l_receiptdate": "1995-07-19", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "ffily unusual " }, { "l_orderkey": 903i32, "l_partkey": 168i32, "l_suppkey": 9i32, "l_linenumber": 6i32, "l_quantity": 13.0d, "l_extendedprice": 13886.08d, "l_discount": 0.07d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-11", "l_commitdate": "1995-10-04", "l_receiptdate": "1995-10-03", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "sleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep al" }, { "l_orderkey": 3044i32, "l_partkey": 168i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 3.0d, "l_extendedprice": 3204.48d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-27", "l_commitdate": "1996-05-26", "l_receiptdate": "1996-08-15", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "ecoys haggle furiously pending requests." }, { "l_orderkey": 5349i32, "l_partkey": 168i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 14.0d, "l_extendedprice": 14954.24d, "l_discount": 0.06d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-07", "l_commitdate": "1996-11-17", "l_receiptdate": "1996-11-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "fully regular " }, { "l_orderkey": 4963i32, "l_partkey": 168i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 38.0d, "l_extendedprice": 40590.08d, "l_discount": 0.08d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-25", "l_commitdate": "1996-12-12", "l_receiptdate": "1997-01-02", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "tegrate daringly accou" }, { "l_orderkey": 2375i32, "l_partkey": 168i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 3.0d, "l_extendedprice": 3204.48d, "l_discount": 0.02d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-14", "l_commitdate": "1996-12-25", "l_receiptdate": "1997-02-22", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "slyly across the furiously e" }, { "l_orderkey": 1121i32, "l_partkey": 168i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 42.0d, "l_extendedprice": 44862.72d, "l_discount": 0.04d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-05", "l_commitdate": "1997-03-18", "l_receiptdate": "1997-03-14", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "nts are slyly special packages. f" }, { "l_orderkey": 1889i32, "l_partkey": 168i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 5.0d, "l_extendedprice": 5340.8d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-26", "l_commitdate": "1997-06-09", "l_receiptdate": "1997-07-21", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "ording to the blithely silent r" }, { "l_orderkey": 2434i32, "l_partkey": 168i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 49.0d, "l_extendedprice": 52339.84d, "l_discount": 0.0d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-08", "l_commitdate": "1997-07-23", "l_receiptdate": "1997-08-27", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": " after the requests haggle bold, fina" }, { "l_orderkey": 2913i32, "l_partkey": 168i32, "l_suppkey": 5i32, "l_linenumber": 6i32, "l_quantity": 35.0d, "l_extendedprice": 37385.6d, "l_discount": 0.06d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-30", "l_commitdate": "1997-08-21", "l_receiptdate": "1997-09-03", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "es. quickly even braids against" }, { "l_orderkey": 163i32, "l_partkey": 168i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 43.0d, "l_extendedprice": 45930.88d, "l_discount": 0.01d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-19", "l_commitdate": "1997-11-19", "l_receiptdate": "1997-10-03", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "al, bold dependencies wake. iron" }, { "l_orderkey": 1794i32, "l_partkey": 168i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 36.0d, "l_extendedprice": 38453.76d, "l_discount": 0.09d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-11-07", "l_commitdate": "1997-11-01", "l_receiptdate": "1997-11-18", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "ely fluffily ironi" }, { "l_orderkey": 582i32, "l_partkey": 168i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 36.0d, "l_extendedprice": 38453.76d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-09", "l_commitdate": "1997-11-27", "l_receiptdate": "1997-12-26", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "lar requests. quickly " }, { "l_orderkey": 5700i32, "l_partkey": 168i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 24.0d, "l_extendedprice": 25635.84d, "l_discount": 0.09d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-26", "l_commitdate": "1998-01-28", "l_receiptdate": "1998-01-18", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "ix carefully " }, { "l_orderkey": 1475i32, "l_partkey": 168i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 15.0d, "l_extendedprice": 16022.4d, "l_discount": 0.08d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-02-12", "l_commitdate": "1997-12-17", "l_receiptdate": "1998-03-02", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "xpress requests haggle after the final, fi" }, { "l_orderkey": 2087i32, "l_partkey": 168i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 46.0d, "l_extendedprice": 49135.36d, "l_discount": 0.1d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-02-24", "l_commitdate": "1998-04-02", "l_receiptdate": "1998-03-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "ter the dolphins." }, { "l_orderkey": 1315i32, "l_partkey": 168i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 25.0d, "l_extendedprice": 26704.0d, "l_discount": 0.01d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-26", "l_commitdate": "1998-06-10", "l_receiptdate": "1998-07-06", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "lites. unusual foxes affi" } ] }
-{ "partkey": 172i32, "lines": [ { "l_orderkey": 2247i32, "l_partkey": 172i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 12.0d, "l_extendedprice": 12866.04d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-09-06", "l_commitdate": "1992-09-18", "l_receiptdate": "1992-09-26", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "final accounts. requests across the furiou" }, { "l_orderkey": 167i32, "l_partkey": 172i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 27.0d, "l_extendedprice": 28948.59d, "l_discount": 0.09d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-05-01", "l_commitdate": "1993-03-31", "l_receiptdate": "1993-05-31", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "eans affix furiously-- packages" }, { "l_orderkey": 1600i32, "l_partkey": 172i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 20.0d, "l_extendedprice": 21443.4d, "l_discount": 0.02d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-06-16", "l_commitdate": "1993-04-23", "l_receiptdate": "1993-07-02", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "pths sleep blithely about the" }, { "l_orderkey": 5988i32, "l_partkey": 172i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 41.0d, "l_extendedprice": 43958.97d, "l_discount": 0.08d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-01-20", "l_commitdate": "1994-02-06", "l_receiptdate": "1994-02-10", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "the pending, express reque" }, { "l_orderkey": 3138i32, "l_partkey": 172i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 38.0d, "l_extendedprice": 40742.46d, "l_discount": 0.07d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-02-21", "l_commitdate": "1994-03-21", "l_receiptdate": "1994-03-13", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "lithely fluffily un" }, { "l_orderkey": 3751i32, "l_partkey": 172i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 37.0d, "l_extendedprice": 39670.29d, "l_discount": 0.0d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-04-30", "l_commitdate": "1994-05-30", "l_receiptdate": "1994-05-30", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "ly express courts " }, { "l_orderkey": 2817i32, "l_partkey": 172i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 35.0d, "l_extendedprice": 37525.95d, "l_discount": 0.01d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-05-20", "l_commitdate": "1994-06-03", "l_receiptdate": "1994-05-22", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "gular foxes" }, { "l_orderkey": 5572i32, "l_partkey": 172i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 27.0d, "l_extendedprice": 28948.59d, "l_discount": 0.03d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-08-29", "l_commitdate": "1994-09-10", "l_receiptdate": "1994-08-30", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": " accounts. carefully final accoun" }, { "l_orderkey": 4321i32, "l_partkey": 172i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 10.0d, "l_extendedprice": 10721.7d, "l_discount": 0.04d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-09-07", "l_commitdate": "1994-08-23", "l_receiptdate": "1994-09-17", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "wake carefully alongside of " }, { "l_orderkey": 225i32, "l_partkey": 172i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 4.0d, "l_extendedprice": 4288.68d, "l_discount": 0.09d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-05", "l_commitdate": "1995-08-19", "l_receiptdate": "1995-09-03", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "ng the ironic packages. asymptotes among " }, { "l_orderkey": 5637i32, "l_partkey": 172i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 35.0d, "l_extendedprice": 37525.95d, "l_discount": 0.09d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-01", "l_commitdate": "1996-08-04", "l_receiptdate": "1996-08-20", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "s sleep blithely alongside of the ironic" }, { "l_orderkey": 1634i32, "l_partkey": 172i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 44.0d, "l_extendedprice": 47175.48d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-17", "l_commitdate": "1996-11-09", "l_receiptdate": "1996-10-03", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "requests affix slyly. quickly even pack" }, { "l_orderkey": 5255i32, "l_partkey": 172i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 30.0d, "l_extendedprice": 32165.1d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-20", "l_commitdate": "1996-08-18", "l_receiptdate": "1996-10-09", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": " to the silent requests cajole b" }, { "l_orderkey": 1156i32, "l_partkey": 172i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 42.0d, "l_extendedprice": 45031.14d, "l_discount": 0.02d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-18", "l_commitdate": "1997-01-12", "l_receiptdate": "1997-02-13", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "s. quickly bold pains are" }, { "l_orderkey": 1889i32, "l_partkey": 172i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 13.0d, "l_extendedprice": 13938.21d, "l_discount": 0.05d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-12", "l_commitdate": "1997-04-28", "l_receiptdate": "1997-06-23", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "to the regular accounts. carefully express" }, { "l_orderkey": 4544i32, "l_partkey": 172i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 19.0d, "l_extendedprice": 20371.23d, "l_discount": 0.08d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-14", "l_commitdate": "1997-09-08", "l_receiptdate": "1997-08-25", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "regular ideas are furiously about" }, { "l_orderkey": 5671i32, "l_partkey": 172i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 13.0d, "l_extendedprice": 13938.21d, "l_discount": 0.1d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-02", "l_commitdate": "1998-04-03", "l_receiptdate": "1998-03-08", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "bold theodolites about" }, { "l_orderkey": 4448i32, "l_partkey": 172i32, "l_suppkey": 3i32, "l_linenumber": 6i32, "l_quantity": 12.0d, "l_extendedprice": 12866.04d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-21", "l_commitdate": "1998-06-30", "l_receiptdate": "1998-09-09", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "sits about the ironic, bu" } ] }
-{ "partkey": 175i32, "lines": [ { "l_orderkey": 929i32, "l_partkey": 175i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 44.0d, "l_extendedprice": 47307.48d, "l_discount": 0.02d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-10-09", "l_commitdate": "1992-11-20", "l_receiptdate": "1992-10-22", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "s. excuses cajole. carefully regu" }, { "l_orderkey": 4294i32, "l_partkey": 175i32, "l_suppkey": 3i32, "l_linenumber": 7i32, "l_quantity": 47.0d, "l_extendedprice": 50532.99d, "l_discount": 0.02d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-11-09", "l_commitdate": "1992-11-03", "l_receiptdate": "1992-12-05", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "es. blithely r" }, { "l_orderkey": 2497i32, "l_partkey": 175i32, "l_suppkey": 5i32, "l_linenumber": 5i32, "l_quantity": 28.0d, "l_extendedprice": 30104.76d, "l_discount": 0.04d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-11-10", "l_commitdate": "1992-09-30", "l_receiptdate": "1992-11-18", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "hely bold ideas. unusual instructions ac" }, { "l_orderkey": 4261i32, "l_partkey": 175i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 3.0d, "l_extendedprice": 3225.51d, "l_discount": 0.07d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-11-10", "l_commitdate": "1992-12-14", "l_receiptdate": "1992-11-17", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "ly even deposits eat blithely alo" }, { "l_orderkey": 2885i32, "l_partkey": 175i32, "l_suppkey": 5i32, "l_linenumber": 5i32, "l_quantity": 43.0d, "l_extendedprice": 46232.31d, "l_discount": 0.06d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-11-17", "l_commitdate": "1992-10-30", "l_receiptdate": "1992-12-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "cial deposits use bold" }, { "l_orderkey": 3557i32, "l_partkey": 175i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 41.0d, "l_extendedprice": 44081.97d, "l_discount": 0.01d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-01-30", "l_commitdate": "1992-12-31", "l_receiptdate": "1993-02-18", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "ideas breach c" }, { "l_orderkey": 1280i32, "l_partkey": 175i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 5.0d, "l_extendedprice": 5375.85d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-02-03", "l_commitdate": "1993-02-11", "l_receiptdate": "1993-02-23", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "beans haggle. quickly bold instructions h" }, { "l_orderkey": 738i32, "l_partkey": 175i32, "l_suppkey": 4i32, "l_linenumber": 5i32, "l_quantity": 30.0d, "l_extendedprice": 32255.1d, "l_discount": 0.02d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-06-12", "l_commitdate": "1993-05-29", "l_receiptdate": "1993-06-25", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "ecial instructions haggle blithely regula" }, { "l_orderkey": 4610i32, "l_partkey": 175i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 14.0d, "l_extendedprice": 15052.38d, "l_discount": 0.0d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-07-28", "l_commitdate": "1993-07-25", "l_receiptdate": "1993-07-31", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": " ironic frays. dependencies detect blithel" }, { "l_orderkey": 1604i32, "l_partkey": 175i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 15.0d, "l_extendedprice": 16127.55d, "l_discount": 0.03d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-09-10", "l_commitdate": "1993-08-31", "l_receiptdate": "1993-09-30", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "ending realms along the special, p" }, { "l_orderkey": 416i32, "l_partkey": 175i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 25.0d, "l_extendedprice": 26879.25d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-10-16", "l_commitdate": "1993-12-03", "l_receiptdate": "1993-10-29", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "ses boost after the bold requests." }, { "l_orderkey": 2593i32, "l_partkey": 175i32, "l_suppkey": 6i32, "l_linenumber": 6i32, "l_quantity": 1.0d, "l_extendedprice": 1075.17d, "l_discount": 0.08d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-11-23", "l_commitdate": "1993-10-25", "l_receiptdate": "1993-12-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": " accounts wake slyly " }, { "l_orderkey": 2915i32, "l_partkey": 175i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 28.0d, "l_extendedprice": 30104.76d, "l_discount": 0.1d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-04-17", "l_commitdate": "1994-06-09", "l_receiptdate": "1994-05-10", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "yly special " }, { "l_orderkey": 3175i32, "l_partkey": 175i32, "l_suppkey": 6i32, "l_linenumber": 6i32, "l_quantity": 44.0d, "l_extendedprice": 47307.48d, "l_discount": 0.01d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-09-26", "l_commitdate": "1994-08-30", "l_receiptdate": "1994-10-24", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "are carefully furiously ironic accounts. e" }, { "l_orderkey": 2528i32, "l_partkey": 175i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 35.0d, "l_extendedprice": 37630.95d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-12-19", "l_commitdate": "1995-02-04", "l_receiptdate": "1995-01-15", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": ", even excuses. even," }, { "l_orderkey": 1601i32, "l_partkey": 175i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 50.0d, "l_extendedprice": 53758.5d, "l_discount": 0.03d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-12-24", "l_commitdate": "1994-10-23", "l_receiptdate": "1995-01-11", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "ideas doubt" }, { "l_orderkey": 4485i32, "l_partkey": 175i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 43.0d, "l_extendedprice": 46232.31d, "l_discount": 0.01d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-01-17", "l_commitdate": "1995-02-11", "l_receiptdate": "1995-02-07", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "al accounts according to the slyly r" }, { "l_orderkey": 960i32, "l_partkey": 175i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 32.0d, "l_extendedprice": 34405.44d, "l_discount": 0.01d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-01-19", "l_commitdate": "1994-12-17", "l_receiptdate": "1995-02-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "around the blithe, even pl" }, { "l_orderkey": 3554i32, "l_partkey": 175i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 32.0d, "l_extendedprice": 34405.44d, "l_discount": 0.01d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-28", "l_commitdate": "1995-09-01", "l_receiptdate": "1995-10-07", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": ". blithely ironic t" }, { "l_orderkey": 2626i32, "l_partkey": 175i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 2.0d, "l_extendedprice": 2150.34d, "l_discount": 0.05d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-19", "l_commitdate": "1995-11-09", "l_receiptdate": "1995-10-24", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "uffy accounts haggle furiously above" }, { "l_orderkey": 1127i32, "l_partkey": 175i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 7.0d, "l_extendedprice": 7526.19d, "l_discount": 0.07d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-05", "l_commitdate": "1995-11-02", "l_receiptdate": "1995-11-11", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": " idly pending pains " }, { "l_orderkey": 993i32, "l_partkey": 175i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 33.0d, "l_extendedprice": 35480.61d, "l_discount": 0.01d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-03", "l_commitdate": "1995-11-28", "l_receiptdate": "1996-01-23", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": " the deposits affix agains" }, { "l_orderkey": 4579i32, "l_partkey": 175i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 14.0d, "l_extendedprice": 15052.38d, "l_discount": 0.02d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-02-01", "l_commitdate": "1996-01-08", "l_receiptdate": "1996-02-08", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "nding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding th" }, { "l_orderkey": 227i32, "l_partkey": 175i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 24.0d, "l_extendedprice": 25804.08d, "l_discount": 0.07d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-02-03", "l_commitdate": "1995-12-24", "l_receiptdate": "1996-02-12", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "uses across the blithe dependencies cajol" }, { "l_orderkey": 3200i32, "l_partkey": 175i32, "l_suppkey": 3i32, "l_linenumber": 6i32, "l_quantity": 25.0d, "l_extendedprice": 26879.25d, "l_discount": 0.1d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-02-08", "l_commitdate": "1996-04-11", "l_receiptdate": "1996-03-06", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": " slyly regular hockey players! pinto beans " }, { "l_orderkey": 3622i32, "l_partkey": 175i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 47.0d, "l_extendedprice": 50532.99d, "l_discount": 0.09d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-02-24", "l_commitdate": "1996-02-22", "l_receiptdate": "1996-03-12", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "are careful" }, { "l_orderkey": 5634i32, "l_partkey": 175i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 22.0d, "l_extendedprice": 23653.74d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-01", "l_commitdate": "1996-08-31", "l_receiptdate": "1996-09-05", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "silently unusual foxes above the blithely" }, { "l_orderkey": 5762i32, "l_partkey": 175i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 6.0d, "l_extendedprice": 6451.02d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-07", "l_commitdate": "1997-03-25", "l_receiptdate": "1997-05-02", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "ironic dependencies doze carefu" }, { "l_orderkey": 5859i32, "l_partkey": 175i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 50.0d, "l_extendedprice": 53758.5d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-08", "l_commitdate": "1997-06-20", "l_receiptdate": "1997-07-27", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "ly regular deposits use. ironic" }, { "l_orderkey": 2784i32, "l_partkey": 175i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 40.0d, "l_extendedprice": 43006.8d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-28", "l_commitdate": "1998-03-19", "l_receiptdate": "1998-05-03", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "deas nag furiously never unusual " }, { "l_orderkey": 5956i32, "l_partkey": 175i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 47.0d, "l_extendedprice": 50532.99d, "l_discount": 0.04d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-09-06", "l_commitdate": "1998-06-29", "l_receiptdate": "1998-09-18", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "lyly express theodol" } ] }
-{ "partkey": 177i32, "lines": [ { "l_orderkey": 5382i32, "l_partkey": 177i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 14.0d, "l_extendedprice": 15080.38d, "l_discount": 0.02d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-04-05", "l_commitdate": "1992-04-05", "l_receiptdate": "1992-05-04", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": " brave platelets. ev" }, { "l_orderkey": 1956i32, "l_partkey": 177i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 8.0d, "l_extendedprice": 8617.36d, "l_discount": 0.02d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-12-25", "l_commitdate": "1992-11-24", "l_receiptdate": "1993-01-12", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "efully about the ironic, ironic de" }, { "l_orderkey": 3680i32, "l_partkey": 177i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 48.0d, "l_extendedprice": 51704.16d, "l_discount": 0.0d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-01-16", "l_commitdate": "1993-01-23", "l_receiptdate": "1993-01-19", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "packages. quickly fluff" }, { "l_orderkey": 2852i32, "l_partkey": 177i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 6.0d, "l_extendedprice": 6463.02d, "l_discount": 0.01d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-03-02", "l_commitdate": "1993-04-11", "l_receiptdate": "1993-03-11", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": " accounts above the furiously un" }, { "l_orderkey": 5504i32, "l_partkey": 177i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 7.0d, "l_extendedprice": 7540.19d, "l_discount": 0.03d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-04-25", "l_commitdate": "1993-03-15", "l_receiptdate": "1993-05-06", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "packages detect furiously express reques" }, { "l_orderkey": 896i32, "l_partkey": 177i32, "l_suppkey": 6i32, "l_linenumber": 6i32, "l_quantity": 44.0d, "l_extendedprice": 47395.48d, "l_discount": 0.09d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-05-19", "l_commitdate": "1993-04-14", "l_receiptdate": "1993-06-02", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "lar, pending packages. deposits are q" }, { "l_orderkey": 3169i32, "l_partkey": 177i32, "l_suppkey": 8i32, "l_linenumber": 6i32, "l_quantity": 46.0d, "l_extendedprice": 49549.82d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-02-01", "l_commitdate": "1994-01-22", "l_receiptdate": "1994-02-24", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "thely bold theodolites are fl" }, { "l_orderkey": 229i32, "l_partkey": 177i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 3.0d, "l_extendedprice": 3231.51d, "l_discount": 0.02d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-03-22", "l_commitdate": "1994-03-24", "l_receiptdate": "1994-04-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "posits. furiously regular theodol" }, { "l_orderkey": 4514i32, "l_partkey": 177i32, "l_suppkey": 8i32, "l_linenumber": 7i32, "l_quantity": 27.0d, "l_extendedprice": 29083.59d, "l_discount": 0.04d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-06-24", "l_commitdate": "1994-07-14", "l_receiptdate": "1994-06-30", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": ". slyly sile" }, { "l_orderkey": 2754i32, "l_partkey": 177i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 19.0d, "l_extendedprice": 20466.23d, "l_discount": 0.01d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-06-27", "l_commitdate": "1994-05-06", "l_receiptdate": "1994-06-28", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "latelets hag" }, { "l_orderkey": 2788i32, "l_partkey": 177i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 16.0d, "l_extendedprice": 17234.72d, "l_discount": 0.06d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-10-04", "l_commitdate": "1994-11-25", "l_receiptdate": "1994-10-18", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": " requests wake carefully. carefully si" }, { "l_orderkey": 3296i32, "l_partkey": 177i32, "l_suppkey": 6i32, "l_linenumber": 5i32, "l_quantity": 16.0d, "l_extendedprice": 17234.72d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-01-11", "l_commitdate": "1994-12-27", "l_receiptdate": "1995-01-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "kages cajole carefully " }, { "l_orderkey": 4871i32, "l_partkey": 177i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 14.0d, "l_extendedprice": 15080.38d, "l_discount": 0.07d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-30", "l_commitdate": "1995-07-29", "l_receiptdate": "1995-10-18", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "inst the never ironic " }, { "l_orderkey": 4387i32, "l_partkey": 177i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 48.0d, "l_extendedprice": 51704.16d, "l_discount": 0.06d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-29", "l_commitdate": "1995-12-11", "l_receiptdate": "1995-11-01", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "sleep slyly. blithely sl" }, { "l_orderkey": 3141i32, "l_partkey": 177i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 32.0d, "l_extendedprice": 34469.44d, "l_discount": 0.06d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-21", "l_commitdate": "1995-12-18", "l_receiptdate": "1995-11-26", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "oxes are quickly about t" }, { "l_orderkey": 3622i32, "l_partkey": 177i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 9.0d, "l_extendedprice": 9694.53d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-12", "l_commitdate": "1996-02-09", "l_receiptdate": "1995-12-13", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "arefully. furiously regular ideas n" }, { "l_orderkey": 4709i32, "l_partkey": 177i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 25.0d, "l_extendedprice": 26929.25d, "l_discount": 0.05d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-22", "l_commitdate": "1996-03-03", "l_receiptdate": "1996-02-21", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "inst the ironic, regul" }, { "l_orderkey": 774i32, "l_partkey": 177i32, "l_suppkey": 5i32, "l_linenumber": 5i32, "l_quantity": 44.0d, "l_extendedprice": 47395.48d, "l_discount": 0.09d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-02-29", "l_commitdate": "1996-01-16", "l_receiptdate": "1996-03-06", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "s according to the deposits unwind ca" }, { "l_orderkey": 4548i32, "l_partkey": 177i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 22.0d, "l_extendedprice": 23697.74d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-06", "l_commitdate": "1996-08-23", "l_receiptdate": "1996-07-15", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "s. furiously ironic theodolites c" }, { "l_orderkey": 2405i32, "l_partkey": 177i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 23.0d, "l_extendedprice": 24774.91d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-28", "l_commitdate": "1997-01-29", "l_receiptdate": "1997-01-07", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "t wake blithely blithely regular idea" }, { "l_orderkey": 1632i32, "l_partkey": 177i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 47.0d, "l_extendedprice": 50626.99d, "l_discount": 0.03d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-29", "l_commitdate": "1997-03-03", "l_receiptdate": "1997-02-21", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "sts. blithely regular " }, { "l_orderkey": 1441i32, "l_partkey": 177i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 5.0d, "l_extendedprice": 5385.85d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-25", "l_commitdate": "1997-04-16", "l_receiptdate": "1997-05-23", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "he quickly enticing pac" }, { "l_orderkey": 1954i32, "l_partkey": 177i32, "l_suppkey": 8i32, "l_linenumber": 6i32, "l_quantity": 13.0d, "l_extendedprice": 14003.21d, "l_discount": 0.0d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-15", "l_commitdate": "1997-08-22", "l_receiptdate": "1997-06-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "y ironic instructions cajole" }, { "l_orderkey": 5923i32, "l_partkey": 177i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 27.0d, "l_extendedprice": 29083.59d, "l_discount": 0.08d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-16", "l_commitdate": "1997-06-27", "l_receiptdate": "1997-08-29", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "arefully i" }, { "l_orderkey": 1093i32, "l_partkey": 177i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 37.0d, "l_extendedprice": 39855.29d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-11-06", "l_commitdate": "1997-10-08", "l_receiptdate": "1997-11-22", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "le furiously across the carefully sp" }, { "l_orderkey": 133i32, "l_partkey": 177i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 12.0d, "l_extendedprice": 12926.04d, "l_discount": 0.02d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-02", "l_commitdate": "1998-01-15", "l_receiptdate": "1997-12-29", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "ts cajole fluffily quickly i" }, { "l_orderkey": 4644i32, "l_partkey": 177i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 4.0d, "l_extendedprice": 4308.68d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-06", "l_commitdate": "1998-03-19", "l_receiptdate": "1998-05-28", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "gular requests? pendi" }, { "l_orderkey": 3713i32, "l_partkey": 177i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 19.0d, "l_extendedprice": 20466.23d, "l_discount": 0.04d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-25", "l_commitdate": "1998-07-24", "l_receiptdate": "1998-07-08", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "tructions serve blithely around the furi" }, { "l_orderkey": 4577i32, "l_partkey": 177i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 43.0d, "l_extendedprice": 46318.31d, "l_discount": 0.05d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-24", "l_commitdate": "1998-06-02", "l_receiptdate": "1998-09-14", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "ly accounts. carefully " } ] }
-{ "partkey": 181i32, "lines": [ { "l_orderkey": 1088i32, "l_partkey": 181i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 5.0d, "l_extendedprice": 5405.9d, "l_discount": 0.03d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-07-01", "l_commitdate": "1992-07-25", "l_receiptdate": "1992-07-02", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "refully ironic packages. r" }, { "l_orderkey": 2209i32, "l_partkey": 181i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 39.0d, "l_extendedprice": 42166.02d, "l_discount": 0.08d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-11-04", "l_commitdate": "1992-09-02", "l_receiptdate": "1992-11-11", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "ly around the final packages. deposits ca" }, { "l_orderkey": 3232i32, "l_partkey": 181i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 3.0d, "l_extendedprice": 3243.54d, "l_discount": 0.04d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-12-14", "l_commitdate": "1992-12-11", "l_receiptdate": "1992-12-29", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "ily blithely ironic acco" }, { "l_orderkey": 2566i32, "l_partkey": 181i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 42.0d, "l_extendedprice": 45409.56d, "l_discount": 0.08d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-12-20", "l_commitdate": "1992-12-22", "l_receiptdate": "1992-12-29", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "ously ironic accounts" }, { "l_orderkey": 2656i32, "l_partkey": 181i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 10.0d, "l_extendedprice": 10811.8d, "l_discount": 0.02d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-06-28", "l_commitdate": "1993-07-04", "l_receiptdate": "1993-07-12", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "s nag regularly about the deposits. slyly" }, { "l_orderkey": 2821i32, "l_partkey": 181i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 4.0d, "l_extendedprice": 4324.72d, "l_discount": 0.0d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-09-15", "l_commitdate": "1993-10-02", "l_receiptdate": "1993-09-17", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "nding foxes." }, { "l_orderkey": 1382i32, "l_partkey": 181i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 11.0d, "l_extendedprice": 11892.98d, "l_discount": 0.04d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-09-17", "l_commitdate": "1993-09-29", "l_receiptdate": "1993-09-21", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "furiously unusual packages play quickly " }, { "l_orderkey": 1382i32, "l_partkey": 181i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 29.0d, "l_extendedprice": 31354.22d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-10-08", "l_commitdate": "1993-11-11", "l_receiptdate": "1993-10-10", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": " haggle: closely even asymptot" }, { "l_orderkey": 999i32, "l_partkey": 181i32, "l_suppkey": 2i32, "l_linenumber": 6i32, "l_quantity": 37.0d, "l_extendedprice": 40003.66d, "l_discount": 0.0d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-01-03", "l_commitdate": "1993-10-28", "l_receiptdate": "1994-01-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "ckly slyly unusual packages: packages hagg" }, { "l_orderkey": 807i32, "l_partkey": 181i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 48.0d, "l_extendedprice": 51896.64d, "l_discount": 0.07d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-01-08", "l_commitdate": "1994-02-02", "l_receiptdate": "1994-01-15", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "kly across the f" }, { "l_orderkey": 4675i32, "l_partkey": 181i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 5.0d, "l_extendedprice": 5405.9d, "l_discount": 0.05d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-01-16", "l_commitdate": "1994-01-05", "l_receiptdate": "1994-01-18", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "lent pinto beans" }, { "l_orderkey": 3653i32, "l_partkey": 181i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 17.0d, "l_extendedprice": 18380.06d, "l_discount": 0.09d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-06-24", "l_commitdate": "1994-06-02", "l_receiptdate": "1994-07-17", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "gle slyly regular" }, { "l_orderkey": 2854i32, "l_partkey": 181i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 46.0d, "l_extendedprice": 49734.28d, "l_discount": 0.0d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-09-22", "l_commitdate": "1994-08-02", "l_receiptdate": "1994-09-30", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": ". furiously regular deposits across th" }, { "l_orderkey": 5031i32, "l_partkey": 181i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 31.0d, "l_extendedprice": 33516.58d, "l_discount": 0.1d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-01-15", "l_commitdate": "1995-01-08", "l_receiptdate": "1995-02-09", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "ts across the even requests doze furiously" }, { "l_orderkey": 998i32, "l_partkey": 181i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 7.0d, "l_extendedprice": 7568.26d, "l_discount": 0.1d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-03-24", "l_commitdate": "1995-01-18", "l_receiptdate": "1995-04-03", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "nic deposits. even asym" }, { "l_orderkey": 1095i32, "l_partkey": 181i32, "l_suppkey": 2i32, "l_linenumber": 6i32, "l_quantity": 37.0d, "l_extendedprice": 40003.66d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-04", "l_commitdate": "1995-11-13", "l_receiptdate": "1995-10-12", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": ". quickly even dolphins sle" }, { "l_orderkey": 3424i32, "l_partkey": 181i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 39.0d, "l_extendedprice": 42166.02d, "l_discount": 0.06d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-03", "l_commitdate": "1996-11-08", "l_receiptdate": "1996-11-23", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "bits boost closely slyly p" }, { "l_orderkey": 3872i32, "l_partkey": 181i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 28.0d, "l_extendedprice": 30273.04d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-05", "l_commitdate": "1996-11-10", "l_receiptdate": "1996-11-24", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "t after the carefully ironic excuses. f" }, { "l_orderkey": 5540i32, "l_partkey": 181i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 42.0d, "l_extendedprice": 45409.56d, "l_discount": 0.02d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-12", "l_commitdate": "1996-12-18", "l_receiptdate": "1996-12-05", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "ss dolphins haggle " }, { "l_orderkey": 4293i32, "l_partkey": 181i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 1.0d, "l_extendedprice": 1081.18d, "l_discount": 0.06d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-15", "l_commitdate": "1996-10-09", "l_receiptdate": "1996-11-26", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "eposits should boost along the " }, { "l_orderkey": 1890i32, "l_partkey": 181i32, "l_suppkey": 2i32, "l_linenumber": 6i32, "l_quantity": 16.0d, "l_extendedprice": 17298.88d, "l_discount": 0.08d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-13", "l_commitdate": "1997-02-18", "l_receiptdate": "1997-03-12", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "ged pinto beans. regular, regular id" }, { "l_orderkey": 3013i32, "l_partkey": 181i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 17.0d, "l_extendedprice": 18380.06d, "l_discount": 0.01d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-26", "l_commitdate": "1997-05-02", "l_receiptdate": "1997-03-27", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "fully unusual account" }, { "l_orderkey": 3041i32, "l_partkey": 181i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 5.0d, "l_extendedprice": 5405.9d, "l_discount": 0.07d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-20", "l_commitdate": "1997-07-15", "l_receiptdate": "1997-08-17", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "posits dazzle special p" }, { "l_orderkey": 1349i32, "l_partkey": 181i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 1.0d, "l_extendedprice": 1081.18d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-07", "l_commitdate": "1998-01-14", "l_receiptdate": "1998-02-03", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": " express inst" }, { "l_orderkey": 770i32, "l_partkey": 181i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 39.0d, "l_extendedprice": 42166.02d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-19", "l_commitdate": "1998-08-09", "l_receiptdate": "1998-08-04", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "osits. foxes cajole " }, { "l_orderkey": 4417i32, "l_partkey": 181i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 1.0d, "l_extendedprice": 1081.18d, "l_discount": 0.06d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-10-23", "l_commitdate": "1998-08-22", "l_receiptdate": "1998-10-24", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "press deposits promise stealthily amo" } ] }
-{ "partkey": 184i32, "lines": [ { "l_orderkey": 322i32, "l_partkey": 184i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 10.0d, "l_extendedprice": 10841.8d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-04-12", "l_commitdate": "1992-05-13", "l_receiptdate": "1992-04-14", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": " deposits grow slyly according to th" }, { "l_orderkey": 1925i32, "l_partkey": 184i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 50.0d, "l_extendedprice": 54209.0d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-04-12", "l_commitdate": "1992-04-23", "l_receiptdate": "1992-05-08", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "usual pinto" }, { "l_orderkey": 194i32, "l_partkey": 184i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 1.0d, "l_extendedprice": 1084.18d, "l_discount": 0.04d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-04-30", "l_commitdate": "1992-05-18", "l_receiptdate": "1992-05-23", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": " regular theodolites. regular, iron" }, { "l_orderkey": 5121i32, "l_partkey": 184i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 23.0d, "l_extendedprice": 24936.14d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-05-18", "l_commitdate": "1992-06-20", "l_receiptdate": "1992-06-02", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "even courts are blithely ironically " }, { "l_orderkey": 4705i32, "l_partkey": 184i32, "l_suppkey": 5i32, "l_linenumber": 6i32, "l_quantity": 23.0d, "l_extendedprice": 24936.14d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-06-22", "l_commitdate": "1992-06-11", "l_receiptdate": "1992-07-18", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": " above the furiously ev" }, { "l_orderkey": 5474i32, "l_partkey": 184i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 38.0d, "l_extendedprice": 41198.84d, "l_discount": 0.01d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-07-15", "l_commitdate": "1992-07-16", "l_receiptdate": "1992-07-20", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": " slyly beneath " }, { "l_orderkey": 4992i32, "l_partkey": 184i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 42.0d, "l_extendedprice": 45535.56d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-07-19", "l_commitdate": "1992-06-16", "l_receiptdate": "1992-08-17", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "foxes about the quickly final platele" }, { "l_orderkey": 4069i32, "l_partkey": 184i32, "l_suppkey": 5i32, "l_linenumber": 7i32, "l_quantity": 50.0d, "l_extendedprice": 54209.0d, "l_discount": 0.0d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-09-03", "l_commitdate": "1992-06-14", "l_receiptdate": "1992-10-01", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "ages. carefully regular " }, { "l_orderkey": 3810i32, "l_partkey": 184i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 49.0d, "l_extendedprice": 53124.82d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-11-27", "l_commitdate": "1992-10-30", "l_receiptdate": "1992-12-16", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "cajole. fur" }, { "l_orderkey": 3655i32, "l_partkey": 184i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 5.0d, "l_extendedprice": 5420.9d, "l_discount": 0.03d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-01-17", "l_commitdate": "1992-12-31", "l_receiptdate": "1993-01-23", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "riously bold pinto be" }, { "l_orderkey": 1286i32, "l_partkey": 184i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 37.0d, "l_extendedprice": 40114.66d, "l_discount": 0.0d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-05-27", "l_commitdate": "1993-07-11", "l_receiptdate": "1993-06-01", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "lyly ironic pinto beans cajole furiously s" }, { "l_orderkey": 5472i32, "l_partkey": 184i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 37.0d, "l_extendedprice": 40114.66d, "l_discount": 0.07d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-06-15", "l_commitdate": "1993-07-03", "l_receiptdate": "1993-07-09", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "egrate carefully dependencies. " }, { "l_orderkey": 5543i32, "l_partkey": 184i32, "l_suppkey": 5i32, "l_linenumber": 6i32, "l_quantity": 1.0d, "l_extendedprice": 1084.18d, "l_discount": 0.03d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-10-29", "l_commitdate": "1993-11-11", "l_receiptdate": "1993-11-23", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "uriously. slyly" }, { "l_orderkey": 3i32, "l_partkey": 184i32, "l_suppkey": 5i32, "l_linenumber": 5i32, "l_quantity": 28.0d, "l_extendedprice": 30357.04d, "l_discount": 0.04d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-12-14", "l_commitdate": "1994-01-10", "l_receiptdate": "1994-01-01", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "ages nag slyly pending" }, { "l_orderkey": 3397i32, "l_partkey": 184i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 1.0d, "l_extendedprice": 1084.18d, "l_discount": 0.07d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-08-03", "l_commitdate": "1994-07-30", "l_receiptdate": "1994-08-28", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": " regular packag" }, { "l_orderkey": 2116i32, "l_partkey": 184i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 11.0d, "l_extendedprice": 11925.98d, "l_discount": 0.03d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-09-15", "l_commitdate": "1994-10-21", "l_receiptdate": "1994-09-21", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": " pinto beans. final, final sauternes play " }, { "l_orderkey": 2790i32, "l_partkey": 184i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 19.0d, "l_extendedprice": 20599.42d, "l_discount": 0.06d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-10-23", "l_commitdate": "1994-10-03", "l_receiptdate": "1994-10-26", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "uffily even excuses. furiously thin" }, { "l_orderkey": 4583i32, "l_partkey": 184i32, "l_suppkey": 5i32, "l_linenumber": 5i32, "l_quantity": 36.0d, "l_extendedprice": 39030.48d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-01-06", "l_commitdate": "1994-11-25", "l_receiptdate": "1995-01-29", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "ar requests haggle after the furiously " }, { "l_orderkey": 2886i32, "l_partkey": 184i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 38.0d, "l_extendedprice": 41198.84d, "l_discount": 0.02d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-01-21", "l_commitdate": "1995-01-08", "l_receiptdate": "1995-01-30", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "old requests along the fur" }, { "l_orderkey": 1891i32, "l_partkey": 184i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 18.0d, "l_extendedprice": 19515.24d, "l_discount": 0.06d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-01-24", "l_commitdate": "1995-01-29", "l_receiptdate": "1995-02-14", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": " foxes above the carefu" }, { "l_orderkey": 1092i32, "l_partkey": 184i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 48.0d, "l_extendedprice": 52040.64d, "l_discount": 0.04d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-06-25", "l_commitdate": "1995-04-06", "l_receiptdate": "1995-07-18", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "unusual accounts. fluffi" }, { "l_orderkey": 897i32, "l_partkey": 184i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 26.0d, "l_extendedprice": 28188.68d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-01", "l_commitdate": "1995-06-10", "l_receiptdate": "1995-07-14", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "tions sleep according to the special" }, { "l_orderkey": 326i32, "l_partkey": 184i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 25.0d, "l_extendedprice": 27104.5d, "l_discount": 0.03d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-03", "l_commitdate": "1995-07-27", "l_receiptdate": "1995-08-16", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "ily furiously unusual accounts. " }, { "l_orderkey": 3525i32, "l_partkey": 184i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 28.0d, "l_extendedprice": 30357.04d, "l_discount": 0.03d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-22", "l_commitdate": "1996-02-08", "l_receiptdate": "1996-01-27", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": " nag according " }, { "l_orderkey": 4801i32, "l_partkey": 184i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 37.0d, "l_extendedprice": 40114.66d, "l_discount": 0.1d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-09", "l_commitdate": "1996-02-29", "l_receiptdate": "1996-03-25", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "uests hinder blithely against the instr" }, { "l_orderkey": 1731i32, "l_partkey": 184i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 36.0d, "l_extendedprice": 39030.48d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-04-18", "l_commitdate": "1996-04-03", "l_receiptdate": "1996-04-29", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "ngside of the even instruct" }, { "l_orderkey": 3394i32, "l_partkey": 184i32, "l_suppkey": 5i32, "l_linenumber": 6i32, "l_quantity": 14.0d, "l_extendedprice": 15178.52d, "l_discount": 0.05d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-18", "l_commitdate": "1996-06-24", "l_receiptdate": "1996-07-17", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "arefully regular do" }, { "l_orderkey": 2695i32, "l_partkey": 184i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 21.0d, "l_extendedprice": 22767.78d, "l_discount": 0.07d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-04", "l_commitdate": "1996-11-02", "l_receiptdate": "1996-10-21", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "y regular pinto beans. evenly regular packa" }, { "l_orderkey": 4064i32, "l_partkey": 184i32, "l_suppkey": 5i32, "l_linenumber": 6i32, "l_quantity": 46.0d, "l_extendedprice": 49872.28d, "l_discount": 0.03d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-13", "l_commitdate": "1997-01-05", "l_receiptdate": "1996-11-06", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "alongside of the f" }, { "l_orderkey": 2118i32, "l_partkey": 184i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 4.0d, "l_extendedprice": 4336.72d, "l_discount": 0.08d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-25", "l_commitdate": "1996-11-10", "l_receiptdate": "1996-11-22", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "theodolites affix according " }, { "l_orderkey": 2273i32, "l_partkey": 184i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 34.0d, "l_extendedprice": 36862.12d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-08", "l_commitdate": "1997-02-02", "l_receiptdate": "1997-01-23", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": " furiously carefully bold de" }, { "l_orderkey": 484i32, "l_partkey": 184i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 50.0d, "l_extendedprice": 54209.0d, "l_discount": 0.06d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-24", "l_commitdate": "1997-03-27", "l_receiptdate": "1997-02-22", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "uctions wake. final, silent requests haggle" }, { "l_orderkey": 3105i32, "l_partkey": 184i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 11.0d, "l_extendedprice": 11925.98d, "l_discount": 0.01d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-07", "l_commitdate": "1997-02-09", "l_receiptdate": "1997-03-01", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "kly bold depths caj" }, { "l_orderkey": 1763i32, "l_partkey": 184i32, "l_suppkey": 5i32, "l_linenumber": 7i32, "l_quantity": 2.0d, "l_extendedprice": 2168.36d, "l_discount": 0.05d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-27", "l_commitdate": "1996-12-04", "l_receiptdate": "1997-03-27", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "even pinto beans snooze fluffi" }, { "l_orderkey": 2533i32, "l_partkey": 184i32, "l_suppkey": 5i32, "l_linenumber": 6i32, "l_quantity": 20.0d, "l_extendedprice": 21683.6d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-04", "l_commitdate": "1997-04-30", "l_receiptdate": "1997-07-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "thless excuses are b" }, { "l_orderkey": 1923i32, "l_partkey": 184i32, "l_suppkey": 5i32, "l_linenumber": 5i32, "l_quantity": 25.0d, "l_extendedprice": 27104.5d, "l_discount": 0.1d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-18", "l_commitdate": "1997-08-20", "l_receiptdate": "1997-09-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "the ideas: slyly pendin" }, { "l_orderkey": 5380i32, "l_partkey": 184i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 40.0d, "l_extendedprice": 43367.2d, "l_discount": 0.02d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-30", "l_commitdate": "1997-11-27", "l_receiptdate": "1998-01-09", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "ar asymptotes. blithely r" }, { "l_orderkey": 3904i32, "l_partkey": 184i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 19.0d, "l_extendedprice": 20599.42d, "l_discount": 0.09d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-02-10", "l_commitdate": "1998-02-13", "l_receiptdate": "1998-02-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": " excuses sleep slyly according to th" }, { "l_orderkey": 3303i32, "l_partkey": 184i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 25.0d, "l_extendedprice": 27104.5d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-25", "l_commitdate": "1998-01-31", "l_receiptdate": "1998-04-12", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "lly regular pi" }, { "l_orderkey": 1024i32, "l_partkey": 184i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 13.0d, "l_extendedprice": 14094.34d, "l_discount": 0.02d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-11", "l_commitdate": "1998-02-26", "l_receiptdate": "1998-04-18", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "e slyly around the slyly special instructi" }, { "l_orderkey": 390i32, "l_partkey": 184i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 46.0d, "l_extendedprice": 49872.28d, "l_discount": 0.07d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-06", "l_commitdate": "1998-05-20", "l_receiptdate": "1998-06-14", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "cial excuses. bold, pending packages" }, { "l_orderkey": 2115i32, "l_partkey": 184i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 43.0d, "l_extendedprice": 46619.74d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-14", "l_commitdate": "1998-07-25", "l_receiptdate": "1998-07-24", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": " carefully pending requests alongs" } ] }
-{ "partkey": 186i32, "lines": [ { "l_orderkey": 4069i32, "l_partkey": 186i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 3.0d, "l_extendedprice": 3258.54d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-07-26", "l_commitdate": "1992-07-07", "l_receiptdate": "1992-08-04", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "l packages. even, " }, { "l_orderkey": 129i32, "l_partkey": 186i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 36.0d, "l_extendedprice": 39102.48d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-11-25", "l_commitdate": "1992-12-25", "l_receiptdate": "1992-12-09", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "packages are care" }, { "l_orderkey": 481i32, "l_partkey": 186i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 42.0d, "l_extendedprice": 45619.56d, "l_discount": 0.08d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-11-27", "l_commitdate": "1992-11-11", "l_receiptdate": "1992-12-08", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "mptotes are furiously among the iron" }, { "l_orderkey": 5891i32, "l_partkey": 186i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 9.0d, "l_extendedprice": 9775.62d, "l_discount": 0.03d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-01-20", "l_commitdate": "1993-02-27", "l_receiptdate": "1993-02-10", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "cajole carefully " }, { "l_orderkey": 710i32, "l_partkey": 186i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 12.0d, "l_extendedprice": 13034.16d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-02-18", "l_commitdate": "1993-02-27", "l_receiptdate": "1993-03-07", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "ions. slyly express theodolites al" }, { "l_orderkey": 1573i32, "l_partkey": 186i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 5.0d, "l_extendedprice": 5430.9d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-04-24", "l_commitdate": "1993-03-13", "l_receiptdate": "1993-05-17", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "ymptotes could u" }, { "l_orderkey": 5670i32, "l_partkey": 186i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 43.0d, "l_extendedprice": 46705.74d, "l_discount": 0.06d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-07-09", "l_commitdate": "1993-06-03", "l_receiptdate": "1993-07-14", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "ests in place of the carefully sly depos" }, { "l_orderkey": 3489i32, "l_partkey": 186i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 19.0d, "l_extendedprice": 20637.42d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-07-31", "l_commitdate": "1993-10-26", "l_receiptdate": "1993-08-15", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "c deposits alongside of the pending, fu" }, { "l_orderkey": 870i32, "l_partkey": 186i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 5.0d, "l_extendedprice": 5430.9d, "l_discount": 0.06d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-08-13", "l_commitdate": "1993-09-11", "l_receiptdate": "1993-08-24", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "e slyly excuses. ironi" }, { "l_orderkey": 325i32, "l_partkey": 186i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 5.0d, "l_extendedprice": 5430.9d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-01-02", "l_commitdate": "1994-01-05", "l_receiptdate": "1994-01-04", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": " theodolites. " }, { "l_orderkey": 230i32, "l_partkey": 186i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 46.0d, "l_extendedprice": 49964.28d, "l_discount": 0.09d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-02-03", "l_commitdate": "1994-01-15", "l_receiptdate": "1994-02-23", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "old packages ha" }, { "l_orderkey": 3653i32, "l_partkey": 186i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 9.0d, "l_extendedprice": 9775.62d, "l_discount": 0.1d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-04-03", "l_commitdate": "1994-05-19", "l_receiptdate": "1994-04-10", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "slyly silent account" }, { "l_orderkey": 2466i32, "l_partkey": 186i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 16.0d, "l_extendedprice": 17378.88d, "l_discount": 0.0d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-04-20", "l_commitdate": "1994-04-20", "l_receiptdate": "1994-05-09", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "to beans sl" }, { "l_orderkey": 5283i32, "l_partkey": 186i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 1.0d, "l_extendedprice": 1086.18d, "l_discount": 0.1d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-06-20", "l_commitdate": "1994-08-03", "l_receiptdate": "1994-07-01", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "deposits within the furio" }, { "l_orderkey": 4321i32, "l_partkey": 186i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 23.0d, "l_extendedprice": 24982.14d, "l_discount": 0.01d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-11-03", "l_commitdate": "1994-10-08", "l_receiptdate": "1994-11-06", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "ly even orbits slee" }, { "l_orderkey": 5444i32, "l_partkey": 186i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 21.0d, "l_extendedprice": 22809.78d, "l_discount": 0.01d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-04-11", "l_commitdate": "1995-04-25", "l_receiptdate": "1995-04-21", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "ar packages haggle above th" }, { "l_orderkey": 2114i32, "l_partkey": 186i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 26.0d, "l_extendedprice": 28240.68d, "l_discount": 0.02d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-04-30", "l_commitdate": "1995-04-16", "l_receiptdate": "1995-05-28", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "ar asymptotes sleep " }, { "l_orderkey": 2947i32, "l_partkey": 186i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 10.0d, "l_extendedprice": 10861.8d, "l_discount": 0.09d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-06-07", "l_commitdate": "1995-06-26", "l_receiptdate": "1995-06-08", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "lly special " }, { "l_orderkey": 613i32, "l_partkey": 186i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 3.0d, "l_extendedprice": 3258.54d, "l_discount": 0.03d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-27", "l_commitdate": "1995-09-11", "l_receiptdate": "1995-10-05", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "ccounts cajole. " }, { "l_orderkey": 610i32, "l_partkey": 186i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 17.0d, "l_extendedprice": 18465.06d, "l_discount": 0.03d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-01", "l_commitdate": "1995-10-30", "l_receiptdate": "1995-11-04", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "p quickly instead of the slyly pending foxe" }, { "l_orderkey": 5092i32, "l_partkey": 186i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 42.0d, "l_extendedprice": 45619.56d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-06", "l_commitdate": "1996-01-01", "l_receiptdate": "1995-12-06", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "s use along t" }, { "l_orderkey": 2823i32, "l_partkey": 186i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 11.0d, "l_extendedprice": 11947.98d, "l_discount": 0.07d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-10", "l_commitdate": "1995-11-24", "l_receiptdate": "1995-12-21", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "bold requests nag blithely s" }, { "l_orderkey": 3174i32, "l_partkey": 186i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 6.0d, "l_extendedprice": 6517.08d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-13", "l_commitdate": "1996-02-09", "l_receiptdate": "1996-03-22", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": " furiously ironic" }, { "l_orderkey": 3298i32, "l_partkey": 186i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 27.0d, "l_extendedprice": 29326.86d, "l_discount": 0.06d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-10", "l_commitdate": "1996-05-21", "l_receiptdate": "1996-07-15", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "lar packages. regular deposit" }, { "l_orderkey": 3206i32, "l_partkey": 186i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 24.0d, "l_extendedprice": 26068.32d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-25", "l_commitdate": "1996-10-01", "l_receiptdate": "1996-09-04", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "encies sleep deposits--" }, { "l_orderkey": 357i32, "l_partkey": 186i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 36.0d, "l_extendedprice": 39102.48d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-28", "l_commitdate": "1996-11-13", "l_receiptdate": "1997-01-24", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "d the carefully even requests. " }, { "l_orderkey": 3623i32, "l_partkey": 186i32, "l_suppkey": 7i32, "l_linenumber": 6i32, "l_quantity": 7.0d, "l_extendedprice": 7603.26d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-05", "l_commitdate": "1997-03-26", "l_receiptdate": "1997-01-26", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "aves. slyly special packages cajole. fu" }, { "l_orderkey": 1670i32, "l_partkey": 186i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 41.0d, "l_extendedprice": 44533.38d, "l_discount": 0.07d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-19", "l_commitdate": "1997-08-05", "l_receiptdate": "1997-07-26", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "al gifts. speci" }, { "l_orderkey": 5286i32, "l_partkey": 186i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 38.0d, "l_extendedprice": 41274.84d, "l_discount": 0.07d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-11-29", "l_commitdate": "1997-11-26", "l_receiptdate": "1997-12-15", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "fluffily. special, ironic deposit" }, { "l_orderkey": 518i32, "l_partkey": 186i32, "l_suppkey": 7i32, "l_linenumber": 7i32, "l_quantity": 48.0d, "l_extendedprice": 52136.64d, "l_discount": 0.03d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-06", "l_commitdate": "1998-04-22", "l_receiptdate": "1998-03-14", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": " slyly final platelets; quickly even deposi" } ] }
-{ "partkey": 189i32, "lines": [ { "l_orderkey": 4805i32, "l_partkey": 189i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 45.0d, "l_extendedprice": 49013.1d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-06-16", "l_commitdate": "1992-06-08", "l_receiptdate": "1992-07-03", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "the furiously sly t" }, { "l_orderkey": 134i32, "l_partkey": 189i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 26.0d, "l_extendedprice": 28318.68d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-06-20", "l_commitdate": "1992-07-12", "l_receiptdate": "1992-07-16", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": " among the pending depos" }, { "l_orderkey": 1285i32, "l_partkey": 189i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 4.0d, "l_extendedprice": 4356.72d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-07-20", "l_commitdate": "1992-08-17", "l_receiptdate": "1992-07-26", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "l packages sleep slyly quiet i" }, { "l_orderkey": 549i32, "l_partkey": 189i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 38.0d, "l_extendedprice": 41388.84d, "l_discount": 0.07d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-08-17", "l_commitdate": "1992-08-28", "l_receiptdate": "1992-09-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "the regular, furious excuses. carefu" }, { "l_orderkey": 612i32, "l_partkey": 189i32, "l_suppkey": 10i32, "l_linenumber": 6i32, "l_quantity": 33.0d, "l_extendedprice": 35942.94d, "l_discount": 0.1d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-11-30", "l_commitdate": "1992-12-01", "l_receiptdate": "1992-12-12", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "bove the blithely even ideas. careful" }, { "l_orderkey": 1280i32, "l_partkey": 189i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 6.0d, "l_extendedprice": 6535.08d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-03-30", "l_commitdate": "1993-02-16", "l_receiptdate": "1993-04-18", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "gular deposits " }, { "l_orderkey": 2245i32, "l_partkey": 189i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 14.0d, "l_extendedprice": 15248.52d, "l_discount": 0.02d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-05-06", "l_commitdate": "1993-07-21", "l_receiptdate": "1993-05-19", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "nts. always unusual dep" }, { "l_orderkey": 3847i32, "l_partkey": 189i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 7.0d, "l_extendedprice": 7624.26d, "l_discount": 0.08d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-05-06", "l_commitdate": "1993-06-06", "l_receiptdate": "1993-05-22", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": " about the blithely daring Tiresias. fl" }, { "l_orderkey": 1286i32, "l_partkey": 189i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 11.0d, "l_extendedprice": 11980.98d, "l_discount": 0.03d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-08-08", "l_commitdate": "1993-07-30", "l_receiptdate": "1993-09-05", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": " slyly even packages. requ" }, { "l_orderkey": 4580i32, "l_partkey": 189i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 39.0d, "l_extendedprice": 42478.02d, "l_discount": 0.03d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-12-28", "l_commitdate": "1993-12-26", "l_receiptdate": "1994-01-23", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": ". fluffily final dolphins use furiously al" }, { "l_orderkey": 2496i32, "l_partkey": 189i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 36.0d, "l_extendedprice": 39210.48d, "l_discount": 0.09d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-03-27", "l_commitdate": "1994-03-15", "l_receiptdate": "1994-04-17", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "ully ironic f" }, { "l_orderkey": 4514i32, "l_partkey": 189i32, "l_suppkey": 10i32, "l_linenumber": 6i32, "l_quantity": 38.0d, "l_extendedprice": 41388.84d, "l_discount": 0.03d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-07-28", "l_commitdate": "1994-07-06", "l_receiptdate": "1994-08-25", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "ending excuses. sl" }, { "l_orderkey": 3459i32, "l_partkey": 189i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 10.0d, "l_extendedprice": 10891.8d, "l_discount": 0.02d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-08-01", "l_commitdate": "1994-10-17", "l_receiptdate": "1994-08-11", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": ". blithely ironic pinto beans above" }, { "l_orderkey": 4674i32, "l_partkey": 189i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 35.0d, "l_extendedprice": 38121.3d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-08-02", "l_commitdate": "1994-06-04", "l_receiptdate": "1994-08-21", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "le quickly after the express sent" }, { "l_orderkey": 2725i32, "l_partkey": 189i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 15.0d, "l_extendedprice": 16337.7d, "l_discount": 0.07d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-08-06", "l_commitdate": "1994-08-09", "l_receiptdate": "1994-08-15", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "? furiously regular a" }, { "l_orderkey": 2883i32, "l_partkey": 189i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 47.0d, "l_extendedprice": 51191.46d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-01-29", "l_commitdate": "1995-04-19", "l_receiptdate": "1995-02-05", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "ep carefully ironic" }, { "l_orderkey": 3430i32, "l_partkey": 189i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 2.0d, "l_extendedprice": 2178.36d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-03-07", "l_commitdate": "1995-01-28", "l_receiptdate": "1995-03-30", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "sh furiously according to the evenly e" }, { "l_orderkey": 512i32, "l_partkey": 189i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 19.0d, "l_extendedprice": 20694.42d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-12", "l_commitdate": "1995-07-11", "l_receiptdate": "1995-08-04", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": " sleep. requests alongside of the fluff" }, { "l_orderkey": 839i32, "l_partkey": 189i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 47.0d, "l_extendedprice": 51191.46d, "l_discount": 0.08d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-17", "l_commitdate": "1995-11-06", "l_receiptdate": "1995-11-10", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "refully final excuses about " }, { "l_orderkey": 2049i32, "l_partkey": 189i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 25.0d, "l_extendedprice": 27229.5d, "l_discount": 0.08d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-31", "l_commitdate": "1996-02-29", "l_receiptdate": "1996-04-15", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": " excuses above the " }, { "l_orderkey": 4803i32, "l_partkey": 189i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 21.0d, "l_extendedprice": 22872.78d, "l_discount": 0.03d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-25", "l_commitdate": "1996-03-15", "l_receiptdate": "1996-06-09", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": " silent packages use. b" }, { "l_orderkey": 5542i32, "l_partkey": 189i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 6.0d, "l_extendedprice": 6535.08d, "l_discount": 0.03d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-14", "l_commitdate": "1996-05-28", "l_receiptdate": "1996-07-11", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": " foxes doubt. theodolites ca" }, { "l_orderkey": 2690i32, "l_partkey": 189i32, "l_suppkey": 10i32, "l_linenumber": 6i32, "l_quantity": 3.0d, "l_extendedprice": 3267.54d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-04", "l_commitdate": "1996-05-28", "l_receiptdate": "1996-07-06", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": ". final reques" }, { "l_orderkey": 2624i32, "l_partkey": 189i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 12.0d, "l_extendedprice": 13070.16d, "l_discount": 0.07d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-24", "l_commitdate": "1997-02-22", "l_receiptdate": "1997-02-27", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "er the quickly unu" }, { "l_orderkey": 1543i32, "l_partkey": 189i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 42.0d, "l_extendedprice": 45745.56d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-11", "l_commitdate": "1997-04-11", "l_receiptdate": "1997-04-23", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "xpress instructions. regular acc" }, { "l_orderkey": 705i32, "l_partkey": 189i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 46.0d, "l_extendedprice": 50102.28d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-18", "l_commitdate": "1997-05-06", "l_receiptdate": "1997-05-05", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "ss deposits. ironic packa" }, { "l_orderkey": 583i32, "l_partkey": 189i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 13.0d, "l_extendedprice": 14159.34d, "l_discount": 0.04d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-23", "l_commitdate": "1997-05-29", "l_receiptdate": "1997-07-08", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "y sly theodolites. ironi" }, { "l_orderkey": 3270i32, "l_partkey": 189i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 29.0d, "l_extendedprice": 31586.22d, "l_discount": 0.06d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-01", "l_commitdate": "1997-07-23", "l_receiptdate": "1997-07-10", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "sly regular asymptotes. slyly dog" }, { "l_orderkey": 3427i32, "l_partkey": 189i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 24.0d, "l_extendedprice": 26140.32d, "l_discount": 0.02d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-01", "l_commitdate": "1997-07-28", "l_receiptdate": "1997-07-30", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "y bold, sly deposits. pendi" }, { "l_orderkey": 5413i32, "l_partkey": 189i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 5.0d, "l_extendedprice": 5445.9d, "l_discount": 0.1d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-11-28", "l_commitdate": "1997-11-24", "l_receiptdate": "1997-12-05", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "tes are al" }, { "l_orderkey": 2372i32, "l_partkey": 189i32, "l_suppkey": 10i32, "l_linenumber": 6i32, "l_quantity": 11.0d, "l_extendedprice": 11980.98d, "l_discount": 0.02d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-02-14", "l_commitdate": "1998-01-18", "l_receiptdate": "1998-03-10", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": " silent, pending de" }, { "l_orderkey": 2565i32, "l_partkey": 189i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 26.0d, "l_extendedprice": 28318.68d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-07", "l_commitdate": "1998-04-09", "l_receiptdate": "1998-05-15", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": " pinto beans about the slyly regula" }, { "l_orderkey": 4448i32, "l_partkey": 189i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 13.0d, "l_extendedprice": 14159.34d, "l_discount": 0.0d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-26", "l_commitdate": "1998-07-03", "l_receiptdate": "1998-08-14", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "fluffily express accounts integrate furiou" } ] }
-{ "partkey": 194i32, "lines": [ { "l_orderkey": 5409i32, "l_partkey": 194i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 27.0d, "l_extendedprice": 29543.13d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-02-14", "l_commitdate": "1992-03-18", "l_receiptdate": "1992-02-23", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "eodolites " }, { "l_orderkey": 3842i32, "l_partkey": 194i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 28.0d, "l_extendedprice": 30637.32d, "l_discount": 0.0d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-06-20", "l_commitdate": "1992-05-22", "l_receiptdate": "1992-07-13", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "lly alongside of the" }, { "l_orderkey": 5062i32, "l_partkey": 194i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 25.0d, "l_extendedprice": 27354.75d, "l_discount": 0.08d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-12-15", "l_commitdate": "1992-11-17", "l_receiptdate": "1993-01-01", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "uthless excuses ag" }, { "l_orderkey": 1573i32, "l_partkey": 194i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 11.0d, "l_extendedprice": 12036.09d, "l_discount": 0.09d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-03-23", "l_commitdate": "1993-03-24", "l_receiptdate": "1993-04-12", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "nently pending" }, { "l_orderkey": 2084i32, "l_partkey": 194i32, "l_suppkey": 6i32, "l_linenumber": 7i32, "l_quantity": 34.0d, "l_extendedprice": 37202.46d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-06-20", "l_commitdate": "1993-05-28", "l_receiptdate": "1993-06-25", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": " carefully ironic requests. fluffil" }, { "l_orderkey": 4195i32, "l_partkey": 194i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 19.0d, "l_extendedprice": 20789.61d, "l_discount": 0.01d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-09-06", "l_commitdate": "1993-08-13", "l_receiptdate": "1993-09-15", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "telets sleep even requests. final, even i" }, { "l_orderkey": 3942i32, "l_partkey": 194i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 5.0d, "l_extendedprice": 5470.95d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-09-27", "l_commitdate": "1993-09-24", "l_receiptdate": "1993-10-07", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": ". fluffily pending deposits above the flu" }, { "l_orderkey": 3586i32, "l_partkey": 194i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 2.0d, "l_extendedprice": 2188.38d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-02-10", "l_commitdate": "1994-01-07", "l_receiptdate": "1994-03-03", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "he even, unusual decoy" }, { "l_orderkey": 3073i32, "l_partkey": 194i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 16.0d, "l_extendedprice": 17507.04d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-03-02", "l_commitdate": "1994-03-23", "l_receiptdate": "1994-03-31", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "n requests. ironi" }, { "l_orderkey": 4356i32, "l_partkey": 194i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 35.0d, "l_extendedprice": 38296.65d, "l_discount": 0.0d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-05-30", "l_commitdate": "1994-06-14", "l_receiptdate": "1994-06-08", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "arefully ironic " }, { "l_orderkey": 1255i32, "l_partkey": 194i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 46.0d, "l_extendedprice": 50332.74d, "l_discount": 0.07d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-07-06", "l_commitdate": "1994-07-14", "l_receiptdate": "1994-08-05", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "ons nag qui" }, { "l_orderkey": 963i32, "l_partkey": 194i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 7.0d, "l_extendedprice": 7659.33d, "l_discount": 0.01d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-09-12", "l_commitdate": "1994-07-18", "l_receiptdate": "1994-09-17", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "s. slyly regular depe" }, { "l_orderkey": 4931i32, "l_partkey": 194i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 1.0d, "l_extendedprice": 1094.19d, "l_discount": 0.08d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-01-24", "l_commitdate": "1994-12-19", "l_receiptdate": "1995-02-07", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": " furiously " }, { "l_orderkey": 5188i32, "l_partkey": 194i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 36.0d, "l_extendedprice": 39390.84d, "l_discount": 0.04d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-03-09", "l_commitdate": "1995-05-16", "l_receiptdate": "1995-03-19", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "packages? blithely s" }, { "l_orderkey": 4642i32, "l_partkey": 194i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 11.0d, "l_extendedprice": 12036.09d, "l_discount": 0.04d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-05-23", "l_commitdate": "1995-04-26", "l_receiptdate": "1995-06-04", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "lithely express asympt" }, { "l_orderkey": 3590i32, "l_partkey": 194i32, "l_suppkey": 7i32, "l_linenumber": 7i32, "l_quantity": 44.0d, "l_extendedprice": 48144.36d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "F", "l_shipdate": "1995-06-07", "l_commitdate": "1995-06-15", "l_receiptdate": "1995-06-27", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "s sleep after the regular platelets. blit" }, { "l_orderkey": 2657i32, "l_partkey": 194i32, "l_suppkey": 7i32, "l_linenumber": 6i32, "l_quantity": 31.0d, "l_extendedprice": 33919.89d, "l_discount": 0.01d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-10", "l_commitdate": "1995-11-27", "l_receiptdate": "1995-12-06", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "re blithely " }, { "l_orderkey": 3174i32, "l_partkey": 194i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 4.0d, "l_extendedprice": 4376.76d, "l_discount": 0.01d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-17", "l_commitdate": "1996-01-08", "l_receiptdate": "1995-11-27", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "deas sleep thi" }, { "l_orderkey": 1378i32, "l_partkey": 194i32, "l_suppkey": 6i32, "l_linenumber": 6i32, "l_quantity": 29.0d, "l_extendedprice": 31731.51d, "l_discount": 0.05d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-04-15", "l_commitdate": "1996-04-23", "l_receiptdate": "1996-05-14", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "ual packages are furiously blith" }, { "l_orderkey": 4803i32, "l_partkey": 194i32, "l_suppkey": 5i32, "l_linenumber": 6i32, "l_quantity": 19.0d, "l_extendedprice": 20789.61d, "l_discount": 0.07d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-04-20", "l_commitdate": "1996-03-25", "l_receiptdate": "1996-04-27", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "sts. enticing, even" }, { "l_orderkey": 354i32, "l_partkey": 194i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 24.0d, "l_extendedprice": 26260.56d, "l_discount": 0.01d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-08", "l_commitdate": "1996-05-17", "l_receiptdate": "1996-06-07", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "y silent requests. regular, even accounts" }, { "l_orderkey": 4966i32, "l_partkey": 194i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 6.0d, "l_extendedprice": 6565.14d, "l_discount": 0.02d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-09", "l_commitdate": "1996-11-29", "l_receiptdate": "1996-12-30", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "d deposits are sly excuses. slyly iro" }, { "l_orderkey": 1536i32, "l_partkey": 194i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 5.0d, "l_extendedprice": 5470.95d, "l_discount": 0.08d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-08", "l_commitdate": "1997-03-11", "l_receiptdate": "1997-03-02", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "requests sleep pe" }, { "l_orderkey": 4355i32, "l_partkey": 194i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 14.0d, "l_extendedprice": 15318.66d, "l_discount": 0.04d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-08", "l_commitdate": "1997-01-22", "l_receiptdate": "1997-03-26", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "he furiously ironic accounts. quickly iro" }, { "l_orderkey": 1954i32, "l_partkey": 194i32, "l_suppkey": 5i32, "l_linenumber": 7i32, "l_quantity": 49.0d, "l_extendedprice": 53615.31d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-04", "l_commitdate": "1997-08-29", "l_receiptdate": "1997-06-14", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "eans. final pinto beans sleep furiousl" }, { "l_orderkey": 3716i32, "l_partkey": 194i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 39.0d, "l_extendedprice": 42673.41d, "l_discount": 0.02d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-11-27", "l_commitdate": "1997-10-23", "l_receiptdate": "1997-12-24", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "even deposits." }, { "l_orderkey": 2917i32, "l_partkey": 194i32, "l_suppkey": 8i32, "l_linenumber": 6i32, "l_quantity": 7.0d, "l_extendedprice": 7659.33d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-21", "l_commitdate": "1998-03-03", "l_receiptdate": "1998-03-25", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "ly about the regular accounts. carefully pe" }, { "l_orderkey": 2214i32, "l_partkey": 194i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 50.0d, "l_extendedprice": 54709.5d, "l_discount": 0.0d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-06", "l_commitdate": "1998-06-16", "l_receiptdate": "1998-07-16", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "accounts. blith" } ] }
-{ "partkey": 197i32, "lines": [ { "l_orderkey": 2080i32, "l_partkey": 197i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 39.0d, "l_extendedprice": 42790.41d, "l_discount": 0.07d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-08-22", "l_commitdate": "1993-09-09", "l_receiptdate": "1993-08-23", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "ic deposits haggle slyly carefully eve" }, { "l_orderkey": 3138i32, "l_partkey": 197i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 32.0d, "l_extendedprice": 35110.08d, "l_discount": 0.0d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-02-24", "l_commitdate": "1994-05-07", "l_receiptdate": "1994-02-28", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "inal foxes affix slyly. fluffily regul" }, { "l_orderkey": 70i32, "l_partkey": 197i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 13.0d, "l_extendedprice": 14263.47d, "l_discount": 0.06d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-03-03", "l_commitdate": "1994-02-13", "l_receiptdate": "1994-03-26", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "lyly special packag" }, { "l_orderkey": 258i32, "l_partkey": 197i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 40.0d, "l_extendedprice": 43887.6d, "l_discount": 0.1d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-03-13", "l_commitdate": "1994-02-23", "l_receiptdate": "1994-04-05", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "silent frets nod daringly busy, bold" }, { "l_orderkey": 1892i32, "l_partkey": 197i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 14.0d, "l_extendedprice": 15360.66d, "l_discount": 0.06d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-04-08", "l_commitdate": "1994-06-12", "l_receiptdate": "1994-04-27", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "furiously about the furiously" }, { "l_orderkey": 3616i32, "l_partkey": 197i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 30.0d, "l_extendedprice": 32915.7d, "l_discount": 0.01d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-05-05", "l_commitdate": "1994-04-24", "l_receiptdate": "1994-05-12", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "ly ironic accounts unwind b" }, { "l_orderkey": 5509i32, "l_partkey": 197i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 3.0d, "l_extendedprice": 3291.57d, "l_discount": 0.03d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-06-14", "l_commitdate": "1994-05-11", "l_receiptdate": "1994-06-17", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": " quickly fin" }, { "l_orderkey": 2820i32, "l_partkey": 197i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 40.0d, "l_extendedprice": 43887.6d, "l_discount": 0.06d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-08-08", "l_commitdate": "1994-07-30", "l_receiptdate": "1994-08-21", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "g multipliers. final c" }, { "l_orderkey": 4194i32, "l_partkey": 197i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 43.0d, "l_extendedprice": 47179.17d, "l_discount": 0.08d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-11-06", "l_commitdate": "1994-12-09", "l_receiptdate": "1994-11-16", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "olites are after the exp" }, { "l_orderkey": 548i32, "l_partkey": 197i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 2.0d, "l_extendedprice": 2194.38d, "l_discount": 0.06d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-11-26", "l_commitdate": "1994-11-06", "l_receiptdate": "1994-12-06", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "ests haggle quickly eve" }, { "l_orderkey": 2790i32, "l_partkey": 197i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 24.0d, "l_extendedprice": 26332.56d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-12-04", "l_commitdate": "1994-10-10", "l_receiptdate": "1994-12-25", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "ments. slyly f" }, { "l_orderkey": 3296i32, "l_partkey": 197i32, "l_suppkey": 1i32, "l_linenumber": 6i32, "l_quantity": 40.0d, "l_extendedprice": 43887.6d, "l_discount": 0.0d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-12-28", "l_commitdate": "1994-12-08", "l_receiptdate": "1995-01-13", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "ronic ideas across the" }, { "l_orderkey": 961i32, "l_partkey": 197i32, "l_suppkey": 8i32, "l_linenumber": 6i32, "l_quantity": 30.0d, "l_extendedprice": 32915.7d, "l_discount": 0.09d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-06", "l_commitdate": "1995-07-20", "l_receiptdate": "1995-07-26", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "warhorses slee" }, { "l_orderkey": 2882i32, "l_partkey": 197i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 29.0d, "l_extendedprice": 31818.51d, "l_discount": 0.1d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-10", "l_commitdate": "1995-11-01", "l_receiptdate": "1995-10-02", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "kages. furiously ironic" }, { "l_orderkey": 706i32, "l_partkey": 197i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 23.0d, "l_extendedprice": 25235.37d, "l_discount": 0.05d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-06", "l_commitdate": "1995-12-02", "l_receiptdate": "1995-12-16", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "ckey players. requests above the" }, { "l_orderkey": 4773i32, "l_partkey": 197i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 36.0d, "l_extendedprice": 39498.84d, "l_discount": 0.09d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-04-08", "l_commitdate": "1996-03-03", "l_receiptdate": "1996-05-01", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": " dependencies. quickly" }, { "l_orderkey": 1378i32, "l_partkey": 197i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 34.0d, "l_extendedprice": 37304.46d, "l_discount": 0.09d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-08", "l_commitdate": "1996-04-23", "l_receiptdate": "1996-07-09", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "le furiously slyly final accounts. careful" }, { "l_orderkey": 3587i32, "l_partkey": 197i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 5.0d, "l_extendedprice": 5485.95d, "l_discount": 0.09d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-03", "l_commitdate": "1996-07-05", "l_receiptdate": "1996-09-11", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "ithely regular decoys above the " }, { "l_orderkey": 1283i32, "l_partkey": 197i32, "l_suppkey": 8i32, "l_linenumber": 7i32, "l_quantity": 21.0d, "l_extendedprice": 23040.99d, "l_discount": 0.04d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-12", "l_commitdate": "1996-10-02", "l_receiptdate": "1996-10-12", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "fully regular " }, { "l_orderkey": 1671i32, "l_partkey": 197i32, "l_suppkey": 9i32, "l_linenumber": 6i32, "l_quantity": 46.0d, "l_extendedprice": 50470.74d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-13", "l_commitdate": "1996-10-14", "l_receiptdate": "1996-09-28", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": ". slyly bold instructions boost. furiousl" }, { "l_orderkey": 2180i32, "l_partkey": 197i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 24.0d, "l_extendedprice": 26332.56d, "l_discount": 0.03d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-03", "l_commitdate": "1996-10-24", "l_receiptdate": "1997-01-19", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "uriously f" }, { "l_orderkey": 4064i32, "l_partkey": 197i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 32.0d, "l_extendedprice": 35110.08d, "l_discount": 0.04d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-14", "l_commitdate": "1997-01-01", "l_receiptdate": "1997-01-21", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "es boost. careful" }, { "l_orderkey": 5056i32, "l_partkey": 197i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 19.0d, "l_extendedprice": 20846.61d, "l_discount": 0.04d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-24", "l_commitdate": "1997-05-05", "l_receiptdate": "1997-04-23", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "c theodolites. ironic a" }, { "l_orderkey": 3969i32, "l_partkey": 197i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 26.0d, "l_extendedprice": 28526.94d, "l_discount": 0.05d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-08", "l_commitdate": "1997-07-30", "l_receiptdate": "1997-07-10", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "fluffily; braids detect." }, { "l_orderkey": 5185i32, "l_partkey": 197i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 37.0d, "l_extendedprice": 40596.03d, "l_discount": 0.0d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-08", "l_commitdate": "1997-09-08", "l_receiptdate": "1997-08-14", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "gainst the courts dazzle care" }, { "l_orderkey": 3552i32, "l_partkey": 197i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 18.0d, "l_extendedprice": 19749.42d, "l_discount": 0.01d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-11", "l_commitdate": "1997-07-14", "l_receiptdate": "1997-08-15", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "s deposits against the blithely unusual pin" }, { "l_orderkey": 5313i32, "l_partkey": 197i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 16.0d, "l_extendedprice": 17555.04d, "l_discount": 0.08d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-10-04", "l_commitdate": "1997-08-02", "l_receiptdate": "1997-10-25", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "ckages wake carefully aga" }, { "l_orderkey": 518i32, "l_partkey": 197i32, "l_suppkey": 10i32, "l_linenumber": 6i32, "l_quantity": 39.0d, "l_extendedprice": 42790.41d, "l_discount": 0.09d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-02-26", "l_commitdate": "1998-03-17", "l_receiptdate": "1998-03-21", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": " the bold, special deposits are carefully " }, { "l_orderkey": 192i32, "l_partkey": 197i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 2.0d, "l_extendedprice": 2194.38d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-06", "l_commitdate": "1998-02-03", "l_receiptdate": "1998-03-24", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "s. dependencies nag furiously alongside" }, { "l_orderkey": 2789i32, "l_partkey": 197i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 23.0d, "l_extendedprice": 25235.37d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-25", "l_commitdate": "1998-05-10", "l_receiptdate": "1998-04-24", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "cording to the careful de" }, { "l_orderkey": 3748i32, "l_partkey": 197i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 19.0d, "l_extendedprice": 20846.61d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-23", "l_commitdate": "1998-05-17", "l_receiptdate": "1998-05-23", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "pinto beans run carefully quic" }, { "l_orderkey": 5536i32, "l_partkey": 197i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 35.0d, "l_extendedprice": 38401.65d, "l_discount": 0.07d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-19", "l_commitdate": "1998-06-08", "l_receiptdate": "1998-06-05", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "c, final theo" } ] }
-{ "partkey": 198i32, "lines": [ { "l_orderkey": 3011i32, "l_partkey": 198i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 5.0d, "l_extendedprice": 5490.95d, "l_discount": 0.02d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-04-21", "l_commitdate": "1992-02-23", "l_receiptdate": "1992-05-15", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "nusual sentiments. carefully bold idea" }, { "l_orderkey": 4294i32, "l_partkey": 198i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 30.0d, "l_extendedprice": 32945.7d, "l_discount": 0.01d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-09-12", "l_commitdate": "1992-11-06", "l_receiptdate": "1992-09-25", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "olites. bold foxes affix ironic theodolite" }, { "l_orderkey": 1345i32, "l_partkey": 198i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 49.0d, "l_extendedprice": 53811.31d, "l_discount": 0.08d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-12-27", "l_commitdate": "1993-01-23", "l_receiptdate": "1993-01-06", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "sly. furiously final accounts are blithely " }, { "l_orderkey": 3494i32, "l_partkey": 198i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 40.0d, "l_extendedprice": 43927.6d, "l_discount": 0.02d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-05-30", "l_commitdate": "1993-07-02", "l_receiptdate": "1993-06-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "uests cajole blithely" }, { "l_orderkey": 738i32, "l_partkey": 198i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 34.0d, "l_extendedprice": 37338.46d, "l_discount": 0.0d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-06-09", "l_commitdate": "1993-04-15", "l_receiptdate": "1993-07-09", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "s against the ironic exc" }, { "l_orderkey": 896i32, "l_partkey": 198i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 10.0d, "l_extendedprice": 10981.9d, "l_discount": 0.03d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-07-07", "l_commitdate": "1993-06-03", "l_receiptdate": "1993-07-24", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": " quickly even theodolites. carefully regu" }, { "l_orderkey": 865i32, "l_partkey": 198i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 16.0d, "l_extendedprice": 17571.04d, "l_discount": 0.07d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-08-24", "l_commitdate": "1993-06-26", "l_receiptdate": "1993-08-28", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "y even accounts. quickly bold decoys" }, { "l_orderkey": 5061i32, "l_partkey": 198i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 8.0d, "l_extendedprice": 8785.52d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-09-07", "l_commitdate": "1993-10-31", "l_receiptdate": "1993-10-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "regular foxes. ir" }, { "l_orderkey": 1316i32, "l_partkey": 198i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 33.0d, "l_extendedprice": 36240.27d, "l_discount": 0.1d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-03-31", "l_commitdate": "1994-01-23", "l_receiptdate": "1994-04-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "manently; blithely special deposits" }, { "l_orderkey": 1314i32, "l_partkey": 198i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 5.0d, "l_extendedprice": 5490.95d, "l_discount": 0.03d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-05-26", "l_commitdate": "1994-08-06", "l_receiptdate": "1994-05-31", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "equests nag across the furious" }, { "l_orderkey": 3396i32, "l_partkey": 198i32, "l_suppkey": 2i32, "l_linenumber": 7i32, "l_quantity": 31.0d, "l_extendedprice": 34043.89d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-06-07", "l_commitdate": "1994-06-23", "l_receiptdate": "1994-06-19", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "l, express pinto beans. quic" }, { "l_orderkey": 295i32, "l_partkey": 198i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 29.0d, "l_extendedprice": 31847.51d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-11-09", "l_commitdate": "1994-12-08", "l_receiptdate": "1994-12-07", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "inst the carefully ironic pinto beans. blit" }, { "l_orderkey": 1891i32, "l_partkey": 198i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 15.0d, "l_extendedprice": 16472.85d, "l_discount": 0.03d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-03-11", "l_commitdate": "1995-03-05", "l_receiptdate": "1995-03-18", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": " accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou account" }, { "l_orderkey": 2277i32, "l_partkey": 198i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 4.0d, "l_extendedprice": 4392.76d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-04-27", "l_commitdate": "1995-03-16", "l_receiptdate": "1995-04-29", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": ". quickly unusual deposi" }, { "l_orderkey": 805i32, "l_partkey": 198i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 25.0d, "l_extendedprice": 27454.75d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-05", "l_commitdate": "1995-09-30", "l_receiptdate": "1995-08-06", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "ide of the pending, sly requests. quickly f" }, { "l_orderkey": 32i32, "l_partkey": 198i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 32.0d, "l_extendedprice": 35142.08d, "l_discount": 0.02d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-14", "l_commitdate": "1995-10-07", "l_receiptdate": "1995-08-27", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "lithely regular deposits. fluffily " }, { "l_orderkey": 3200i32, "l_partkey": 198i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 16.0d, "l_extendedprice": 17571.04d, "l_discount": 0.05d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-02-28", "l_commitdate": "1996-03-13", "l_receiptdate": "1996-03-11", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "ly against the quiet packages. blith" }, { "l_orderkey": 4551i32, "l_partkey": 198i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 27.0d, "l_extendedprice": 29651.13d, "l_discount": 0.0d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-04-28", "l_commitdate": "1996-03-22", "l_receiptdate": "1996-05-22", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "y along the slyly even " }, { "l_orderkey": 3428i32, "l_partkey": 198i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 4.0d, "l_extendedprice": 4392.76d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-09", "l_commitdate": "1996-06-13", "l_receiptdate": "1996-06-02", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "sly pending requests int" }, { "l_orderkey": 608i32, "l_partkey": 198i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 40.0d, "l_extendedprice": 43927.6d, "l_discount": 0.03d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-21", "l_commitdate": "1996-04-11", "l_receiptdate": "1996-06-02", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": " alongside of the regular tithes. sly" }, { "l_orderkey": 5186i32, "l_partkey": 198i32, "l_suppkey": 10i32, "l_linenumber": 7i32, "l_quantity": 44.0d, "l_extendedprice": 48320.36d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-23", "l_commitdate": "1996-10-14", "l_receiptdate": "1996-10-01", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "old, final accounts cajole sl" }, { "l_orderkey": 3943i32, "l_partkey": 198i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 15.0d, "l_extendedprice": 16472.85d, "l_discount": 0.03d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-13", "l_commitdate": "1996-12-17", "l_receiptdate": "1997-02-02", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": " grow fluffily according to the " }, { "l_orderkey": 5159i32, "l_partkey": 198i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 36.0d, "l_extendedprice": 39534.84d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-24", "l_commitdate": "1996-11-07", "l_receiptdate": "1997-02-08", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "packages wake." }, { "l_orderkey": 2533i32, "l_partkey": 198i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 5.0d, "l_extendedprice": 5490.95d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-26", "l_commitdate": "1997-06-02", "l_receiptdate": "1997-06-24", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "ccounts. ironic, special accounts boo" }, { "l_orderkey": 4002i32, "l_partkey": 198i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 20.0d, "l_extendedprice": 21963.8d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-15", "l_commitdate": "1997-05-20", "l_receiptdate": "1997-07-11", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "lly even ins" }, { "l_orderkey": 453i32, "l_partkey": 198i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 45.0d, "l_extendedprice": 49418.55d, "l_discount": 0.01d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-30", "l_commitdate": "1997-08-20", "l_receiptdate": "1997-07-19", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "ifts wake carefully." }, { "l_orderkey": 4263i32, "l_partkey": 198i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 14.0d, "l_extendedprice": 15374.66d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-06", "l_commitdate": "1998-04-17", "l_receiptdate": "1998-05-11", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "d accounts. daringly regular accounts hagg" }, { "l_orderkey": 709i32, "l_partkey": 198i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 15.0d, "l_extendedprice": 16472.85d, "l_discount": 0.08d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-10", "l_commitdate": "1998-06-26", "l_receiptdate": "1998-08-09", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "ily regular deposits. sauternes was accor" }, { "l_orderkey": 5761i32, "l_partkey": 198i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 49.0d, "l_extendedprice": 53811.31d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-14", "l_commitdate": "1998-08-20", "l_receiptdate": "1998-07-25", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "ly bold accounts wake above the" }, { "l_orderkey": 2407i32, "l_partkey": 198i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 14.0d, "l_extendedprice": 15374.66d, "l_discount": 0.04d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-09-24", "l_commitdate": "1998-08-18", "l_receiptdate": "1998-10-06", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "tructions wake stealt" }, { "l_orderkey": 1124i32, "l_partkey": 198i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 1.0d, "l_extendedprice": 1098.19d, "l_discount": 0.09d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-10-06", "l_commitdate": "1998-10-02", "l_receiptdate": "1998-10-30", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": " instructions cajole qu" } ] }
-{ "partkey": 8i32, "lines": [ { "l_orderkey": 5635i32, "l_partkey": 8i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 40.0d, "l_extendedprice": 36320.0d, "l_discount": 0.03d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-09-25", "l_commitdate": "1992-11-05", "l_receiptdate": "1992-10-11", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "pending foxes. regular packages" }, { "l_orderkey": 1540i32, "l_partkey": 8i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 25.0d, "l_extendedprice": 22700.0d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-11-15", "l_commitdate": "1992-10-24", "l_receiptdate": "1992-12-14", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "ironic deposits amo" }, { "l_orderkey": 1222i32, "l_partkey": 8i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 26.0d, "l_extendedprice": 23608.0d, "l_discount": 0.02d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-02-13", "l_commitdate": "1993-03-20", "l_receiptdate": "1993-02-22", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": ", even accounts are ironic" }, { "l_orderkey": 1060i32, "l_partkey": 8i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 26.0d, "l_extendedprice": 23608.0d, "l_discount": 0.06d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-04-12", "l_commitdate": "1993-04-01", "l_receiptdate": "1993-04-20", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "counts; even deposits are carefull" }, { "l_orderkey": 2048i32, "l_partkey": 8i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 5.0d, "l_extendedprice": 4540.0d, "l_discount": 0.04d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-01-18", "l_commitdate": "1994-02-01", "l_receiptdate": "1994-01-29", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "affix carefully against " }, { "l_orderkey": 230i32, "l_partkey": 8i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 1.0d, "l_extendedprice": 908.0d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-01-22", "l_commitdate": "1994-01-03", "l_receiptdate": "1994-02-05", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "blithely unusual dolphins. bold, ex" }, { "l_orderkey": 4291i32, "l_partkey": 8i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 25.0d, "l_extendedprice": 22700.0d, "l_discount": 0.09d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-02-14", "l_commitdate": "1994-02-08", "l_receiptdate": "1994-03-15", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "uctions. furiously regular ins" }, { "l_orderkey": 1828i32, "l_partkey": 8i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 45.0d, "l_extendedprice": 40860.0d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-05-15", "l_commitdate": "1994-05-29", "l_receiptdate": "1994-05-28", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": " accounts run slyly " }, { "l_orderkey": 3777i32, "l_partkey": 8i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 10.0d, "l_extendedprice": 9080.0d, "l_discount": 0.03d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-05-22", "l_commitdate": "1994-05-29", "l_receiptdate": "1994-06-13", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "le. ironic depths a" }, { "l_orderkey": 4420i32, "l_partkey": 8i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 7.0d, "l_extendedprice": 6356.0d, "l_discount": 0.07d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-08-30", "l_commitdate": "1994-09-03", "l_receiptdate": "1994-09-25", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": " regular instructions sleep around" }, { "l_orderkey": 5894i32, "l_partkey": 8i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 23.0d, "l_extendedprice": 20884.0d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-09-05", "l_commitdate": "1994-10-27", "l_receiptdate": "1994-09-13", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": " furiously even deposits haggle alw" }, { "l_orderkey": 1762i32, "l_partkey": 8i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 49.0d, "l_extendedprice": 44492.0d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-10-20", "l_commitdate": "1994-11-02", "l_receiptdate": "1994-11-10", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": " packages sleep fluffily pen" }, { "l_orderkey": 2277i32, "l_partkey": 8i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 2.0d, "l_extendedprice": 1816.0d, "l_discount": 0.1d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-02-01", "l_commitdate": "1995-02-04", "l_receiptdate": "1995-03-02", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "endencies sleep idly pending p" }, { "l_orderkey": 225i32, "l_partkey": 8i32, "l_suppkey": 5i32, "l_linenumber": 5i32, "l_quantity": 31.0d, "l_extendedprice": 28148.0d, "l_discount": 0.04d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-06-21", "l_commitdate": "1995-07-24", "l_receiptdate": "1995-07-04", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "special platelets. quickly r" }, { "l_orderkey": 4614i32, "l_partkey": 8i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 36.0d, "l_extendedprice": 32688.0d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-05", "l_commitdate": "1996-06-26", "l_receiptdate": "1996-07-07", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "onic foxes affix furi" }, { "l_orderkey": 1760i32, "l_partkey": 8i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 3.0d, "l_extendedprice": 2724.0d, "l_discount": 0.0d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-18", "l_commitdate": "1996-07-01", "l_receiptdate": "1996-08-01", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "lyly bold dolphins haggle carefully. sl" }, { "l_orderkey": 5478i32, "l_partkey": 8i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 39.0d, "l_extendedprice": 35412.0d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-19", "l_commitdate": "1996-06-25", "l_receiptdate": "1996-09-08", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "s. furiously " }, { "l_orderkey": 1472i32, "l_partkey": 8i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 36.0d, "l_extendedprice": 32688.0d, "l_discount": 0.04d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-06", "l_commitdate": "1996-11-13", "l_receiptdate": "1996-11-12", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "riously silent deposits to the pending d" }, { "l_orderkey": 1283i32, "l_partkey": 8i32, "l_suppkey": 5i32, "l_linenumber": 6i32, "l_quantity": 30.0d, "l_extendedprice": 27240.0d, "l_discount": 0.06d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-22", "l_commitdate": "1996-11-22", "l_receiptdate": "1996-12-15", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "t the fluffily" }, { "l_orderkey": 5600i32, "l_partkey": 8i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 19.0d, "l_extendedprice": 17252.0d, "l_discount": 0.0d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-10", "l_commitdate": "1997-03-24", "l_receiptdate": "1997-04-16", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "dencies. carefully p" }, { "l_orderkey": 5057i32, "l_partkey": 8i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 45.0d, "l_extendedprice": 40860.0d, "l_discount": 0.08d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-20", "l_commitdate": "1997-10-02", "l_receiptdate": "1997-10-20", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": " asymptotes wake slyl" }, { "l_orderkey": 4322i32, "l_partkey": 8i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 12.0d, "l_extendedprice": 10896.0d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-29", "l_commitdate": "1998-06-05", "l_receiptdate": "1998-04-16", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "e blithely against the slyly unusu" }, { "l_orderkey": 4613i32, "l_partkey": 8i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 36.0d, "l_extendedprice": 32688.0d, "l_discount": 0.04d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-22", "l_commitdate": "1998-05-05", "l_receiptdate": "1998-05-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "gainst the furiously ironic" }, { "l_orderkey": 68i32, "l_partkey": 8i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 3.0d, "l_extendedprice": 2724.0d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-04", "l_commitdate": "1998-06-05", "l_receiptdate": "1998-07-21", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "fully special instructions cajole. furious" } ] }
-{ "partkey": 9i32, "lines": [ { "l_orderkey": 3970i32, "l_partkey": 9i32, "l_suppkey": 6i32, "l_linenumber": 6i32, "l_quantity": 46.0d, "l_extendedprice": 41814.0d, "l_discount": 0.07d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-04-29", "l_commitdate": "1992-05-14", "l_receiptdate": "1992-05-24", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "yly ironic" }, { "l_orderkey": 1955i32, "l_partkey": 9i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 16.0d, "l_extendedprice": 14544.0d, "l_discount": 0.03d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-04-30", "l_commitdate": "1992-06-23", "l_receiptdate": "1992-05-23", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "odolites eat s" }, { "l_orderkey": 4199i32, "l_partkey": 9i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 18.0d, "l_extendedprice": 16362.0d, "l_discount": 0.0d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-06-01", "l_commitdate": "1992-03-30", "l_receiptdate": "1992-06-28", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "pending, regular accounts. carefully" }, { "l_orderkey": 4483i32, "l_partkey": 9i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 50.0d, "l_extendedprice": 45450.0d, "l_discount": 0.0d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-06-10", "l_commitdate": "1992-04-18", "l_receiptdate": "1992-06-17", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "ackages. furiously ironi" }, { "l_orderkey": 4805i32, "l_partkey": 9i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 42.0d, "l_extendedprice": 38178.0d, "l_discount": 0.03d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-08-17", "l_commitdate": "1992-07-03", "l_receiptdate": "1992-09-14", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "the regular, fina" }, { "l_orderkey": 4096i32, "l_partkey": 9i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 21.0d, "l_extendedprice": 19089.0d, "l_discount": 0.08d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-08-24", "l_commitdate": "1992-09-04", "l_receiptdate": "1992-09-11", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "tes mold flu" }, { "l_orderkey": 4416i32, "l_partkey": 9i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 45.0d, "l_extendedprice": 40905.0d, "l_discount": 0.09d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-10-16", "l_commitdate": "1992-09-09", "l_receiptdate": "1992-10-28", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "the final pinto beans. special frets " }, { "l_orderkey": 293i32, "l_partkey": 9i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 14.0d, "l_extendedprice": 12726.0d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-10-19", "l_commitdate": "1992-12-23", "l_receiptdate": "1992-11-10", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "es. packages above the" }, { "l_orderkey": 4771i32, "l_partkey": 9i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 21.0d, "l_extendedprice": 19089.0d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-12-20", "l_commitdate": "1993-01-22", "l_receiptdate": "1992-12-26", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": " carefully re" }, { "l_orderkey": 4545i32, "l_partkey": 9i32, "l_suppkey": 2i32, "l_linenumber": 7i32, "l_quantity": 36.0d, "l_extendedprice": 32724.0d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-01-28", "l_commitdate": "1993-03-30", "l_receiptdate": "1993-02-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "sublate slyly. furiously ironic accounts b" }, { "l_orderkey": 5414i32, "l_partkey": 9i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 19.0d, "l_extendedprice": 17271.0d, "l_discount": 0.01d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-04-06", "l_commitdate": "1993-05-12", "l_receiptdate": "1993-05-02", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "ffily silent theodolites na" }, { "l_orderkey": 2055i32, "l_partkey": 9i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 15.0d, "l_extendedprice": 13635.0d, "l_discount": 0.06d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-10-30", "l_commitdate": "1993-11-21", "l_receiptdate": "1993-11-22", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "gular foxes. b" }, { "l_orderkey": 2976i32, "l_partkey": 9i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 32.0d, "l_extendedprice": 29088.0d, "l_discount": 0.06d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-01-26", "l_commitdate": "1994-02-13", "l_receiptdate": "1994-02-10", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "nding, ironic deposits sleep f" }, { "l_orderkey": 1792i32, "l_partkey": 9i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 5.0d, "l_extendedprice": 4545.0d, "l_discount": 0.04d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-02-13", "l_commitdate": "1994-01-03", "l_receiptdate": "1994-02-28", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "ely regular accounts are slyly. pending, bo" }, { "l_orderkey": 1792i32, "l_partkey": 9i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 8.0d, "l_extendedprice": 7272.0d, "l_discount": 0.01d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-02-21", "l_commitdate": "1994-01-26", "l_receiptdate": "1994-02-27", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "nts. fluffily special instructions integr" }, { "l_orderkey": 3075i32, "l_partkey": 9i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 39.0d, "l_extendedprice": 35451.0d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-06-10", "l_commitdate": "1994-06-21", "l_receiptdate": "1994-06-20", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "ing deposits nag " }, { "l_orderkey": 1152i32, "l_partkey": 9i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 23.0d, "l_extendedprice": 20907.0d, "l_discount": 0.06d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-10-14", "l_commitdate": "1994-10-22", "l_receiptdate": "1994-10-21", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "equests alongside of the unusual " }, { "l_orderkey": 3233i32, "l_partkey": 9i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 25.0d, "l_extendedprice": 22725.0d, "l_discount": 0.04d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-11-24", "l_commitdate": "1995-01-07", "l_receiptdate": "1994-12-11", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "oss the pl" }, { "l_orderkey": 5511i32, "l_partkey": 9i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 23.0d, "l_extendedprice": 20907.0d, "l_discount": 0.1d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-03-11", "l_commitdate": "1995-01-21", "l_receiptdate": "1995-03-27", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "ing dugouts " }, { "l_orderkey": 5221i32, "l_partkey": 9i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 34.0d, "l_extendedprice": 30906.0d, "l_discount": 0.01d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-11", "l_commitdate": "1995-07-17", "l_receiptdate": "1995-10-10", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "eans. furio" }, { "l_orderkey": 903i32, "l_partkey": 9i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 35.0d, "l_extendedprice": 31815.0d, "l_discount": 0.06d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-18", "l_commitdate": "1995-08-21", "l_receiptdate": "1995-10-12", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "rets wake fin" }, { "l_orderkey": 903i32, "l_partkey": 9i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 33.0d, "l_extendedprice": 29997.0d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-24", "l_commitdate": "1995-09-01", "l_receiptdate": "1995-10-12", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "ely ironic packages wake blithely" }, { "l_orderkey": 2979i32, "l_partkey": 9i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 8.0d, "l_extendedprice": 7272.0d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-18", "l_commitdate": "1996-05-21", "l_receiptdate": "1996-07-06", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "st blithely; blithely regular gifts dazz" }, { "l_orderkey": 2693i32, "l_partkey": 9i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 26.0d, "l_extendedprice": 23634.0d, "l_discount": 0.04d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-14", "l_commitdate": "1996-10-07", "l_receiptdate": "1996-10-03", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "cajole alo" }, { "l_orderkey": 419i32, "l_partkey": 9i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 15.0d, "l_extendedprice": 13635.0d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-09", "l_commitdate": "1996-12-22", "l_receiptdate": "1997-01-25", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "of the careful, thin theodolites. quickly s" }, { "l_orderkey": 1568i32, "l_partkey": 9i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 46.0d, "l_extendedprice": 41814.0d, "l_discount": 0.04d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-06", "l_commitdate": "1997-04-08", "l_receiptdate": "1997-04-23", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "g the blithely even acco" }, { "l_orderkey": 5859i32, "l_partkey": 9i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 17.0d, "l_extendedprice": 15453.0d, "l_discount": 0.03d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-15", "l_commitdate": "1997-06-30", "l_receiptdate": "1997-05-26", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "ly ironic requests. quickly unusual pin" }, { "l_orderkey": 5536i32, "l_partkey": 9i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 30.0d, "l_extendedprice": 27270.0d, "l_discount": 0.05d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-15", "l_commitdate": "1998-05-23", "l_receiptdate": "1998-05-03", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "arefully regular theodolites according" }, { "l_orderkey": 4196i32, "l_partkey": 9i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 31.0d, "l_extendedprice": 28179.0d, "l_discount": 0.09d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-12", "l_commitdate": "1998-07-28", "l_receiptdate": "1998-07-11", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "ut the blithely ironic inst" } ] }
-{ "partkey": 10i32, "lines": [ { "l_orderkey": 2881i32, "l_partkey": 10i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 1.0d, "l_extendedprice": 910.01d, "l_discount": 0.09d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-05-13", "l_commitdate": "1992-07-21", "l_receiptdate": "1992-05-18", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "final theodolites. quickly" }, { "l_orderkey": 5378i32, "l_partkey": 10i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 18.0d, "l_extendedprice": 16380.18d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-11-25", "l_commitdate": "1992-12-21", "l_receiptdate": "1992-12-10", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "onic accounts was bold, " }, { "l_orderkey": 1796i32, "l_partkey": 10i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 28.0d, "l_extendedprice": 25480.28d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-12-01", "l_commitdate": "1993-01-01", "l_receiptdate": "1992-12-24", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "y quickly ironic accounts." }, { "l_orderkey": 4935i32, "l_partkey": 10i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 14.0d, "l_extendedprice": 12740.14d, "l_discount": 0.08d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-05-30", "l_commitdate": "1993-07-25", "l_receiptdate": "1993-05-31", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "slowly. blith" }, { "l_orderkey": 196i32, "l_partkey": 10i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 15.0d, "l_extendedprice": 13650.15d, "l_discount": 0.03d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-07-05", "l_commitdate": "1993-05-08", "l_receiptdate": "1993-07-06", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "s accounts. furio" }, { "l_orderkey": 4999i32, "l_partkey": 10i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 44.0d, "l_extendedprice": 40040.44d, "l_discount": 0.03d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-08-01", "l_commitdate": "1993-08-04", "l_receiptdate": "1993-08-17", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "ependencies. slowly regu" }, { "l_orderkey": 4161i32, "l_partkey": 10i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 45.0d, "l_extendedprice": 40950.45d, "l_discount": 0.02d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-10-22", "l_commitdate": "1993-10-17", "l_receiptdate": "1993-10-30", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "about the ironic packages cajole blithe" }, { "l_orderkey": 1382i32, "l_partkey": 10i32, "l_suppkey": 5i32, "l_linenumber": 6i32, "l_quantity": 38.0d, "l_extendedprice": 34580.38d, "l_discount": 0.07d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-11-17", "l_commitdate": "1993-09-28", "l_receiptdate": "1993-11-20", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "ake pending pinto beans. s" }, { "l_orderkey": 2976i32, "l_partkey": 10i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 35.0d, "l_extendedprice": 31850.35d, "l_discount": 0.1d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-12-19", "l_commitdate": "1994-02-14", "l_receiptdate": "1994-01-11", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "boost slyly about the regular, regular re" }, { "l_orderkey": 230i32, "l_partkey": 10i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 44.0d, "l_extendedprice": 40040.44d, "l_discount": 0.08d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-02-09", "l_commitdate": "1994-01-18", "l_receiptdate": "1994-03-11", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "deposits integrate slyly sile" }, { "l_orderkey": 3138i32, "l_partkey": 10i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 12.0d, "l_extendedprice": 10920.12d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-03-04", "l_commitdate": "1994-04-11", "l_receiptdate": "1994-03-21", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": ". bold pinto beans haggl" }, { "l_orderkey": 994i32, "l_partkey": 10i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 11.0d, "l_extendedprice": 10010.11d, "l_discount": 0.01d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-05-03", "l_commitdate": "1994-06-10", "l_receiptdate": "1994-05-22", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "ular accounts sleep " }, { "l_orderkey": 4839i32, "l_partkey": 10i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 25.0d, "l_extendedprice": 22750.25d, "l_discount": 0.02d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-05-20", "l_commitdate": "1994-07-08", "l_receiptdate": "1994-05-30", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "regular packages ab" }, { "l_orderkey": 1989i32, "l_partkey": 10i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 47.0d, "l_extendedprice": 42770.47d, "l_discount": 0.1d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-06-21", "l_commitdate": "1994-05-27", "l_receiptdate": "1994-06-22", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "final deposits s" }, { "l_orderkey": 998i32, "l_partkey": 10i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 22.0d, "l_extendedprice": 20020.22d, "l_discount": 0.04d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-12-03", "l_commitdate": "1995-02-17", "l_receiptdate": "1994-12-19", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "lites. qui" }, { "l_orderkey": 449i32, "l_partkey": 10i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 3.0d, "l_extendedprice": 2730.03d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-28", "l_commitdate": "1995-09-11", "l_receiptdate": "1995-08-01", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": " bold deposits. express theodolites haggle" }, { "l_orderkey": 2947i32, "l_partkey": 10i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 37.0d, "l_extendedprice": 33670.37d, "l_discount": 0.09d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-09", "l_commitdate": "1995-07-05", "l_receiptdate": "1995-08-20", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "e accounts: expres" }, { "l_orderkey": 3363i32, "l_partkey": 10i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 42.0d, "l_extendedprice": 38220.42d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-09", "l_commitdate": "1995-11-25", "l_receiptdate": "1995-11-15", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": " blithely final ideas nag after" }, { "l_orderkey": 3141i32, "l_partkey": 10i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 37.0d, "l_extendedprice": 33670.37d, "l_discount": 0.1d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-24", "l_commitdate": "1995-12-16", "l_receiptdate": "1996-01-27", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "press pinto beans. bold accounts boost b" }, { "l_orderkey": 2946i32, "l_partkey": 10i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 25.0d, "l_extendedprice": 22750.25d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-06", "l_commitdate": "1996-04-23", "l_receiptdate": "1996-05-16", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "ic deposits. furiously" }, { "l_orderkey": 5632i32, "l_partkey": 10i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 48.0d, "l_extendedprice": 43680.48d, "l_discount": 0.06d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-08", "l_commitdate": "1996-03-24", "l_receiptdate": "1996-06-04", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "unts. decoys u" }, { "l_orderkey": 3558i32, "l_partkey": 10i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 28.0d, "l_extendedprice": 25480.28d, "l_discount": 0.02d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-02", "l_commitdate": "1996-04-18", "l_receiptdate": "1996-06-24", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "l deposits " }, { "l_orderkey": 4102i32, "l_partkey": 10i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 17.0d, "l_extendedprice": 15470.17d, "l_discount": 0.02d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-03", "l_commitdate": "1996-05-06", "l_receiptdate": "1996-07-02", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "ly silent theodolites sleep unusual exc" }, { "l_orderkey": 2980i32, "l_partkey": 10i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 48.0d, "l_extendedprice": 43680.48d, "l_discount": 0.04d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-25", "l_commitdate": "1996-12-09", "l_receiptdate": "1996-10-12", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "totes. regular pinto " }, { "l_orderkey": 1922i32, "l_partkey": 10i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 13.0d, "l_extendedprice": 11830.13d, "l_discount": 0.05d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-24", "l_commitdate": "1996-09-21", "l_receiptdate": "1996-11-15", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "quests. furiously" }, { "l_orderkey": 3941i32, "l_partkey": 10i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 2.0d, "l_extendedprice": 1820.02d, "l_discount": 0.01d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-04", "l_commitdate": "1996-10-01", "l_receiptdate": "1996-12-25", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "es wake after the" }, { "l_orderkey": 4807i32, "l_partkey": 10i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 41.0d, "l_extendedprice": 37310.41d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-02", "l_commitdate": "1997-03-31", "l_receiptdate": "1997-05-15", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": " fluffily re" }, { "l_orderkey": 1668i32, "l_partkey": 10i32, "l_suppkey": 3i32, "l_linenumber": 6i32, "l_quantity": 38.0d, "l_extendedprice": 34580.38d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-26", "l_commitdate": "1997-09-17", "l_receiptdate": "1997-09-05", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "ep slyly across the furi" }, { "l_orderkey": 519i32, "l_partkey": 10i32, "l_suppkey": 5i32, "l_linenumber": 5i32, "l_quantity": 13.0d, "l_extendedprice": 11830.13d, "l_discount": 0.06d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-02-06", "l_commitdate": "1997-12-02", "l_receiptdate": "1998-03-03", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "c accounts wake along the ironic so" }, { "l_orderkey": 5507i32, "l_partkey": 10i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 23.0d, "l_extendedprice": 20930.23d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-09-04", "l_commitdate": "1998-07-04", "l_receiptdate": "1998-09-18", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "ously slow packages poach whithout the" }, { "l_orderkey": 1730i32, "l_partkey": 10i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 40.0d, "l_extendedprice": 36400.4d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-10-02", "l_commitdate": "1998-10-06", "l_receiptdate": "1998-10-03", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "ven dinos slee" } ] }
-{ "partkey": 25i32, "lines": [ { "l_orderkey": 2688i32, "l_partkey": 25i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 3.0d, "l_extendedprice": 2775.06d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-02-04", "l_commitdate": "1992-03-18", "l_receiptdate": "1992-02-24", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "e fluffily " }, { "l_orderkey": 5060i32, "l_partkey": 25i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 27.0d, "l_extendedprice": 24975.54d, "l_discount": 0.1d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-07-23", "l_commitdate": "1992-09-05", "l_receiptdate": "1992-08-07", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironi" }, { "l_orderkey": 868i32, "l_partkey": 25i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 27.0d, "l_extendedprice": 24975.54d, "l_discount": 0.04d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-08-01", "l_commitdate": "1992-08-25", "l_receiptdate": "1992-08-12", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "oss the fluffily unusual pinto " }, { "l_orderkey": 1540i32, "l_partkey": 25i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 6.0d, "l_extendedprice": 5550.12d, "l_discount": 0.09d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-08-28", "l_commitdate": "1992-09-17", "l_receiptdate": "1992-09-14", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "ing to the slyly express asymptote" }, { "l_orderkey": 3265i32, "l_partkey": 25i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 8.0d, "l_extendedprice": 7400.16d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-09-01", "l_commitdate": "1992-09-12", "l_receiptdate": "1992-09-27", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "thely ironic requests sleep slyly-- i" }, { "l_orderkey": 2146i32, "l_partkey": 25i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 14.0d, "l_extendedprice": 12950.28d, "l_discount": 0.03d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-09-16", "l_commitdate": "1992-10-16", "l_receiptdate": "1992-09-20", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "ecial, express a" }, { "l_orderkey": 1793i32, "l_partkey": 25i32, "l_suppkey": 6i32, "l_linenumber": 5i32, "l_quantity": 42.0d, "l_extendedprice": 38850.84d, "l_discount": 0.03d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-10-13", "l_commitdate": "1992-10-02", "l_receiptdate": "1992-11-06", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "uctions sleep carefully special, fl" }, { "l_orderkey": 2146i32, "l_partkey": 25i32, "l_suppkey": 6i32, "l_linenumber": 7i32, "l_quantity": 39.0d, "l_extendedprice": 36075.78d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-01-05", "l_commitdate": "1992-11-06", "l_receiptdate": "1993-01-14", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "uickly regular excuses detect. regular c" }, { "l_orderkey": 1830i32, "l_partkey": 25i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 9.0d, "l_extendedprice": 8325.18d, "l_discount": 0.05d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-03-09", "l_commitdate": "1995-05-24", "l_receiptdate": "1995-03-14", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "st furiously among " }, { "l_orderkey": 3585i32, "l_partkey": 25i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 13.0d, "l_extendedprice": 12025.26d, "l_discount": 0.06d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-03-15", "l_commitdate": "1995-01-22", "l_receiptdate": "1995-03-17", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "ccording to the foxes. slyly iro" }, { "l_orderkey": 1767i32, "l_partkey": 25i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 32.0d, "l_extendedprice": 29600.64d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-05-22", "l_commitdate": "1995-05-14", "l_receiptdate": "1995-05-23", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "to the bravely ironic requests i" }, { "l_orderkey": 4709i32, "l_partkey": 25i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 25.0d, "l_extendedprice": 23125.5d, "l_discount": 0.03d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-02-21", "l_commitdate": "1996-02-11", "l_receiptdate": "1996-03-17", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "deposits grow. fluffily unusual accounts " }, { "l_orderkey": 1i32, "l_partkey": 25i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 24.0d, "l_extendedprice": 22200.48d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-30", "l_commitdate": "1996-03-14", "l_receiptdate": "1996-04-01", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": " pending foxes. slyly re" }, { "l_orderkey": 2051i32, "l_partkey": 25i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 43.0d, "l_extendedprice": 39775.86d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-04-22", "l_commitdate": "1996-06-16", "l_receiptdate": "1996-04-28", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "ounts sleep fluffily even requ" }, { "l_orderkey": 768i32, "l_partkey": 25i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 37.0d, "l_extendedprice": 34225.74d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-02", "l_commitdate": "1996-09-23", "l_receiptdate": "1996-10-14", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "ending requests across the quickly" }, { "l_orderkey": 2980i32, "l_partkey": 25i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 49.0d, "l_extendedprice": 45325.98d, "l_discount": 0.03d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-04", "l_commitdate": "1996-12-04", "l_receiptdate": "1996-10-06", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "hy packages sleep quic" }, { "l_orderkey": 1763i32, "l_partkey": 25i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 16.0d, "l_extendedprice": 14800.32d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-12", "l_commitdate": "1996-12-04", "l_receiptdate": "1996-12-25", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "ously pending asymptotes a" }, { "l_orderkey": 5762i32, "l_partkey": 25i32, "l_suppkey": 6i32, "l_linenumber": 5i32, "l_quantity": 28.0d, "l_extendedprice": 25900.56d, "l_discount": 0.02d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-22", "l_commitdate": "1997-03-25", "l_receiptdate": "1997-02-24", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "ic foxes among the blithely qui" }, { "l_orderkey": 3105i32, "l_partkey": 25i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 48.0d, "l_extendedprice": 44400.96d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-28", "l_commitdate": "1997-01-31", "l_receiptdate": "1997-03-18", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "ending platelets wake carefully ironic inst" }, { "l_orderkey": 1441i32, "l_partkey": 25i32, "l_suppkey": 4i32, "l_linenumber": 6i32, "l_quantity": 15.0d, "l_extendedprice": 13875.3d, "l_discount": 0.09d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-21", "l_commitdate": "1997-05-06", "l_receiptdate": "1997-06-04", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": " dependencies-- cour" }, { "l_orderkey": 5185i32, "l_partkey": 25i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 32.0d, "l_extendedprice": 29600.64d, "l_discount": 0.06d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-17", "l_commitdate": "1997-09-30", "l_receiptdate": "1997-08-24", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "ackages. slyly even requests" }, { "l_orderkey": 5505i32, "l_partkey": 25i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 43.0d, "l_extendedprice": 39775.86d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-30", "l_commitdate": "1997-11-28", "l_receiptdate": "1998-01-09", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "y alongside of the special requests." }, { "l_orderkey": 2561i32, "l_partkey": 25i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 32.0d, "l_extendedprice": 29600.64d, "l_discount": 0.02d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-05", "l_commitdate": "1997-12-28", "l_receiptdate": "1998-01-26", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "bold packages wake slyly. slyly" }, { "l_orderkey": 1508i32, "l_partkey": 25i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 20.0d, "l_extendedprice": 18500.4d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-17", "l_commitdate": "1998-06-11", "l_receiptdate": "1998-05-17", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "nic platelets. carefully final fra" }, { "l_orderkey": 516i32, "l_partkey": 25i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 11.0d, "l_extendedprice": 10175.22d, "l_discount": 0.01d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-02", "l_commitdate": "1998-05-23", "l_receiptdate": "1998-05-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "ongside of the blithely final reque" }, { "l_orderkey": 3523i32, "l_partkey": 25i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 15.0d, "l_extendedprice": 13875.3d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-26", "l_commitdate": "1998-05-22", "l_receiptdate": "1998-07-24", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "se slyly pending, sp" } ] }
-{ "partkey": 28i32, "lines": [ { "l_orderkey": 2240i32, "l_partkey": 28i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 37.0d, "l_extendedprice": 34336.74d, "l_discount": 0.03d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-03-16", "l_commitdate": "1992-05-31", "l_receiptdate": "1992-04-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": " quickly after the packages? blithely si" }, { "l_orderkey": 5699i32, "l_partkey": 28i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 21.0d, "l_extendedprice": 19488.42d, "l_discount": 0.02d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-10-13", "l_commitdate": "1992-09-30", "l_receiptdate": "1992-10-19", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "lyly final pla" }, { "l_orderkey": 1506i32, "l_partkey": 28i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 37.0d, "l_extendedprice": 34336.74d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-11-04", "l_commitdate": "1992-12-01", "l_receiptdate": "1992-11-23", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "carefully bold dolphins. accounts su" }, { "l_orderkey": 1509i32, "l_partkey": 28i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 14.0d, "l_extendedprice": 12992.28d, "l_discount": 0.04d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-10-04", "l_commitdate": "1993-09-25", "l_receiptdate": "1993-10-21", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "nal realms" }, { "l_orderkey": 4161i32, "l_partkey": 28i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 47.0d, "l_extendedprice": 43616.94d, "l_discount": 0.05d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-12-20", "l_commitdate": "1993-10-29", "l_receiptdate": "1994-01-19", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "r requests about the final, even foxes hag" }, { "l_orderkey": 4034i32, "l_partkey": 28i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 46.0d, "l_extendedprice": 42688.92d, "l_discount": 0.06d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-02-22", "l_commitdate": "1994-01-09", "l_receiptdate": "1994-03-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "uests. furiously unusual instructions wake" }, { "l_orderkey": 5921i32, "l_partkey": 28i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 26.0d, "l_extendedprice": 24128.52d, "l_discount": 0.03d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-05-03", "l_commitdate": "1994-07-06", "l_receiptdate": "1994-05-06", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "hy dependenc" }, { "l_orderkey": 3746i32, "l_partkey": 28i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 11.0d, "l_extendedprice": 10208.22d, "l_discount": 0.0d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-10-02", "l_commitdate": "1994-11-19", "l_receiptdate": "1994-10-10", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": " ironic theodolites are among th" }, { "l_orderkey": 1985i32, "l_partkey": 28i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 33.0d, "l_extendedprice": 30624.66d, "l_discount": 0.1d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-12-04", "l_commitdate": "1994-11-01", "l_receiptdate": "1994-12-05", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "s are express packages. pendin" }, { "l_orderkey": 645i32, "l_partkey": 28i32, "l_suppkey": 9i32, "l_linenumber": 7i32, "l_quantity": 9.0d, "l_extendedprice": 8352.18d, "l_discount": 0.03d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-12-25", "l_commitdate": "1995-01-04", "l_receiptdate": "1995-01-15", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "special deposits. regular, final th" }, { "l_orderkey": 1445i32, "l_partkey": 28i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 17.0d, "l_extendedprice": 15776.34d, "l_discount": 0.04d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-04-02", "l_commitdate": "1995-04-04", "l_receiptdate": "1995-05-01", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "ges. furiously regular pint" }, { "l_orderkey": 2978i32, "l_partkey": 28i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 7.0d, "l_extendedprice": 6496.14d, "l_discount": 0.0d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-18", "l_commitdate": "1995-07-03", "l_receiptdate": "1995-07-23", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": ". final ideas are blithe" }, { "l_orderkey": 3495i32, "l_partkey": 28i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 20.0d, "l_extendedprice": 18560.4d, "l_discount": 0.1d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-04-24", "l_commitdate": "1996-05-18", "l_receiptdate": "1996-05-01", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "posits are carefully; forges cajole qui" }, { "l_orderkey": 2849i32, "l_partkey": 28i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 30.0d, "l_extendedprice": 27840.6d, "l_discount": 0.1d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-24", "l_commitdate": "1996-07-08", "l_receiptdate": "1996-09-03", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "ly. carefully silent" }, { "l_orderkey": 3555i32, "l_partkey": 28i32, "l_suppkey": 3i32, "l_linenumber": 6i32, "l_quantity": 33.0d, "l_extendedprice": 30624.66d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-20", "l_commitdate": "1996-09-23", "l_receiptdate": "1996-10-05", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "fluffily regular a" }, { "l_orderkey": 4704i32, "l_partkey": 28i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 7.0d, "l_extendedprice": 6496.14d, "l_discount": 0.03d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-04", "l_commitdate": "1996-10-30", "l_receiptdate": "1996-12-23", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "ers wake car" }, { "l_orderkey": 455i32, "l_partkey": 28i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 44.0d, "l_extendedprice": 40832.88d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-17", "l_commitdate": "1997-02-22", "l_receiptdate": "1997-02-12", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": " accounts sleep slyly ironic asymptote" }, { "l_orderkey": 485i32, "l_partkey": 28i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 40.0d, "l_extendedprice": 37120.8d, "l_discount": 0.08d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-29", "l_commitdate": "1997-05-08", "l_receiptdate": "1997-04-30", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "al escapades" }, { "l_orderkey": 935i32, "l_partkey": 28i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 23.0d, "l_extendedprice": 21344.46d, "l_discount": 0.05d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-11-11", "l_commitdate": "1997-11-22", "l_receiptdate": "1997-11-29", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "ular accounts about" }, { "l_orderkey": 3520i32, "l_partkey": 28i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 30.0d, "l_extendedprice": 27840.6d, "l_discount": 0.04d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-11-11", "l_commitdate": "1997-10-02", "l_receiptdate": "1997-12-06", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "deas should solve blithely among the ironi" }, { "l_orderkey": 4039i32, "l_partkey": 28i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 43.0d, "l_extendedprice": 39904.86d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-02", "l_commitdate": "1997-12-22", "l_receiptdate": "1998-01-15", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "beans believe bene" } ] }
-{ "partkey": 34i32, "lines": [ { "l_orderkey": 322i32, "l_partkey": 34i32, "l_suppkey": 5i32, "l_linenumber": 6i32, "l_quantity": 3.0d, "l_extendedprice": 2802.09d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-07-03", "l_commitdate": "1992-05-10", "l_receiptdate": "1992-07-28", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "ending, ironic deposits along the blith" }, { "l_orderkey": 3845i32, "l_partkey": 34i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 44.0d, "l_extendedprice": 41097.32d, "l_discount": 0.01d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-07-20", "l_commitdate": "1992-07-15", "l_receiptdate": "1992-07-24", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "s haggle among the fluffily regula" }, { "l_orderkey": 5089i32, "l_partkey": 34i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 38.0d, "l_extendedprice": 35493.14d, "l_discount": 0.05d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-11-23", "l_commitdate": "1992-09-11", "l_receiptdate": "1992-12-22", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "regular instructions are" }, { "l_orderkey": 2497i32, "l_partkey": 34i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 28.0d, "l_extendedprice": 26152.84d, "l_discount": 0.02d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-12-02", "l_commitdate": "1992-11-21", "l_receiptdate": "1992-12-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "ouches. special, regular requests" }, { "l_orderkey": 2275i32, "l_partkey": 34i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 30.0d, "l_extendedprice": 28020.9d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-01-10", "l_commitdate": "1992-11-21", "l_receiptdate": "1993-01-22", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "re slyly slyly special idea" }, { "l_orderkey": 1571i32, "l_partkey": 34i32, "l_suppkey": 10i32, "l_linenumber": 6i32, "l_quantity": 24.0d, "l_extendedprice": 22416.72d, "l_discount": 0.05d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-03-22", "l_commitdate": "1993-01-31", "l_receiptdate": "1993-04-09", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "warthogs wake carefully acro" }, { "l_orderkey": 165i32, "l_partkey": 34i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 3.0d, "l_extendedprice": 2802.09d, "l_discount": 0.01d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-03-29", "l_commitdate": "1993-03-06", "l_receiptdate": "1993-04-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "riously requests. depos" }, { "l_orderkey": 2272i32, "l_partkey": 34i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 40.0d, "l_extendedprice": 37361.2d, "l_discount": 0.07d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-04-25", "l_commitdate": "1993-07-12", "l_receiptdate": "1993-05-15", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "lithely ir" }, { "l_orderkey": 2020i32, "l_partkey": 34i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 50.0d, "l_extendedprice": 46701.5d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-07-12", "l_commitdate": "1993-08-28", "l_receiptdate": "1993-08-02", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "ts against the pending ideas serve along" }, { "l_orderkey": 4743i32, "l_partkey": 34i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 27.0d, "l_extendedprice": 25218.81d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-07-26", "l_commitdate": "1993-05-27", "l_receiptdate": "1993-08-24", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "aids use. express deposits" }, { "l_orderkey": 2307i32, "l_partkey": 34i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 7.0d, "l_extendedprice": 6538.21d, "l_discount": 0.07d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-08-03", "l_commitdate": "1993-09-04", "l_receiptdate": "1993-08-28", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "ven instructions wake fluffily " }, { "l_orderkey": 33i32, "l_partkey": 34i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 41.0d, "l_extendedprice": 38295.23d, "l_discount": 0.09d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-11-09", "l_commitdate": "1994-01-24", "l_receiptdate": "1993-11-11", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "unusual packages doubt caref" }, { "l_orderkey": 4899i32, "l_partkey": 34i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 14.0d, "l_extendedprice": 13076.42d, "l_discount": 0.06d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-11-10", "l_commitdate": "1994-01-10", "l_receiptdate": "1993-11-20", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": " foxes eat" }, { "l_orderkey": 230i32, "l_partkey": 34i32, "l_suppkey": 10i32, "l_linenumber": 6i32, "l_quantity": 8.0d, "l_extendedprice": 7472.24d, "l_discount": 0.0d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-11-21", "l_commitdate": "1994-01-05", "l_receiptdate": "1993-12-19", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "nal ideas. silent, reg" }, { "l_orderkey": 4675i32, "l_partkey": 34i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 26.0d, "l_extendedprice": 24284.78d, "l_discount": 0.03d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-12-16", "l_commitdate": "1993-12-29", "l_receiptdate": "1993-12-23", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "nts. express requests are quickly " }, { "l_orderkey": 5285i32, "l_partkey": 34i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 24.0d, "l_extendedprice": 22416.72d, "l_discount": 0.02d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-04-19", "l_commitdate": "1994-04-03", "l_receiptdate": "1994-04-25", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "ess packages. quick, even deposits snooze b" }, { "l_orderkey": 2722i32, "l_partkey": 34i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 16.0d, "l_extendedprice": 14944.48d, "l_discount": 0.04d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-05-25", "l_commitdate": "1994-06-09", "l_receiptdate": "1994-05-26", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "ts besides the fluffy," }, { "l_orderkey": 645i32, "l_partkey": 34i32, "l_suppkey": 5i32, "l_linenumber": 6i32, "l_quantity": 18.0d, "l_extendedprice": 16812.54d, "l_discount": 0.1d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-03-02", "l_commitdate": "1995-02-08", "l_receiptdate": "1995-03-03", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "ep. slyly even " }, { "l_orderkey": 4707i32, "l_partkey": 34i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 7.0d, "l_extendedprice": 6538.21d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-05-14", "l_commitdate": "1995-04-06", "l_receiptdate": "1995-06-06", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "ecial sheaves boost blithely accor" }, { "l_orderkey": 961i32, "l_partkey": 34i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 29.0d, "l_extendedprice": 27086.87d, "l_discount": 0.0d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "F", "l_shipdate": "1995-06-10", "l_commitdate": "1995-08-20", "l_receiptdate": "1995-06-26", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "l accounts use blithely against the" }, { "l_orderkey": 1284i32, "l_partkey": 34i32, "l_suppkey": 5i32, "l_linenumber": 5i32, "l_quantity": 9.0d, "l_extendedprice": 8406.27d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-03", "l_commitdate": "1996-03-19", "l_receiptdate": "1996-04-01", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "after the pending" }, { "l_orderkey": 4646i32, "l_partkey": 34i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 18.0d, "l_extendedprice": 16812.54d, "l_discount": 0.01d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-30", "l_commitdate": "1996-08-10", "l_receiptdate": "1996-07-12", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "beans sleep car" }, { "l_orderkey": 1733i32, "l_partkey": 34i32, "l_suppkey": 5i32, "l_linenumber": 5i32, "l_quantity": 22.0d, "l_extendedprice": 20548.66d, "l_discount": 0.06d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-16", "l_commitdate": "1996-07-24", "l_receiptdate": "1996-07-30", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "gainst the final deposits. carefully final " }, { "l_orderkey": 4614i32, "l_partkey": 34i32, "l_suppkey": 5i32, "l_linenumber": 6i32, "l_quantity": 32.0d, "l_extendedprice": 29888.96d, "l_discount": 0.1d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-21", "l_commitdate": "1996-05-28", "l_receiptdate": "1996-09-16", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "ickly furio" }, { "l_orderkey": 1924i32, "l_partkey": 34i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 31.0d, "l_extendedprice": 28954.93d, "l_discount": 0.03d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-20", "l_commitdate": "1996-10-19", "l_receiptdate": "1996-10-19", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": " the slyly regular foxes. ruthle" }, { "l_orderkey": 1766i32, "l_partkey": 34i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 12.0d, "l_extendedprice": 11208.36d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-28", "l_commitdate": "1996-12-18", "l_receiptdate": "1996-11-15", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "heodolites above the final, regular acc" }, { "l_orderkey": 1443i32, "l_partkey": 34i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 47.0d, "l_extendedprice": 43899.41d, "l_discount": 0.04d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-05", "l_commitdate": "1997-02-02", "l_receiptdate": "1997-03-03", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "carefully ironic requests sl" }, { "l_orderkey": 576i32, "l_partkey": 34i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 6.0d, "l_extendedprice": 5604.18d, "l_discount": 0.06d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-15", "l_commitdate": "1997-07-26", "l_receiptdate": "1997-06-03", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "al deposits. slyly even sauternes a" }, { "l_orderkey": 5345i32, "l_partkey": 34i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 22.0d, "l_extendedprice": 20548.66d, "l_discount": 0.02d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-27", "l_commitdate": "1997-11-22", "l_receiptdate": "1997-09-10", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "leep slyly regular fox" }, { "l_orderkey": 1478i32, "l_partkey": 34i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 21.0d, "l_extendedprice": 19614.63d, "l_discount": 0.0d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-20", "l_commitdate": "1997-10-25", "l_receiptdate": "1997-10-06", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": " fluffily pending acc" }, { "l_orderkey": 3270i32, "l_partkey": 34i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 32.0d, "l_extendedprice": 29888.96d, "l_discount": 0.03d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-23", "l_commitdate": "1997-08-17", "l_receiptdate": "1997-09-27", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "promise carefully." }, { "l_orderkey": 1381i32, "l_partkey": 34i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 12.0d, "l_extendedprice": 11208.36d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-13", "l_commitdate": "1998-08-12", "l_receiptdate": "1998-08-28", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": " furiously regular package" }, { "l_orderkey": 1920i32, "l_partkey": 34i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 14.0d, "l_extendedprice": 13076.42d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-10-22", "l_commitdate": "1998-08-10", "l_receiptdate": "1998-10-27", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "ickly ironic d" } ] }
-{ "partkey": 37i32, "lines": [ { "l_orderkey": 1088i32, "l_partkey": 37i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 11.0d, "l_extendedprice": 10307.33d, "l_discount": 0.06d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-08-30", "l_commitdate": "1992-07-25", "l_receiptdate": "1992-09-10", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "inal requests. fluffily express theod" }, { "l_orderkey": 2500i32, "l_partkey": 37i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 34.0d, "l_extendedprice": 31859.02d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-10-03", "l_commitdate": "1992-11-11", "l_receiptdate": "1992-10-29", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": " stealthy a" }, { "l_orderkey": 3074i32, "l_partkey": 37i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 50.0d, "l_extendedprice": 46851.5d, "l_discount": 0.08d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-01-31", "l_commitdate": "1992-12-15", "l_receiptdate": "1993-02-20", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "furiously pending requests haggle s" }, { "l_orderkey": 678i32, "l_partkey": 37i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 22.0d, "l_extendedprice": 20614.66d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-05-10", "l_commitdate": "1993-04-29", "l_receiptdate": "1993-06-08", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "de of the carefully even requests. bl" }, { "l_orderkey": 3589i32, "l_partkey": 37i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 42.0d, "l_extendedprice": 39355.26d, "l_discount": 0.08d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-08-11", "l_commitdate": "1994-07-17", "l_receiptdate": "1994-08-23", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "he blithely unusual pac" }, { "l_orderkey": 4645i32, "l_partkey": 37i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 42.0d, "l_extendedprice": 39355.26d, "l_discount": 0.1d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-12-02", "l_commitdate": "1994-12-18", "l_receiptdate": "1994-12-16", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "regular pinto beans amon" }, { "l_orderkey": 1220i32, "l_partkey": 37i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 3.0d, "l_extendedprice": 2811.09d, "l_discount": 0.08d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-06", "l_commitdate": "1996-11-03", "l_receiptdate": "1996-09-10", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": " final theodolites. blithely silent " }, { "l_orderkey": 1319i32, "l_partkey": 37i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 12.0d, "l_extendedprice": 11244.36d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-05", "l_commitdate": "1996-12-12", "l_receiptdate": "1996-11-29", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "packages integrate furiously. expres" }, { "l_orderkey": 2980i32, "l_partkey": 37i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 2.0d, "l_extendedprice": 1874.06d, "l_discount": 0.09d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-18", "l_commitdate": "1996-10-22", "l_receiptdate": "1996-11-27", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "enly across the special, pending packag" }, { "l_orderkey": 1026i32, "l_partkey": 37i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 6.0d, "l_extendedprice": 5622.18d, "l_discount": 0.1d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-07", "l_commitdate": "1997-08-16", "l_receiptdate": "1997-07-14", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "to beans. special, regular packages hagg" }, { "l_orderkey": 576i32, "l_partkey": 37i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 6.0d, "l_extendedprice": 5622.18d, "l_discount": 0.08d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-28", "l_commitdate": "1997-06-16", "l_receiptdate": "1997-09-25", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "ts. ironic multipliers " }, { "l_orderkey": 1923i32, "l_partkey": 37i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 9.0d, "l_extendedprice": 8433.27d, "l_discount": 0.01d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-29", "l_commitdate": "1997-09-13", "l_receiptdate": "1997-09-07", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "lites. ironic instructions integrate bravel" }, { "l_orderkey": 5057i32, "l_partkey": 37i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 38.0d, "l_extendedprice": 35607.14d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-10-24", "l_commitdate": "1997-09-07", "l_receiptdate": "1997-10-30", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "packages. stealthily bold wa" }, { "l_orderkey": 1923i32, "l_partkey": 37i32, "l_suppkey": 3i32, "l_linenumber": 6i32, "l_quantity": 50.0d, "l_extendedprice": 46851.5d, "l_discount": 0.03d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-11-04", "l_commitdate": "1997-08-08", "l_receiptdate": "1997-11-25", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "uickly along the bold courts. bold the" }, { "l_orderkey": 4224i32, "l_partkey": 37i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 20.0d, "l_extendedprice": 18740.6d, "l_discount": 0.07d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-11-09", "l_commitdate": "1997-08-23", "l_receiptdate": "1997-11-14", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "unts promise across the requests. blith" }, { "l_orderkey": 163i32, "l_partkey": 37i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 27.0d, "l_extendedprice": 25299.81d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-26", "l_commitdate": "1997-11-28", "l_receiptdate": "1998-01-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "ously express dependen" }, { "l_orderkey": 2981i32, "l_partkey": 37i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 14.0d, "l_extendedprice": 13118.42d, "l_discount": 0.03d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-30", "l_commitdate": "1998-10-04", "l_receiptdate": "1998-09-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "kages detect furiously express requests." } ] }
-{ "partkey": 40i32, "lines": [ { "l_orderkey": 4292i32, "l_partkey": 40i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 1.0d, "l_extendedprice": 940.04d, "l_discount": 0.03d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-02-07", "l_commitdate": "1992-03-16", "l_receiptdate": "1992-02-10", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": " the furiously ev" }, { "l_orderkey": 3139i32, "l_partkey": 40i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 46.0d, "l_extendedprice": 43241.84d, "l_discount": 0.08d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-04-28", "l_commitdate": "1992-03-04", "l_receiptdate": "1992-05-19", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "of the unusual, unusual re" }, { "l_orderkey": 3973i32, "l_partkey": 40i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 40.0d, "l_extendedprice": 37601.6d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-05-03", "l_commitdate": "1992-06-09", "l_receiptdate": "1992-05-21", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "g the carefully blithe f" }, { "l_orderkey": 5959i32, "l_partkey": 40i32, "l_suppkey": 6i32, "l_linenumber": 5i32, "l_quantity": 37.0d, "l_extendedprice": 34781.48d, "l_discount": 0.04d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-06-05", "l_commitdate": "1992-07-18", "l_receiptdate": "1992-06-29", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "endencies. brai" }, { "l_orderkey": 3906i32, "l_partkey": 40i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 50.0d, "l_extendedprice": 47002.0d, "l_discount": 0.01d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-09-24", "l_commitdate": "1992-08-24", "l_receiptdate": "1992-09-29", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "ke slyly. stealt" }, { "l_orderkey": 129i32, "l_partkey": 40i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 33.0d, "l_extendedprice": 31021.32d, "l_discount": 0.04d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-01-08", "l_commitdate": "1993-02-14", "l_receiptdate": "1993-01-29", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "sts nag bravely. fluffily" }, { "l_orderkey": 931i32, "l_partkey": 40i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 18.0d, "l_extendedprice": 16920.72d, "l_discount": 0.0d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-04-04", "l_commitdate": "1993-01-11", "l_receiptdate": "1993-04-13", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "slyly ironic re" }, { "l_orderkey": 4935i32, "l_partkey": 40i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 37.0d, "l_extendedprice": 34781.48d, "l_discount": 0.01d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-08-30", "l_commitdate": "1993-07-23", "l_receiptdate": "1993-09-07", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "y even dependencies nag a" }, { "l_orderkey": 1507i32, "l_partkey": 40i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 33.0d, "l_extendedprice": 31021.32d, "l_discount": 0.04d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-10-29", "l_commitdate": "1993-12-23", "l_receiptdate": "1993-11-14", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": " asymptotes nag furiously above t" }, { "l_orderkey": 773i32, "l_partkey": 40i32, "l_suppkey": 1i32, "l_linenumber": 6i32, "l_quantity": 43.0d, "l_extendedprice": 40421.72d, "l_discount": 0.07d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-11-06", "l_commitdate": "1993-11-20", "l_receiptdate": "1993-11-08", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "furiously bold dependencies. blithel" }, { "l_orderkey": 417i32, "l_partkey": 40i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 39.0d, "l_extendedprice": 36661.56d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-05-31", "l_commitdate": "1994-05-02", "l_receiptdate": "1994-06-06", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "y regular requests wake along " }, { "l_orderkey": 3110i32, "l_partkey": 40i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 16.0d, "l_extendedprice": 15040.64d, "l_discount": 0.04d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-01-10", "l_commitdate": "1995-02-06", "l_receiptdate": "1995-01-26", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "across the regular acco" }, { "l_orderkey": 2818i32, "l_partkey": 40i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 32.0d, "l_extendedprice": 30081.28d, "l_discount": 0.08d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-02-04", "l_commitdate": "1995-03-05", "l_receiptdate": "1995-02-18", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "arefully! ac" }, { "l_orderkey": 5347i32, "l_partkey": 40i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 4.0d, "l_extendedprice": 3760.16d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-03-24", "l_commitdate": "1995-04-03", "l_receiptdate": "1995-04-01", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "ldly pending asymptotes ki" }, { "l_orderkey": 993i32, "l_partkey": 40i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 10.0d, "l_extendedprice": 9400.4d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-17", "l_commitdate": "1995-11-13", "l_receiptdate": "1995-12-20", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "encies wake fur" }, { "l_orderkey": 1926i32, "l_partkey": 40i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 29.0d, "l_extendedprice": 27261.16d, "l_discount": 0.06d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-02-29", "l_commitdate": "1996-03-13", "l_receiptdate": "1996-03-24", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "hily unusual packages are fluffily am" }, { "l_orderkey": 4995i32, "l_partkey": 40i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 9.0d, "l_extendedprice": 8460.36d, "l_discount": 0.07d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-07", "l_commitdate": "1996-03-17", "l_receiptdate": "1996-03-11", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": " ironic packages cajole across t" }, { "l_orderkey": 4646i32, "l_partkey": 40i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 38.0d, "l_extendedprice": 35721.52d, "l_discount": 0.08d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-01", "l_commitdate": "1996-08-23", "l_receiptdate": "1996-09-27", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "al platelets cajole. slyly final dol" }, { "l_orderkey": 1924i32, "l_partkey": 40i32, "l_suppkey": 1i32, "l_linenumber": 7i32, "l_quantity": 21.0d, "l_extendedprice": 19740.84d, "l_discount": 0.09d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-21", "l_commitdate": "1996-11-12", "l_receiptdate": "1996-10-02", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": " blithely reg" }, { "l_orderkey": 4064i32, "l_partkey": 40i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 15.0d, "l_extendedprice": 14100.6d, "l_discount": 0.02d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-09", "l_commitdate": "1996-12-04", "l_receiptdate": "1996-11-18", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "braids affix across the regular sheave" }, { "l_orderkey": 5829i32, "l_partkey": 40i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 4.0d, "l_extendedprice": 3760.16d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-01", "l_commitdate": "1997-02-17", "l_receiptdate": "1997-03-22", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "ithely; accounts cajole ideas. regular foxe" }, { "l_orderkey": 289i32, "l_partkey": 40i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 48.0d, "l_extendedprice": 45121.92d, "l_discount": 0.01d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-14", "l_commitdate": "1997-03-30", "l_receiptdate": "1997-03-24", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "sits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole." }, { "l_orderkey": 1543i32, "l_partkey": 40i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 9.0d, "l_extendedprice": 8460.36d, "l_discount": 0.08d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-14", "l_commitdate": "1997-05-19", "l_receiptdate": "1997-03-26", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "ravely special requests " }, { "l_orderkey": 4802i32, "l_partkey": 40i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 6.0d, "l_extendedprice": 5640.24d, "l_discount": 0.0d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-16", "l_commitdate": "1997-03-25", "l_receiptdate": "1997-04-21", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "unusual accounts wake blithely. b" }, { "l_orderkey": 4002i32, "l_partkey": 40i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 6.0d, "l_extendedprice": 5640.24d, "l_discount": 0.08d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-02", "l_commitdate": "1997-07-07", "l_receiptdate": "1997-05-16", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": " furiously furiously special theodoli" }, { "l_orderkey": 3366i32, "l_partkey": 40i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 4.0d, "l_extendedprice": 3760.16d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-20", "l_commitdate": "1997-06-25", "l_receiptdate": "1997-06-03", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": " carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefull" }, { "l_orderkey": 3462i32, "l_partkey": 40i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 43.0d, "l_extendedprice": 40421.72d, "l_discount": 0.08d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-01", "l_commitdate": "1997-07-18", "l_receiptdate": "1997-08-29", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": " carefully. final, final ideas sleep slyly" }, { "l_orderkey": 1252i32, "l_partkey": 40i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 19.0d, "l_extendedprice": 17860.76d, "l_discount": 0.07d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-10-13", "l_commitdate": "1997-10-23", "l_receiptdate": "1997-10-18", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "ts wake carefully-- packages sleep. quick " }, { "l_orderkey": 5286i32, "l_partkey": 40i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 6.0d, "l_extendedprice": 5640.24d, "l_discount": 0.04d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-10-15", "l_commitdate": "1997-12-05", "l_receiptdate": "1997-11-12", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "y special a" }, { "l_orderkey": 5505i32, "l_partkey": 40i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 18.0d, "l_extendedprice": 16920.72d, "l_discount": 0.04d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-10-25", "l_commitdate": "1997-12-12", "l_receiptdate": "1997-10-30", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": " to the quickly express pac" }, { "l_orderkey": 1667i32, "l_partkey": 40i32, "l_suppkey": 6i32, "l_linenumber": 7i32, "l_quantity": 19.0d, "l_extendedprice": 17860.76d, "l_discount": 0.09d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-23", "l_commitdate": "1997-11-24", "l_receiptdate": "1998-01-26", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "around the pinto beans. express, special" }, { "l_orderkey": 3170i32, "l_partkey": 40i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 12.0d, "l_extendedprice": 11280.48d, "l_discount": 0.03d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-02-12", "l_commitdate": "1998-01-17", "l_receiptdate": "1998-02-24", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "ing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing acco" }, { "l_orderkey": 4231i32, "l_partkey": 40i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 35.0d, "l_extendedprice": 32901.4d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-02-21", "l_commitdate": "1998-01-24", "l_receiptdate": "1998-03-18", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "le quickly regular, unus" }, { "l_orderkey": 4997i32, "l_partkey": 40i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 5.0d, "l_extendedprice": 4700.2d, "l_discount": 0.1d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-12", "l_commitdate": "1998-04-24", "l_receiptdate": "1998-06-13", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "aggle slyly alongside of the slyly i" } ] }
-{ "partkey": 41i32, "lines": [ { "l_orderkey": 4896i32, "l_partkey": 41i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 19.0d, "l_extendedprice": 17879.76d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-12-13", "l_commitdate": "1992-11-13", "l_receiptdate": "1993-01-09", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "nusual requ" }, { "l_orderkey": 2852i32, "l_partkey": 41i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 24.0d, "l_extendedprice": 22584.96d, "l_discount": 0.05d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-01-18", "l_commitdate": "1993-03-13", "l_receiptdate": "1993-02-14", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": " the blithe" }, { "l_orderkey": 3367i32, "l_partkey": 41i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 27.0d, "l_extendedprice": 25408.08d, "l_discount": 0.01d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-04-13", "l_commitdate": "1993-03-16", "l_receiptdate": "1993-04-26", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "kly even instructions caj" }, { "l_orderkey": 226i32, "l_partkey": 41i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 45.0d, "l_extendedprice": 42346.8d, "l_discount": 0.1d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-04-17", "l_commitdate": "1993-05-27", "l_receiptdate": "1993-05-11", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": " carefully pending pi" }, { "l_orderkey": 2279i32, "l_partkey": 41i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 38.0d, "l_extendedprice": 35759.52d, "l_discount": 0.08d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-06-09", "l_commitdate": "1993-04-06", "l_receiptdate": "1993-06-26", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "s above the furiously express dep" }, { "l_orderkey": 1316i32, "l_partkey": 41i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 40.0d, "l_extendedprice": 37641.6d, "l_discount": 0.01d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-02-04", "l_commitdate": "1994-02-09", "l_receiptdate": "1994-02-27", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "l dugouts. co" }, { "l_orderkey": 2085i32, "l_partkey": 41i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 45.0d, "l_extendedprice": 42346.8d, "l_discount": 0.0d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-02-27", "l_commitdate": "1994-01-11", "l_receiptdate": "1994-03-29", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": ". carefully e" }, { "l_orderkey": 3073i32, "l_partkey": 41i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 25.0d, "l_extendedprice": 23526.0d, "l_discount": 0.0d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-04-14", "l_commitdate": "1994-03-07", "l_receiptdate": "1994-04-22", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "nag asymptotes. pinto beans sleep " }, { "l_orderkey": 1314i32, "l_partkey": 41i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 11.0d, "l_extendedprice": 10351.44d, "l_discount": 0.01d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-05-16", "l_commitdate": "1994-07-30", "l_receiptdate": "1994-05-31", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "tegrate furious" }, { "l_orderkey": 3459i32, "l_partkey": 41i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 45.0d, "l_extendedprice": 42346.8d, "l_discount": 0.04d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-07-31", "l_commitdate": "1994-09-09", "l_receiptdate": "1994-08-02", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "ntly speci" }, { "l_orderkey": 98i32, "l_partkey": 41i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 28.0d, "l_extendedprice": 26349.12d, "l_discount": 0.06d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-12-24", "l_commitdate": "1994-10-25", "l_receiptdate": "1995-01-16", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": " pending, regular accounts s" }, { "l_orderkey": 4869i32, "l_partkey": 41i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 31.0d, "l_extendedprice": 29172.24d, "l_discount": 0.1d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-01-17", "l_commitdate": "1994-11-30", "l_receiptdate": "1995-02-02", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "ins. always unusual ideas across the ir" }, { "l_orderkey": 4512i32, "l_partkey": 41i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 24.0d, "l_extendedprice": 22584.96d, "l_discount": 0.04d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-16", "l_commitdate": "1996-01-16", "l_receiptdate": "1995-12-25", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "ly regular pinto beans. carefully bold depo" }, { "l_orderkey": 3617i32, "l_partkey": 41i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 22.0d, "l_extendedprice": 20702.88d, "l_discount": 0.1d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-11", "l_commitdate": "1996-05-02", "l_receiptdate": "1996-07-25", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "uffily even accounts. packages sleep blithe" }, { "l_orderkey": 3941i32, "l_partkey": 41i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 47.0d, "l_extendedprice": 44228.88d, "l_discount": 0.05d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-24", "l_commitdate": "1996-10-09", "l_receiptdate": "1996-12-22", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": " carefully pending" }, { "l_orderkey": 2406i32, "l_partkey": 41i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 40.0d, "l_extendedprice": 37641.6d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-09", "l_commitdate": "1996-12-02", "l_receiptdate": "1997-01-16", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "gular accounts caj" }, { "l_orderkey": 67i32, "l_partkey": 41i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 23.0d, "l_extendedprice": 21643.92d, "l_discount": 0.05d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-19", "l_commitdate": "1997-02-14", "l_receiptdate": "1997-05-06", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "ly regular deposit" }, { "l_orderkey": 517i32, "l_partkey": 41i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 9.0d, "l_extendedprice": 8469.36d, "l_discount": 0.04d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-03", "l_commitdate": "1997-06-16", "l_receiptdate": "1997-05-24", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": " slyly stealthily express instructions. " }, { "l_orderkey": 3878i32, "l_partkey": 41i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 20.0d, "l_extendedprice": 18820.8d, "l_discount": 0.08d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-20", "l_commitdate": "1997-05-24", "l_receiptdate": "1997-07-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "the furiously careful ideas cajole slyly sl" }, { "l_orderkey": 4001i32, "l_partkey": 41i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 19.0d, "l_extendedprice": 17879.76d, "l_discount": 0.03d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-23", "l_commitdate": "1997-06-15", "l_receiptdate": "1997-09-18", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "ackages. carefully ironi" }, { "l_orderkey": 4964i32, "l_partkey": 41i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 42.0d, "l_extendedprice": 39523.68d, "l_discount": 0.06d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-04", "l_commitdate": "1997-08-28", "l_receiptdate": "1997-10-02", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": " hinder. idly even" }, { "l_orderkey": 4165i32, "l_partkey": 41i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 12.0d, "l_extendedprice": 11292.48d, "l_discount": 0.0d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-20", "l_commitdate": "1997-10-20", "l_receiptdate": "1997-10-12", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "nwind slow theodolites. carefully pending " }, { "l_orderkey": 2917i32, "l_partkey": 41i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 37.0d, "l_extendedprice": 34818.48d, "l_discount": 0.04d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-12", "l_commitdate": "1998-02-03", "l_receiptdate": "1997-12-23", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "dependencies. express " }, { "l_orderkey": 3170i32, "l_partkey": 41i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 34.0d, "l_extendedprice": 31995.36d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-02-01", "l_commitdate": "1998-01-11", "l_receiptdate": "1998-02-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "s about the fluffily final de" }, { "l_orderkey": 4448i32, "l_partkey": 41i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 35.0d, "l_extendedprice": 32936.4d, "l_discount": 0.1d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-09-18", "l_commitdate": "1998-07-27", "l_receiptdate": "1998-10-08", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "aggle carefully alongside of the q" } ] }
-{ "partkey": 43i32, "lines": [ { "l_orderkey": 4069i32, "l_partkey": 43i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 32.0d, "l_extendedprice": 30177.28d, "l_discount": 0.1d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-06-18", "l_commitdate": "1992-07-20", "l_receiptdate": "1992-07-07", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "unts. deposit" }, { "l_orderkey": 2052i32, "l_partkey": 43i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 16.0d, "l_extendedprice": 15088.64d, "l_discount": 0.01d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-06-30", "l_commitdate": "1992-07-09", "l_receiptdate": "1992-07-12", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "y final deposits cajole according " }, { "l_orderkey": 5959i32, "l_partkey": 43i32, "l_suppkey": 10i32, "l_linenumber": 7i32, "l_quantity": 47.0d, "l_extendedprice": 44322.88d, "l_discount": 0.02d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-08-28", "l_commitdate": "1992-07-24", "l_receiptdate": "1992-09-09", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "deposits. slyly special cou" }, { "l_orderkey": 2023i32, "l_partkey": 43i32, "l_suppkey": 2i32, "l_linenumber": 6i32, "l_quantity": 29.0d, "l_extendedprice": 27348.16d, "l_discount": 0.02d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-08-29", "l_commitdate": "1992-07-28", "l_receiptdate": "1992-09-18", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "usual instructions. bli" }, { "l_orderkey": 3333i32, "l_partkey": 43i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 45.0d, "l_extendedprice": 42436.8d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-10-04", "l_commitdate": "1992-11-08", "l_receiptdate": "1992-10-27", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "dolites. quickly r" }, { "l_orderkey": 678i32, "l_partkey": 43i32, "l_suppkey": 4i32, "l_linenumber": 6i32, "l_quantity": 11.0d, "l_extendedprice": 10373.44d, "l_discount": 0.09d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-04-28", "l_commitdate": "1993-05-16", "l_receiptdate": "1993-05-11", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "ess deposits dazzle f" }, { "l_orderkey": 2659i32, "l_partkey": 43i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 21.0d, "l_extendedprice": 19803.84d, "l_discount": 0.0d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-12-23", "l_commitdate": "1994-02-10", "l_receiptdate": "1994-01-17", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "y beyond the furiously even co" }, { "l_orderkey": 1892i32, "l_partkey": 43i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 35.0d, "l_extendedprice": 33006.4d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-04-05", "l_commitdate": "1994-05-09", "l_receiptdate": "1994-05-03", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "hes nod furiously around the instruc" }, { "l_orderkey": 5285i32, "l_partkey": 43i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 12.0d, "l_extendedprice": 11316.48d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-04-22", "l_commitdate": "1994-04-07", "l_receiptdate": "1994-05-19", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": " deposits-- quickly bold requests hag" }, { "l_orderkey": 3808i32, "l_partkey": 43i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 28.0d, "l_extendedprice": 26405.12d, "l_discount": 0.02d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-05-27", "l_commitdate": "1994-06-18", "l_receiptdate": "1994-06-22", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "lly final accounts alo" }, { "l_orderkey": 3653i32, "l_partkey": 43i32, "l_suppkey": 4i32, "l_linenumber": 6i32, "l_quantity": 9.0d, "l_extendedprice": 8487.36d, "l_discount": 0.05d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-07-21", "l_commitdate": "1994-05-31", "l_receiptdate": "1994-08-17", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "tes: blithely bo" }, { "l_orderkey": 3395i32, "l_partkey": 43i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 43.0d, "l_extendedprice": 40550.72d, "l_discount": 0.06d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-12-13", "l_commitdate": "1995-01-07", "l_receiptdate": "1994-12-14", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "ckages above the furiously regu" }, { "l_orderkey": 5191i32, "l_partkey": 43i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 27.0d, "l_extendedprice": 25462.08d, "l_discount": 0.07d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-12-26", "l_commitdate": "1995-01-24", "l_receiptdate": "1995-01-14", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "tructions nag bravely within the re" }, { "l_orderkey": 707i32, "l_partkey": 43i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 22.0d, "l_extendedprice": 20746.88d, "l_discount": 0.0d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-01-12", "l_commitdate": "1994-12-28", "l_receiptdate": "1995-01-16", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": " kindle ironically" }, { "l_orderkey": 2208i32, "l_partkey": 43i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 50.0d, "l_extendedprice": 47152.0d, "l_discount": 0.07d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "F", "l_shipdate": "1995-06-11", "l_commitdate": "1995-05-31", "l_receiptdate": "1995-06-29", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "al foxes will hav" }, { "l_orderkey": 5444i32, "l_partkey": 43i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 40.0d, "l_extendedprice": 37721.6d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-09", "l_commitdate": "1995-04-25", "l_receiptdate": "1995-07-19", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "ously bold ideas. instructions wake slyl" }, { "l_orderkey": 2978i32, "l_partkey": 43i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 26.0d, "l_extendedprice": 24519.04d, "l_discount": 0.07d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-29", "l_commitdate": "1995-07-22", "l_receiptdate": "1995-08-20", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "as haggle against the carefully express dep" }, { "l_orderkey": 1639i32, "l_partkey": 43i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 38.0d, "l_extendedprice": 35835.52d, "l_discount": 0.01d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-23", "l_commitdate": "1995-11-09", "l_receiptdate": "1995-08-29", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "y regular packages. b" }, { "l_orderkey": 326i32, "l_partkey": 43i32, "l_suppkey": 10i32, "l_linenumber": 7i32, "l_quantity": 47.0d, "l_extendedprice": 44322.88d, "l_discount": 0.04d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-16", "l_commitdate": "1995-07-04", "l_receiptdate": "1995-10-04", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": " special accounts sleep " }, { "l_orderkey": 5958i32, "l_partkey": 43i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 23.0d, "l_extendedprice": 21689.92d, "l_discount": 0.03d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-26", "l_commitdate": "1995-10-19", "l_receiptdate": "1995-09-27", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "regular requests. bold, bold deposits unwin" }, { "l_orderkey": 4324i32, "l_partkey": 43i32, "l_suppkey": 2i32, "l_linenumber": 6i32, "l_quantity": 31.0d, "l_extendedprice": 29234.24d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-23", "l_commitdate": "1995-09-14", "l_receiptdate": "1995-11-09", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "efully flu" }, { "l_orderkey": 1127i32, "l_partkey": 43i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 35.0d, "l_extendedprice": 33006.4d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-25", "l_commitdate": "1995-11-03", "l_receiptdate": "1995-12-17", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "l instructions boost blithely according " }, { "l_orderkey": 5281i32, "l_partkey": 43i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 33.0d, "l_extendedprice": 31120.32d, "l_discount": 0.01d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-01", "l_commitdate": "1995-12-28", "l_receiptdate": "1996-03-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "ly brave foxes. bold deposits above the " }, { "l_orderkey": 3555i32, "l_partkey": 43i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 25.0d, "l_extendedprice": 23576.0d, "l_discount": 0.09d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-01", "l_commitdate": "1996-08-23", "l_receiptdate": "1996-10-24", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "sual packages. quickly " }, { "l_orderkey": 5831i32, "l_partkey": 43i32, "l_suppkey": 4i32, "l_linenumber": 5i32, "l_quantity": 37.0d, "l_extendedprice": 34892.48d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-17", "l_commitdate": "1997-02-08", "l_receiptdate": "1997-02-01", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "uriously even requests" }, { "l_orderkey": 5793i32, "l_partkey": 43i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 8.0d, "l_extendedprice": 7544.32d, "l_discount": 0.07d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-16", "l_commitdate": "1997-09-08", "l_receiptdate": "1997-08-28", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "al foxes l" }, { "l_orderkey": 2372i32, "l_partkey": 43i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 42.0d, "l_extendedprice": 39607.68d, "l_discount": 0.08d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-04", "l_commitdate": "1998-01-02", "l_receiptdate": "1998-02-02", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "lar packages. regular" }, { "l_orderkey": 4259i32, "l_partkey": 43i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 14.0d, "l_extendedprice": 13202.56d, "l_discount": 0.05d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-09", "l_commitdate": "1997-11-21", "l_receiptdate": "1998-01-29", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": " furiously pending excuses. ideas hagg" }, { "l_orderkey": 2371i32, "l_partkey": 43i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 33.0d, "l_extendedprice": 31120.32d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-30", "l_commitdate": "1998-02-06", "l_receiptdate": "1998-04-05", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "deas are. express r" }, { "l_orderkey": 4517i32, "l_partkey": 43i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 50.0d, "l_extendedprice": 47152.0d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-08", "l_commitdate": "1998-04-18", "l_receiptdate": "1998-06-20", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "refully pending acco" }, { "l_orderkey": 3811i32, "l_partkey": 43i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 19.0d, "l_extendedprice": 17917.76d, "l_discount": 0.02d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-20", "l_commitdate": "1998-06-14", "l_receiptdate": "1998-07-29", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "s boost blithely furiou" }, { "l_orderkey": 901i32, "l_partkey": 43i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 37.0d, "l_extendedprice": 34892.48d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-11-01", "l_commitdate": "1998-09-13", "l_receiptdate": "1998-11-05", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "ickly final deposits " } ] }
-{ "partkey": 66i32, "lines": [ { "l_orderkey": 194i32, "l_partkey": 66i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 13.0d, "l_extendedprice": 12558.78d, "l_discount": 0.08d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-05-07", "l_commitdate": "1992-06-18", "l_receiptdate": "1992-05-10", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "about the blit" }, { "l_orderkey": 549i32, "l_partkey": 66i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 36.0d, "l_extendedprice": 34778.16d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-09-11", "l_commitdate": "1992-10-11", "l_receiptdate": "1992-09-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "ts against the ironic, even theodolites eng" }, { "l_orderkey": 3015i32, "l_partkey": 66i32, "l_suppkey": 7i32, "l_linenumber": 6i32, "l_quantity": 18.0d, "l_extendedprice": 17389.08d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-10-10", "l_commitdate": "1992-11-19", "l_receiptdate": "1992-10-18", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "equests wake fluffil" }, { "l_orderkey": 2562i32, "l_partkey": 66i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 25.0d, "l_extendedprice": 24151.5d, "l_discount": 0.05d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-11-23", "l_commitdate": "1992-10-08", "l_receiptdate": "1992-12-19", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": " accounts-- silent, unusual ideas a" }, { "l_orderkey": 2592i32, "l_partkey": 66i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 2.0d, "l_extendedprice": 1932.12d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-03-24", "l_commitdate": "1993-04-05", "l_receiptdate": "1993-04-16", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "side of the b" }, { "l_orderkey": 1280i32, "l_partkey": 66i32, "l_suppkey": 3i32, "l_linenumber": 6i32, "l_quantity": 9.0d, "l_extendedprice": 8694.54d, "l_discount": 0.0d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-04-18", "l_commitdate": "1993-03-28", "l_receiptdate": "1993-05-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "usual accou" }, { "l_orderkey": 3143i32, "l_partkey": 66i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 46.0d, "l_extendedprice": 44438.76d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-04-19", "l_commitdate": "1993-03-21", "l_receiptdate": "1993-05-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "low forges haggle. even packages use bli" }, { "l_orderkey": 2914i32, "l_partkey": 66i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 22.0d, "l_extendedprice": 21253.32d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-05-11", "l_commitdate": "1993-04-09", "l_receiptdate": "1993-05-22", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": " carefully about the fluffily ironic gifts" }, { "l_orderkey": 4195i32, "l_partkey": 66i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 22.0d, "l_extendedprice": 21253.32d, "l_discount": 0.1d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-07-01", "l_commitdate": "1993-07-23", "l_receiptdate": "1993-07-28", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "lly express pinto bea" }, { "l_orderkey": 1603i32, "l_partkey": 66i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 29.0d, "l_extendedprice": 28015.74d, "l_discount": 0.06d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-09-28", "l_commitdate": "1993-09-20", "l_receiptdate": "1993-10-28", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "ses wake furiously. theodolite" }, { "l_orderkey": 261i32, "l_partkey": 66i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 20.0d, "l_extendedprice": 19321.2d, "l_discount": 0.0d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-10-21", "l_commitdate": "1993-08-02", "l_receiptdate": "1993-11-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "ites hinder " }, { "l_orderkey": 1316i32, "l_partkey": 66i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 15.0d, "l_extendedprice": 14490.9d, "l_discount": 0.0d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-12-17", "l_commitdate": "1994-02-04", "l_receiptdate": "1993-12-20", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "fully express dugouts. furiously silent ide" }, { "l_orderkey": 4193i32, "l_partkey": 66i32, "l_suppkey": 1i32, "l_linenumber": 6i32, "l_quantity": 21.0d, "l_extendedprice": 20287.26d, "l_discount": 0.02d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-04-26", "l_commitdate": "1994-03-22", "l_receiptdate": "1994-05-23", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "accounts cajole b" }, { "l_orderkey": 609i32, "l_partkey": 66i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 21.0d, "l_extendedprice": 20287.26d, "l_discount": 0.01d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-08-24", "l_commitdate": "1994-08-23", "l_receiptdate": "1994-08-27", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "de of the special warthogs. excu" }, { "l_orderkey": 4645i32, "l_partkey": 66i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 32.0d, "l_extendedprice": 30913.92d, "l_discount": 0.1d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-11-17", "l_commitdate": "1994-10-30", "l_receiptdate": "1994-11-18", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": " final accounts alongside" }, { "l_orderkey": 4550i32, "l_partkey": 66i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 19.0d, "l_extendedprice": 18355.14d, "l_discount": 0.06d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-01-01", "l_commitdate": "1995-02-13", "l_receiptdate": "1995-01-20", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "quests. express " }, { "l_orderkey": 3814i32, "l_partkey": 66i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 20.0d, "l_extendedprice": 19321.2d, "l_discount": 0.04d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-02-23", "l_commitdate": "1995-03-26", "l_receiptdate": "1995-03-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": ". doggedly ironic deposits will have to wa" }, { "l_orderkey": 740i32, "l_partkey": 66i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 35.0d, "l_extendedprice": 33812.1d, "l_discount": 0.0d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-06", "l_commitdate": "1995-08-22", "l_receiptdate": "1995-10-02", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "p quickly. fu" }, { "l_orderkey": 995i32, "l_partkey": 66i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 25.0d, "l_extendedprice": 24151.5d, "l_discount": 0.01d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-08", "l_commitdate": "1995-08-05", "l_receiptdate": "1995-09-28", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "lyly even " }, { "l_orderkey": 2343i32, "l_partkey": 66i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 35.0d, "l_extendedprice": 33812.1d, "l_discount": 0.03d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-24", "l_commitdate": "1995-11-09", "l_receiptdate": "1995-10-26", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "ges haggle furiously carefully regular req" }, { "l_orderkey": 1733i32, "l_partkey": 66i32, "l_suppkey": 7i32, "l_linenumber": 6i32, "l_quantity": 9.0d, "l_extendedprice": 8694.54d, "l_discount": 0.06d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-25", "l_commitdate": "1996-07-23", "l_receiptdate": "1996-06-10", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "ven foxes was according to t" }, { "l_orderkey": 5637i32, "l_partkey": 66i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 16.0d, "l_extendedprice": 15456.96d, "l_discount": 0.03d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-08", "l_commitdate": "1996-08-31", "l_receiptdate": "1996-09-29", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "d packages. express requests" }, { "l_orderkey": 5922i32, "l_partkey": 66i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 13.0d, "l_extendedprice": 12558.78d, "l_discount": 0.08d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-08", "l_commitdate": "1996-12-26", "l_receiptdate": "1997-04-03", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "sly special accounts wake ironically." }, { "l_orderkey": 1410i32, "l_partkey": 66i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 25.0d, "l_extendedprice": 24151.5d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-07", "l_commitdate": "1997-07-10", "l_receiptdate": "1997-05-16", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "unts haggle against the furiously fina" }, { "l_orderkey": 2887i32, "l_partkey": 66i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 11.0d, "l_extendedprice": 10626.66d, "l_discount": 0.06d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-08", "l_commitdate": "1997-07-17", "l_receiptdate": "1997-07-15", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "ackages. unusual, speci" }, { "l_orderkey": 2950i32, "l_partkey": 66i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 18.0d, "l_extendedprice": 17389.08d, "l_discount": 0.1d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-19", "l_commitdate": "1997-08-29", "l_receiptdate": "1997-08-17", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "uests cajole furio" }, { "l_orderkey": 5380i32, "l_partkey": 66i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 6.0d, "l_extendedprice": 5796.36d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-11-15", "l_commitdate": "1998-01-08", "l_receiptdate": "1997-12-11", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "es. fluffily brave accounts across t" }, { "l_orderkey": 5412i32, "l_partkey": 66i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 48.0d, "l_extendedprice": 46370.88d, "l_discount": 0.01d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-02-22", "l_commitdate": "1998-03-28", "l_receiptdate": "1998-03-18", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "s. slyly final packages cajole blithe" }, { "l_orderkey": 71i32, "l_partkey": 66i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 3.0d, "l_extendedprice": 2898.18d, "l_discount": 0.09d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-23", "l_commitdate": "1998-04-03", "l_receiptdate": "1998-06-02", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "y. pinto beans haggle after the" } ] }
-{ "partkey": 67i32, "lines": [ { "l_orderkey": 1764i32, "l_partkey": 67i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 3.0d, "l_extendedprice": 2901.18d, "l_discount": 0.07d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-05-13", "l_commitdate": "1992-06-07", "l_receiptdate": "1992-05-26", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "es wake slowly. " }, { "l_orderkey": 612i32, "l_partkey": 67i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 49.0d, "l_extendedprice": 47385.94d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-01-08", "l_commitdate": "1992-11-25", "l_receiptdate": "1993-01-17", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "theodolite" }, { "l_orderkey": 2631i32, "l_partkey": 67i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 4.0d, "l_extendedprice": 3868.24d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-11-03", "l_commitdate": "1993-12-17", "l_receiptdate": "1993-11-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "special theodolites. a" }, { "l_orderkey": 5543i32, "l_partkey": 67i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 3.0d, "l_extendedprice": 2901.18d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-11-18", "l_commitdate": "1993-11-05", "l_receiptdate": "1993-12-17", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "ress, even " }, { "l_orderkey": 2819i32, "l_partkey": 67i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 12.0d, "l_extendedprice": 11604.72d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-07-18", "l_commitdate": "1994-06-24", "l_receiptdate": "1994-07-28", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": " regular, regular a" }, { "l_orderkey": 5317i32, "l_partkey": 67i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 50.0d, "l_extendedprice": 48353.0d, "l_discount": 0.09d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-10-17", "l_commitdate": "1994-10-25", "l_receiptdate": "1994-11-03", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "cajole furiously. accounts use quick" }, { "l_orderkey": 5441i32, "l_partkey": 67i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 47.0d, "l_extendedprice": 45451.82d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-11-19", "l_commitdate": "1994-10-16", "l_receiptdate": "1994-12-16", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "ounts wake slyly about the express instr" }, { "l_orderkey": 3136i32, "l_partkey": 67i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 2.0d, "l_extendedprice": 1934.12d, "l_discount": 0.08d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-11-21", "l_commitdate": "1994-11-03", "l_receiptdate": "1994-11-26", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "? special, silent " }, { "l_orderkey": 1445i32, "l_partkey": 67i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 48.0d, "l_extendedprice": 46418.88d, "l_discount": 0.1d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-02-28", "l_commitdate": "1995-03-16", "l_receiptdate": "1995-03-12", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": ". final ideas are carefully dar" }, { "l_orderkey": 1702i32, "l_partkey": 67i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 19.0d, "l_extendedprice": 18374.14d, "l_discount": 0.02d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "F", "l_shipdate": "1995-06-02", "l_commitdate": "1995-06-30", "l_receiptdate": "1995-06-29", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "ies haggle blith" }, { "l_orderkey": 3399i32, "l_partkey": 67i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 3.0d, "l_extendedprice": 2901.18d, "l_discount": 0.03d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "F", "l_shipdate": "1995-06-16", "l_commitdate": "1995-04-04", "l_receiptdate": "1995-06-23", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "hely pending dugouts " }, { "l_orderkey": 2049i32, "l_partkey": 67i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 18.0d, "l_extendedprice": 17407.08d, "l_discount": 0.05d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-09", "l_commitdate": "1996-01-22", "l_receiptdate": "1996-01-25", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": " sleep fluffily. dependencies use never" }, { "l_orderkey": 5632i32, "l_partkey": 67i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 24.0d, "l_extendedprice": 23209.44d, "l_discount": 0.04d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-23", "l_commitdate": "1996-04-02", "l_receiptdate": "1996-03-30", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "beans detect. quickly final i" }, { "l_orderkey": 4102i32, "l_partkey": 67i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 39.0d, "l_extendedprice": 37715.34d, "l_discount": 0.08d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-04-14", "l_commitdate": "1996-05-18", "l_receiptdate": "1996-04-20", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "ffix blithely slyly special " }, { "l_orderkey": 4929i32, "l_partkey": 67i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 24.0d, "l_extendedprice": 23209.44d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-04-15", "l_commitdate": "1996-04-30", "l_receiptdate": "1996-05-09", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": " accounts boost" }, { "l_orderkey": 3426i32, "l_partkey": 67i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 19.0d, "l_extendedprice": 18374.14d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-07", "l_commitdate": "1996-12-15", "l_receiptdate": "1996-12-14", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "c accounts cajole carefu" }, { "l_orderkey": 2661i32, "l_partkey": 67i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 11.0d, "l_extendedprice": 10637.66d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-14", "l_commitdate": "1997-02-11", "l_receiptdate": "1997-05-05", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "equests are a" }, { "l_orderkey": 1543i32, "l_partkey": 67i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 42.0d, "l_extendedprice": 40616.52d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-26", "l_commitdate": "1997-03-30", "l_receiptdate": "1997-06-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "its sleep until the fur" }, { "l_orderkey": 5734i32, "l_partkey": 67i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 10.0d, "l_extendedprice": 9670.6d, "l_discount": 0.01d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-28", "l_commitdate": "1997-12-24", "l_receiptdate": "1998-01-24", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "equests; accounts above" }, { "l_orderkey": 5507i32, "l_partkey": 67i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 22.0d, "l_extendedprice": 21275.32d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-08", "l_commitdate": "1998-08-10", "l_receiptdate": "1998-07-22", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "gular ideas. carefully unu" }, { "l_orderkey": 5344i32, "l_partkey": 67i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 26.0d, "l_extendedprice": 25143.56d, "l_discount": 0.02d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-27", "l_commitdate": "1998-08-22", "l_receiptdate": "1998-09-24", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "furiously pending, silent multipliers." } ] }
-{ "partkey": 69i32, "lines": [ { "l_orderkey": 3205i32, "l_partkey": 69i32, "l_suppkey": 8i32, "l_linenumber": 7i32, "l_quantity": 36.0d, "l_extendedprice": 34886.16d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-05-31", "l_commitdate": "1992-06-19", "l_receiptdate": "1992-06-03", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "s. ironic platelets above the s" }, { "l_orderkey": 5767i32, "l_partkey": 69i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 15.0d, "l_extendedprice": 14535.9d, "l_discount": 0.07d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-06-05", "l_commitdate": "1992-07-28", "l_receiptdate": "1992-06-08", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "warthogs. carefully unusual g" }, { "l_orderkey": 1221i32, "l_partkey": 69i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 3.0d, "l_extendedprice": 2907.18d, "l_discount": 0.1d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-07-01", "l_commitdate": "1992-06-04", "l_receiptdate": "1992-07-27", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "ing to the fluffily" }, { "l_orderkey": 2500i32, "l_partkey": 69i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 17.0d, "l_extendedprice": 16474.02d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-09-30", "l_commitdate": "1992-10-16", "l_receiptdate": "1992-10-05", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "encies-- ironic, even packages" }, { "l_orderkey": 4737i32, "l_partkey": 69i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 22.0d, "l_extendedprice": 21319.32d, "l_discount": 0.04d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-03-29", "l_commitdate": "1993-05-22", "l_receiptdate": "1993-04-16", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": " hang fluffily around t" }, { "l_orderkey": 1600i32, "l_partkey": 69i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 25.0d, "l_extendedprice": 24226.5d, "l_discount": 0.0d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-05-25", "l_commitdate": "1993-04-07", "l_receiptdate": "1993-06-05", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "press packages. ironic excuses bo" }, { "l_orderkey": 3591i32, "l_partkey": 69i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 24.0d, "l_extendedprice": 23257.44d, "l_discount": 0.04d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-12-26", "l_commitdate": "1994-01-07", "l_receiptdate": "1994-01-25", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "ages. slyly regular dependencies cajo" }, { "l_orderkey": 1824i32, "l_partkey": 69i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 40.0d, "l_extendedprice": 38762.4d, "l_discount": 0.1d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-05-08", "l_commitdate": "1994-07-24", "l_receiptdate": "1994-06-06", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "es mold furiously final instructions. s" }, { "l_orderkey": 3459i32, "l_partkey": 69i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 10.0d, "l_extendedprice": 9690.6d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-10-06", "l_commitdate": "1994-09-16", "l_receiptdate": "1994-11-03", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": " furiously silent dolphi" }, { "l_orderkey": 386i32, "l_partkey": 69i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 16.0d, "l_extendedprice": 15504.96d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-04-12", "l_commitdate": "1995-04-18", "l_receiptdate": "1995-05-11", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "lithely fluffi" }, { "l_orderkey": 4769i32, "l_partkey": 69i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 45.0d, "l_extendedprice": 43607.7d, "l_discount": 0.08d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-06-01", "l_commitdate": "1995-07-13", "l_receiptdate": "1995-06-04", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "accounts are. even accounts sleep" }, { "l_orderkey": 1025i32, "l_partkey": 69i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 23.0d, "l_extendedprice": 22288.38d, "l_discount": 0.08d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "F", "l_shipdate": "1995-06-02", "l_commitdate": "1995-07-29", "l_receiptdate": "1995-06-23", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": " regular platelets nag carefu" }, { "l_orderkey": 3045i32, "l_partkey": 69i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 48.0d, "l_extendedprice": 46514.88d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-01", "l_commitdate": "1995-12-16", "l_receiptdate": "1995-10-10", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "ole quickly outside th" }, { "l_orderkey": 3940i32, "l_partkey": 69i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 40.0d, "l_extendedprice": 38762.4d, "l_discount": 0.08d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-02-29", "l_commitdate": "1996-03-22", "l_receiptdate": "1996-03-04", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "ts. regular fox" }, { "l_orderkey": 4102i32, "l_partkey": 69i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 5.0d, "l_extendedprice": 4845.3d, "l_discount": 0.08d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-11", "l_commitdate": "1996-05-11", "l_receiptdate": "1996-05-16", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": " the furiously even" }, { "l_orderkey": 2849i32, "l_partkey": 69i32, "l_suppkey": 4i32, "l_linenumber": 6i32, "l_quantity": 30.0d, "l_extendedprice": 29071.8d, "l_discount": 0.06d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-20", "l_commitdate": "1996-07-23", "l_receiptdate": "1996-07-06", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "yly furiously even id" }, { "l_orderkey": 3429i32, "l_partkey": 69i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 10.0d, "l_extendedprice": 9690.6d, "l_discount": 0.05d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-19", "l_commitdate": "1997-02-22", "l_receiptdate": "1997-01-25", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "ackages. quickly e" }, { "l_orderkey": 5216i32, "l_partkey": 69i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 17.0d, "l_extendedprice": 16474.02d, "l_discount": 0.04d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-20", "l_commitdate": "1997-11-07", "l_receiptdate": "1997-09-14", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "s according to the accounts bo" }, { "l_orderkey": 1477i32, "l_partkey": 69i32, "l_suppkey": 6i32, "l_linenumber": 6i32, "l_quantity": 49.0d, "l_extendedprice": 47483.94d, "l_discount": 0.06d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-11-18", "l_commitdate": "1997-11-06", "l_receiptdate": "1997-11-27", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "ise according to the sly, bold p" }, { "l_orderkey": 5348i32, "l_partkey": 69i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 21.0d, "l_extendedprice": 20350.26d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-11", "l_commitdate": "1997-12-24", "l_receiptdate": "1997-12-28", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": " regular theodolites haggle car" }, { "l_orderkey": 4322i32, "l_partkey": 69i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 39.0d, "l_extendedprice": 37793.34d, "l_discount": 0.04d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-27", "l_commitdate": "1998-06-03", "l_receiptdate": "1998-05-04", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "its integrate fluffily " }, { "l_orderkey": 3714i32, "l_partkey": 69i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 13.0d, "l_extendedprice": 12597.78d, "l_discount": 0.07d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-26", "l_commitdate": "1998-06-17", "l_receiptdate": "1998-07-07", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": " the furiously final" }, { "l_orderkey": 4577i32, "l_partkey": 69i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 12.0d, "l_extendedprice": 11628.72d, "l_discount": 0.07d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-29", "l_commitdate": "1998-06-17", "l_receiptdate": "1998-08-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "equests alongsi" }, { "l_orderkey": 3717i32, "l_partkey": 69i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 5.0d, "l_extendedprice": 4845.3d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-09-02", "l_commitdate": "1998-08-20", "l_receiptdate": "1998-09-26", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "quickly among " } ] }
-{ "partkey": 76i32, "lines": [ { "l_orderkey": 5408i32, "l_partkey": 76i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 34.0d, "l_extendedprice": 33186.38d, "l_discount": 0.1d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-10-22", "l_commitdate": "1992-08-25", "l_receiptdate": "1992-11-16", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "requests detect blithely a" }, { "l_orderkey": 2272i32, "l_partkey": 76i32, "l_suppkey": 4i32, "l_linenumber": 5i32, "l_quantity": 12.0d, "l_extendedprice": 11712.84d, "l_discount": 0.03d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-04-19", "l_commitdate": "1993-05-14", "l_receiptdate": "1993-04-23", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": " accounts cajole. quickly b" }, { "l_orderkey": 2245i32, "l_partkey": 76i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 44.0d, "l_extendedprice": 42947.08d, "l_discount": 0.03d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-06-12", "l_commitdate": "1993-06-10", "l_receiptdate": "1993-06-16", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "refully even sheaves" }, { "l_orderkey": 804i32, "l_partkey": 76i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 44.0d, "l_extendedprice": 42947.08d, "l_discount": 0.04d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-07-06", "l_commitdate": "1993-04-13", "l_receiptdate": "1993-07-28", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "ly final deposits? special " }, { "l_orderkey": 3649i32, "l_partkey": 76i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 40.0d, "l_extendedprice": 39042.8d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-07-20", "l_commitdate": "1994-08-30", "l_receiptdate": "1994-08-14", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "luffy somas sleep quickly-- ironic de" }, { "l_orderkey": 3751i32, "l_partkey": 76i32, "l_suppkey": 5i32, "l_linenumber": 6i32, "l_quantity": 39.0d, "l_extendedprice": 38066.73d, "l_discount": 0.02d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-08-01", "l_commitdate": "1994-06-01", "l_receiptdate": "1994-08-26", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "to beans. pending, express packages c" }, { "l_orderkey": 805i32, "l_partkey": 76i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 26.0d, "l_extendedprice": 25377.82d, "l_discount": 0.08d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-28", "l_commitdate": "1995-09-24", "l_receiptdate": "1995-09-11", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": ". ironic deposits sleep across " }, { "l_orderkey": 1607i32, "l_partkey": 76i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 34.0d, "l_extendedprice": 33186.38d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-06", "l_commitdate": "1996-02-24", "l_receiptdate": "1996-01-10", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": " quickly above the " }, { "l_orderkey": 486i32, "l_partkey": 76i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 36.0d, "l_extendedprice": 35138.52d, "l_discount": 0.0d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-25", "l_commitdate": "1996-05-06", "l_receiptdate": "1996-07-07", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "deposits around the quickly regular packa" }, { "l_orderkey": 4262i32, "l_partkey": 76i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 30.0d, "l_extendedprice": 29282.1d, "l_discount": 0.01d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-11", "l_commitdate": "1996-10-11", "l_receiptdate": "1996-09-09", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "tes after the carefully" }, { "l_orderkey": 4966i32, "l_partkey": 76i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 10.0d, "l_extendedprice": 9760.7d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-23", "l_commitdate": "1996-11-02", "l_receiptdate": "1996-10-07", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": " requests. carefully pending requests" }, { "l_orderkey": 4963i32, "l_partkey": 76i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 16.0d, "l_extendedprice": 15617.12d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-20", "l_commitdate": "1997-01-13", "l_receiptdate": "1996-12-06", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": " carefully slyly u" }, { "l_orderkey": 1634i32, "l_partkey": 76i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 2.0d, "l_extendedprice": 1952.14d, "l_discount": 0.07d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-22", "l_commitdate": "1996-10-28", "l_receiptdate": "1996-12-17", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "ly. carefully regular asymptotes wake" }, { "l_orderkey": 1924i32, "l_partkey": 76i32, "l_suppkey": 4i32, "l_linenumber": 6i32, "l_quantity": 15.0d, "l_extendedprice": 14641.05d, "l_discount": 0.02d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-04", "l_commitdate": "1996-11-13", "l_receiptdate": "1997-01-27", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "he package" }, { "l_orderkey": 4836i32, "l_partkey": 76i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 14.0d, "l_extendedprice": 13664.98d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-21", "l_commitdate": "1997-02-06", "l_receiptdate": "1997-03-08", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "lites. unusual, bold dolphins ar" }, { "l_orderkey": 676i32, "l_partkey": 76i32, "l_suppkey": 7i32, "l_linenumber": 6i32, "l_quantity": 33.0d, "l_extendedprice": 32210.31d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-02", "l_commitdate": "1997-02-22", "l_receiptdate": "1997-03-19", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "as wake slyly furiously close pinto b" }, { "l_orderkey": 4066i32, "l_partkey": 76i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 8.0d, "l_extendedprice": 7808.56d, "l_discount": 0.03d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-24", "l_commitdate": "1997-03-11", "l_receiptdate": "1997-05-20", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "accounts. special pinto beans" }, { "l_orderkey": 1120i32, "l_partkey": 76i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 21.0d, "l_extendedprice": 20497.47d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-11", "l_commitdate": "1998-02-04", "l_receiptdate": "1998-01-19", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "s: fluffily even packages c" }, { "l_orderkey": 2565i32, "l_partkey": 76i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 26.0d, "l_extendedprice": 25377.82d, "l_discount": 0.08d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-05", "l_commitdate": "1998-04-11", "l_receiptdate": "1998-03-11", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "ites wake. ironic acco" }, { "l_orderkey": 1408i32, "l_partkey": 76i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 11.0d, "l_extendedprice": 10736.77d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-04", "l_commitdate": "1998-01-29", "l_receiptdate": "1998-04-18", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "y even accounts thrash care" }, { "l_orderkey": 2214i32, "l_partkey": 76i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 27.0d, "l_extendedprice": 26353.89d, "l_discount": 0.04d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-31", "l_commitdate": "1998-06-07", "l_receiptdate": "1998-06-19", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "x fluffily along the even packages-- " } ] }
-{ "partkey": 79i32, "lines": [ { "l_orderkey": 4069i32, "l_partkey": 79i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 22.0d, "l_extendedprice": 21539.54d, "l_discount": 0.1d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-08-05", "l_commitdate": "1992-08-04", "l_receiptdate": "1992-08-25", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "ts. slyly special instruction" }, { "l_orderkey": 5986i32, "l_partkey": 79i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 26.0d, "l_extendedprice": 25455.82d, "l_discount": 0.0d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-08-10", "l_commitdate": "1992-05-23", "l_receiptdate": "1992-08-24", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "e fluffily ironic ideas. silent " }, { "l_orderkey": 4418i32, "l_partkey": 79i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 3.0d, "l_extendedprice": 2937.21d, "l_discount": 0.0d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-04-08", "l_commitdate": "1993-06-04", "l_receiptdate": "1993-05-02", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "luffily across the unusual ideas. reque" }, { "l_orderkey": 5094i32, "l_partkey": 79i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 21.0d, "l_extendedprice": 20560.47d, "l_discount": 0.09d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-07-26", "l_commitdate": "1993-05-03", "l_receiptdate": "1993-08-16", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": " blithely furiously final re" }, { "l_orderkey": 3109i32, "l_partkey": 79i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 26.0d, "l_extendedprice": 25455.82d, "l_discount": 0.01d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-11-16", "l_commitdate": "1993-10-18", "l_receiptdate": "1993-12-06", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": " sleep slyly according to t" }, { "l_orderkey": 229i32, "l_partkey": 79i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 28.0d, "l_extendedprice": 27413.96d, "l_discount": 0.02d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-02-10", "l_commitdate": "1994-02-02", "l_receiptdate": "1994-03-10", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": " final, regular requests. platel" }, { "l_orderkey": 1316i32, "l_partkey": 79i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 15.0d, "l_extendedprice": 14686.05d, "l_discount": 0.02d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-03-12", "l_commitdate": "1994-03-02", "l_receiptdate": "1994-03-14", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "se. furiously final depo" }, { "l_orderkey": 2466i32, "l_partkey": 79i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 30.0d, "l_extendedprice": 29372.1d, "l_discount": 0.02d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-04-11", "l_commitdate": "1994-05-02", "l_receiptdate": "1994-05-02", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": ". fluffily even pinto beans are idly. f" }, { "l_orderkey": 1828i32, "l_partkey": 79i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 14.0d, "l_extendedprice": 13706.98d, "l_discount": 0.01d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-05-20", "l_commitdate": "1994-06-02", "l_receiptdate": "1994-05-25", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": ". final packages along the carefully bold" }, { "l_orderkey": 4389i32, "l_partkey": 79i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 39.0d, "l_extendedprice": 38183.73d, "l_discount": 0.04d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-06-08", "l_commitdate": "1994-06-04", "l_receiptdate": "1994-06-10", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": " unusual, final excuses cajole carefully " }, { "l_orderkey": 4608i32, "l_partkey": 79i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 50.0d, "l_extendedprice": 48953.5d, "l_discount": 0.03d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-08-04", "l_commitdate": "1994-09-10", "l_receiptdate": "1994-08-13", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": " wake closely. even decoys haggle above" }, { "l_orderkey": 5155i32, "l_partkey": 79i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 39.0d, "l_extendedprice": 38183.73d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-08-25", "l_commitdate": "1994-09-01", "l_receiptdate": "1994-09-18", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "l dolphins nag caref" }, { "l_orderkey": 5894i32, "l_partkey": 79i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 48.0d, "l_extendedprice": 46995.36d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-09-04", "l_commitdate": "1994-11-03", "l_receiptdate": "1994-09-17", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": " asymptotes among the blithely silent " }, { "l_orderkey": 2211i32, "l_partkey": 79i32, "l_suppkey": 9i32, "l_linenumber": 7i32, "l_quantity": 3.0d, "l_extendedprice": 2937.21d, "l_discount": 0.06d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-09-21", "l_commitdate": "1994-08-10", "l_receiptdate": "1994-10-19", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "y slyly final" }, { "l_orderkey": 450i32, "l_partkey": 79i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 2.0d, "l_extendedprice": 1958.14d, "l_discount": 0.09d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-03-11", "l_commitdate": "1995-05-21", "l_receiptdate": "1995-03-16", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "y even pinto beans; qui" }, { "l_orderkey": 613i32, "l_partkey": 79i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 6.0d, "l_extendedprice": 5874.42d, "l_discount": 0.05d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-05", "l_commitdate": "1995-08-09", "l_receiptdate": "1995-08-08", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "y ironic deposits eat " }, { "l_orderkey": 2657i32, "l_partkey": 79i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 25.0d, "l_extendedprice": 24476.75d, "l_discount": 0.02d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-21", "l_commitdate": "1995-12-12", "l_receiptdate": "1995-11-09", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "lly pinto beans. final " }, { "l_orderkey": 3141i32, "l_partkey": 79i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 9.0d, "l_extendedprice": 8811.63d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-11", "l_commitdate": "1995-12-10", "l_receiptdate": "1995-12-02", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "uickly ironic, pendi" }, { "l_orderkey": 1988i32, "l_partkey": 79i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 26.0d, "l_extendedprice": 25455.82d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-25", "l_commitdate": "1995-12-15", "l_receiptdate": "1996-01-26", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": " ironic dolphins haggl" }, { "l_orderkey": 482i32, "l_partkey": 79i32, "l_suppkey": 10i32, "l_linenumber": 6i32, "l_quantity": 19.0d, "l_extendedprice": 18602.33d, "l_discount": 0.04d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-27", "l_commitdate": "1996-04-25", "l_receiptdate": "1996-04-15", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "ts hinder carefully silent requests" }, { "l_orderkey": 4038i32, "l_partkey": 79i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 24.0d, "l_extendedprice": 23497.68d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-04-01", "l_commitdate": "1996-04-05", "l_receiptdate": "1996-04-28", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "ake quickly after the final, ironic ac" }, { "l_orderkey": 3425i32, "l_partkey": 79i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 48.0d, "l_extendedprice": 46995.36d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-04-14", "l_commitdate": "1996-05-25", "l_receiptdate": "1996-04-23", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "uctions wake fluffily. care" }, { "l_orderkey": 3234i32, "l_partkey": 79i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 45.0d, "l_extendedprice": 44058.15d, "l_discount": 0.01d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-15", "l_commitdate": "1996-05-09", "l_receiptdate": "1996-06-02", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": " express packages are carefully. f" }, { "l_orderkey": 4929i32, "l_partkey": 79i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 40.0d, "l_extendedprice": 39162.8d, "l_discount": 0.08d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-30", "l_commitdate": "1996-04-13", "l_receiptdate": "1996-06-22", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "unts against " }, { "l_orderkey": 3425i32, "l_partkey": 79i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 37.0d, "l_extendedprice": 36225.59d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-04", "l_commitdate": "1996-05-09", "l_receiptdate": "1996-06-12", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "as sleep carefully into the caref" }, { "l_orderkey": 514i32, "l_partkey": 79i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 21.0d, "l_extendedprice": 20560.47d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-09", "l_commitdate": "1996-05-15", "l_receiptdate": "1996-07-07", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "s sleep quickly blithely" }, { "l_orderkey": 3555i32, "l_partkey": 79i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 15.0d, "l_extendedprice": 14686.05d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-13", "l_commitdate": "1996-09-01", "l_receiptdate": "1996-08-02", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "y across the pending a" }, { "l_orderkey": 2690i32, "l_partkey": 79i32, "l_suppkey": 7i32, "l_linenumber": 7i32, "l_quantity": 35.0d, "l_extendedprice": 34267.45d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-25", "l_commitdate": "1996-05-14", "l_receiptdate": "1996-08-03", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "y silent pinto be" }, { "l_orderkey": 4293i32, "l_partkey": 79i32, "l_suppkey": 7i32, "l_linenumber": 6i32, "l_quantity": 45.0d, "l_extendedprice": 44058.15d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-04", "l_commitdate": "1996-11-06", "l_receiptdate": "1996-11-23", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "lar ideas use carefully" }, { "l_orderkey": 288i32, "l_partkey": 79i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 19.0d, "l_extendedprice": 18602.33d, "l_discount": 0.07d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-14", "l_commitdate": "1997-04-04", "l_receiptdate": "1997-03-26", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "deposits. blithely quick courts ar" }, { "l_orderkey": 5377i32, "l_partkey": 79i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 40.0d, "l_extendedprice": 39162.8d, "l_discount": 0.0d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-21", "l_commitdate": "1997-06-15", "l_receiptdate": "1997-05-26", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "lithely ironic theodolites are care" }, { "l_orderkey": 3969i32, "l_partkey": 79i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 46.0d, "l_extendedprice": 45037.22d, "l_discount": 0.04d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-29", "l_commitdate": "1997-06-15", "l_receiptdate": "1997-06-10", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "fully final requests sleep stealthily. care" }, { "l_orderkey": 1252i32, "l_partkey": 79i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 26.0d, "l_extendedprice": 25455.82d, "l_discount": 0.05d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-05", "l_commitdate": "1997-10-24", "l_receiptdate": "1997-08-07", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "onic pinto beans haggle furiously " }, { "l_orderkey": 1669i32, "l_partkey": 79i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 24.0d, "l_extendedprice": 23497.68d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-04", "l_commitdate": "1997-07-30", "l_receiptdate": "1997-09-20", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": " regular, final deposits use quick" }, { "l_orderkey": 4997i32, "l_partkey": 79i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 44.0d, "l_extendedprice": 43079.08d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-09", "l_commitdate": "1998-06-12", "l_receiptdate": "1998-07-07", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "r escapades ca" }, { "l_orderkey": 1957i32, "l_partkey": 79i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 50.0d, "l_extendedprice": 48953.5d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-08", "l_commitdate": "1998-09-28", "l_receiptdate": "1998-08-27", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "gainst the re" }, { "l_orderkey": 5344i32, "l_partkey": 79i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 37.0d, "l_extendedprice": 36225.59d, "l_discount": 0.03d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-10-09", "l_commitdate": "1998-07-26", "l_receiptdate": "1998-11-08", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "thely express packages" } ] }
-{ "partkey": 84i32, "lines": [ { "l_orderkey": 1285i32, "l_partkey": 84i32, "l_suppkey": 5i32, "l_linenumber": 5i32, "l_quantity": 33.0d, "l_extendedprice": 32474.64d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-09-08", "l_commitdate": "1992-08-25", "l_receiptdate": "1992-09-16", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "ites affix" }, { "l_orderkey": 2597i32, "l_partkey": 84i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 24.0d, "l_extendedprice": 23617.92d, "l_discount": 0.07d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-05-15", "l_commitdate": "1993-03-06", "l_receiptdate": "1993-05-25", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "pending packages. enticingly fi" }, { "l_orderkey": 772i32, "l_partkey": 84i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 10.0d, "l_extendedprice": 9840.8d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-05-20", "l_commitdate": "1993-05-19", "l_receiptdate": "1993-06-15", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": " deposits cajole carefully instructions. t" }, { "l_orderkey": 4774i32, "l_partkey": 84i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 45.0d, "l_extendedprice": 44283.6d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-07-07", "l_commitdate": "1993-06-08", "l_receiptdate": "1993-07-31", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": " haggle busily afte" }, { "l_orderkey": 229i32, "l_partkey": 84i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 20.0d, "l_extendedprice": 19681.6d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-01-11", "l_commitdate": "1994-01-31", "l_receiptdate": "1994-01-26", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "le. instructions use across the quickly fin" }, { "l_orderkey": 3586i32, "l_partkey": 84i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 33.0d, "l_extendedprice": 32474.64d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-01-24", "l_commitdate": "1994-02-09", "l_receiptdate": "1994-02-07", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "refully across the fur" }, { "l_orderkey": 3586i32, "l_partkey": 84i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 29.0d, "l_extendedprice": 28538.32d, "l_discount": 0.04d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-03-06", "l_commitdate": "1994-03-02", "l_receiptdate": "1994-03-13", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": " slyly unusual i" }, { "l_orderkey": 2086i32, "l_partkey": 84i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 27.0d, "l_extendedprice": 26570.16d, "l_discount": 0.02d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-11-04", "l_commitdate": "1995-01-14", "l_receiptdate": "1994-11-25", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "theodolites haggle blithely blithe p" }, { "l_orderkey": 3296i32, "l_partkey": 84i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 12.0d, "l_extendedprice": 11808.96d, "l_discount": 0.06d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-12-08", "l_commitdate": "1994-12-14", "l_receiptdate": "1994-12-24", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "y about the slyly bold pinto bea" }, { "l_orderkey": 231i32, "l_partkey": 84i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 46.0d, "l_extendedprice": 45267.68d, "l_discount": 0.04d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-12-13", "l_commitdate": "1994-12-02", "l_receiptdate": "1994-12-14", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "affix blithely. bold requests among the f" }, { "l_orderkey": 3332i32, "l_partkey": 84i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 28.0d, "l_extendedprice": 27554.24d, "l_discount": 0.1d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-12-30", "l_commitdate": "1995-01-16", "l_receiptdate": "1995-01-16", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "s against the carefully special multipl" }, { "l_orderkey": 4324i32, "l_partkey": 84i32, "l_suppkey": 5i32, "l_linenumber": 5i32, "l_quantity": 22.0d, "l_extendedprice": 21649.76d, "l_discount": 0.07d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-13", "l_commitdate": "1995-10-04", "l_receiptdate": "1995-09-23", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "ke express, special ideas." }, { "l_orderkey": 2049i32, "l_partkey": 84i32, "l_suppkey": 5i32, "l_linenumber": 6i32, "l_quantity": 17.0d, "l_extendedprice": 16729.36d, "l_discount": 0.07d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-02-04", "l_commitdate": "1996-03-01", "l_receiptdate": "1996-02-24", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "al, regular foxes. pending, " }, { "l_orderkey": 4388i32, "l_partkey": 84i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 28.0d, "l_extendedprice": 27554.24d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-08", "l_commitdate": "1996-06-20", "l_receiptdate": "1996-05-12", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "ove the ide" }, { "l_orderkey": 3234i32, "l_partkey": 84i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 23.0d, "l_extendedprice": 22633.84d, "l_discount": 0.03d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-29", "l_commitdate": "1996-05-15", "l_receiptdate": "1996-06-17", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "d-- fluffily special packag" }, { "l_orderkey": 1510i32, "l_partkey": 84i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 24.0d, "l_extendedprice": 23617.92d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-07", "l_commitdate": "1996-10-22", "l_receiptdate": "1996-11-03", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "yly brave theod" }, { "l_orderkey": 3936i32, "l_partkey": 84i32, "l_suppkey": 5i32, "l_linenumber": 5i32, "l_quantity": 35.0d, "l_extendedprice": 34442.8d, "l_discount": 0.02d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-04", "l_commitdate": "1997-01-06", "l_receiptdate": "1996-12-22", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "lly ironic requ" }, { "l_orderkey": 836i32, "l_partkey": 84i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 18.0d, "l_extendedprice": 17713.44d, "l_discount": 0.03d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-27", "l_commitdate": "1997-02-11", "l_receiptdate": "1997-03-22", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "y pending packages use alon" }, { "l_orderkey": 5895i32, "l_partkey": 84i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 49.0d, "l_extendedprice": 48219.92d, "l_discount": 0.03d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-15", "l_commitdate": "1997-02-17", "l_receiptdate": "1997-04-04", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "permanent foxes. packages" }, { "l_orderkey": 1190i32, "l_partkey": 84i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 32.0d, "l_extendedprice": 31490.56d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-08", "l_commitdate": "1997-04-17", "l_receiptdate": "1997-06-01", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "y final packages? slyly even" }, { "l_orderkey": 2501i32, "l_partkey": 84i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 4.0d, "l_extendedprice": 3936.32d, "l_discount": 0.1d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-17", "l_commitdate": "1997-07-27", "l_receiptdate": "1997-07-22", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "quests. furiously final" }, { "l_orderkey": 4357i32, "l_partkey": 84i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 50.0d, "l_extendedprice": 49204.0d, "l_discount": 0.04d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-11-25", "l_commitdate": "1997-12-03", "l_receiptdate": "1997-12-17", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "s. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, " }, { "l_orderkey": 3170i32, "l_partkey": 84i32, "l_suppkey": 5i32, "l_linenumber": 7i32, "l_quantity": 26.0d, "l_extendedprice": 25586.08d, "l_discount": 0.1d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-02-12", "l_commitdate": "1997-12-22", "l_receiptdate": "1998-02-28", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "s engage furiously. " }, { "l_orderkey": 518i32, "l_partkey": 84i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 23.0d, "l_extendedprice": 22633.84d, "l_discount": 0.05d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-02-20", "l_commitdate": "1998-05-05", "l_receiptdate": "1998-03-11", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": " special requests. fluffily ironic re" }, { "l_orderkey": 2017i32, "l_partkey": 84i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 11.0d, "l_extendedprice": 10824.88d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-22", "l_commitdate": "1998-07-13", "l_receiptdate": "1998-05-26", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "gside of the slyly dogged dolp" }, { "l_orderkey": 1377i32, "l_partkey": 84i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 26.0d, "l_extendedprice": 25586.08d, "l_discount": 0.07d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-28", "l_commitdate": "1998-06-11", "l_receiptdate": "1998-06-25", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "egular deposits. quickly regular acco" }, { "l_orderkey": 2471i32, "l_partkey": 84i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 37.0d, "l_extendedprice": 36410.96d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-28", "l_commitdate": "1998-04-17", "l_receiptdate": "1998-06-08", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "ounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mo" }, { "l_orderkey": 1920i32, "l_partkey": 84i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 50.0d, "l_extendedprice": 49204.0d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-10-03", "l_commitdate": "1998-08-04", "l_receiptdate": "1998-10-29", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "e blithely unusual foxes. brave packages" } ] }
-{ "partkey": 85i32, "lines": [ { "l_orderkey": 1057i32, "l_partkey": 85i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 21.0d, "l_extendedprice": 20686.68d, "l_discount": 0.03d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-02-28", "l_commitdate": "1992-05-01", "l_receiptdate": "1992-03-10", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "ar orbits boost bli" }, { "l_orderkey": 5574i32, "l_partkey": 85i32, "l_suppkey": 6i32, "l_linenumber": 5i32, "l_quantity": 19.0d, "l_extendedprice": 18716.52d, "l_discount": 0.05d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-05-28", "l_commitdate": "1992-04-24", "l_receiptdate": "1992-06-11", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "old deposits int" }, { "l_orderkey": 1221i32, "l_partkey": 85i32, "l_suppkey": 6i32, "l_linenumber": 6i32, "l_quantity": 7.0d, "l_extendedprice": 6895.56d, "l_discount": 0.08d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-06-27", "l_commitdate": "1992-06-16", "l_receiptdate": "1992-07-23", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "xpress accounts " }, { "l_orderkey": 967i32, "l_partkey": 85i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 4.0d, "l_extendedprice": 3940.32d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-07-15", "l_commitdate": "1992-07-27", "l_receiptdate": "1992-07-18", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "platelets hang carefully along " }, { "l_orderkey": 644i32, "l_partkey": 85i32, "l_suppkey": 6i32, "l_linenumber": 6i32, "l_quantity": 33.0d, "l_extendedprice": 32507.64d, "l_discount": 0.0d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-08-26", "l_commitdate": "1992-07-27", "l_receiptdate": "1992-08-28", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "ages sleep. bold, bo" }, { "l_orderkey": 5891i32, "l_partkey": 85i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 22.0d, "l_extendedprice": 21671.76d, "l_discount": 0.0d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-01-01", "l_commitdate": "1993-02-18", "l_receiptdate": "1993-01-14", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "iresias cajole deposits. special, ir" }, { "l_orderkey": 4067i32, "l_partkey": 85i32, "l_suppkey": 6i32, "l_linenumber": 5i32, "l_quantity": 17.0d, "l_extendedprice": 16746.36d, "l_discount": 0.08d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-01-20", "l_commitdate": "1992-12-29", "l_receiptdate": "1993-02-03", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "r accounts. slyly special pa" }, { "l_orderkey": 3076i32, "l_partkey": 85i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 44.0d, "l_extendedprice": 43343.52d, "l_discount": 0.0d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-09-14", "l_commitdate": "1993-10-04", "l_receiptdate": "1993-09-17", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": " instructions h" }, { "l_orderkey": 195i32, "l_partkey": 85i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 6.0d, "l_extendedprice": 5910.48d, "l_discount": 0.04d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-01-09", "l_commitdate": "1994-03-27", "l_receiptdate": "1994-01-28", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "y, even deposits haggle carefully. bli" }, { "l_orderkey": 3783i32, "l_partkey": 85i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 50.0d, "l_extendedprice": 49254.0d, "l_discount": 0.04d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-03-14", "l_commitdate": "1994-01-09", "l_receiptdate": "1994-04-10", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "he furiously regular deposits. " }, { "l_orderkey": 263i32, "l_partkey": 85i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 9.0d, "l_extendedprice": 8865.72d, "l_discount": 0.08d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-07-21", "l_commitdate": "1994-07-16", "l_receiptdate": "1994-08-08", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "lms wake bl" }, { "l_orderkey": 2211i32, "l_partkey": 85i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 23.0d, "l_extendedprice": 22656.84d, "l_discount": 0.03d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-10-05", "l_commitdate": "1994-09-13", "l_receiptdate": "1994-10-17", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "ependencies " }, { "l_orderkey": 3175i32, "l_partkey": 85i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 14.0d, "l_extendedprice": 13791.12d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-10-21", "l_commitdate": "1994-09-05", "l_receiptdate": "1994-11-15", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "nt dependencies are quietly even " }, { "l_orderkey": 326i32, "l_partkey": 85i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 5.0d, "l_extendedprice": 4925.4d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-29", "l_commitdate": "1995-07-13", "l_receiptdate": "1995-08-12", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "deas sleep according to the sometimes spe" }, { "l_orderkey": 2021i32, "l_partkey": 85i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 7.0d, "l_extendedprice": 6895.56d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-17", "l_commitdate": "1995-09-29", "l_receiptdate": "1995-10-20", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": " accounts boost blithely. blithely reg" }, { "l_orderkey": 2273i32, "l_partkey": 85i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 35.0d, "l_extendedprice": 34477.8d, "l_discount": 0.0d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-02", "l_commitdate": "1997-01-19", "l_receiptdate": "1997-01-14", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "arefully f" }, { "l_orderkey": 546i32, "l_partkey": 85i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 16.0d, "l_extendedprice": 15761.28d, "l_discount": 0.08d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-04", "l_commitdate": "1996-12-30", "l_receiptdate": "1997-02-25", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "de of the orbits. sometimes regula" }, { "l_orderkey": 5158i32, "l_partkey": 85i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 18.0d, "l_extendedprice": 17731.44d, "l_discount": 0.04d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-30", "l_commitdate": "1997-03-28", "l_receiptdate": "1997-05-12", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "hely regular pa" }, { "l_orderkey": 2081i32, "l_partkey": 85i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 23.0d, "l_extendedprice": 22656.84d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-06", "l_commitdate": "1997-09-11", "l_receiptdate": "1997-07-21", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "ual requests wake blithely above the" }, { "l_orderkey": 1636i32, "l_partkey": 85i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 2.0d, "l_extendedprice": 1970.16d, "l_discount": 0.09d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-26", "l_commitdate": "1997-08-22", "l_receiptdate": "1997-10-05", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "nal foxes cajole above the blithely reg" }, { "l_orderkey": 1794i32, "l_partkey": 85i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 34.0d, "l_extendedprice": 33492.72d, "l_discount": 0.06d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-29", "l_commitdate": "1997-11-13", "l_receiptdate": "1997-10-07", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "rs above the accoun" }, { "l_orderkey": 4224i32, "l_partkey": 85i32, "l_suppkey": 6i32, "l_linenumber": 5i32, "l_quantity": 48.0d, "l_extendedprice": 47283.84d, "l_discount": 0.0d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-10-03", "l_commitdate": "1997-08-31", "l_receiptdate": "1997-10-10", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": " final, regular asymptotes use alway" }, { "l_orderkey": 580i32, "l_partkey": 85i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 33.0d, "l_extendedprice": 32507.64d, "l_discount": 0.03d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-10-11", "l_commitdate": "1997-09-19", "l_receiptdate": "1997-10-16", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "y express theodolites cajole carefully " }, { "l_orderkey": 4032i32, "l_partkey": 85i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 10.0d, "l_extendedprice": 9850.8d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-31", "l_commitdate": "1998-04-22", "l_receiptdate": "1998-04-07", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": " carefully bol" }, { "l_orderkey": 390i32, "l_partkey": 85i32, "l_suppkey": 6i32, "l_linenumber": 7i32, "l_quantity": 24.0d, "l_extendedprice": 23641.92d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-18", "l_commitdate": "1998-05-19", "l_receiptdate": "1998-04-28", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "y. enticingly final depos" }, { "l_orderkey": 899i32, "l_partkey": 85i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 4.0d, "l_extendedprice": 3940.32d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-02", "l_commitdate": "1998-06-28", "l_receiptdate": "1998-06-14", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "ter the carefully regular deposits are agai" }, { "l_orderkey": 739i32, "l_partkey": 85i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 28.0d, "l_extendedprice": 27582.24d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-03", "l_commitdate": "1998-08-04", "l_receiptdate": "1998-06-29", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "elets about the pe" }, { "l_orderkey": 800i32, "l_partkey": 85i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 21.0d, "l_extendedprice": 20686.68d, "l_discount": 0.04d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-23", "l_commitdate": "1998-10-01", "l_receiptdate": "1998-08-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "ckly even requests after the carefully r" } ] }
-{ "partkey": 86i32, "lines": [ { "l_orderkey": 2240i32, "l_partkey": 86i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 10.0d, "l_extendedprice": 9860.8d, "l_discount": 0.09d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-05-25", "l_commitdate": "1992-04-14", "l_receiptdate": "1992-06-23", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "are across the ironic packages." }, { "l_orderkey": 4896i32, "l_partkey": 86i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 21.0d, "l_extendedprice": 20707.68d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-11-18", "l_commitdate": "1992-11-18", "l_receiptdate": "1992-11-29", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "ly express deposits. carefully pending depo" }, { "l_orderkey": 4166i32, "l_partkey": 86i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 36.0d, "l_extendedprice": 35498.88d, "l_discount": 0.06d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-03-01", "l_commitdate": "1993-05-25", "l_receiptdate": "1993-03-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "unts. furiously express accounts w" }, { "l_orderkey": 5088i32, "l_partkey": 86i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 36.0d, "l_extendedprice": 35498.88d, "l_discount": 0.1d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-04-16", "l_commitdate": "1993-04-03", "l_receiptdate": "1993-05-14", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "the furiously final deposits. furiously re" }, { "l_orderkey": 772i32, "l_partkey": 86i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 35.0d, "l_extendedprice": 34512.8d, "l_discount": 0.03d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-04-18", "l_commitdate": "1993-06-13", "l_receiptdate": "1993-05-01", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "ng ideas. special packages haggle alon" }, { "l_orderkey": 2245i32, "l_partkey": 86i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 33.0d, "l_extendedprice": 32540.64d, "l_discount": 0.03d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-06-26", "l_commitdate": "1993-06-11", "l_receiptdate": "1993-07-17", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "ing to the carefully ruthless accounts" }, { "l_orderkey": 4999i32, "l_partkey": 86i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 30.0d, "l_extendedprice": 29582.4d, "l_discount": 0.09d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-07-21", "l_commitdate": "1993-08-11", "l_receiptdate": "1993-08-20", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "s cajole among the blithel" }, { "l_orderkey": 1507i32, "l_partkey": 86i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 39.0d, "l_extendedprice": 38457.12d, "l_discount": 0.03d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-11-04", "l_commitdate": "1993-12-16", "l_receiptdate": "1993-12-03", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "ly even instructions." }, { "l_orderkey": 5702i32, "l_partkey": 86i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 37.0d, "l_extendedprice": 36484.96d, "l_discount": 0.1d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-12-14", "l_commitdate": "1993-10-21", "l_receiptdate": "1994-01-08", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "ix slyly. regular instructions slee" }, { "l_orderkey": 195i32, "l_partkey": 86i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 34.0d, "l_extendedprice": 33526.72d, "l_discount": 0.08d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-01-31", "l_commitdate": "1994-02-11", "l_receiptdate": "1994-02-12", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": " cajole furiously bold i" }, { "l_orderkey": 195i32, "l_partkey": 86i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 41.0d, "l_extendedprice": 40429.28d, "l_discount": 0.06d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-03-14", "l_commitdate": "1994-03-13", "l_receiptdate": "1994-04-09", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "ggle fluffily foxes. fluffily ironic ex" }, { "l_orderkey": 3397i32, "l_partkey": 86i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 33.0d, "l_extendedprice": 32540.64d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-09-04", "l_commitdate": "1994-08-06", "l_receiptdate": "1994-09-22", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "gular accounts. blithely re" }, { "l_orderkey": 64i32, "l_partkey": 86i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 21.0d, "l_extendedprice": 20707.68d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-09-30", "l_commitdate": "1994-09-18", "l_receiptdate": "1994-10-26", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "ch slyly final, thin platelets." }, { "l_orderkey": 4354i32, "l_partkey": 86i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 36.0d, "l_extendedprice": 35498.88d, "l_discount": 0.05d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-11-20", "l_commitdate": "1994-12-06", "l_receiptdate": "1994-12-06", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": " wake slyly eve" }, { "l_orderkey": 4835i32, "l_partkey": 86i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 27.0d, "l_extendedprice": 26624.16d, "l_discount": 0.05d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-12-10", "l_commitdate": "1994-12-13", "l_receiptdate": "1995-01-02", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": " accounts after the car" }, { "l_orderkey": 1092i32, "l_partkey": 86i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 2.0d, "l_extendedprice": 1972.16d, "l_discount": 0.05d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-04-09", "l_commitdate": "1995-05-12", "l_receiptdate": "1995-05-03", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "ans. slyly eve" }, { "l_orderkey": 5985i32, "l_partkey": 86i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 4.0d, "l_extendedprice": 3944.32d, "l_discount": 0.02d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-05-04", "l_commitdate": "1995-04-01", "l_receiptdate": "1995-05-17", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "ole along the quickly slow d" }, { "l_orderkey": 1539i32, "l_partkey": 86i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 11.0d, "l_extendedprice": 10846.88d, "l_discount": 0.01d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-05-27", "l_commitdate": "1995-04-13", "l_receiptdate": "1995-06-10", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "ly express requests. furiously " }, { "l_orderkey": 1637i32, "l_partkey": 86i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 49.0d, "l_extendedprice": 48317.92d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "F", "l_shipdate": "1995-06-08", "l_commitdate": "1995-04-19", "l_receiptdate": "1995-07-01", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": ". blithely i" }, { "l_orderkey": 32i32, "l_partkey": 86i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 44.0d, "l_extendedprice": 43387.52d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-28", "l_commitdate": "1995-08-20", "l_receiptdate": "1995-09-14", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "symptotes nag according to the ironic depo" }, { "l_orderkey": 3111i32, "l_partkey": 86i32, "l_suppkey": 7i32, "l_linenumber": 6i32, "l_quantity": 5.0d, "l_extendedprice": 4930.4d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-30", "l_commitdate": "1995-10-16", "l_receiptdate": "1995-09-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": ". carefully even ideas" }, { "l_orderkey": 35i32, "l_partkey": 86i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 25.0d, "l_extendedprice": 24652.0d, "l_discount": 0.06d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-26", "l_commitdate": "1995-12-25", "l_receiptdate": "1995-12-21", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": " quickly unti" }, { "l_orderkey": 2823i32, "l_partkey": 86i32, "l_suppkey": 7i32, "l_linenumber": 7i32, "l_quantity": 12.0d, "l_extendedprice": 11832.96d, "l_discount": 0.02d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-22", "l_commitdate": "1995-11-20", "l_receiptdate": "1996-01-13", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "the slyly ironic dolphins; fin" }, { "l_orderkey": 1988i32, "l_partkey": 86i32, "l_suppkey": 7i32, "l_linenumber": 6i32, "l_quantity": 9.0d, "l_extendedprice": 8874.72d, "l_discount": 0.08d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-26", "l_commitdate": "1996-01-02", "l_receiptdate": "1996-01-25", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "lar platelets. slyly ironic packa" }, { "l_orderkey": 2823i32, "l_partkey": 86i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 45.0d, "l_extendedprice": 44373.6d, "l_discount": 0.03d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-28", "l_commitdate": "1995-11-27", "l_receiptdate": "1996-01-02", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "furiously special idea" }, { "l_orderkey": 2595i32, "l_partkey": 86i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 30.0d, "l_extendedprice": 29582.4d, "l_discount": 0.09d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-16", "l_commitdate": "1996-01-31", "l_receiptdate": "1996-04-05", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": ". final orbits cajole " }, { "l_orderkey": 1153i32, "l_partkey": 86i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 15.0d, "l_extendedprice": 14791.2d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-04-24", "l_commitdate": "1996-07-17", "l_receiptdate": "1996-04-29", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "uctions boost fluffily according to" }, { "l_orderkey": 2690i32, "l_partkey": 86i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 30.0d, "l_extendedprice": 29582.4d, "l_discount": 0.01d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-20", "l_commitdate": "1996-06-01", "l_receiptdate": "1996-06-04", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "d accounts above the express req" }, { "l_orderkey": 2531i32, "l_partkey": 86i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 20.0d, "l_extendedprice": 19721.6d, "l_discount": 0.06d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-18", "l_commitdate": "1996-06-25", "l_receiptdate": "1996-07-29", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "into beans. furious" }, { "l_orderkey": 2402i32, "l_partkey": 86i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 43.0d, "l_extendedprice": 42401.44d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-17", "l_commitdate": "1996-11-20", "l_receiptdate": "1996-09-22", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "slyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly sl" }, { "l_orderkey": 2695i32, "l_partkey": 86i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 40.0d, "l_extendedprice": 39443.2d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-02", "l_commitdate": "1996-10-26", "l_receiptdate": "1996-11-14", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "ructions. pending" }, { "l_orderkey": 3106i32, "l_partkey": 86i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 22.0d, "l_extendedprice": 21693.76d, "l_discount": 0.03d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-28", "l_commitdate": "1997-02-12", "l_receiptdate": "1997-03-03", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "structions atop the blithely" }, { "l_orderkey": 3490i32, "l_partkey": 86i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 50.0d, "l_extendedprice": 49304.0d, "l_discount": 0.05d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-27", "l_commitdate": "1997-08-15", "l_receiptdate": "1997-06-28", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": " haggle carefu" }, { "l_orderkey": 5861i32, "l_partkey": 86i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 6.0d, "l_extendedprice": 5916.48d, "l_discount": 0.1d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-28", "l_commitdate": "1997-05-18", "l_receiptdate": "1997-08-24", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "olites. slyly" }, { "l_orderkey": 2371i32, "l_partkey": 86i32, "l_suppkey": 7i32, "l_linenumber": 6i32, "l_quantity": 39.0d, "l_extendedprice": 38457.12d, "l_discount": 0.05d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-01", "l_commitdate": "1998-03-13", "l_receiptdate": "1998-04-27", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "tructions. regular, stealthy packages wak" }, { "l_orderkey": 1570i32, "l_partkey": 86i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 7.0d, "l_extendedprice": 6902.56d, "l_discount": 0.05d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-10", "l_commitdate": "1998-06-01", "l_receiptdate": "1998-07-23", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "requests boost quickly re" } ] }
-{ "partkey": 94i32, "lines": [ { "l_orderkey": 5574i32, "l_partkey": 94i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 14.0d, "l_extendedprice": 13917.26d, "l_discount": 0.09d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-05-20", "l_commitdate": "1992-04-09", "l_receiptdate": "1992-05-23", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": " use slyly carefully special requests? slyl" }, { "l_orderkey": 3650i32, "l_partkey": 94i32, "l_suppkey": 8i32, "l_linenumber": 6i32, "l_quantity": 27.0d, "l_extendedprice": 26840.43d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-07-03", "l_commitdate": "1992-07-23", "l_receiptdate": "1992-07-13", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "ular requests snooze fluffily regular pi" }, { "l_orderkey": 3654i32, "l_partkey": 94i32, "l_suppkey": 5i32, "l_linenumber": 5i32, "l_quantity": 34.0d, "l_extendedprice": 33799.06d, "l_discount": 0.04d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-07-26", "l_commitdate": "1992-08-26", "l_receiptdate": "1992-08-12", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": " the quick" }, { "l_orderkey": 5474i32, "l_partkey": 94i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 10.0d, "l_extendedprice": 9940.9d, "l_discount": 0.06d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-08-08", "l_commitdate": "1992-08-10", "l_receiptdate": "1992-08-24", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "pinto bean" }, { "l_orderkey": 4416i32, "l_partkey": 94i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 37.0d, "l_extendedprice": 36781.33d, "l_discount": 0.08d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-10-23", "l_commitdate": "1992-08-23", "l_receiptdate": "1992-11-16", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "fluffily ironic " }, { "l_orderkey": 5954i32, "l_partkey": 94i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 20.0d, "l_extendedprice": 19881.8d, "l_discount": 0.09d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-12-25", "l_commitdate": "1993-02-05", "l_receiptdate": "1992-12-31", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": " accounts wake carefu" }, { "l_orderkey": 5571i32, "l_partkey": 94i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 31.0d, "l_extendedprice": 30816.79d, "l_discount": 0.09d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-01-05", "l_commitdate": "1993-01-18", "l_receiptdate": "1993-02-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "uffily even accounts. quickly re" }, { "l_orderkey": 2084i32, "l_partkey": 94i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 9.0d, "l_extendedprice": 8946.81d, "l_discount": 0.02d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-03-18", "l_commitdate": "1993-06-08", "l_receiptdate": "1993-03-30", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "heaves boost slyly after the pla" }, { "l_orderkey": 3778i32, "l_partkey": 94i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 41.0d, "l_extendedprice": 40757.69d, "l_discount": 0.05d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-06-21", "l_commitdate": "1993-07-27", "l_receiptdate": "1993-07-15", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "e the furiously ironi" }, { "l_orderkey": 2437i32, "l_partkey": 94i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 46.0d, "l_extendedprice": 45728.14d, "l_discount": 0.07d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-08-12", "l_commitdate": "1993-06-16", "l_receiptdate": "1993-08-29", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "e of the bold, dogged requests" }, { "l_orderkey": 193i32, "l_partkey": 94i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 23.0d, "l_extendedprice": 22864.07d, "l_discount": 0.06d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-08-21", "l_commitdate": "1993-10-11", "l_receiptdate": "1993-09-02", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "ly even accounts wake blithely bold" }, { "l_orderkey": 416i32, "l_partkey": 94i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 25.0d, "l_extendedprice": 24852.25d, "l_discount": 0.0d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-10-11", "l_commitdate": "1993-11-26", "l_receiptdate": "1993-10-21", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "y final theodolites about" }, { "l_orderkey": 5189i32, "l_partkey": 94i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 49.0d, "l_extendedprice": 48710.41d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-01-22", "l_commitdate": "1994-01-19", "l_receiptdate": "1994-02-04", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": " requests " }, { "l_orderkey": 195i32, "l_partkey": 94i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 41.0d, "l_extendedprice": 40757.69d, "l_discount": 0.05d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-02-24", "l_commitdate": "1994-02-11", "l_receiptdate": "1994-03-20", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "rts detect in place of t" }, { "l_orderkey": 2182i32, "l_partkey": 94i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 34.0d, "l_extendedprice": 33799.06d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-05-28", "l_commitdate": "1994-06-02", "l_receiptdate": "1994-06-10", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": " slow tithes. ironi" }, { "l_orderkey": 2915i32, "l_partkey": 94i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 12.0d, "l_extendedprice": 11929.08d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-07-18", "l_commitdate": "1994-06-11", "l_receiptdate": "1994-07-27", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "accounts. slyly final" }, { "l_orderkey": 1218i32, "l_partkey": 94i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 41.0d, "l_extendedprice": 40757.69d, "l_discount": 0.06d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-08-04", "l_commitdate": "1994-08-05", "l_receiptdate": "1994-08-11", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "dolphins. theodolites beyond th" }, { "l_orderkey": 224i32, "l_partkey": 94i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 45.0d, "l_extendedprice": 44734.05d, "l_discount": 0.07d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-08-14", "l_commitdate": "1994-09-02", "l_receiptdate": "1994-08-27", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "leep furiously regular requests. furiousl" }, { "l_orderkey": 1762i32, "l_partkey": 94i32, "l_suppkey": 7i32, "l_linenumber": 6i32, "l_quantity": 35.0d, "l_extendedprice": 34793.15d, "l_discount": 0.05d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-11-25", "l_commitdate": "1994-10-21", "l_receiptdate": "1994-11-28", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "ind quickly. accounts ca" }, { "l_orderkey": 3585i32, "l_partkey": 94i32, "l_suppkey": 7i32, "l_linenumber": 6i32, "l_quantity": 7.0d, "l_extendedprice": 6958.63d, "l_discount": 0.1d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-12-13", "l_commitdate": "1995-01-20", "l_receiptdate": "1995-01-05", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "dependencies sleep un" }, { "l_orderkey": 1281i32, "l_partkey": 94i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 2.0d, "l_extendedprice": 1988.18d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-12-27", "l_commitdate": "1995-01-26", "l_receiptdate": "1995-01-21", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "ly unusual requests. final reques" }, { "l_orderkey": 4642i32, "l_partkey": 94i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 18.0d, "l_extendedprice": 17893.62d, "l_discount": 0.0d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "F", "l_shipdate": "1995-06-16", "l_commitdate": "1995-04-16", "l_receiptdate": "1995-06-21", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "ily pending accounts hag" }, { "l_orderkey": 2946i32, "l_partkey": 94i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 48.0d, "l_extendedprice": 47716.32d, "l_discount": 0.03d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-02", "l_commitdate": "1996-03-31", "l_receiptdate": "1996-06-16", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "oss the platelets. furi" }, { "l_orderkey": 3173i32, "l_partkey": 94i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 2.0d, "l_extendedprice": 1988.18d, "l_discount": 0.0d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-15", "l_commitdate": "1996-11-06", "l_receiptdate": "1996-10-18", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "ular pearls" }, { "l_orderkey": 1697i32, "l_partkey": 94i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 49.0d, "l_extendedprice": 48710.41d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-07", "l_commitdate": "1997-01-02", "l_receiptdate": "1996-12-31", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "lar foxes. fluffily furious ideas doubt qu" }, { "l_orderkey": 3013i32, "l_partkey": 94i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 31.0d, "l_extendedprice": 30816.79d, "l_discount": 0.08d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-03", "l_commitdate": "1997-04-05", "l_receiptdate": "1997-05-25", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "y furious depen" }, { "l_orderkey": 4001i32, "l_partkey": 94i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 18.0d, "l_extendedprice": 17893.62d, "l_discount": 0.07d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-04", "l_commitdate": "1997-06-22", "l_receiptdate": "1997-06-13", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "lithely ironic d" }, { "l_orderkey": 2533i32, "l_partkey": 94i32, "l_suppkey": 7i32, "l_linenumber": 7i32, "l_quantity": 14.0d, "l_extendedprice": 13917.26d, "l_discount": 0.06d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-06", "l_commitdate": "1997-05-08", "l_receiptdate": "1997-08-03", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "ut the pending, special depos" }, { "l_orderkey": 2468i32, "l_partkey": 94i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 46.0d, "l_extendedprice": 45728.14d, "l_discount": 0.0d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-16", "l_commitdate": "1997-08-09", "l_receiptdate": "1997-08-07", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "unusual theodolites su" }, { "l_orderkey": 4353i32, "l_partkey": 94i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 22.0d, "l_extendedprice": 21869.98d, "l_discount": 0.05d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-19", "l_commitdate": "1998-01-23", "l_receiptdate": "1998-02-10", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "ent packages. accounts are slyly. " }, { "l_orderkey": 1696i32, "l_partkey": 94i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 43.0d, "l_extendedprice": 42745.87d, "l_discount": 0.03d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-02-14", "l_commitdate": "1998-03-29", "l_receiptdate": "1998-02-20", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "arefully regular dep" }, { "l_orderkey": 4039i32, "l_partkey": 94i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 38.0d, "l_extendedprice": 37775.42d, "l_discount": 0.03d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-09", "l_commitdate": "1997-12-31", "l_receiptdate": "1998-03-21", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "sual asymptotes. ironic deposits nag aft" } ] }
-{ "partkey": 95i32, "lines": [ { "l_orderkey": 3271i32, "l_partkey": 95i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 14.0d, "l_extendedprice": 13931.26d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-02-24", "l_commitdate": "1992-02-14", "l_receiptdate": "1992-03-23", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "ending, even packa" }, { "l_orderkey": 801i32, "l_partkey": 95i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 21.0d, "l_extendedprice": 20896.89d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-03-14", "l_commitdate": "1992-04-01", "l_receiptdate": "1992-04-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "wake silently furiously idle deposits. " }, { "l_orderkey": 2176i32, "l_partkey": 95i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 14.0d, "l_extendedprice": 13931.26d, "l_discount": 0.0d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-11-17", "l_commitdate": "1993-01-07", "l_receiptdate": "1992-12-03", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "ely ironic platelets " }, { "l_orderkey": 3328i32, "l_partkey": 95i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 42.0d, "l_extendedprice": 41793.78d, "l_discount": 0.01d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-11-24", "l_commitdate": "1992-12-20", "l_receiptdate": "1992-12-06", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "ronic requests" }, { "l_orderkey": 4641i32, "l_partkey": 95i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 39.0d, "l_extendedprice": 38808.51d, "l_discount": 0.06d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-02-10", "l_commitdate": "1993-03-06", "l_receiptdate": "1993-02-15", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": " the bold reque" }, { "l_orderkey": 3461i32, "l_partkey": 95i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 41.0d, "l_extendedprice": 40798.69d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-02-19", "l_commitdate": "1993-04-20", "l_receiptdate": "1993-02-21", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "heodolites. blithely ironi" }, { "l_orderkey": 2628i32, "l_partkey": 95i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 23.0d, "l_extendedprice": 22887.07d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-10-27", "l_commitdate": "1994-01-08", "l_receiptdate": "1993-11-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "usual packages sleep about the fina" }, { "l_orderkey": 641i32, "l_partkey": 95i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 40.0d, "l_extendedprice": 39803.6d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-11-22", "l_commitdate": "1993-10-20", "l_receiptdate": "1993-12-11", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "lets. furiously regular requests cajo" }, { "l_orderkey": 1831i32, "l_partkey": 95i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 23.0d, "l_extendedprice": 22887.07d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-12-21", "l_commitdate": "1994-02-08", "l_receiptdate": "1994-01-04", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "ests. express pinto beans abou" }, { "l_orderkey": 1287i32, "l_partkey": 95i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 10.0d, "l_extendedprice": 9950.9d, "l_discount": 0.08d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-07-08", "l_commitdate": "1994-08-28", "l_receiptdate": "1994-07-10", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "thely alongside of the unusual, ironic pa" }, { "l_orderkey": 4772i32, "l_partkey": 95i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 31.0d, "l_extendedprice": 30847.79d, "l_discount": 0.02d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-10-02", "l_commitdate": "1994-10-21", "l_receiptdate": "1994-10-13", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "ests are thinly. furiously unusua" }, { "l_orderkey": 5317i32, "l_partkey": 95i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 19.0d, "l_extendedprice": 18906.71d, "l_discount": 0.07d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-12-15", "l_commitdate": "1994-10-18", "l_receiptdate": "1994-12-27", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "onic requests boost bli" }, { "l_orderkey": 3430i32, "l_partkey": 95i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 5.0d, "l_extendedprice": 4975.45d, "l_discount": 0.05d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-04-02", "l_commitdate": "1995-02-12", "l_receiptdate": "1995-04-08", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "even accounts haggle slyly bol" }, { "l_orderkey": 4327i32, "l_partkey": 95i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 18.0d, "l_extendedprice": 17911.62d, "l_discount": 0.08d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "F", "l_shipdate": "1995-06-16", "l_commitdate": "1995-04-20", "l_receiptdate": "1995-07-12", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "y final excuses. ironic, special requests a" }, { "l_orderkey": 3590i32, "l_partkey": 95i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 19.0d, "l_extendedprice": 18906.71d, "l_discount": 0.03d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-02", "l_commitdate": "1995-06-20", "l_receiptdate": "1995-08-08", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "special pinto beans. blithely reg" }, { "l_orderkey": 610i32, "l_partkey": 95i32, "l_suppkey": 7i32, "l_linenumber": 6i32, "l_quantity": 5.0d, "l_extendedprice": 4975.45d, "l_discount": 0.0d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-11", "l_commitdate": "1995-10-22", "l_receiptdate": "1995-08-26", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "n pinto beans. iro" }, { "l_orderkey": 5799i32, "l_partkey": 95i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 41.0d, "l_extendedprice": 40798.69d, "l_discount": 0.04d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-13", "l_commitdate": "1995-10-31", "l_receiptdate": "1995-11-16", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "al accounts sleep ruthlessl" }, { "l_orderkey": 3235i32, "l_partkey": 95i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 43.0d, "l_extendedprice": 42788.87d, "l_discount": 0.1d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-25", "l_commitdate": "1996-01-23", "l_receiptdate": "1996-01-09", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "ckly final instru" }, { "l_orderkey": 7i32, "l_partkey": 95i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 46.0d, "l_extendedprice": 45774.14d, "l_discount": 0.1d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-15", "l_commitdate": "1996-03-27", "l_receiptdate": "1996-02-03", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": " unusual reques" }, { "l_orderkey": 3460i32, "l_partkey": 95i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 50.0d, "l_extendedprice": 49754.5d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-30", "l_commitdate": "1995-12-10", "l_receiptdate": "1996-02-06", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "e slyly about the sly" }, { "l_orderkey": 39i32, "l_partkey": 95i32, "l_suppkey": 7i32, "l_linenumber": 6i32, "l_quantity": 40.0d, "l_extendedprice": 39803.6d, "l_discount": 0.06d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-08", "l_commitdate": "1996-10-22", "l_receiptdate": "1997-01-01", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "quickly ironic fox" }, { "l_orderkey": 2273i32, "l_partkey": 95i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 8.0d, "l_extendedprice": 7960.72d, "l_discount": 0.0d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-15", "l_commitdate": "1997-02-27", "l_receiptdate": "1997-01-10", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "dependencies. slyly ir" }, { "l_orderkey": 4484i32, "l_partkey": 95i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 4.0d, "l_extendedprice": 3980.36d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-09", "l_commitdate": "1997-02-11", "l_receiptdate": "1997-04-12", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "packages de" }, { "l_orderkey": 2434i32, "l_partkey": 95i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 1.0d, "l_extendedprice": 995.09d, "l_discount": 0.01d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-02", "l_commitdate": "1997-05-28", "l_receiptdate": "1997-08-19", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": " furiously express packages. ironic, pend" }, { "l_orderkey": 453i32, "l_partkey": 95i32, "l_suppkey": 7i32, "l_linenumber": 6i32, "l_quantity": 28.0d, "l_extendedprice": 27862.52d, "l_discount": 0.07d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-16", "l_commitdate": "1997-08-12", "l_receiptdate": "1997-08-27", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "final dependencies. slyly special pl" }, { "l_orderkey": 1794i32, "l_partkey": 95i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 3.0d, "l_extendedprice": 2985.27d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-11-15", "l_commitdate": "1997-12-16", "l_receiptdate": "1997-11-20", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": " sentiments according to the q" }, { "l_orderkey": 1667i32, "l_partkey": 95i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 48.0d, "l_extendedprice": 47764.32d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-27", "l_commitdate": "1998-01-06", "l_receiptdate": "1998-02-09", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "tes sleep furiously. carefully eve" }, { "l_orderkey": 838i32, "l_partkey": 95i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 23.0d, "l_extendedprice": 22887.07d, "l_discount": 0.1d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-26", "l_commitdate": "1998-04-17", "l_receiptdate": "1998-04-02", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "ets haggle furiously furiously regular r" }, { "l_orderkey": 1348i32, "l_partkey": 95i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 13.0d, "l_extendedprice": 12936.17d, "l_discount": 0.01d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-28", "l_commitdate": "1998-06-05", "l_receiptdate": "1998-05-12", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": " blithely r" }, { "l_orderkey": 68i32, "l_partkey": 95i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 20.0d, "l_extendedprice": 19901.8d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-27", "l_commitdate": "1998-05-23", "l_receiptdate": "1998-07-02", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": " excuses integrate fluffily " }, { "l_orderkey": 1124i32, "l_partkey": 95i32, "l_suppkey": 6i32, "l_linenumber": 7i32, "l_quantity": 1.0d, "l_extendedprice": 995.09d, "l_discount": 0.09d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-10-07", "l_commitdate": "1998-08-31", "l_receiptdate": "1998-10-12", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "ly bold accou" } ] }
-{ "partkey": 96i32, "lines": [ { "l_orderkey": 2052i32, "l_partkey": 96i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 47.0d, "l_extendedprice": 46816.23d, "l_discount": 0.08d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-06-18", "l_commitdate": "1992-05-16", "l_receiptdate": "1992-07-02", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "final requests. stealt" }, { "l_orderkey": 3172i32, "l_partkey": 96i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 4.0d, "l_extendedprice": 3984.36d, "l_discount": 0.06d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-09-26", "l_commitdate": "1992-08-15", "l_receiptdate": "1992-10-20", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "s are slyly thin package" }, { "l_orderkey": 1159i32, "l_partkey": 96i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 7.0d, "l_extendedprice": 6972.63d, "l_discount": 0.08d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-11-25", "l_commitdate": "1992-10-27", "l_receiptdate": "1992-12-20", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "olve somet" }, { "l_orderkey": 4067i32, "l_partkey": 96i32, "l_suppkey": 8i32, "l_linenumber": 6i32, "l_quantity": 12.0d, "l_extendedprice": 11953.08d, "l_discount": 0.04d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-12-12", "l_commitdate": "1992-11-28", "l_receiptdate": "1992-12-15", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "lly slyly even theodol" }, { "l_orderkey": 4067i32, "l_partkey": 96i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 14.0d, "l_extendedprice": 13945.26d, "l_discount": 0.0d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-02-03", "l_commitdate": "1992-12-02", "l_receiptdate": "1993-02-07", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "ructions. quickly ironic accounts detect " }, { "l_orderkey": 323i32, "l_partkey": 96i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 18.0d, "l_extendedprice": 17929.62d, "l_discount": 0.06d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-04-13", "l_commitdate": "1994-06-02", "l_receiptdate": "1994-05-10", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "posits cajole furiously pinto beans. " }, { "l_orderkey": 1063i32, "l_partkey": 96i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 42.0d, "l_extendedprice": 41835.78d, "l_discount": 0.03d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-07-10", "l_commitdate": "1994-05-25", "l_receiptdate": "1994-07-26", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "tructions about the blithely ex" }, { "l_orderkey": 3268i32, "l_partkey": 96i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 1.0d, "l_extendedprice": 996.09d, "l_discount": 0.06d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-09-12", "l_commitdate": "1994-08-31", "l_receiptdate": "1994-09-16", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": ". ironic, bold requests use carefull" }, { "l_orderkey": 645i32, "l_partkey": 96i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 49.0d, "l_extendedprice": 48808.41d, "l_discount": 0.05d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-01-24", "l_commitdate": "1995-01-06", "l_receiptdate": "1995-02-17", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "y. slyly iron" }, { "l_orderkey": 742i32, "l_partkey": 96i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 15.0d, "l_extendedprice": 14941.35d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-02-26", "l_commitdate": "1995-03-20", "l_receiptdate": "1995-03-03", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "blithely unusual pinto" }, { "l_orderkey": 4134i32, "l_partkey": 96i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 34.0d, "l_extendedprice": 33867.06d, "l_discount": 0.01d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-05-06", "l_commitdate": "1995-03-28", "l_receiptdate": "1995-05-13", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "ual asymptotes wake carefully alo" }, { "l_orderkey": 5383i32, "l_partkey": 96i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 12.0d, "l_extendedprice": 11953.08d, "l_discount": 0.04d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-02", "l_commitdate": "1995-08-16", "l_receiptdate": "1995-08-01", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "y regular instructi" }, { "l_orderkey": 3590i32, "l_partkey": 96i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 43.0d, "l_extendedprice": 42831.87d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-12", "l_commitdate": "1995-07-25", "l_receiptdate": "1995-07-16", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "s could have to use" }, { "l_orderkey": 4482i32, "l_partkey": 96i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 32.0d, "l_extendedprice": 31874.88d, "l_discount": 0.01d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-16", "l_commitdate": "1995-06-26", "l_receiptdate": "1995-09-10", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "eans wake according " }, { "l_orderkey": 2181i32, "l_partkey": 96i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 9.0d, "l_extendedprice": 8964.81d, "l_discount": 0.06d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-05", "l_commitdate": "1995-12-05", "l_receiptdate": "1996-01-08", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "ward the quietly even requests. ir" }, { "l_orderkey": 1760i32, "l_partkey": 96i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 38.0d, "l_extendedprice": 37851.42d, "l_discount": 0.09d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-15", "l_commitdate": "1996-06-29", "l_receiptdate": "1996-07-11", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "tions. blithely regular orbits against the " }, { "l_orderkey": 3971i32, "l_partkey": 96i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 47.0d, "l_extendedprice": 46816.23d, "l_discount": 0.06d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-07", "l_commitdate": "1996-08-08", "l_receiptdate": "1996-08-01", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "e slyly final dependencies x-ray " }, { "l_orderkey": 5637i32, "l_partkey": 96i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 22.0d, "l_extendedprice": 21913.98d, "l_discount": 0.01d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-28", "l_commitdate": "1996-07-30", "l_receiptdate": "1996-09-17", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "nding requests are ca" }, { "l_orderkey": 1671i32, "l_partkey": 96i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 4.0d, "l_extendedprice": 3984.36d, "l_discount": 0.05d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-30", "l_commitdate": "1996-09-19", "l_receiptdate": "1996-09-23", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "lyly regular ac" }, { "l_orderkey": 4197i32, "l_partkey": 96i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 23.0d, "l_extendedprice": 22910.07d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-10", "l_commitdate": "1996-10-10", "l_receiptdate": "1996-09-25", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "l instructions print slyly past the reg" }, { "l_orderkey": 4262i32, "l_partkey": 96i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 5.0d, "l_extendedprice": 4980.45d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-27", "l_commitdate": "1996-09-05", "l_receiptdate": "1996-10-25", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "blithely final asymptotes integrate" }, { "l_orderkey": 3943i32, "l_partkey": 96i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 9.0d, "l_extendedprice": 8964.81d, "l_discount": 0.0d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-27", "l_commitdate": "1997-01-03", "l_receiptdate": "1996-12-17", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "refully ironic " }, { "l_orderkey": 3619i32, "l_partkey": 96i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 49.0d, "l_extendedprice": 48808.41d, "l_discount": 0.01d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-22", "l_commitdate": "1996-12-21", "l_receiptdate": "1997-02-17", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": " waters. furiously even deposits " }, { "l_orderkey": 260i32, "l_partkey": 96i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 44.0d, "l_extendedprice": 43827.96d, "l_discount": 0.01d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-26", "l_commitdate": "1997-02-03", "l_receiptdate": "1997-04-19", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "above the blithely ironic instr" }, { "l_orderkey": 1441i32, "l_partkey": 96i32, "l_suppkey": 10i32, "l_linenumber": 7i32, "l_quantity": 50.0d, "l_extendedprice": 49804.5d, "l_discount": 0.03d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-07", "l_commitdate": "1997-05-12", "l_receiptdate": "1997-06-08", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": " requests. blithely e" }, { "l_orderkey": 5411i32, "l_partkey": 96i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 17.0d, "l_extendedprice": 16933.53d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-22", "l_commitdate": "1997-07-14", "l_receiptdate": "1997-07-30", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": " slyly slyly even deposits. carefully b" }, { "l_orderkey": 4450i32, "l_partkey": 96i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 45.0d, "l_extendedprice": 44824.05d, "l_discount": 0.08d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-01", "l_commitdate": "1997-10-06", "l_receiptdate": "1997-09-19", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "express ideas are furiously regular" }, { "l_orderkey": 453i32, "l_partkey": 96i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 45.0d, "l_extendedprice": 44824.05d, "l_discount": 0.1d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-18", "l_commitdate": "1997-06-29", "l_receiptdate": "1997-10-14", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "ironic foxes. slyly pending depos" }, { "l_orderkey": 4225i32, "l_partkey": 96i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 23.0d, "l_extendedprice": 22910.07d, "l_discount": 0.02d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-18", "l_commitdate": "1997-08-31", "l_receiptdate": "1997-10-11", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": ". quickly b" }, { "l_orderkey": 5185i32, "l_partkey": 96i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 30.0d, "l_extendedprice": 29882.7d, "l_discount": 0.09d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-10-17", "l_commitdate": "1997-09-16", "l_receiptdate": "1997-10-23", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "ress packages are furiously" }, { "l_orderkey": 5541i32, "l_partkey": 96i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 39.0d, "l_extendedprice": 38847.51d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-11-17", "l_commitdate": "1997-12-27", "l_receiptdate": "1997-12-11", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "ding theodolites haggle against the slyly " }, { "l_orderkey": 5026i32, "l_partkey": 96i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 13.0d, "l_extendedprice": 12949.17d, "l_discount": 0.02d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-23", "l_commitdate": "1997-11-02", "l_receiptdate": "1998-01-03", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "endencies sleep carefully alongs" }, { "l_orderkey": 5477i32, "l_partkey": 96i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 23.0d, "l_extendedprice": 22910.07d, "l_discount": 0.0d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-04", "l_commitdate": "1998-02-23", "l_receiptdate": "1998-01-24", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "telets wake blithely ab" }, { "l_orderkey": 4486i32, "l_partkey": 96i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 47.0d, "l_extendedprice": 46816.23d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-09", "l_commitdate": "1998-05-24", "l_receiptdate": "1998-05-07", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "ts around the quiet packages ar" }, { "l_orderkey": 4229i32, "l_partkey": 96i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 44.0d, "l_extendedprice": 43827.96d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-29", "l_commitdate": "1998-05-12", "l_receiptdate": "1998-06-16", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "s. carefully e" }, { "l_orderkey": 1315i32, "l_partkey": 96i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 27.0d, "l_extendedprice": 26894.43d, "l_discount": 0.01d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-04", "l_commitdate": "1998-06-13", "l_receiptdate": "1998-07-28", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "latelets. fluffily ironic account" }, { "l_orderkey": 1920i32, "l_partkey": 96i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 24.0d, "l_extendedprice": 23906.16d, "l_discount": 0.04d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-09-27", "l_commitdate": "1998-08-23", "l_receiptdate": "1998-10-15", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "thely. bold, pend" }, { "l_orderkey": 4678i32, "l_partkey": 96i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 13.0d, "l_extendedprice": 12949.17d, "l_discount": 0.1d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-11-03", "l_commitdate": "1998-10-17", "l_receiptdate": "1998-11-06", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "its. carefully final fr" } ] }
-{ "partkey": 99i32, "lines": [ { "l_orderkey": 4998i32, "l_partkey": 99i32, "l_suppkey": 1i32, "l_linenumber": 6i32, "l_quantity": 8.0d, "l_extendedprice": 7992.72d, "l_discount": 0.03d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-05-01", "l_commitdate": "1992-03-03", "l_receiptdate": "1992-05-24", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "ions nag quickly according to the theodolit" }, { "l_orderkey": 1409i32, "l_partkey": 99i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 23.0d, "l_extendedprice": 22979.07d, "l_discount": 0.01d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-04-18", "l_commitdate": "1993-02-25", "l_receiptdate": "1993-05-06", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "ions. slyly ironic packages wake quick" }, { "l_orderkey": 2149i32, "l_partkey": 99i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 10.0d, "l_extendedprice": 9990.9d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-06-09", "l_commitdate": "1993-04-17", "l_receiptdate": "1993-06-16", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "eposits sleep above" }, { "l_orderkey": 259i32, "l_partkey": 99i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 14.0d, "l_extendedprice": 13987.26d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-12-17", "l_commitdate": "1993-12-09", "l_receiptdate": "1993-12-31", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "ons against the express acco" }, { "l_orderkey": 1732i32, "l_partkey": 99i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 36.0d, "l_extendedprice": 35967.24d, "l_discount": 0.01d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-03-15", "l_commitdate": "1994-02-09", "l_receiptdate": "1994-04-02", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "ve the accounts. slowly ironic multip" }, { "l_orderkey": 3586i32, "l_partkey": 99i32, "l_suppkey": 1i32, "l_linenumber": 6i32, "l_quantity": 8.0d, "l_extendedprice": 7992.72d, "l_discount": 0.09d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-03-18", "l_commitdate": "1994-01-17", "l_receiptdate": "1994-04-06", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": " ironic pinto beans cajole carefully theo" }, { "l_orderkey": 5509i32, "l_partkey": 99i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 17.0d, "l_extendedprice": 16984.53d, "l_discount": 0.03d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-07-01", "l_commitdate": "1994-06-30", "l_receiptdate": "1994-07-31", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "ccounts wake ar" }, { "l_orderkey": 5921i32, "l_partkey": 99i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 44.0d, "l_extendedprice": 43959.96d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-07-14", "l_commitdate": "1994-06-30", "l_receiptdate": "1994-07-15", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "ain about the special" }, { "l_orderkey": 646i32, "l_partkey": 99i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 34.0d, "l_extendedprice": 33969.06d, "l_discount": 0.01d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-12-28", "l_commitdate": "1994-12-27", "l_receiptdate": "1994-12-31", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "slow accounts. fluffily idle instructions" }, { "l_orderkey": 4290i32, "l_partkey": 99i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 3.0d, "l_extendedprice": 2997.27d, "l_discount": 0.09d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-03-25", "l_commitdate": "1995-03-07", "l_receiptdate": "1995-04-11", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "lar platelets cajole" }, { "l_orderkey": 2982i32, "l_partkey": 99i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 13.0d, "l_extendedprice": 12988.17d, "l_discount": 0.02d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-03-31", "l_commitdate": "1995-05-07", "l_receiptdate": "1995-04-18", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "regular deposits unwind alongside " }, { "l_orderkey": 197i32, "l_partkey": 99i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 39.0d, "l_extendedprice": 38964.51d, "l_discount": 0.02d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-21", "l_commitdate": "1995-07-01", "l_receiptdate": "1995-08-14", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "press accounts. daringly sp" }, { "l_orderkey": 2823i32, "l_partkey": 99i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 18.0d, "l_extendedprice": 17983.62d, "l_discount": 0.04d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-09", "l_commitdate": "1995-10-30", "l_receiptdate": "1995-11-19", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "eas. decoys cajole deposi" }, { "l_orderkey": 5447i32, "l_partkey": 99i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 31.0d, "l_extendedprice": 30971.79d, "l_discount": 0.09d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-14", "l_commitdate": "1996-05-07", "l_receiptdate": "1996-07-17", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": " foxes sleep. blithely unusual accounts det" }, { "l_orderkey": 2599i32, "l_partkey": 99i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 29.0d, "l_extendedprice": 28973.61d, "l_discount": 0.09d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-10", "l_commitdate": "1996-12-10", "l_receiptdate": "1997-02-02", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "ly express dolphins. special, " }, { "l_orderkey": 288i32, "l_partkey": 99i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 36.0d, "l_extendedprice": 35967.24d, "l_discount": 0.02d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-22", "l_commitdate": "1997-05-07", "l_receiptdate": "1997-03-07", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "yly pending excu" }, { "l_orderkey": 4002i32, "l_partkey": 99i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 4.0d, "l_extendedprice": 3996.36d, "l_discount": 0.08d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-06", "l_commitdate": "1997-06-15", "l_receiptdate": "1997-05-24", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "ccording to the careful" }, { "l_orderkey": 803i32, "l_partkey": 99i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 21.0d, "l_extendedprice": 20980.89d, "l_discount": 0.08d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-25", "l_commitdate": "1997-06-30", "l_receiptdate": "1997-09-10", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "ironic packages cajole slyly. un" }, { "l_orderkey": 3462i32, "l_partkey": 99i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 2.0d, "l_extendedprice": 1998.18d, "l_discount": 0.09d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-10", "l_commitdate": "1997-08-08", "l_receiptdate": "1997-09-19", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "nic packages. even accounts alongside " }, { "l_orderkey": 1251i32, "l_partkey": 99i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 37.0d, "l_extendedprice": 36966.33d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-11", "l_commitdate": "1997-12-01", "l_receiptdate": "1998-01-23", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "finally bold requests" }, { "l_orderkey": 1893i32, "l_partkey": 99i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 43.0d, "l_extendedprice": 42960.87d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-25", "l_commitdate": "1998-01-06", "l_receiptdate": "1998-02-14", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "he carefully regular " }, { "l_orderkey": 3303i32, "l_partkey": 99i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 37.0d, "l_extendedprice": 36966.33d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-02-16", "l_commitdate": "1998-03-07", "l_receiptdate": "1998-02-18", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": " carefully ironic asympt" } ] }
-{ "partkey": 102i32, "lines": [ { "l_orderkey": 5415i32, "l_partkey": 102i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 44.0d, "l_extendedprice": 44092.4d, "l_discount": 0.0d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-08-19", "l_commitdate": "1992-10-26", "l_receiptdate": "1992-09-17", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": " requests. unusual theodolites sleep agains" }, { "l_orderkey": 5408i32, "l_partkey": 102i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 2.0d, "l_extendedprice": 2004.2d, "l_discount": 0.07d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-08-21", "l_commitdate": "1992-10-03", "l_receiptdate": "1992-08-28", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "cross the dolphins h" }, { "l_orderkey": 674i32, "l_partkey": 102i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 23.0d, "l_extendedprice": 23048.3d, "l_discount": 0.06d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-10-25", "l_commitdate": "1992-10-15", "l_receiptdate": "1992-11-03", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "ve the quickly even deposits. blithe" }, { "l_orderkey": 5415i32, "l_partkey": 102i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 6.0d, "l_extendedprice": 6012.6d, "l_discount": 0.1d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-10-28", "l_commitdate": "1992-09-09", "l_receiptdate": "1992-11-20", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "ges around the fur" }, { "l_orderkey": 929i32, "l_partkey": 102i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 7.0d, "l_extendedprice": 7014.7d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-12-24", "l_commitdate": "1992-12-19", "l_receiptdate": "1993-01-08", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "ithely. slyly c" }, { "l_orderkey": 167i32, "l_partkey": 102i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 28.0d, "l_extendedprice": 28058.8d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-02-19", "l_commitdate": "1993-02-16", "l_receiptdate": "1993-03-03", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "sly during the u" }, { "l_orderkey": 2305i32, "l_partkey": 102i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 32.0d, "l_extendedprice": 32067.2d, "l_discount": 0.03d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-04-02", "l_commitdate": "1993-03-18", "l_receiptdate": "1993-04-03", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": " haggle caref" }, { "l_orderkey": 4166i32, "l_partkey": 102i32, "l_suppkey": 5i32, "l_linenumber": 6i32, "l_quantity": 6.0d, "l_extendedprice": 6012.6d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-04-30", "l_commitdate": "1993-04-17", "l_receiptdate": "1993-05-08", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "ily ironic deposits print furiously. iron" }, { "l_orderkey": 5792i32, "l_partkey": 102i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 31.0d, "l_extendedprice": 31065.1d, "l_discount": 0.02d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-06-17", "l_commitdate": "1993-05-05", "l_receiptdate": "1993-07-01", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "s? furiously even instructions " }, { "l_orderkey": 4007i32, "l_partkey": 102i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 5.0d, "l_extendedprice": 5010.5d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-09-17", "l_commitdate": "1993-08-29", "l_receiptdate": "1993-10-12", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "y unusual packa" }, { "l_orderkey": 2919i32, "l_partkey": 102i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 2.0d, "l_extendedprice": 2004.2d, "l_discount": 0.03d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-12-28", "l_commitdate": "1994-02-23", "l_receiptdate": "1994-01-18", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "re slyly. regular ideas detect furiousl" }, { "l_orderkey": 2919i32, "l_partkey": 102i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 44.0d, "l_extendedprice": 44092.4d, "l_discount": 0.0d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-02-04", "l_commitdate": "1994-02-03", "l_receiptdate": "1994-03-02", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "es doze around the furiously " }, { "l_orderkey": 2854i32, "l_partkey": 102i32, "l_suppkey": 3i32, "l_linenumber": 5i32, "l_quantity": 7.0d, "l_extendedprice": 7014.7d, "l_discount": 0.03d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-09-23", "l_commitdate": "1994-08-14", "l_receiptdate": "1994-10-10", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": " the pending" }, { "l_orderkey": 5984i32, "l_partkey": 102i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 25.0d, "l_extendedprice": 25052.5d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-10-06", "l_commitdate": "1994-07-21", "l_receiptdate": "1994-10-28", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "gular accounts. even packages nag slyly" }, { "l_orderkey": 3042i32, "l_partkey": 102i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 28.0d, "l_extendedprice": 28058.8d, "l_discount": 0.05d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-11-24", "l_commitdate": "1995-01-02", "l_receiptdate": "1994-12-06", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "ng the furiously r" }, { "l_orderkey": 4835i32, "l_partkey": 102i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 23.0d, "l_extendedprice": 23048.3d, "l_discount": 0.08d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-02-05", "l_commitdate": "1995-01-04", "l_receiptdate": "1995-02-28", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "e carefully regular foxes. deposits are sly" }, { "l_orderkey": 742i32, "l_partkey": 102i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 24.0d, "l_extendedprice": 24050.4d, "l_discount": 0.08d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-02-12", "l_commitdate": "1995-03-12", "l_receiptdate": "1995-02-14", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "affix slyly. furiously i" }, { "l_orderkey": 742i32, "l_partkey": 102i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 46.0d, "l_extendedprice": 46096.6d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-03-12", "l_commitdate": "1995-03-20", "l_receiptdate": "1995-03-16", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "e slyly bold deposits cajole according to" }, { "l_orderkey": 3844i32, "l_partkey": 102i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 5.0d, "l_extendedprice": 5010.5d, "l_discount": 0.1d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-04-29", "l_commitdate": "1995-02-24", "l_receiptdate": "1995-05-05", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": " unwind quickly about the pending, i" }, { "l_orderkey": 897i32, "l_partkey": 102i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 2.0d, "l_extendedprice": 2004.2d, "l_discount": 0.08d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-05-22", "l_commitdate": "1995-05-07", "l_receiptdate": "1995-06-16", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "into beans. slyly special fox" }, { "l_orderkey": 1538i32, "l_partkey": 102i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 32.0d, "l_extendedprice": 32067.2d, "l_discount": 0.05d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-08", "l_commitdate": "1995-07-29", "l_receiptdate": "1995-08-01", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "uses maintain blithely. fluffily" }, { "l_orderkey": 5696i32, "l_partkey": 102i32, "l_suppkey": 9i32, "l_linenumber": 7i32, "l_quantity": 6.0d, "l_extendedprice": 6012.6d, "l_discount": 0.07d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-03", "l_commitdate": "1995-07-15", "l_receiptdate": "1995-09-01", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "n patterns lose slyly fina" }, { "l_orderkey": 1958i32, "l_partkey": 102i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 4.0d, "l_extendedprice": 4008.4d, "l_discount": 0.04d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-24", "l_commitdate": "1995-12-09", "l_receiptdate": "1995-10-28", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "he slyly even dependencies " }, { "l_orderkey": 5217i32, "l_partkey": 102i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 23.0d, "l_extendedprice": 23048.3d, "l_discount": 0.03d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-15", "l_commitdate": "1995-12-17", "l_receiptdate": "1995-11-27", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "pending packages cajole ne" }, { "l_orderkey": 2693i32, "l_partkey": 102i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 43.0d, "l_extendedprice": 43090.3d, "l_discount": 0.03d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-24", "l_commitdate": "1996-10-24", "l_receiptdate": "1996-11-03", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "as are according to th" }, { "l_orderkey": 2119i32, "l_partkey": 102i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 36.0d, "l_extendedprice": 36075.6d, "l_discount": 0.04d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-10", "l_commitdate": "1996-10-25", "l_receiptdate": "1996-12-03", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "ly bold foxes. ironic accoun" }, { "l_orderkey": 2662i32, "l_partkey": 102i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 43.0d, "l_extendedprice": 43090.3d, "l_discount": 0.09d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-24", "l_commitdate": "1996-11-04", "l_receiptdate": "1996-12-08", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": ". slyly specia" }, { "l_orderkey": 5540i32, "l_partkey": 102i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 2.0d, "l_extendedprice": 2004.2d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-12", "l_commitdate": "1997-01-09", "l_receiptdate": "1996-12-25", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "nic asymptotes could hav" }, { "l_orderkey": 5762i32, "l_partkey": 102i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 27.0d, "l_extendedprice": 27056.7d, "l_discount": 0.02d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-21", "l_commitdate": "1997-05-08", "l_receiptdate": "1997-03-23", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "across the bold ideas. carefully sp" }, { "l_orderkey": 4453i32, "l_partkey": 102i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 26.0d, "l_extendedprice": 26054.6d, "l_discount": 0.06d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-07", "l_commitdate": "1997-06-07", "l_receiptdate": "1997-05-22", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "express packages are" }, { "l_orderkey": 3527i32, "l_partkey": 102i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 47.0d, "l_extendedprice": 47098.7d, "l_discount": 0.07d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-14", "l_commitdate": "1997-07-29", "l_receiptdate": "1997-07-21", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "unts. express re" }, { "l_orderkey": 4866i32, "l_partkey": 102i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 1.0d, "l_extendedprice": 1002.1d, "l_discount": 0.06d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-10-15", "l_commitdate": "1997-10-01", "l_receiptdate": "1997-11-14", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "latelets nag. q" }, { "l_orderkey": 4131i32, "l_partkey": 102i32, "l_suppkey": 7i32, "l_linenumber": 6i32, "l_quantity": 47.0d, "l_extendedprice": 47098.7d, "l_discount": 0.02d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-09", "l_commitdate": "1998-04-05", "l_receiptdate": "1998-03-13", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "ges. ironic pinto be" }, { "l_orderkey": 198i32, "l_partkey": 102i32, "l_suppkey": 3i32, "l_linenumber": 5i32, "l_quantity": 33.0d, "l_extendedprice": 33069.3d, "l_discount": 0.02d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-22", "l_commitdate": "1998-03-12", "l_receiptdate": "1998-04-14", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "ending foxes acr" }, { "l_orderkey": 4322i32, "l_partkey": 102i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 10.0d, "l_extendedprice": 10021.0d, "l_discount": 0.0d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-31", "l_commitdate": "1998-04-27", "l_receiptdate": "1998-06-25", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": " regular ideas engage carefully quick" }, { "l_orderkey": 4032i32, "l_partkey": 102i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 8.0d, "l_extendedprice": 8016.8d, "l_discount": 0.06d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-04", "l_commitdate": "1998-05-17", "l_receiptdate": "1998-07-03", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "ometimes even cou" }, { "l_orderkey": 5633i32, "l_partkey": 102i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 10.0d, "l_extendedprice": 10021.0d, "l_discount": 0.09d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-15", "l_commitdate": "1998-08-03", "l_receiptdate": "1998-08-03", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "its cajole fluffily fluffily special pinto" }, { "l_orderkey": 5030i32, "l_partkey": 102i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 22.0d, "l_extendedprice": 22046.2d, "l_discount": 0.04d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-09-01", "l_commitdate": "1998-08-15", "l_receiptdate": "1998-09-30", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": ". quickly regular foxes believe" } ] }
-{ "partkey": 108i32, "lines": [ { "l_orderkey": 1826i32, "l_partkey": 108i32, "l_suppkey": 3i32, "l_linenumber": 6i32, "l_quantity": 43.0d, "l_extendedprice": 43348.3d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-07-28", "l_commitdate": "1992-06-14", "l_receiptdate": "1992-08-03", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "ss tithes use even ideas. fluffily final t" }, { "l_orderkey": 1221i32, "l_partkey": 108i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 13.0d, "l_extendedprice": 13105.3d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-08-01", "l_commitdate": "1992-06-29", "l_receiptdate": "1992-08-27", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "ajole furiously. blithely expres" }, { "l_orderkey": 2560i32, "l_partkey": 108i32, "l_suppkey": 9i32, "l_linenumber": 6i32, "l_quantity": 13.0d, "l_extendedprice": 13105.3d, "l_discount": 0.03d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-09-07", "l_commitdate": "1992-10-21", "l_receiptdate": "1992-09-24", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "slyly final accoun" }, { "l_orderkey": 3333i32, "l_partkey": 108i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 38.0d, "l_extendedprice": 38307.8d, "l_discount": 0.05d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-10-30", "l_commitdate": "1992-11-03", "l_receiptdate": "1992-11-04", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "ccounts promise bl" }, { "l_orderkey": 5094i32, "l_partkey": 108i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 23.0d, "l_extendedprice": 23186.3d, "l_discount": 0.05d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-06-13", "l_commitdate": "1993-05-19", "l_receiptdate": "1993-07-06", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "st furiously above the fluffily care" }, { "l_orderkey": 3169i32, "l_partkey": 108i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 6.0d, "l_extendedprice": 6048.6d, "l_discount": 0.09d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-03-24", "l_commitdate": "1994-02-22", "l_receiptdate": "1994-04-04", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "ular instructions. ca" }, { "l_orderkey": 5316i32, "l_partkey": 108i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 29.0d, "l_extendedprice": 29234.9d, "l_discount": 0.1d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-03-28", "l_commitdate": "1994-04-29", "l_receiptdate": "1994-04-09", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "ckly unusual foxes bo" }, { "l_orderkey": 3586i32, "l_partkey": 108i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 8.0d, "l_extendedprice": 8064.8d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-03-29", "l_commitdate": "1994-02-26", "l_receiptdate": "1994-04-02", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "theodolites hagg" }, { "l_orderkey": 3072i32, "l_partkey": 108i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 36.0d, "l_extendedprice": 36291.6d, "l_discount": 0.07d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-04-14", "l_commitdate": "1994-04-22", "l_receiptdate": "1994-05-06", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": " theodolites. blithely e" }, { "l_orderkey": 2530i32, "l_partkey": 108i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 8.0d, "l_extendedprice": 8064.8d, "l_discount": 0.1d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-05-02", "l_commitdate": "1994-05-08", "l_receiptdate": "1994-05-24", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "ial asymptotes snooze slyly regular " }, { "l_orderkey": 4480i32, "l_partkey": 108i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 30.0d, "l_extendedprice": 30243.0d, "l_discount": 0.08d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-07-29", "l_commitdate": "1994-06-22", "l_receiptdate": "1994-08-01", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "ven braids us" }, { "l_orderkey": 356i32, "l_partkey": 108i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 48.0d, "l_extendedprice": 48388.8d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-08-12", "l_commitdate": "1994-07-31", "l_receiptdate": "1994-08-26", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "unusual packages. furiously " }, { "l_orderkey": 2433i32, "l_partkey": 108i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 3.0d, "l_extendedprice": 3024.3d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-11-08", "l_commitdate": "1994-09-24", "l_receiptdate": "1994-11-17", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "usly pending depos" }, { "l_orderkey": 4354i32, "l_partkey": 108i32, "l_suppkey": 3i32, "l_linenumber": 6i32, "l_quantity": 36.0d, "l_extendedprice": 36291.6d, "l_discount": 0.03d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-12-03", "l_commitdate": "1994-12-05", "l_receiptdate": "1995-01-02", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "efully special packages use fluffily" }, { "l_orderkey": 965i32, "l_partkey": 108i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 20.0d, "l_extendedprice": 20162.0d, "l_discount": 0.04d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "F", "l_shipdate": "1995-06-16", "l_commitdate": "1995-07-20", "l_receiptdate": "1995-07-06", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "kly. carefully pending requ" }, { "l_orderkey": 775i32, "l_partkey": 108i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 20.0d, "l_extendedprice": 20162.0d, "l_discount": 0.01d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "F", "l_shipdate": "1995-06-17", "l_commitdate": "1995-05-22", "l_receiptdate": "1995-07-13", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "en dependencies nag slowly " }, { "l_orderkey": 871i32, "l_partkey": 108i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 13.0d, "l_extendedprice": 13105.3d, "l_discount": 0.09d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-25", "l_commitdate": "1996-01-24", "l_receiptdate": "1996-02-03", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": " haggle furiou" }, { "l_orderkey": 2694i32, "l_partkey": 108i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 10.0d, "l_extendedprice": 10081.0d, "l_discount": 0.08d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-23", "l_commitdate": "1996-05-28", "l_receiptdate": "1996-06-27", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "fluffily fluffy accounts. even packages hi" }, { "l_orderkey": 4419i32, "l_partkey": 108i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 45.0d, "l_extendedprice": 45364.5d, "l_discount": 0.01d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-20", "l_commitdate": "1996-09-07", "l_receiptdate": "1996-08-18", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "s doze sometimes fluffily regular a" }, { "l_orderkey": 2179i32, "l_partkey": 108i32, "l_suppkey": 5i32, "l_linenumber": 5i32, "l_quantity": 7.0d, "l_extendedprice": 7056.7d, "l_discount": 0.0d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-24", "l_commitdate": "1996-11-14", "l_receiptdate": "1996-11-21", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "gular dependencies. ironic packages haggle" }, { "l_orderkey": 5923i32, "l_partkey": 108i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 2.0d, "l_extendedprice": 2016.2d, "l_discount": 0.06d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-19", "l_commitdate": "1997-07-31", "l_receiptdate": "1997-06-28", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "express patterns. even deposits" }, { "l_orderkey": 1636i32, "l_partkey": 108i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 24.0d, "l_extendedprice": 24194.4d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-10-07", "l_commitdate": "1997-08-12", "l_receiptdate": "1997-11-04", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "e carefully unusual ideas are f" }, { "l_orderkey": 2561i32, "l_partkey": 108i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 39.0d, "l_extendedprice": 39315.9d, "l_discount": 0.08d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-20", "l_commitdate": "1997-12-16", "l_receiptdate": "1998-02-05", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "equests are furiously against the" }, { "l_orderkey": 4357i32, "l_partkey": 108i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 17.0d, "l_extendedprice": 17137.7d, "l_discount": 0.1d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-02-01", "l_commitdate": "1997-12-08", "l_receiptdate": "1998-02-09", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "e carefully furiou" }, { "l_orderkey": 4613i32, "l_partkey": 108i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 25.0d, "l_extendedprice": 25202.5d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-22", "l_commitdate": "1998-04-11", "l_receiptdate": "1998-05-27", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "y pending platelets x-ray ironically! pend" }, { "l_orderkey": 1351i32, "l_partkey": 108i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 25.0d, "l_extendedprice": 25202.5d, "l_discount": 0.06d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-02", "l_commitdate": "1998-05-25", "l_receiptdate": "1998-06-22", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "iously regul" }, { "l_orderkey": 709i32, "l_partkey": 108i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 40.0d, "l_extendedprice": 40324.0d, "l_discount": 0.1d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-12", "l_commitdate": "1998-06-20", "l_receiptdate": "1998-08-20", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "ggle fluffily carefully ironic" }, { "l_orderkey": 5761i32, "l_partkey": 108i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 36.0d, "l_extendedprice": 36291.6d, "l_discount": 0.0d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-09-07", "l_commitdate": "1998-09-21", "l_receiptdate": "1998-09-11", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": " pinto beans thrash alongside of the pendi" } ] }
-{ "partkey": 111i32, "lines": [ { "l_orderkey": 4705i32, "l_partkey": 111i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 22.0d, "l_extendedprice": 22244.42d, "l_discount": 0.04d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-07-05", "l_commitdate": "1992-05-11", "l_receiptdate": "1992-07-29", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": " fluffily pending accounts ca" }, { "l_orderkey": 5254i32, "l_partkey": 111i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 35.0d, "l_extendedprice": 35388.85d, "l_discount": 0.01d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-07-28", "l_commitdate": "1992-09-05", "l_receiptdate": "1992-08-07", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "ntegrate carefully among the pending" }, { "l_orderkey": 5121i32, "l_partkey": 111i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 45.0d, "l_extendedprice": 45499.95d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-08-13", "l_commitdate": "1992-07-27", "l_receiptdate": "1992-09-12", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "pecial accounts cajole ca" }, { "l_orderkey": 5381i32, "l_partkey": 111i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 48.0d, "l_extendedprice": 48533.28d, "l_discount": 0.04d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-04-22", "l_commitdate": "1993-04-17", "l_receiptdate": "1993-05-14", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "luffily spec" }, { "l_orderkey": 3456i32, "l_partkey": 111i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 34.0d, "l_extendedprice": 34377.74d, "l_discount": 0.1d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-08-29", "l_commitdate": "1993-08-26", "l_receiptdate": "1993-09-07", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "usy pinto beans b" }, { "l_orderkey": 2274i32, "l_partkey": 111i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 23.0d, "l_extendedprice": 23255.53d, "l_discount": 0.04d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-10-28", "l_commitdate": "1993-11-03", "l_receiptdate": "1993-11-05", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "kly special warhorse" }, { "l_orderkey": 416i32, "l_partkey": 111i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 22.0d, "l_extendedprice": 22244.42d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-12-27", "l_commitdate": "1993-12-17", "l_receiptdate": "1994-01-09", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "rint blithely above the pending sentim" }, { "l_orderkey": 4674i32, "l_partkey": 111i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 3.0d, "l_extendedprice": 3033.33d, "l_discount": 0.01d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-07-19", "l_commitdate": "1994-05-28", "l_receiptdate": "1994-07-23", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": " regular requests na" }, { "l_orderkey": 902i32, "l_partkey": 111i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 3.0d, "l_extendedprice": 3033.33d, "l_discount": 0.06d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-10-01", "l_commitdate": "1994-10-25", "l_receiptdate": "1994-10-28", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "into beans thrash blithely about the flu" }, { "l_orderkey": 610i32, "l_partkey": 111i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 49.0d, "l_extendedprice": 49544.39d, "l_discount": 0.1d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-29", "l_commitdate": "1995-10-26", "l_receiptdate": "1995-09-12", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "ular instruc" }, { "l_orderkey": 4676i32, "l_partkey": 111i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 50.0d, "l_extendedprice": 50555.5d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-20", "l_commitdate": "1995-11-20", "l_receiptdate": "1995-10-18", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "r deposits boost boldly quickly quick asymp" }, { "l_orderkey": 1575i32, "l_partkey": 111i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 39.0d, "l_extendedprice": 39433.29d, "l_discount": 0.07d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-23", "l_commitdate": "1995-11-05", "l_receiptdate": "1995-09-25", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": " after the unusual asym" }, { "l_orderkey": 1733i32, "l_partkey": 111i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 41.0d, "l_extendedprice": 41455.51d, "l_discount": 0.08d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-13", "l_commitdate": "1996-07-08", "l_receiptdate": "1996-07-07", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "ess notornis. fur" }, { "l_orderkey": 3206i32, "l_partkey": 111i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 37.0d, "l_extendedprice": 37411.07d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-06", "l_commitdate": "1996-10-31", "l_receiptdate": "1996-09-25", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": " quick theodolites hagg" }, { "l_orderkey": 2180i32, "l_partkey": 111i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 47.0d, "l_extendedprice": 47522.17d, "l_discount": 0.07d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-23", "l_commitdate": "1996-12-08", "l_receiptdate": "1996-10-12", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "pending, regular ideas. iron" }, { "l_orderkey": 4385i32, "l_partkey": 111i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 38.0d, "l_extendedprice": 38422.18d, "l_discount": 0.0d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-22", "l_commitdate": "1996-10-30", "l_receiptdate": "1996-12-21", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "inal frays. final, bold exc" }, { "l_orderkey": 1766i32, "l_partkey": 111i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 1.0d, "l_extendedprice": 1011.11d, "l_discount": 0.1d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-21", "l_commitdate": "1997-01-07", "l_receiptdate": "1997-02-19", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "ly blithely pending accounts. reg" }, { "l_orderkey": 4002i32, "l_partkey": 111i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 35.0d, "l_extendedprice": 35388.85d, "l_discount": 0.01d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-16", "l_commitdate": "1997-06-15", "l_receiptdate": "1997-06-02", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "eep. quickly" }, { "l_orderkey": 5731i32, "l_partkey": 111i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 6.0d, "l_extendedprice": 6066.66d, "l_discount": 0.01d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-02", "l_commitdate": "1997-07-01", "l_receiptdate": "1997-07-08", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "sits integrate slyly close platelets. quick" }, { "l_orderkey": 3364i32, "l_partkey": 111i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 38.0d, "l_extendedprice": 38422.18d, "l_discount": 0.02d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-30", "l_commitdate": "1997-09-12", "l_receiptdate": "1997-09-27", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": " slyly express" }, { "l_orderkey": 1252i32, "l_partkey": 111i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 27.0d, "l_extendedprice": 27299.97d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-10-22", "l_commitdate": "1997-10-10", "l_receiptdate": "1997-11-10", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "packages hag" }, { "l_orderkey": 5413i32, "l_partkey": 111i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 36.0d, "l_extendedprice": 36399.96d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-12", "l_commitdate": "1997-11-28", "l_receiptdate": "1997-12-25", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "ular, regular ideas mold! final requests" }, { "l_orderkey": 192i32, "l_partkey": 111i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 15.0d, "l_extendedprice": 15166.65d, "l_discount": 0.09d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-30", "l_commitdate": "1998-02-10", "l_receiptdate": "1998-02-23", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "he ironic requests haggle about" }, { "l_orderkey": 5671i32, "l_partkey": 111i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 42.0d, "l_extendedprice": 42466.62d, "l_discount": 0.0d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-02-17", "l_commitdate": "1998-04-24", "l_receiptdate": "1998-03-17", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "carefully slyly special deposit" }, { "l_orderkey": 4613i32, "l_partkey": 111i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 35.0d, "l_extendedprice": 35388.85d, "l_discount": 0.04d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-04", "l_commitdate": "1998-04-17", "l_receiptdate": "1998-06-20", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "e blithely against the even, bold pi" }, { "l_orderkey": 1061i32, "l_partkey": 111i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 26.0d, "l_extendedprice": 26288.86d, "l_discount": 0.08d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-18", "l_commitdate": "1998-07-25", "l_receiptdate": "1998-06-24", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "ave to slee" } ] }
-{ "partkey": 113i32, "lines": [ { "l_orderkey": 1027i32, "l_partkey": 113i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 20.0d, "l_extendedprice": 20262.2d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-06-08", "l_commitdate": "1992-08-29", "l_receiptdate": "1992-06-14", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "ar excuses eat f" }, { "l_orderkey": 2054i32, "l_partkey": 113i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 11.0d, "l_extendedprice": 11144.21d, "l_discount": 0.03d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-08-13", "l_commitdate": "1992-08-26", "l_receiptdate": "1992-08-22", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "ular accou" }, { "l_orderkey": 4741i32, "l_partkey": 113i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 16.0d, "l_extendedprice": 16209.76d, "l_discount": 0.01d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-08-25", "l_commitdate": "1992-08-10", "l_receiptdate": "1992-08-29", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "final foxes haggle r" }, { "l_orderkey": 3333i32, "l_partkey": 113i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 49.0d, "l_extendedprice": 49642.39d, "l_discount": 0.07d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-10-02", "l_commitdate": "1992-11-30", "l_receiptdate": "1992-10-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "riously ironic r" }, { "l_orderkey": 5890i32, "l_partkey": 113i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 38.0d, "l_extendedprice": 38498.18d, "l_discount": 0.01d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-02-14", "l_commitdate": "1992-12-09", "l_receiptdate": "1993-02-27", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": " accounts. carefully final asymptotes" }, { "l_orderkey": 3328i32, "l_partkey": 113i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 6.0d, "l_extendedprice": 6078.66d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-03-07", "l_commitdate": "1993-01-25", "l_receiptdate": "1993-03-29", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "ffily even instructions detect b" }, { "l_orderkey": 4487i32, "l_partkey": 113i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 49.0d, "l_extendedprice": 49642.39d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-06-13", "l_commitdate": "1993-05-08", "l_receiptdate": "1993-07-10", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "sual packages should ha" }, { "l_orderkey": 2759i32, "l_partkey": 113i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 37.0d, "l_extendedprice": 37485.07d, "l_discount": 0.0d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-03-05", "l_commitdate": "1994-02-22", "l_receiptdate": "1994-03-18", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "lar Tiresias affix ironically carefully sp" }, { "l_orderkey": 2050i32, "l_partkey": 113i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 41.0d, "l_extendedprice": 41537.51d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-06-08", "l_commitdate": "1994-08-27", "l_receiptdate": "1994-06-23", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": " final theodolites. depende" }, { "l_orderkey": 1892i32, "l_partkey": 113i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 48.0d, "l_extendedprice": 48629.28d, "l_discount": 0.02d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-06-16", "l_commitdate": "1994-06-16", "l_receiptdate": "1994-06-28", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "tornis detect regul" }, { "l_orderkey": 3750i32, "l_partkey": 113i32, "l_suppkey": 7i32, "l_linenumber": 6i32, "l_quantity": 47.0d, "l_extendedprice": 47616.17d, "l_discount": 0.01d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-05-11", "l_commitdate": "1995-06-13", "l_receiptdate": "1995-06-02", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "slowly regular accounts. blithely ev" }, { "l_orderkey": 3911i32, "l_partkey": 113i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 10.0d, "l_extendedprice": 10131.1d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-06-22", "l_commitdate": "1995-05-30", "l_receiptdate": "1995-06-28", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "ss theodolites are blithely along t" }, { "l_orderkey": 964i32, "l_partkey": 113i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 1.0d, "l_extendedprice": 1013.11d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-20", "l_commitdate": "1995-07-29", "l_receiptdate": "1995-09-10", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "unts. quickly even platelets s" }, { "l_orderkey": 3363i32, "l_partkey": 113i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 20.0d, "l_extendedprice": 20262.2d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-11", "l_commitdate": "1995-11-15", "l_receiptdate": "1995-12-21", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "carefully quiet excuses wake. sl" }, { "l_orderkey": 1860i32, "l_partkey": 113i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 9.0d, "l_extendedprice": 9117.99d, "l_discount": 0.04d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-03", "l_commitdate": "1996-05-31", "l_receiptdate": "1996-08-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "c realms print carefully car" }, { "l_orderkey": 1188i32, "l_partkey": 113i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 9.0d, "l_extendedprice": 9117.99d, "l_discount": 0.01d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-04", "l_commitdate": "1996-06-04", "l_receiptdate": "1996-08-19", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "ow carefully ironic d" }, { "l_orderkey": 4160i32, "l_partkey": 113i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 25.0d, "l_extendedprice": 25327.75d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-22", "l_commitdate": "1996-10-17", "l_receiptdate": "1996-09-24", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "ar accounts sleep blithe" }, { "l_orderkey": 5862i32, "l_partkey": 113i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 4.0d, "l_extendedprice": 4052.44d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-04", "l_commitdate": "1997-04-26", "l_receiptdate": "1997-06-19", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "yly silent deposit" }, { "l_orderkey": 5411i32, "l_partkey": 113i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 10.0d, "l_extendedprice": 10131.1d, "l_discount": 0.08d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-19", "l_commitdate": "1997-08-04", "l_receiptdate": "1997-07-26", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "nding, special foxes unw" }, { "l_orderkey": 1347i32, "l_partkey": 113i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 28.0d, "l_extendedprice": 28367.08d, "l_discount": 0.01d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-30", "l_commitdate": "1997-07-22", "l_receiptdate": "1997-08-18", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "foxes after the blithely special i" }, { "l_orderkey": 647i32, "l_partkey": 113i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 5.0d, "l_extendedprice": 5065.55d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-25", "l_commitdate": "1997-09-22", "l_receiptdate": "1997-10-25", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "ly express packages haggle caref" }, { "l_orderkey": 2081i32, "l_partkey": 113i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 19.0d, "l_extendedprice": 19249.09d, "l_discount": 0.02d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-10-01", "l_commitdate": "1997-08-12", "l_receiptdate": "1997-10-18", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "s affix sometimes express requests. quickly" }, { "l_orderkey": 3875i32, "l_partkey": 113i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 49.0d, "l_extendedprice": 49642.39d, "l_discount": 0.04d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-10-18", "l_commitdate": "1997-10-13", "l_receiptdate": "1997-10-19", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "sleep furiously about the deposits. quickl" }, { "l_orderkey": 1090i32, "l_partkey": 113i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 28.0d, "l_extendedprice": 28367.08d, "l_discount": 0.08d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-02-20", "l_commitdate": "1998-01-03", "l_receiptdate": "1998-03-19", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "s cajole above the regular" }, { "l_orderkey": 3651i32, "l_partkey": 113i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 41.0d, "l_extendedprice": 41537.51d, "l_discount": 0.0d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-10", "l_commitdate": "1998-07-09", "l_receiptdate": "1998-05-13", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "blithely. furiously " }, { "l_orderkey": 2214i32, "l_partkey": 113i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 42.0d, "l_extendedprice": 42550.62d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-26", "l_commitdate": "1998-07-13", "l_receiptdate": "1998-06-22", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "ons. deposi" }, { "l_orderkey": 3207i32, "l_partkey": 113i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 2.0d, "l_extendedprice": 2026.22d, "l_discount": 0.1d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-15", "l_commitdate": "1998-04-20", "l_receiptdate": "1998-06-21", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "among the ironic, even packages " }, { "l_orderkey": 4263i32, "l_partkey": 113i32, "l_suppkey": 10i32, "l_linenumber": 6i32, "l_quantity": 47.0d, "l_extendedprice": 47616.17d, "l_discount": 0.08d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-28", "l_commitdate": "1998-05-09", "l_receiptdate": "1998-07-02", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "y. theodolites wake idly ironic do" } ] }
-{ "partkey": 116i32, "lines": [ { "l_orderkey": 2755i32, "l_partkey": 116i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 48.0d, "l_extendedprice": 48773.28d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-03-22", "l_commitdate": "1992-03-10", "l_receiptdate": "1992-04-14", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "yly even epitaphs for the " }, { "l_orderkey": 1925i32, "l_partkey": 116i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 40.0d, "l_extendedprice": 40644.4d, "l_discount": 0.08d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-05-17", "l_commitdate": "1992-05-20", "l_receiptdate": "1992-06-08", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "e carefully regul" }, { "l_orderkey": 5603i32, "l_partkey": 116i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 49.0d, "l_extendedprice": 49789.39d, "l_discount": 0.06d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-06-24", "l_commitdate": "1992-07-28", "l_receiptdate": "1992-07-01", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "fully silent requests. carefully fin" }, { "l_orderkey": 130i32, "l_partkey": 116i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 13.0d, "l_extendedprice": 13209.43d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-06-26", "l_commitdate": "1992-07-29", "l_receiptdate": "1992-07-05", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": " pending dolphins sleep furious" }, { "l_orderkey": 4900i32, "l_partkey": 116i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 40.0d, "l_extendedprice": 40644.4d, "l_discount": 0.1d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-09-02", "l_commitdate": "1992-09-25", "l_receiptdate": "1992-09-21", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "heodolites. request" }, { "l_orderkey": 4706i32, "l_partkey": 116i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 5.0d, "l_extendedprice": 5080.55d, "l_discount": 0.06d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-02-14", "l_commitdate": "1993-01-31", "l_receiptdate": "1993-02-26", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "ptotes haggle ca" }, { "l_orderkey": 2437i32, "l_partkey": 116i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 12.0d, "l_extendedprice": 12193.32d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-04-27", "l_commitdate": "1993-07-01", "l_receiptdate": "1993-05-18", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "thely regular deposits. ironic fray" }, { "l_orderkey": 2241i32, "l_partkey": 116i32, "l_suppkey": 3i32, "l_linenumber": 6i32, "l_quantity": 22.0d, "l_extendedprice": 22354.42d, "l_discount": 0.02d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-08-13", "l_commitdate": "1993-06-15", "l_receiptdate": "1993-08-16", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": ", ironic depen" }, { "l_orderkey": 4547i32, "l_partkey": 116i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 7.0d, "l_extendedprice": 7112.77d, "l_discount": 0.1d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-09-04", "l_commitdate": "1993-09-29", "l_receiptdate": "1993-09-20", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "slyly express a" }, { "l_orderkey": 4007i32, "l_partkey": 116i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 41.0d, "l_extendedprice": 41660.51d, "l_discount": 0.04d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-10-11", "l_commitdate": "1993-08-30", "l_receiptdate": "1993-11-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "eposits. regular epitaphs boost blithely." }, { "l_orderkey": 66i32, "l_partkey": 116i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 31.0d, "l_extendedprice": 31499.41d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-02-19", "l_commitdate": "1994-03-11", "l_receiptdate": "1994-02-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "ut the unusual accounts sleep at the bo" }, { "l_orderkey": 1861i32, "l_partkey": 116i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 38.0d, "l_extendedprice": 38612.18d, "l_discount": 0.1d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-02-26", "l_commitdate": "1994-02-05", "l_receiptdate": "1994-03-01", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "pending deposits cajole quic" }, { "l_orderkey": 3905i32, "l_partkey": 116i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 7.0d, "l_extendedprice": 7112.77d, "l_discount": 0.03d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-03-01", "l_commitdate": "1994-02-19", "l_receiptdate": "1994-03-11", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "ully furiously furious packag" }, { "l_orderkey": 69i32, "l_partkey": 116i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 48.0d, "l_extendedprice": 48773.28d, "l_discount": 0.01d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-08-17", "l_commitdate": "1994-08-11", "l_receiptdate": "1994-09-08", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "regular epitaphs. carefully even ideas hag" }, { "l_orderkey": 3136i32, "l_partkey": 116i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 26.0d, "l_extendedprice": 26418.86d, "l_discount": 0.04d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-10-13", "l_commitdate": "1994-11-07", "l_receiptdate": "1994-11-05", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "eep fluffily. daringly silent attainments d" }, { "l_orderkey": 2148i32, "l_partkey": 116i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 21.0d, "l_extendedprice": 21338.31d, "l_discount": 0.09d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-05-28", "l_commitdate": "1995-05-26", "l_receiptdate": "1995-06-15", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "deposits ag" }, { "l_orderkey": 3200i32, "l_partkey": 116i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 17.0d, "l_extendedprice": 17273.87d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-06", "l_commitdate": "1996-04-21", "l_receiptdate": "1996-06-14", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "side of the furiously pendin" }, { "l_orderkey": 514i32, "l_partkey": 116i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 43.0d, "l_extendedprice": 43692.73d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-07", "l_commitdate": "1996-05-14", "l_receiptdate": "1996-07-01", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "thely regular " }, { "l_orderkey": 2534i32, "l_partkey": 116i32, "l_suppkey": 10i32, "l_linenumber": 6i32, "l_quantity": 12.0d, "l_extendedprice": 12193.32d, "l_discount": 0.02d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-29", "l_commitdate": "1996-10-12", "l_receiptdate": "1996-08-14", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "sual depos" }, { "l_orderkey": 3619i32, "l_partkey": 116i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 27.0d, "l_extendedprice": 27434.97d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-12", "l_commitdate": "1997-01-18", "l_receiptdate": "1996-12-18", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "pecial accounts haggle care" }, { "l_orderkey": 3682i32, "l_partkey": 116i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 18.0d, "l_extendedprice": 18289.98d, "l_discount": 0.06d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-30", "l_commitdate": "1997-03-21", "l_receiptdate": "1997-05-10", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "regular dependencies" }, { "l_orderkey": 4421i32, "l_partkey": 116i32, "l_suppkey": 3i32, "l_linenumber": 7i32, "l_quantity": 18.0d, "l_extendedprice": 18289.98d, "l_discount": 0.01d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-07", "l_commitdate": "1997-05-13", "l_receiptdate": "1997-06-10", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": ". regular, s" }, { "l_orderkey": 4901i32, "l_partkey": 116i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 40.0d, "l_extendedprice": 40644.4d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-08", "l_commitdate": "1998-01-30", "l_receiptdate": "1998-01-15", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "ect across the furiou" }, { "l_orderkey": 4711i32, "l_partkey": 116i32, "l_suppkey": 7i32, "l_linenumber": 6i32, "l_quantity": 45.0d, "l_extendedprice": 45724.95d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-19", "l_commitdate": "1998-07-14", "l_receiptdate": "1998-05-21", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": " ironic theodolites " }, { "l_orderkey": 100i32, "l_partkey": 116i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 22.0d, "l_extendedprice": 22354.42d, "l_discount": 0.0d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-24", "l_commitdate": "1998-04-12", "l_receiptdate": "1998-06-29", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "nto beans alongside of the fi" } ] }
-{ "partkey": 124i32, "lines": [ { "l_orderkey": 1088i32, "l_partkey": 124i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 3.0d, "l_extendedprice": 3072.36d, "l_discount": 0.09d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-06-15", "l_commitdate": "1992-08-02", "l_receiptdate": "1992-06-18", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "pecial theodolites " }, { "l_orderkey": 2209i32, "l_partkey": 124i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 24.0d, "l_extendedprice": 24578.88d, "l_discount": 0.08d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-08-09", "l_commitdate": "1992-08-18", "l_receiptdate": "1992-08-25", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": " along the bol" }, { "l_orderkey": 1346i32, "l_partkey": 124i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 6.0d, "l_extendedprice": 6144.72d, "l_discount": 0.02d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-09-13", "l_commitdate": "1992-07-21", "l_receiptdate": "1992-09-27", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "inst the furiously final theodolites. caref" }, { "l_orderkey": 5089i32, "l_partkey": 124i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 46.0d, "l_extendedprice": 47109.52d, "l_discount": 0.03d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-11-09", "l_commitdate": "1992-10-13", "l_receiptdate": "1992-11-10", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "above the express accounts. exc" }, { "l_orderkey": 2594i32, "l_partkey": 124i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 13.0d, "l_extendedprice": 13313.56d, "l_discount": 0.1d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-02-06", "l_commitdate": "1993-03-01", "l_receiptdate": "1993-02-23", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "fully special accounts use courts" }, { "l_orderkey": 1703i32, "l_partkey": 124i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 48.0d, "l_extendedprice": 49157.76d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-02-07", "l_commitdate": "1993-04-20", "l_receiptdate": "1993-02-24", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "ggle slyly furiously regular theodol" }, { "l_orderkey": 290i32, "l_partkey": 124i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 23.0d, "l_extendedprice": 23554.76d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-03-14", "l_commitdate": "1994-02-21", "l_receiptdate": "1994-04-09", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "refully unusual packages. " }, { "l_orderkey": 99i32, "l_partkey": 124i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 5.0d, "l_extendedprice": 5120.6d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-05-06", "l_commitdate": "1994-05-28", "l_receiptdate": "1994-05-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "ests cajole fluffily waters. blithe" }, { "l_orderkey": 5223i32, "l_partkey": 124i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 25.0d, "l_extendedprice": 25603.0d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-07-12", "l_commitdate": "1994-08-13", "l_receiptdate": "1994-08-01", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "y express ideas impress" }, { "l_orderkey": 96i32, "l_partkey": 124i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 23.0d, "l_extendedprice": 23554.76d, "l_discount": 0.1d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-07-19", "l_commitdate": "1994-06-29", "l_receiptdate": "1994-07-25", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "ep-- carefully reg" }, { "l_orderkey": 2722i32, "l_partkey": 124i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 21.0d, "l_extendedprice": 21506.52d, "l_discount": 0.09d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-07-29", "l_commitdate": "1994-06-26", "l_receiptdate": "1994-08-09", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "e carefully around the furiously ironic pac" }, { "l_orderkey": 5i32, "l_partkey": 124i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 26.0d, "l_extendedprice": 26627.12d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-10-16", "l_commitdate": "1994-09-25", "l_receiptdate": "1994-10-19", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "sts use slyly quickly special instruc" }, { "l_orderkey": 1985i32, "l_partkey": 124i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 42.0d, "l_extendedprice": 43013.04d, "l_discount": 0.05d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-10-25", "l_commitdate": "1994-11-03", "l_receiptdate": "1994-11-19", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": " patterns? final requests after the sp" }, { "l_orderkey": 5765i32, "l_partkey": 124i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 29.0d, "l_extendedprice": 29699.48d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-12-29", "l_commitdate": "1995-02-01", "l_receiptdate": "1995-01-26", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "nic requests. deposits wake quickly among " }, { "l_orderkey": 5347i32, "l_partkey": 124i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 47.0d, "l_extendedprice": 48133.64d, "l_discount": 0.02d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "F", "l_shipdate": "1995-06-05", "l_commitdate": "1995-03-29", "l_receiptdate": "1995-06-28", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "across the slyly bol" }, { "l_orderkey": 2465i32, "l_partkey": 124i32, "l_suppkey": 5i32, "l_linenumber": 6i32, "l_quantity": 20.0d, "l_extendedprice": 20482.4d, "l_discount": 0.03d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-16", "l_commitdate": "1995-08-13", "l_receiptdate": "1995-09-02", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "uriously? furiously ironic excu" }, { "l_orderkey": 5696i32, "l_partkey": 124i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 19.0d, "l_extendedprice": 19458.28d, "l_discount": 0.07d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-31", "l_commitdate": "1995-06-13", "l_receiptdate": "1995-09-10", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "unusual requests sleep furiously ru" }, { "l_orderkey": 2306i32, "l_partkey": 124i32, "l_suppkey": 5i32, "l_linenumber": 6i32, "l_quantity": 29.0d, "l_extendedprice": 29699.48d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-01", "l_commitdate": "1995-09-01", "l_receiptdate": "1995-11-22", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "uld have to mold. s" }, { "l_orderkey": 420i32, "l_partkey": 124i32, "l_suppkey": 7i32, "l_linenumber": 6i32, "l_quantity": 40.0d, "l_extendedprice": 40964.8d, "l_discount": 0.01d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-26", "l_commitdate": "1995-12-26", "l_receiptdate": "1995-12-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": " after the special" }, { "l_orderkey": 3392i32, "l_partkey": 124i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 7.0d, "l_extendedprice": 7168.84d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-07", "l_commitdate": "1996-01-09", "l_receiptdate": "1995-12-29", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "as. express, final accounts dou" }, { "l_orderkey": 1731i32, "l_partkey": 124i32, "l_suppkey": 7i32, "l_linenumber": 6i32, "l_quantity": 41.0d, "l_extendedprice": 41988.92d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-04-05", "l_commitdate": "1996-02-28", "l_receiptdate": "1996-05-01", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "haggle across the blithely ironi" }, { "l_orderkey": 1378i32, "l_partkey": 124i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 18.0d, "l_extendedprice": 18434.16d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-19", "l_commitdate": "1996-05-16", "l_receiptdate": "1996-06-21", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": " theodolites. i" }, { "l_orderkey": 3587i32, "l_partkey": 124i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 31.0d, "l_extendedprice": 31747.72d, "l_discount": 0.03d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-21", "l_commitdate": "1996-07-01", "l_receiptdate": "1996-07-23", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "press fluffily regul" }, { "l_orderkey": 1671i32, "l_partkey": 124i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 11.0d, "l_extendedprice": 11265.32d, "l_discount": 0.06d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-16", "l_commitdate": "1996-10-21", "l_receiptdate": "1996-09-18", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "tes sleep blithely" }, { "l_orderkey": 1283i32, "l_partkey": 124i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 43.0d, "l_extendedprice": 44037.16d, "l_discount": 0.01d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-29", "l_commitdate": "1996-11-19", "l_receiptdate": "1996-10-26", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "requests sleep slyly about the " }, { "l_orderkey": 5159i32, "l_partkey": 124i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 39.0d, "l_extendedprice": 39940.68d, "l_discount": 0.06d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-17", "l_commitdate": "1996-12-08", "l_receiptdate": "1997-01-10", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "re furiously after the pending dolphin" }, { "l_orderkey": 1697i32, "l_partkey": 124i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 27.0d, "l_extendedprice": 27651.24d, "l_discount": 0.06d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-20", "l_commitdate": "1996-12-02", "l_receiptdate": "1997-02-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "ly regular packages across the silent, b" }, { "l_orderkey": 5798i32, "l_partkey": 124i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 14.0d, "l_extendedprice": 14337.68d, "l_discount": 0.06d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-01", "l_commitdate": "1998-06-14", "l_receiptdate": "1998-04-27", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "he special, bold packages. carefully iron" }, { "l_orderkey": 2629i32, "l_partkey": 124i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 31.0d, "l_extendedprice": 31747.72d, "l_discount": 0.08d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-24", "l_commitdate": "1998-05-26", "l_receiptdate": "1998-06-10", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "ate blithely bold, regular deposits. bold" }, { "l_orderkey": 390i32, "l_partkey": 124i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 17.0d, "l_extendedprice": 17410.04d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-07", "l_commitdate": "1998-06-14", "l_receiptdate": "1998-07-07", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "ending, pending pinto beans wake slyl" }, { "l_orderkey": 708i32, "l_partkey": 124i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 3.0d, "l_extendedprice": 3072.36d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-10-09", "l_commitdate": "1998-09-22", "l_receiptdate": "1998-11-07", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "e slyly pending foxes. " }, { "l_orderkey": 5184i32, "l_partkey": 124i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 19.0d, "l_extendedprice": 19458.28d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-11-15", "l_commitdate": "1998-10-12", "l_receiptdate": "1998-11-21", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "refully express platelets sleep carefull" } ] }
-{ "partkey": 128i32, "lines": [ { "l_orderkey": 3168i32, "l_partkey": 128i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 13.0d, "l_extendedprice": 13365.56d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-03-05", "l_commitdate": "1992-04-29", "l_receiptdate": "1992-03-15", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "ironic somas haggle quick" }, { "l_orderkey": 4804i32, "l_partkey": 128i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 44.0d, "l_extendedprice": 45237.28d, "l_discount": 0.06d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-05-02", "l_commitdate": "1992-03-24", "l_receiptdate": "1992-05-28", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "aggle quickly among the slyly fi" }, { "l_orderkey": 4096i32, "l_partkey": 128i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 20.0d, "l_extendedprice": 20562.4d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-08-24", "l_commitdate": "1992-09-13", "l_receiptdate": "1992-08-28", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "sual requests. furiously bold packages wake" }, { "l_orderkey": 3650i32, "l_partkey": 128i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 43.0d, "l_extendedprice": 44209.16d, "l_discount": 0.05d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-09-07", "l_commitdate": "1992-08-12", "l_receiptdate": "1992-09-10", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "gside of the quick" }, { "l_orderkey": 2566i32, "l_partkey": 128i32, "l_suppkey": 3i32, "l_linenumber": 6i32, "l_quantity": 1.0d, "l_extendedprice": 1028.12d, "l_discount": 0.07d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-10-28", "l_commitdate": "1992-11-20", "l_receiptdate": "1992-11-22", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "theodolites wake pending" }, { "l_orderkey": 4996i32, "l_partkey": 128i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 12.0d, "l_extendedprice": 12337.44d, "l_discount": 0.04d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-01-09", "l_commitdate": "1992-11-22", "l_receiptdate": "1993-02-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "usly bold requests sleep dogge" }, { "l_orderkey": 388i32, "l_partkey": 128i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 46.0d, "l_extendedprice": 47293.52d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-03-22", "l_commitdate": "1993-01-26", "l_receiptdate": "1993-03-24", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "to beans nag about the careful reque" }, { "l_orderkey": 2503i32, "l_partkey": 128i32, "l_suppkey": 7i32, "l_linenumber": 6i32, "l_quantity": 39.0d, "l_extendedprice": 40096.68d, "l_discount": 0.05d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-10-11", "l_commitdate": "1993-09-09", "l_receiptdate": "1993-10-16", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "d carefully fluffily" }, { "l_orderkey": 2593i32, "l_partkey": 128i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 6.0d, "l_extendedprice": 6168.72d, "l_discount": 0.04d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-11-28", "l_commitdate": "1993-10-04", "l_receiptdate": "1993-12-28", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "ular packages. re" }, { "l_orderkey": 711i32, "l_partkey": 128i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 46.0d, "l_extendedprice": 47293.52d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-12-26", "l_commitdate": "1993-11-19", "l_receiptdate": "1994-01-21", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "deposits. permanen" }, { "l_orderkey": 1953i32, "l_partkey": 128i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 25.0d, "l_extendedprice": 25703.0d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-01-07", "l_commitdate": "1994-01-28", "l_receiptdate": "1994-01-29", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "ular, regular i" }, { "l_orderkey": 1028i32, "l_partkey": 128i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 2.0d, "l_extendedprice": 2056.24d, "l_discount": 0.09d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-01-10", "l_commitdate": "1994-03-22", "l_receiptdate": "1994-01-26", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "s alongside of the regular asymptotes sleep" }, { "l_orderkey": 711i32, "l_partkey": 128i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 20.0d, "l_extendedprice": 20562.4d, "l_discount": 0.09d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-01-17", "l_commitdate": "1993-11-10", "l_receiptdate": "1994-01-31", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "kly regular acco" }, { "l_orderkey": 3396i32, "l_partkey": 128i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 34.0d, "l_extendedprice": 34956.08d, "l_discount": 0.0d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-05-30", "l_commitdate": "1994-08-16", "l_receiptdate": "1994-06-11", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": ". slyly unusual packages wak" }, { "l_orderkey": 5511i32, "l_partkey": 128i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 49.0d, "l_extendedprice": 50377.88d, "l_discount": 0.05d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-12-21", "l_commitdate": "1995-01-27", "l_receiptdate": "1994-12-26", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "bout the requests. theodolites " }, { "l_orderkey": 4710i32, "l_partkey": 128i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 47.0d, "l_extendedprice": 48321.64d, "l_discount": 0.04d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-02-22", "l_commitdate": "1995-01-12", "l_receiptdate": "1995-02-28", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "blithely express packages. even, ironic re" }, { "l_orderkey": 4257i32, "l_partkey": 128i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 33.0d, "l_extendedprice": 33927.96d, "l_discount": 0.03d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-05-23", "l_commitdate": "1995-05-03", "l_receiptdate": "1995-05-31", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "uffily regular accounts ar" }, { "l_orderkey": 1538i32, "l_partkey": 128i32, "l_suppkey": 3i32, "l_linenumber": 6i32, "l_quantity": 42.0d, "l_extendedprice": 43181.04d, "l_discount": 0.08d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-10", "l_commitdate": "1995-09-12", "l_receiptdate": "1995-11-08", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "equests cajole blithely " }, { "l_orderkey": 871i32, "l_partkey": 128i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 8.0d, "l_extendedprice": 8224.96d, "l_discount": 0.0d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-25", "l_commitdate": "1996-01-12", "l_receiptdate": "1995-12-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "lar ideas-- slyly even accou" }, { "l_orderkey": 4614i32, "l_partkey": 128i32, "l_suppkey": 1i32, "l_linenumber": 7i32, "l_quantity": 41.0d, "l_extendedprice": 42152.92d, "l_discount": 0.01d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-31", "l_commitdate": "1996-07-12", "l_receiptdate": "1996-08-16", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "ackages haggle carefully about the even, b" }, { "l_orderkey": 2662i32, "l_partkey": 128i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 8.0d, "l_extendedprice": 8224.96d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-10", "l_commitdate": "1996-10-09", "l_receiptdate": "1996-09-21", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "ajole carefully. sp" }, { "l_orderkey": 3527i32, "l_partkey": 128i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 17.0d, "l_extendedprice": 17478.04d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-30", "l_commitdate": "1997-09-01", "l_receiptdate": "1997-08-17", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "ular instruction" }, { "l_orderkey": 5185i32, "l_partkey": 128i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 8.0d, "l_extendedprice": 8224.96d, "l_discount": 0.04d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-30", "l_commitdate": "1997-09-02", "l_receiptdate": "1997-09-22", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "sts around the slyly perma" }, { "l_orderkey": 1668i32, "l_partkey": 128i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 25.0d, "l_extendedprice": 25703.0d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-10-08", "l_commitdate": "1997-09-20", "l_receiptdate": "1997-10-11", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "even platelets across the silent " }, { "l_orderkey": 4677i32, "l_partkey": 128i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 25.0d, "l_extendedprice": 25703.0d, "l_discount": 0.04d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-11", "l_commitdate": "1998-05-11", "l_receiptdate": "1998-04-18", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "unts doubt furiousl" }, { "l_orderkey": 390i32, "l_partkey": 128i32, "l_suppkey": 3i32, "l_linenumber": 5i32, "l_quantity": 13.0d, "l_extendedprice": 13365.56d, "l_discount": 0.02d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-08", "l_commitdate": "1998-05-10", "l_receiptdate": "1998-07-18", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "sleep carefully idle packages. blithely " }, { "l_orderkey": 2629i32, "l_partkey": 128i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 29.0d, "l_extendedprice": 29815.48d, "l_discount": 0.08d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-09", "l_commitdate": "1998-06-17", "l_receiptdate": "1998-07-12", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "eposits serve unusual, express i" } ] }
-{ "partkey": 132i32, "lines": [ { "l_orderkey": 5607i32, "l_partkey": 132i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 23.0d, "l_extendedprice": 23738.99d, "l_discount": 0.02d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-04-17", "l_commitdate": "1992-02-12", "l_receiptdate": "1992-04-30", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "the special, final patterns " }, { "l_orderkey": 384i32, "l_partkey": 132i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 14.0d, "l_extendedprice": 14449.82d, "l_discount": 0.08d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-06-14", "l_commitdate": "1992-05-29", "l_receiptdate": "1992-07-05", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "ckages are slyly after the slyly specia" }, { "l_orderkey": 3172i32, "l_partkey": 132i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 13.0d, "l_extendedprice": 13417.69d, "l_discount": 0.03d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-07-06", "l_commitdate": "1992-08-06", "l_receiptdate": "1992-08-05", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "inal deposits haggle along the" }, { "l_orderkey": 5190i32, "l_partkey": 132i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 6.0d, "l_extendedprice": 6192.78d, "l_discount": 0.1d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-08-08", "l_commitdate": "1992-07-14", "l_receiptdate": "1992-08-22", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "furiously regular pinto beans. furiously i" }, { "l_orderkey": 967i32, "l_partkey": 132i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 10.0d, "l_extendedprice": 10321.3d, "l_discount": 0.0d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-09-18", "l_commitdate": "1992-08-06", "l_receiptdate": "1992-09-19", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "old pinto beans alongside of the exp" }, { "l_orderkey": 5381i32, "l_partkey": 132i32, "l_suppkey": 3i32, "l_linenumber": 6i32, "l_quantity": 33.0d, "l_extendedprice": 34060.29d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-04-09", "l_commitdate": "1993-04-03", "l_receiptdate": "1993-04-22", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "ly special deposits " }, { "l_orderkey": 3078i32, "l_partkey": 132i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 25.0d, "l_extendedprice": 25803.25d, "l_discount": 0.01d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-04-22", "l_commitdate": "1993-05-01", "l_receiptdate": "1993-04-28", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "express dinos. carefully ironic" }, { "l_orderkey": 3493i32, "l_partkey": 132i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 10.0d, "l_extendedprice": 10321.3d, "l_discount": 0.02d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-08-27", "l_commitdate": "1993-10-07", "l_receiptdate": "1993-09-23", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "hall have to integ" }, { "l_orderkey": 417i32, "l_partkey": 132i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 2.0d, "l_extendedprice": 2064.26d, "l_discount": 0.01d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-02-13", "l_commitdate": "1994-04-19", "l_receiptdate": "1994-03-15", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "uriously bol" }, { "l_orderkey": 5957i32, "l_partkey": 132i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 29.0d, "l_extendedprice": 29931.77d, "l_discount": 0.01d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-02-24", "l_commitdate": "1994-03-04", "l_receiptdate": "1994-03-08", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "sits. final, even asymptotes cajole quickly" }, { "l_orderkey": 2182i32, "l_partkey": 132i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 27.0d, "l_extendedprice": 27867.51d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-05-10", "l_commitdate": "1994-07-04", "l_receiptdate": "1994-06-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "en platele" }, { "l_orderkey": 3397i32, "l_partkey": 132i32, "l_suppkey": 3i32, "l_linenumber": 5i32, "l_quantity": 28.0d, "l_extendedprice": 28899.64d, "l_discount": 0.05d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-07-13", "l_commitdate": "1994-08-26", "l_receiptdate": "1994-07-17", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "counts around the final reques" }, { "l_orderkey": 2853i32, "l_partkey": 132i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 20.0d, "l_extendedprice": 20642.6d, "l_discount": 0.02d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-08-30", "l_commitdate": "1994-06-16", "l_receiptdate": "1994-09-06", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "e slyly silent foxes. express deposits sno" }, { "l_orderkey": 359i32, "l_partkey": 132i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 17.0d, "l_extendedprice": 17546.21d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-01-31", "l_commitdate": "1995-03-18", "l_receiptdate": "1995-02-10", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "sts according to the blithely" }, { "l_orderkey": 3814i32, "l_partkey": 132i32, "l_suppkey": 8i32, "l_linenumber": 7i32, "l_quantity": 12.0d, "l_extendedprice": 12385.56d, "l_discount": 0.1d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-03-18", "l_commitdate": "1995-04-16", "l_receiptdate": "1995-03-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "ages cajole. packages haggle. final" }, { "l_orderkey": 802i32, "l_partkey": 132i32, "l_suppkey": 3i32, "l_linenumber": 5i32, "l_quantity": 19.0d, "l_extendedprice": 19610.47d, "l_discount": 0.08d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-04-01", "l_commitdate": "1995-02-20", "l_receiptdate": "1995-04-23", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "old, furious" }, { "l_orderkey": 225i32, "l_partkey": 132i32, "l_suppkey": 8i32, "l_linenumber": 6i32, "l_quantity": 12.0d, "l_extendedprice": 12385.56d, "l_discount": 0.0d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-06-04", "l_commitdate": "1995-07-15", "l_receiptdate": "1995-06-08", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": " unusual requests. bus" }, { "l_orderkey": 5696i32, "l_partkey": 132i32, "l_suppkey": 8i32, "l_linenumber": 6i32, "l_quantity": 37.0d, "l_extendedprice": 38188.81d, "l_discount": 0.04d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-21", "l_commitdate": "1995-06-23", "l_receiptdate": "1995-08-19", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": " carefully expres" }, { "l_orderkey": 5958i32, "l_partkey": 132i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 32.0d, "l_extendedprice": 33028.16d, "l_discount": 0.06d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-20", "l_commitdate": "1995-12-10", "l_receiptdate": "1995-10-14", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "e carefully special theodolites. carefully " }, { "l_orderkey": 3111i32, "l_partkey": 132i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 31.0d, "l_extendedprice": 31996.03d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-26", "l_commitdate": "1995-09-26", "l_receiptdate": "1995-11-02", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "kages detect express attainments" }, { "l_orderkey": 2658i32, "l_partkey": 132i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 41.0d, "l_extendedprice": 42317.33d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-07", "l_commitdate": "1995-11-04", "l_receiptdate": "1995-12-04", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "eposits. furiously final theodolite" }, { "l_orderkey": 1219i32, "l_partkey": 132i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 6.0d, "l_extendedprice": 6192.78d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-13", "l_commitdate": "1995-12-24", "l_receiptdate": "1995-11-18", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "pecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, iron" }, { "l_orderkey": 3008i32, "l_partkey": 132i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 8.0d, "l_extendedprice": 8257.04d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-06", "l_commitdate": "1996-01-12", "l_receiptdate": "1995-12-22", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "yly ironic foxes. regular requests h" }, { "l_orderkey": 4803i32, "l_partkey": 132i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 2.0d, "l_extendedprice": 2064.26d, "l_discount": 0.08d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-04-16", "l_commitdate": "1996-03-20", "l_receiptdate": "1996-05-15", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "gular reque" }, { "l_orderkey": 4419i32, "l_partkey": 132i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 6.0d, "l_extendedprice": 6192.78d, "l_discount": 0.02d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-25", "l_commitdate": "1996-09-04", "l_receiptdate": "1996-07-20", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "ts wake slyly final dugou" }, { "l_orderkey": 3587i32, "l_partkey": 132i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 48.0d, "l_extendedprice": 49542.24d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-02", "l_commitdate": "1996-07-02", "l_receiptdate": "1996-08-05", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "beans. blithely final depe" }, { "l_orderkey": 423i32, "l_partkey": 132i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 27.0d, "l_extendedprice": 27867.51d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-20", "l_commitdate": "1996-08-01", "l_receiptdate": "1996-08-23", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "ccounts. blithely regular pack" }, { "l_orderkey": 2375i32, "l_partkey": 132i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 9.0d, "l_extendedprice": 9289.17d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-17", "l_commitdate": "1996-12-27", "l_receiptdate": "1997-02-27", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "ly against the packages. bold pinto bean" }, { "l_orderkey": 1668i32, "l_partkey": 132i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 8.0d, "l_extendedprice": 8257.04d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-23", "l_commitdate": "1997-10-09", "l_receiptdate": "1997-08-06", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "arefully regular tithes! slyl" }, { "l_orderkey": 5507i32, "l_partkey": 132i32, "l_suppkey": 3i32, "l_linenumber": 5i32, "l_quantity": 48.0d, "l_extendedprice": 49542.24d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-21", "l_commitdate": "1998-07-15", "l_receiptdate": "1998-07-31", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "uriously regular acc" } ] }
-{ "partkey": 133i32, "lines": [ { "l_orderkey": 3140i32, "l_partkey": 133i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 28.0d, "l_extendedprice": 28927.64d, "l_discount": 0.06d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-06-08", "l_commitdate": "1992-07-07", "l_receiptdate": "1992-07-08", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "lar ideas. slyly ironic d" }, { "l_orderkey": 4864i32, "l_partkey": 133i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 45.0d, "l_extendedprice": 46490.85d, "l_discount": 0.02d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-11-17", "l_commitdate": "1993-01-02", "l_receiptdate": "1992-11-26", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "round the furiously careful pa" }, { "l_orderkey": 1506i32, "l_partkey": 133i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 46.0d, "l_extendedprice": 47523.98d, "l_discount": 0.04d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-01-18", "l_commitdate": "1992-11-11", "l_receiptdate": "1993-02-09", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "sits whithout the blithely ironic packages" }, { "l_orderkey": 5414i32, "l_partkey": 133i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 15.0d, "l_extendedprice": 15496.95d, "l_discount": 0.06d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-05-18", "l_commitdate": "1993-06-09", "l_receiptdate": "1993-05-27", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "e slyly about the carefully regula" }, { "l_orderkey": 3040i32, "l_partkey": 133i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 9.0d, "l_extendedprice": 9298.17d, "l_discount": 0.0d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-06-12", "l_commitdate": "1993-05-16", "l_receiptdate": "1993-06-14", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "ges. pending packages wake. requests" }, { "l_orderkey": 258i32, "l_partkey": 133i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 31.0d, "l_extendedprice": 32027.03d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-04-20", "l_commitdate": "1994-03-20", "l_receiptdate": "1994-04-28", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": " slyly blithely special mul" }, { "l_orderkey": 2791i32, "l_partkey": 133i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 44.0d, "l_extendedprice": 45457.72d, "l_discount": 0.08d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-11-17", "l_commitdate": "1994-11-12", "l_receiptdate": "1994-12-14", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "heodolites use furio" }, { "l_orderkey": 1125i32, "l_partkey": 133i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 4.0d, "l_extendedprice": 4132.52d, "l_discount": 0.08d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-12-10", "l_commitdate": "1994-12-28", "l_receiptdate": "1994-12-30", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": " quickly express packages a" }, { "l_orderkey": 802i32, "l_partkey": 133i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 34.0d, "l_extendedprice": 35126.42d, "l_discount": 0.08d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-03-01", "l_commitdate": "1995-03-15", "l_receiptdate": "1995-03-12", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "instructions cajole carefully. quietl" }, { "l_orderkey": 3458i32, "l_partkey": 133i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 48.0d, "l_extendedprice": 49590.24d, "l_discount": 0.06d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-03-17", "l_commitdate": "1995-01-25", "l_receiptdate": "1995-03-28", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "iously pending dep" }, { "l_orderkey": 2467i32, "l_partkey": 133i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 7.0d, "l_extendedprice": 7231.91d, "l_discount": 0.0d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-28", "l_commitdate": "1995-10-04", "l_receiptdate": "1995-08-27", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "gular packages cajole " }, { "l_orderkey": 4546i32, "l_partkey": 133i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 10.0d, "l_extendedprice": 10331.3d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-23", "l_commitdate": "1995-10-10", "l_receiptdate": "1995-10-23", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "osits alongside of the" }, { "l_orderkey": 2499i32, "l_partkey": 133i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 31.0d, "l_extendedprice": 32027.03d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-09", "l_commitdate": "1995-10-28", "l_receiptdate": "1996-01-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "to beans across the carefully ironic theodo" }, { "l_orderkey": 4512i32, "l_partkey": 133i32, "l_suppkey": 4i32, "l_linenumber": 5i32, "l_quantity": 43.0d, "l_extendedprice": 44424.59d, "l_discount": 0.06d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-20", "l_commitdate": "1995-11-28", "l_receiptdate": "1996-01-14", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "are carefully. theodolites wake" }, { "l_orderkey": 1284i32, "l_partkey": 133i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 39.0d, "l_extendedprice": 40292.07d, "l_discount": 0.08d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-11", "l_commitdate": "1996-02-07", "l_receiptdate": "1996-02-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "even accoun" }, { "l_orderkey": 199i32, "l_partkey": 133i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 50.0d, "l_extendedprice": 51656.5d, "l_discount": 0.02d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-12", "l_commitdate": "1996-06-03", "l_receiptdate": "1996-07-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "essly regular ideas boost sly" }, { "l_orderkey": 3809i32, "l_partkey": 133i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 32.0d, "l_extendedprice": 33060.16d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-03", "l_commitdate": "1996-06-01", "l_receiptdate": "1996-07-25", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "xcuses would boost against the fluffily eve" }, { "l_orderkey": 5120i32, "l_partkey": 133i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 28.0d, "l_extendedprice": 28927.64d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-20", "l_commitdate": "1996-08-31", "l_receiptdate": "1996-08-06", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": " across the silent requests. caref" }, { "l_orderkey": 1472i32, "l_partkey": 133i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 26.0d, "l_extendedprice": 26861.38d, "l_discount": 0.03d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-08", "l_commitdate": "1996-11-13", "l_receiptdate": "1996-12-02", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "ic packages w" }, { "l_orderkey": 2980i32, "l_partkey": 133i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 27.0d, "l_extendedprice": 27894.51d, "l_discount": 0.08d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-08", "l_commitdate": "1996-12-03", "l_receiptdate": "1996-12-14", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": " theodolites cajole blithely sl" }, { "l_orderkey": 5762i32, "l_partkey": 133i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 47.0d, "l_extendedprice": 48557.11d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-02", "l_commitdate": "1997-03-23", "l_receiptdate": "1997-03-19", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "equests sleep after the furiously ironic pa" }, { "l_orderkey": 517i32, "l_partkey": 133i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 11.0d, "l_extendedprice": 11364.43d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-20", "l_commitdate": "1997-06-01", "l_receiptdate": "1997-06-27", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "ly throughout the fu" }, { "l_orderkey": 4453i32, "l_partkey": 133i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 16.0d, "l_extendedprice": 16530.08d, "l_discount": 0.03d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-22", "l_commitdate": "1997-05-05", "l_receiptdate": "1997-08-03", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "ar excuses nag quickly even accounts. b" }, { "l_orderkey": 4544i32, "l_partkey": 133i32, "l_suppkey": 4i32, "l_linenumber": 5i32, "l_quantity": 31.0d, "l_extendedprice": 32027.03d, "l_discount": 0.09d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-09", "l_commitdate": "1997-09-29", "l_receiptdate": "1997-08-17", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "dolites detect quickly reg" }, { "l_orderkey": 4964i32, "l_partkey": 133i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 29.0d, "l_extendedprice": 29960.77d, "l_discount": 0.04d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-10-18", "l_commitdate": "1997-08-30", "l_receiptdate": "1997-11-01", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "k accounts nag carefully-- ironic, fin" }, { "l_orderkey": 2789i32, "l_partkey": 133i32, "l_suppkey": 4i32, "l_linenumber": 7i32, "l_quantity": 42.0d, "l_extendedprice": 43391.46d, "l_discount": 0.01d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-28", "l_commitdate": "1998-05-17", "l_receiptdate": "1998-05-24", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "ending packages shoul" }, { "l_orderkey": 3523i32, "l_partkey": 133i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 4.0d, "l_extendedprice": 4132.52d, "l_discount": 0.03d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-08", "l_commitdate": "1998-05-18", "l_receiptdate": "1998-05-25", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "ts. final accounts detect furiously along " }, { "l_orderkey": 4711i32, "l_partkey": 133i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 7.0d, "l_extendedprice": 7231.91d, "l_discount": 0.03d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-12", "l_commitdate": "1998-06-24", "l_receiptdate": "1998-05-24", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "ly. bold accounts use fluff" } ] }
-{ "partkey": 134i32, "lines": [ { "l_orderkey": 3685i32, "l_partkey": 134i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 38.0d, "l_extendedprice": 39296.94d, "l_discount": 0.08d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-05-17", "l_commitdate": "1992-03-16", "l_receiptdate": "1992-06-06", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "thely unusual pack" }, { "l_orderkey": 644i32, "l_partkey": 134i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 46.0d, "l_extendedprice": 47569.98d, "l_discount": 0.02d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-05-20", "l_commitdate": "1992-06-14", "l_receiptdate": "1992-06-14", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": " special requests was sometimes expre" }, { "l_orderkey": 421i32, "l_partkey": 134i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 1.0d, "l_extendedprice": 1034.13d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-05-29", "l_commitdate": "1992-04-27", "l_receiptdate": "1992-06-09", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "oldly busy deposit" }, { "l_orderkey": 2054i32, "l_partkey": 134i32, "l_suppkey": 10i32, "l_linenumber": 6i32, "l_quantity": 17.0d, "l_extendedprice": 17580.21d, "l_discount": 0.08d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-06-09", "l_commitdate": "1992-08-28", "l_receiptdate": "1992-06-16", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "ges nag acc" }, { "l_orderkey": 2023i32, "l_partkey": 134i32, "l_suppkey": 10i32, "l_linenumber": 7i32, "l_quantity": 50.0d, "l_extendedprice": 51706.5d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-06-20", "l_commitdate": "1992-07-04", "l_receiptdate": "1992-06-23", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "its! carefully ex" }, { "l_orderkey": 134i32, "l_partkey": 134i32, "l_suppkey": 10i32, "l_linenumber": 6i32, "l_quantity": 12.0d, "l_extendedprice": 12409.56d, "l_discount": 0.0d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-08-08", "l_commitdate": "1992-07-07", "l_receiptdate": "1992-08-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "lyly regular pac" }, { "l_orderkey": 5893i32, "l_partkey": 134i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 43.0d, "l_extendedprice": 44467.59d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-11-02", "l_commitdate": "1992-09-27", "l_receiptdate": "1992-11-21", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "s. regular courts above the carefully silen" }, { "l_orderkey": 3297i32, "l_partkey": 134i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 10.0d, "l_extendedprice": 10341.3d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-12-14", "l_commitdate": "1993-01-21", "l_receiptdate": "1992-12-26", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "ironic idea" }, { "l_orderkey": 773i32, "l_partkey": 134i32, "l_suppkey": 5i32, "l_linenumber": 5i32, "l_quantity": 9.0d, "l_extendedprice": 9307.17d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-10-09", "l_commitdate": "1993-12-25", "l_receiptdate": "1993-11-04", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "ent orbits haggle fluffily after the " }, { "l_orderkey": 2055i32, "l_partkey": 134i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 16.0d, "l_extendedprice": 16546.08d, "l_discount": 0.02d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-11-16", "l_commitdate": "1993-11-12", "l_receiptdate": "1993-11-28", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "arefully daringly regular accounts." }, { "l_orderkey": 2976i32, "l_partkey": 134i32, "l_suppkey": 5i32, "l_linenumber": 5i32, "l_quantity": 13.0d, "l_extendedprice": 13443.69d, "l_discount": 0.0d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-02-06", "l_commitdate": "1994-02-02", "l_receiptdate": "1994-02-19", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": " furiously final courts boost " }, { "l_orderkey": 1892i32, "l_partkey": 134i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 37.0d, "l_extendedprice": 38262.81d, "l_discount": 0.1d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-04-11", "l_commitdate": "1994-06-04", "l_receiptdate": "1994-04-24", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "nts. slyly regular asymptot" }, { "l_orderkey": 2853i32, "l_partkey": 134i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 26.0d, "l_extendedprice": 26887.38d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-06-26", "l_commitdate": "1994-06-05", "l_receiptdate": "1994-07-02", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "dolphins wake slyly. blith" }, { "l_orderkey": 1985i32, "l_partkey": 134i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 20.0d, "l_extendedprice": 20682.6d, "l_discount": 0.07d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-10-29", "l_commitdate": "1994-11-12", "l_receiptdate": "1994-11-27", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "regular requests. furiously express" }, { "l_orderkey": 2433i32, "l_partkey": 134i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 20.0d, "l_extendedprice": 20682.6d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-12-09", "l_commitdate": "1994-10-20", "l_receiptdate": "1994-12-15", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "lithely blithely final ide" }, { "l_orderkey": 3332i32, "l_partkey": 134i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 27.0d, "l_extendedprice": 27921.51d, "l_discount": 0.03d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-12-10", "l_commitdate": "1995-01-14", "l_receiptdate": "1994-12-11", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "ording to the slyly regula" }, { "l_orderkey": 5636i32, "l_partkey": 134i32, "l_suppkey": 10i32, "l_linenumber": 7i32, "l_quantity": 24.0d, "l_extendedprice": 24819.12d, "l_discount": 0.1d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-04-12", "l_commitdate": "1995-03-27", "l_receiptdate": "1995-04-16", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "counts sleep furiously b" }, { "l_orderkey": 3399i32, "l_partkey": 134i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 28.0d, "l_extendedprice": 28955.64d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-06-29", "l_commitdate": "1995-05-19", "l_receiptdate": "1995-07-12", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "oggedly final theodolites grow. fi" }, { "l_orderkey": 3750i32, "l_partkey": 134i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 37.0d, "l_extendedprice": 38262.81d, "l_discount": 0.04d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-08", "l_commitdate": "1995-07-28", "l_receiptdate": "1995-07-28", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "usly busy account" }, { "l_orderkey": 1317i32, "l_partkey": 134i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 34.0d, "l_extendedprice": 35160.42d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-13", "l_commitdate": "1995-08-08", "l_receiptdate": "1995-09-10", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "deposits boost thinly blithely final id" }, { "l_orderkey": 2882i32, "l_partkey": 134i32, "l_suppkey": 5i32, "l_linenumber": 5i32, "l_quantity": 32.0d, "l_extendedprice": 33092.16d, "l_discount": 0.07d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-21", "l_commitdate": "1995-11-10", "l_receiptdate": "1995-11-01", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "sts. quickly regular e" }, { "l_orderkey": 1666i32, "l_partkey": 134i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 31.0d, "l_extendedprice": 32058.03d, "l_discount": 0.05d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-02-11", "l_commitdate": "1996-01-11", "l_receiptdate": "1996-02-28", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "ding to the express, bold accounts. fu" }, { "l_orderkey": 199i32, "l_partkey": 134i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 30.0d, "l_extendedprice": 31023.9d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-27", "l_commitdate": "1996-05-29", "l_receiptdate": "1996-04-14", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "ilent packages doze quickly. thinly " }, { "l_orderkey": 5152i32, "l_partkey": 134i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 50.0d, "l_extendedprice": 51706.5d, "l_discount": 0.04d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-10", "l_commitdate": "1997-02-04", "l_receiptdate": "1997-03-15", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": " the final deposits. slyly ironic warth" }, { "l_orderkey": 5477i32, "l_partkey": 134i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 31.0d, "l_extendedprice": 32058.03d, "l_discount": 0.04d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-11", "l_commitdate": "1998-01-30", "l_receiptdate": "1998-02-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": " special Tiresias cajole furiously. pending" }, { "l_orderkey": 4039i32, "l_partkey": 134i32, "l_suppkey": 5i32, "l_linenumber": 5i32, "l_quantity": 43.0d, "l_extendedprice": 44467.59d, "l_discount": 0.09d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-20", "l_commitdate": "1998-01-11", "l_receiptdate": "1998-02-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "sts along the regular in" }, { "l_orderkey": 1408i32, "l_partkey": 134i32, "l_suppkey": 10i32, "l_linenumber": 6i32, "l_quantity": 42.0d, "l_extendedprice": 43433.46d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-30", "l_commitdate": "1998-02-07", "l_receiptdate": "1998-02-18", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "even packages. even accounts cajole" }, { "l_orderkey": 518i32, "l_partkey": 134i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 12.0d, "l_extendedprice": 12409.56d, "l_discount": 0.01d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-08", "l_commitdate": "1998-03-31", "l_receiptdate": "1998-04-06", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": " packages thrash slyly" }, { "l_orderkey": 838i32, "l_partkey": 134i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 20.0d, "l_extendedprice": 20682.6d, "l_discount": 0.1d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-11", "l_commitdate": "1998-03-25", "l_receiptdate": "1998-04-19", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": " furiously final ideas. slow, bold " }, { "l_orderkey": 3207i32, "l_partkey": 134i32, "l_suppkey": 5i32, "l_linenumber": 6i32, "l_quantity": 32.0d, "l_extendedprice": 33092.16d, "l_discount": 0.03d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-19", "l_commitdate": "1998-05-01", "l_receiptdate": "1998-05-08", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "l deposits wake beyond the carefully" }, { "l_orderkey": 5798i32, "l_partkey": 134i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 22.0d, "l_extendedprice": 22750.86d, "l_discount": 0.02d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-24", "l_commitdate": "1998-06-06", "l_receiptdate": "1998-07-20", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "sits poach carefully" }, { "l_orderkey": 3523i32, "l_partkey": 134i32, "l_suppkey": 5i32, "l_linenumber": 5i32, "l_quantity": 48.0d, "l_extendedprice": 49638.24d, "l_discount": 0.0d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-22", "l_commitdate": "1998-06-25", "l_receiptdate": "1998-08-19", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": " regular requests" } ] }
-{ "partkey": 136i32, "lines": [ { "l_orderkey": 2786i32, "l_partkey": 136i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 15.0d, "l_extendedprice": 15541.95d, "l_discount": 0.03d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-05-19", "l_commitdate": "1992-05-08", "l_receiptdate": "1992-05-28", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "low deposits are ironic" }, { "l_orderkey": 4035i32, "l_partkey": 136i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 4.0d, "l_extendedprice": 4144.52d, "l_discount": 0.07d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-05-21", "l_commitdate": "1992-04-24", "l_receiptdate": "1992-05-24", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "en instructions sleep blith" }, { "l_orderkey": 4805i32, "l_partkey": 136i32, "l_suppkey": 7i32, "l_linenumber": 6i32, "l_quantity": 18.0d, "l_extendedprice": 18650.34d, "l_discount": 0.06d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-06-07", "l_commitdate": "1992-07-10", "l_receiptdate": "1992-06-12", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "o use pending, unusu" }, { "l_orderkey": 5986i32, "l_partkey": 136i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 6.0d, "l_extendedprice": 6216.78d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-07-16", "l_commitdate": "1992-06-10", "l_receiptdate": "1992-07-29", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "al foxes within the slyly speci" }, { "l_orderkey": 4384i32, "l_partkey": 136i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 5.0d, "l_extendedprice": 5180.65d, "l_discount": 0.09d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-08-22", "l_commitdate": "1992-08-24", "l_receiptdate": "1992-09-20", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "instructions sleep. blithely express pa" }, { "l_orderkey": 3650i32, "l_partkey": 136i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 30.0d, "l_extendedprice": 31083.9d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-08-26", "l_commitdate": "1992-07-05", "l_receiptdate": "1992-09-01", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "ckly special platelets. furiously sil" }, { "l_orderkey": 1027i32, "l_partkey": 136i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 22.0d, "l_extendedprice": 22794.86d, "l_discount": 0.02d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-09-03", "l_commitdate": "1992-08-14", "l_receiptdate": "1992-10-01", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "the furiously express ex" }, { "l_orderkey": 866i32, "l_partkey": 136i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 5.0d, "l_extendedprice": 5180.65d, "l_discount": 0.08d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-01-22", "l_commitdate": "1993-01-14", "l_receiptdate": "1993-02-07", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "tegrate fluffily. carefully f" }, { "l_orderkey": 129i32, "l_partkey": 136i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 34.0d, "l_extendedprice": 35228.42d, "l_discount": 0.0d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-01-29", "l_commitdate": "1993-02-14", "l_receiptdate": "1993-02-10", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "quests. express ideas" }, { "l_orderkey": 196i32, "l_partkey": 136i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 19.0d, "l_extendedprice": 19686.47d, "l_discount": 0.03d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-04-17", "l_commitdate": "1993-05-27", "l_receiptdate": "1993-04-30", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "sts maintain foxes. furiously regular p" }, { "l_orderkey": 2084i32, "l_partkey": 136i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 37.0d, "l_extendedprice": 38336.81d, "l_discount": 0.07d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-07-16", "l_commitdate": "1993-04-20", "l_receiptdate": "1993-08-06", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "y careful courts." }, { "l_orderkey": 1831i32, "l_partkey": 136i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 9.0d, "l_extendedprice": 9325.17d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-12-17", "l_commitdate": "1994-01-27", "l_receiptdate": "1993-12-26", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "mptotes. furiously regular dolphins al" }, { "l_orderkey": 5316i32, "l_partkey": 136i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 31.0d, "l_extendedprice": 32120.03d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-04-01", "l_commitdate": "1994-04-21", "l_receiptdate": "1994-04-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "s. deposits cajole around t" }, { "l_orderkey": 2915i32, "l_partkey": 136i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 15.0d, "l_extendedprice": 15541.95d, "l_discount": 0.07d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-05-01", "l_commitdate": "1994-06-12", "l_receiptdate": "1994-05-15", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "al requests haggle furiousl" }, { "l_orderkey": 2373i32, "l_partkey": 136i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 3.0d, "l_extendedprice": 3108.39d, "l_discount": 0.08d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-05-15", "l_commitdate": "1994-06-10", "l_receiptdate": "1994-06-04", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "dependencies wake ironical" }, { "l_orderkey": 96i32, "l_partkey": 136i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 30.0d, "l_extendedprice": 31083.9d, "l_discount": 0.01d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-06-03", "l_commitdate": "1994-05-29", "l_receiptdate": "1994-06-22", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "e quickly even ideas. furiou" }, { "l_orderkey": 1312i32, "l_partkey": 136i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 28.0d, "l_extendedprice": 29011.64d, "l_discount": 0.06d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-09-09", "l_commitdate": "1994-08-01", "l_receiptdate": "1994-10-02", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "uriously final frays should use quick" }, { "l_orderkey": 3332i32, "l_partkey": 136i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 21.0d, "l_extendedprice": 21758.73d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-02-04", "l_commitdate": "1995-01-08", "l_receiptdate": "1995-02-06", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": " quick packages sle" }, { "l_orderkey": 4707i32, "l_partkey": 136i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 49.0d, "l_extendedprice": 50770.37d, "l_discount": 0.0d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "F", "l_shipdate": "1995-06-17", "l_commitdate": "1995-05-16", "l_receiptdate": "1995-06-25", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": " alongside of the slyly ironic instructio" }, { "l_orderkey": 1095i32, "l_partkey": 136i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 24.0d, "l_extendedprice": 24867.12d, "l_discount": 0.04d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-24", "l_commitdate": "1995-10-20", "l_receiptdate": "1995-09-09", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "packages nod furiously above the carefully " }, { "l_orderkey": 4871i32, "l_partkey": 136i32, "l_suppkey": 2i32, "l_linenumber": 6i32, "l_quantity": 36.0d, "l_extendedprice": 37300.68d, "l_discount": 0.02d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-18", "l_commitdate": "1995-08-29", "l_receiptdate": "1995-10-05", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "ely according" }, { "l_orderkey": 5153i32, "l_partkey": 136i32, "l_suppkey": 2i32, "l_linenumber": 6i32, "l_quantity": 42.0d, "l_extendedprice": 43517.46d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-19", "l_commitdate": "1995-11-23", "l_receiptdate": "1995-11-06", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "ickly even deposi" }, { "l_orderkey": 486i32, "l_partkey": 136i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 26.0d, "l_extendedprice": 26939.38d, "l_discount": 0.04d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-16", "l_commitdate": "1996-05-25", "l_receiptdate": "1996-03-31", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "forges along the " }, { "l_orderkey": 2951i32, "l_partkey": 136i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 24.0d, "l_extendedprice": 24867.12d, "l_discount": 0.07d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-24", "l_commitdate": "1996-04-16", "l_receiptdate": "1996-04-08", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": " ironic multipliers. express, regular" }, { "l_orderkey": 3428i32, "l_partkey": 136i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 47.0d, "l_extendedprice": 48698.11d, "l_discount": 0.07d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-04-16", "l_commitdate": "1996-06-08", "l_receiptdate": "1996-05-05", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "y final pinto " }, { "l_orderkey": 1153i32, "l_partkey": 136i32, "l_suppkey": 7i32, "l_linenumber": 6i32, "l_quantity": 26.0d, "l_extendedprice": 26939.38d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-16", "l_commitdate": "1996-07-12", "l_receiptdate": "1996-09-08", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "kages haggle carefully. f" }, { "l_orderkey": 1733i32, "l_partkey": 136i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 38.0d, "l_extendedprice": 39372.94d, "l_discount": 0.01d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-26", "l_commitdate": "1996-07-23", "l_receiptdate": "1996-08-28", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": " deposits " }, { "l_orderkey": 3782i32, "l_partkey": 136i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 30.0d, "l_extendedprice": 31083.9d, "l_discount": 0.06d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-19", "l_commitdate": "1996-10-31", "l_receiptdate": "1997-01-14", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "slyly even pinto beans hag" }, { "l_orderkey": 1574i32, "l_partkey": 136i32, "l_suppkey": 7i32, "l_linenumber": 7i32, "l_quantity": 14.0d, "l_extendedprice": 14505.82d, "l_discount": 0.04d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-30", "l_commitdate": "1997-01-19", "l_receiptdate": "1997-01-20", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "ily bold a" }, { "l_orderkey": 3106i32, "l_partkey": 136i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 49.0d, "l_extendedprice": 50770.37d, "l_discount": 0.06d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-27", "l_commitdate": "1997-03-11", "l_receiptdate": "1997-03-12", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "lets. quietly regular courts " }, { "l_orderkey": 3366i32, "l_partkey": 136i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 9.0d, "l_extendedprice": 9325.17d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-02", "l_commitdate": "1997-07-05", "l_receiptdate": "1997-06-26", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "ackages sleep carefully across the bli" }, { "l_orderkey": 5604i32, "l_partkey": 136i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 49.0d, "l_extendedprice": 50770.37d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-02", "l_commitdate": "1998-07-07", "l_receiptdate": "1998-05-20", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "ove the regula" }, { "l_orderkey": 1061i32, "l_partkey": 136i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 41.0d, "l_extendedprice": 42481.33d, "l_discount": 0.0d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-29", "l_commitdate": "1998-07-02", "l_receiptdate": "1998-07-27", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "s are. ironic theodolites cajole. dep" }, { "l_orderkey": 5763i32, "l_partkey": 136i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 23.0d, "l_extendedprice": 23830.99d, "l_discount": 0.09d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-25", "l_commitdate": "1998-09-21", "l_receiptdate": "1998-08-15", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "re after the blithel" }, { "l_orderkey": 5604i32, "l_partkey": 136i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 44.0d, "l_extendedprice": 45589.72d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-06", "l_commitdate": "1998-07-08", "l_receiptdate": "1998-09-04", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "efully ironi" } ] }
-{ "partkey": 139i32, "lines": [ { "l_orderkey": 2880i32, "l_partkey": 139i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 26.0d, "l_extendedprice": 27017.38d, "l_discount": 0.07d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-04-12", "l_commitdate": "1992-04-15", "l_receiptdate": "1992-04-28", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "ully among the regular warthogs" }, { "l_orderkey": 4992i32, "l_partkey": 139i32, "l_suppkey": 5i32, "l_linenumber": 5i32, "l_quantity": 23.0d, "l_extendedprice": 23899.99d, "l_discount": 0.01d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-06-28", "l_commitdate": "1992-07-15", "l_receiptdate": "1992-07-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "uickly regul" }, { "l_orderkey": 4099i32, "l_partkey": 139i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 7.0d, "l_extendedprice": 7273.91d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-09-12", "l_commitdate": "1992-11-13", "l_receiptdate": "1992-09-14", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "onic foxes. quickly final fox" }, { "l_orderkey": 1956i32, "l_partkey": 139i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 39.0d, "l_extendedprice": 40526.07d, "l_discount": 0.08d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-09-24", "l_commitdate": "1992-11-26", "l_receiptdate": "1992-10-15", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "r theodolites sleep above the b" }, { "l_orderkey": 3328i32, "l_partkey": 139i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 44.0d, "l_extendedprice": 45721.72d, "l_discount": 0.05d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-12-03", "l_commitdate": "1992-12-19", "l_receiptdate": "1992-12-09", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "dly quickly final foxes? re" }, { "l_orderkey": 4578i32, "l_partkey": 139i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 7.0d, "l_extendedprice": 7273.91d, "l_discount": 0.09d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-12-07", "l_commitdate": "1992-11-27", "l_receiptdate": "1993-01-05", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "odolites. carefully unusual ideas accor" }, { "l_orderkey": 3074i32, "l_partkey": 139i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 39.0d, "l_extendedprice": 40526.07d, "l_discount": 0.03d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-12-08", "l_commitdate": "1993-01-28", "l_receiptdate": "1992-12-09", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "iously throu" }, { "l_orderkey": 1735i32, "l_partkey": 139i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 49.0d, "l_extendedprice": 50917.37d, "l_discount": 0.03d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-12-31", "l_commitdate": "1993-02-03", "l_receiptdate": "1993-01-25", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "y express accounts above the exp" }, { "l_orderkey": 710i32, "l_partkey": 139i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 7.0d, "l_extendedprice": 7273.91d, "l_discount": 0.04d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-01-20", "l_commitdate": "1993-03-28", "l_receiptdate": "1993-02-15", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "xpress, special ideas. bl" }, { "l_orderkey": 544i32, "l_partkey": 139i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 47.0d, "l_extendedprice": 48839.11d, "l_discount": 0.08d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-03-14", "l_commitdate": "1993-03-27", "l_receiptdate": "1993-03-27", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "ecial pains. deposits grow foxes. " }, { "l_orderkey": 3171i32, "l_partkey": 139i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 50.0d, "l_extendedprice": 51956.5d, "l_discount": 0.01d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-07-19", "l_commitdate": "1993-05-15", "l_receiptdate": "1993-07-31", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "riously final foxes about the ca" }, { "l_orderkey": 867i32, "l_partkey": 139i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 7.0d, "l_extendedprice": 7273.91d, "l_discount": 0.04d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-02-19", "l_commitdate": "1993-12-25", "l_receiptdate": "1994-02-25", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "pendencies-- slyly unusual packages hagg" }, { "l_orderkey": 1059i32, "l_partkey": 139i32, "l_suppkey": 5i32, "l_linenumber": 5i32, "l_quantity": 37.0d, "l_extendedprice": 38447.81d, "l_discount": 0.09d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-03-31", "l_commitdate": "1994-05-08", "l_receiptdate": "1994-04-06", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": " packages lose in place of the slyly unusu" }, { "l_orderkey": 2853i32, "l_partkey": 139i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 14.0d, "l_extendedprice": 14547.82d, "l_discount": 0.07d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-05-16", "l_commitdate": "1994-07-01", "l_receiptdate": "1994-05-27", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "oach slyly along t" }, { "l_orderkey": 4647i32, "l_partkey": 139i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 2.0d, "l_extendedprice": 2078.26d, "l_discount": 0.04d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-07-03", "l_commitdate": "1994-07-22", "l_receiptdate": "1994-07-22", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "dolites wake furiously special pinto be" }, { "l_orderkey": 4354i32, "l_partkey": 139i32, "l_suppkey": 5i32, "l_linenumber": 7i32, "l_quantity": 18.0d, "l_extendedprice": 18704.34d, "l_discount": 0.03d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-12-07", "l_commitdate": "1994-12-11", "l_receiptdate": "1994-12-11", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "ross the furiously " }, { "l_orderkey": 5765i32, "l_partkey": 139i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 31.0d, "l_extendedprice": 32213.03d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-03-01", "l_commitdate": "1995-01-23", "l_receiptdate": "1995-03-31", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "the furiou" }, { "l_orderkey": 5251i32, "l_partkey": 139i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 36.0d, "l_extendedprice": 37408.68d, "l_discount": 0.1d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-16", "l_commitdate": "1995-07-05", "l_receiptdate": "1995-07-28", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "slowly! bli" }, { "l_orderkey": 2309i32, "l_partkey": 139i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 46.0d, "l_extendedprice": 47799.98d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-02", "l_commitdate": "1995-10-30", "l_receiptdate": "1995-10-30", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "sly according to the carefully " }, { "l_orderkey": 2823i32, "l_partkey": 139i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 48.0d, "l_extendedprice": 49878.24d, "l_discount": 0.09d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-21", "l_commitdate": "1995-10-30", "l_receiptdate": "1995-11-27", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "ously busily slow excus" }, { "l_orderkey": 101i32, "l_partkey": 139i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 12.0d, "l_extendedprice": 12469.56d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-29", "l_commitdate": "1996-04-20", "l_receiptdate": "1996-04-12", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": ". quickly regular" }, { "l_orderkey": 1731i32, "l_partkey": 139i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 7.0d, "l_extendedprice": 7273.91d, "l_discount": 0.04d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-04-11", "l_commitdate": "1996-02-13", "l_receiptdate": "1996-04-30", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "fily quick asymptotes" }, { "l_orderkey": 5252i32, "l_partkey": 139i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 39.0d, "l_extendedprice": 40526.07d, "l_discount": 0.06d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-17", "l_commitdate": "1996-04-23", "l_receiptdate": "1996-05-23", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "gular requests." }, { "l_orderkey": 2534i32, "l_partkey": 139i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 29.0d, "l_extendedprice": 30134.77d, "l_discount": 0.07d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-09", "l_commitdate": "1996-09-29", "l_receiptdate": "1996-08-11", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "ugouts haggle slyly. final" }, { "l_orderkey": 2596i32, "l_partkey": 139i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 43.0d, "l_extendedprice": 44682.59d, "l_discount": 0.07d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-03", "l_commitdate": "1996-10-26", "l_receiptdate": "1996-09-15", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "ial packages haggl" }, { "l_orderkey": 2179i32, "l_partkey": 139i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 20.0d, "l_extendedprice": 20782.6d, "l_discount": 0.03d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-30", "l_commitdate": "1996-11-10", "l_receiptdate": "1996-10-30", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "ncies. fin" }, { "l_orderkey": 3910i32, "l_partkey": 139i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 10.0d, "l_extendedprice": 10391.3d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-18", "l_commitdate": "1996-10-31", "l_receiptdate": "1996-11-14", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "tions boost furiously unusual e" }, { "l_orderkey": 3747i32, "l_partkey": 139i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 30.0d, "l_extendedprice": 31173.9d, "l_discount": 0.0d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-16", "l_commitdate": "1996-11-15", "l_receiptdate": "1996-12-17", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "! furiously f" }, { "l_orderkey": 2177i32, "l_partkey": 139i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 27.0d, "l_extendedprice": 28056.51d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-29", "l_commitdate": "1997-03-20", "l_receiptdate": "1997-02-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "even, regula" }, { "l_orderkey": 3013i32, "l_partkey": 139i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 30.0d, "l_extendedprice": 31173.9d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-02", "l_commitdate": "1997-03-09", "l_receiptdate": "1997-05-12", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "ronic packages. slyly even" }, { "l_orderkey": 4066i32, "l_partkey": 139i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 9.0d, "l_extendedprice": 9352.17d, "l_discount": 0.01d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-06", "l_commitdate": "1997-03-25", "l_receiptdate": "1997-05-27", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "nal, ironic accounts. blithel" }, { "l_orderkey": 3427i32, "l_partkey": 139i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 40.0d, "l_extendedprice": 41565.2d, "l_discount": 0.06d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-12", "l_commitdate": "1997-08-19", "l_receiptdate": "1997-06-23", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "patterns cajole ca" }, { "l_orderkey": 5732i32, "l_partkey": 139i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 26.0d, "l_extendedprice": 27017.38d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-18", "l_commitdate": "1997-10-25", "l_receiptdate": "1997-09-12", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "totes cajole according to the theodolites." }, { "l_orderkey": 1696i32, "l_partkey": 139i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 13.0d, "l_extendedprice": 13508.69d, "l_discount": 0.08d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-01", "l_commitdate": "1998-03-25", "l_receiptdate": "1998-03-24", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "tructions play slyly q" } ] }
-{ "partkey": 150i32, "lines": [ { "l_orderkey": 4805i32, "l_partkey": 150i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 7.0d, "l_extendedprice": 7351.05d, "l_discount": 0.09d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-05-01", "l_commitdate": "1992-07-09", "l_receiptdate": "1992-05-09", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": " requests. regular deposit" }, { "l_orderkey": 1856i32, "l_partkey": 150i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 22.0d, "l_extendedprice": 23103.3d, "l_discount": 0.08d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-05-02", "l_commitdate": "1992-05-26", "l_receiptdate": "1992-05-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "platelets detect slyly regular packages. ca" }, { "l_orderkey": 1701i32, "l_partkey": 150i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 47.0d, "l_extendedprice": 49357.05d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-05-25", "l_commitdate": "1992-06-29", "l_receiptdate": "1992-06-15", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "slyly final requests cajole requests. f" }, { "l_orderkey": 3333i32, "l_partkey": 150i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 27.0d, "l_extendedprice": 28354.05d, "l_discount": 0.06d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-12-06", "l_commitdate": "1992-10-26", "l_receiptdate": "1992-12-07", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "s dazzle fluffil" }, { "l_orderkey": 4864i32, "l_partkey": 150i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 28.0d, "l_extendedprice": 29404.2d, "l_discount": 0.06d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-02-06", "l_commitdate": "1992-12-15", "l_receiptdate": "1993-02-10", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "thely around the bli" }, { "l_orderkey": 677i32, "l_partkey": 150i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 25.0d, "l_extendedprice": 26253.75d, "l_discount": 0.0d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-03-12", "l_commitdate": "1994-02-02", "l_receiptdate": "1994-03-28", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": " packages integrate blithely" }, { "l_orderkey": 4674i32, "l_partkey": 150i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 50.0d, "l_extendedprice": 52507.5d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-05-13", "l_commitdate": "1994-06-15", "l_receiptdate": "1994-06-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "haggle about the blithel" }, { "l_orderkey": 1829i32, "l_partkey": 150i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 12.0d, "l_extendedprice": 12601.8d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-08-23", "l_commitdate": "1994-07-13", "l_receiptdate": "1994-09-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "ges wake furiously express pinto" }, { "l_orderkey": 4931i32, "l_partkey": 150i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 25.0d, "l_extendedprice": 26253.75d, "l_discount": 0.05d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-12-19", "l_commitdate": "1995-01-05", "l_receiptdate": "1994-12-21", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "aggle bravely according to the quic" }, { "l_orderkey": 4423i32, "l_partkey": 150i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 3.0d, "l_extendedprice": 3150.45d, "l_discount": 0.03d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-03-22", "l_commitdate": "1995-04-06", "l_receiptdate": "1995-04-19", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": " final theodolites nag after the bli" }, { "l_orderkey": 5444i32, "l_partkey": 150i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 40.0d, "l_extendedprice": 42006.0d, "l_discount": 0.08d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-04-06", "l_commitdate": "1995-05-08", "l_receiptdate": "1995-05-06", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": " even packages." }, { "l_orderkey": 4550i32, "l_partkey": 150i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 9.0d, "l_extendedprice": 9451.35d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-04-19", "l_commitdate": "1995-02-07", "l_receiptdate": "1995-04-24", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "l dependencies boost slyly after th" }, { "l_orderkey": 1025i32, "l_partkey": 150i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 36.0d, "l_extendedprice": 37805.4d, "l_discount": 0.03d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-05-15", "l_commitdate": "1995-07-05", "l_receiptdate": "1995-06-10", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "e unusual, regular instr" }, { "l_orderkey": 5253i32, "l_partkey": 150i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 38.0d, "l_extendedprice": 39905.7d, "l_discount": 0.02d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-03", "l_commitdate": "1995-06-14", "l_receiptdate": "1995-08-27", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "onic dependencies are furiou" }, { "l_orderkey": 5892i32, "l_partkey": 150i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 37.0d, "l_extendedprice": 38855.55d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-12", "l_commitdate": "1995-06-11", "l_receiptdate": "1995-09-05", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "maintain. bold, expre" }, { "l_orderkey": 1317i32, "l_partkey": 150i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 36.0d, "l_extendedprice": 37805.4d, "l_discount": 0.02d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-03", "l_commitdate": "1995-07-06", "l_receiptdate": "1995-09-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": " deposits. quic" }, { "l_orderkey": 2532i32, "l_partkey": 150i32, "l_suppkey": 1i32, "l_linenumber": 6i32, "l_quantity": 20.0d, "l_extendedprice": 21003.0d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-02", "l_commitdate": "1995-11-26", "l_receiptdate": "1995-12-08", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "er the slyly pending" }, { "l_orderkey": 2499i32, "l_partkey": 150i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 15.0d, "l_extendedprice": 15752.25d, "l_discount": 0.04d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-21", "l_commitdate": "1995-12-06", "l_receiptdate": "1996-01-19", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": " slyly across the slyly" }, { "l_orderkey": 4773i32, "l_partkey": 150i32, "l_suppkey": 3i32, "l_linenumber": 5i32, "l_quantity": 20.0d, "l_extendedprice": 21003.0d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-28", "l_commitdate": "1996-02-17", "l_receiptdate": "1996-01-15", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": " blithely final deposits nag after t" }, { "l_orderkey": 4038i32, "l_partkey": 150i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 29.0d, "l_extendedprice": 30454.35d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-07", "l_commitdate": "1996-03-08", "l_receiptdate": "1996-01-13", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "ffix. quietly ironic packages a" }, { "l_orderkey": 5319i32, "l_partkey": 150i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 31.0d, "l_extendedprice": 32554.65d, "l_discount": 0.04d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-26", "l_commitdate": "1996-03-07", "l_receiptdate": "1996-04-24", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "d carefully about the courts. fluffily spe" }, { "l_orderkey": 5537i32, "l_partkey": 150i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 15.0d, "l_extendedprice": 15752.25d, "l_discount": 0.07d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-13", "l_commitdate": "1996-12-25", "l_receiptdate": "1997-01-27", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "eposits. permanently pending packag" }, { "l_orderkey": 485i32, "l_partkey": 150i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 50.0d, "l_extendedprice": 52507.5d, "l_discount": 0.01d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-28", "l_commitdate": "1997-05-26", "l_receiptdate": "1997-04-18", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "iously quick excuses. carefully final f" }, { "l_orderkey": 5157i32, "l_partkey": 150i32, "l_suppkey": 9i32, "l_linenumber": 6i32, "l_quantity": 26.0d, "l_extendedprice": 27303.9d, "l_discount": 0.1d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-28", "l_commitdate": "1997-08-22", "l_receiptdate": "1997-08-22", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "nto beans cajole car" }, { "l_orderkey": 5734i32, "l_partkey": 150i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 6.0d, "l_extendedprice": 6300.9d, "l_discount": 0.07d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-10-27", "l_commitdate": "1997-12-19", "l_receiptdate": "1997-11-02", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "s. regular platelets cajole furiously. regu" }, { "l_orderkey": 1251i32, "l_partkey": 150i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 7.0d, "l_extendedprice": 7351.05d, "l_discount": 0.07d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-08", "l_commitdate": "1997-12-27", "l_receiptdate": "1998-01-18", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "riously pe" }, { "l_orderkey": 2561i32, "l_partkey": 150i32, "l_suppkey": 3i32, "l_linenumber": 5i32, "l_quantity": 2.0d, "l_extendedprice": 2100.3d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-14", "l_commitdate": "1998-01-21", "l_receiptdate": "1998-03-27", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "s are. silently silent foxes sleep about" }, { "l_orderkey": 4711i32, "l_partkey": 150i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 22.0d, "l_extendedprice": 23103.3d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-21", "l_commitdate": "1998-06-18", "l_receiptdate": "1998-07-19", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "along the quickly careful packages. bli" }, { "l_orderkey": 4192i32, "l_partkey": 150i32, "l_suppkey": 7i32, "l_linenumber": 6i32, "l_quantity": 44.0d, "l_extendedprice": 46206.6d, "l_discount": 0.1d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-06", "l_commitdate": "1998-07-09", "l_receiptdate": "1998-08-20", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "structions mai" } ] }
-{ "partkey": 155i32, "lines": [ { "l_orderkey": 1956i32, "l_partkey": 155i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 16.0d, "l_extendedprice": 16882.4d, "l_discount": 0.08d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-09-28", "l_commitdate": "1992-10-21", "l_receiptdate": "1992-09-30", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": " wake after the " }, { "l_orderkey": 5378i32, "l_partkey": 155i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 39.0d, "l_extendedprice": 41150.85d, "l_discount": 0.07d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-11-25", "l_commitdate": "1992-12-22", "l_receiptdate": "1992-12-02", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "ts are quickly around the" }, { "l_orderkey": 2305i32, "l_partkey": 155i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 26.0d, "l_extendedprice": 27433.9d, "l_discount": 0.06d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-05-14", "l_commitdate": "1993-02-28", "l_receiptdate": "1993-06-04", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "arefully final theodo" }, { "l_orderkey": 4004i32, "l_partkey": 155i32, "l_suppkey": 3i32, "l_linenumber": 5i32, "l_quantity": 9.0d, "l_extendedprice": 9496.35d, "l_discount": 0.04d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-08-25", "l_commitdate": "1993-06-10", "l_receiptdate": "1993-09-24", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "ly ironic requests. quickly pending ide" }, { "l_orderkey": 1542i32, "l_partkey": 155i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 46.0d, "l_extendedprice": 48536.9d, "l_discount": 0.0d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-09-28", "l_commitdate": "1993-11-03", "l_receiptdate": "1993-10-15", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "ial instructions. ironically" }, { "l_orderkey": 5350i32, "l_partkey": 155i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 7.0d, "l_extendedprice": 7386.05d, "l_discount": 0.08d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-10-19", "l_commitdate": "1993-12-28", "l_receiptdate": "1993-11-04", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "alongside of th" }, { "l_orderkey": 807i32, "l_partkey": 155i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 49.0d, "l_extendedprice": 51702.35d, "l_discount": 0.01d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-01-17", "l_commitdate": "1994-01-24", "l_receiptdate": "1994-01-22", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "y regular requests haggle." }, { "l_orderkey": 2466i32, "l_partkey": 155i32, "l_suppkey": 7i32, "l_linenumber": 7i32, "l_quantity": 35.0d, "l_extendedprice": 36930.25d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-06-01", "l_commitdate": "1994-05-27", "l_receiptdate": "1994-06-21", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": " packages detect carefully: ironically sl" }, { "l_orderkey": 3808i32, "l_partkey": 155i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 29.0d, "l_extendedprice": 30599.35d, "l_discount": 0.08d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-06-22", "l_commitdate": "1994-05-26", "l_receiptdate": "1994-07-06", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": " deposits across the pac" }, { "l_orderkey": 5698i32, "l_partkey": 155i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 45.0d, "l_extendedprice": 47481.75d, "l_discount": 0.03d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-06-23", "l_commitdate": "1994-08-13", "l_receiptdate": "1994-07-02", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "ng excuses. slyly express asymptotes" }, { "l_orderkey": 1734i32, "l_partkey": 155i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 38.0d, "l_extendedprice": 40095.7d, "l_discount": 0.03d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-08-09", "l_commitdate": "1994-09-07", "l_receiptdate": "1994-08-12", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "ts doubt b" }, { "l_orderkey": 707i32, "l_partkey": 155i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 34.0d, "l_extendedprice": 35875.1d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-12-08", "l_commitdate": "1995-01-15", "l_receiptdate": "1995-01-02", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": " dependencies" }, { "l_orderkey": 1444i32, "l_partkey": 155i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 34.0d, "l_extendedprice": 35875.1d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-12-17", "l_commitdate": "1995-01-12", "l_receiptdate": "1995-01-03", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "ular accounts " }, { "l_orderkey": 4742i32, "l_partkey": 155i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 29.0d, "l_extendedprice": 30599.35d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "F", "l_shipdate": "1995-06-15", "l_commitdate": "1995-05-05", "l_receiptdate": "1995-06-24", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "integrate closely among t" }, { "l_orderkey": 4070i32, "l_partkey": 155i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 40.0d, "l_extendedprice": 42206.0d, "l_discount": 0.07d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-13", "l_commitdate": "1995-07-23", "l_receiptdate": "1995-08-06", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "about the sentiments. quick" }, { "l_orderkey": 2436i32, "l_partkey": 155i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 48.0d, "l_extendedprice": 50647.2d, "l_discount": 0.04d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-22", "l_commitdate": "1995-10-22", "l_receiptdate": "1995-11-16", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "he furiously " }, { "l_orderkey": 1664i32, "l_partkey": 155i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 35.0d, "l_extendedprice": 36930.25d, "l_discount": 0.0d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-06", "l_commitdate": "1996-05-16", "l_receiptdate": "1996-03-09", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "y regular ide" }, { "l_orderkey": 3394i32, "l_partkey": 155i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 33.0d, "l_extendedprice": 34819.95d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-07", "l_commitdate": "1996-07-17", "l_receiptdate": "1996-09-02", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "ideas alongside of th" }, { "l_orderkey": 2273i32, "l_partkey": 155i32, "l_suppkey": 7i32, "l_linenumber": 6i32, "l_quantity": 16.0d, "l_extendedprice": 16882.4d, "l_discount": 0.1d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-10", "l_commitdate": "1997-02-03", "l_receiptdate": "1997-02-01", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "furiously above the ironic requests. " }, { "l_orderkey": 1638i32, "l_partkey": 155i32, "l_suppkey": 10i32, "l_linenumber": 6i32, "l_quantity": 46.0d, "l_extendedprice": 48536.9d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-20", "l_commitdate": "1997-10-10", "l_receiptdate": "1997-09-09", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "ckages are carefully even instru" }, { "l_orderkey": 5505i32, "l_partkey": 155i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 10.0d, "l_extendedprice": 10551.5d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-10-28", "l_commitdate": "1997-11-27", "l_receiptdate": "1997-10-29", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": " furiously special asym" }, { "l_orderkey": 3651i32, "l_partkey": 155i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 24.0d, "l_extendedprice": 25323.6d, "l_discount": 0.09d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-22", "l_commitdate": "1998-07-17", "l_receiptdate": "1998-07-10", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "excuses haggle according to th" }, { "l_orderkey": 5956i32, "l_partkey": 155i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 10.0d, "l_extendedprice": 10551.5d, "l_discount": 0.04d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-27", "l_commitdate": "1998-07-04", "l_receiptdate": "1998-08-21", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "ic packages am" } ] }
-{ "partkey": 160i32, "lines": [ { "l_orderkey": 1282i32, "l_partkey": 160i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 19.0d, "l_extendedprice": 20143.04d, "l_discount": 0.01d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-05-07", "l_commitdate": "1992-04-07", "l_receiptdate": "1992-05-13", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "ts x-ray across the furi" }, { "l_orderkey": 4867i32, "l_partkey": 160i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 3.0d, "l_extendedprice": 3180.48d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-07-04", "l_commitdate": "1992-07-15", "l_receiptdate": "1992-07-21", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "yly silent deposits" }, { "l_orderkey": 1346i32, "l_partkey": 160i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 29.0d, "l_extendedprice": 30744.64d, "l_discount": 0.07d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-08-18", "l_commitdate": "1992-09-15", "l_receiptdate": "1992-09-17", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "the pinto " }, { "l_orderkey": 2562i32, "l_partkey": 160i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 29.0d, "l_extendedprice": 30744.64d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-11-01", "l_commitdate": "1992-09-29", "l_receiptdate": "1992-11-13", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "eep against the furiously r" }, { "l_orderkey": 5504i32, "l_partkey": 160i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 29.0d, "l_extendedprice": 30744.64d, "l_discount": 0.05d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-01-28", "l_commitdate": "1993-02-13", "l_receiptdate": "1993-02-27", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "ajole carefully. care" }, { "l_orderkey": 2176i32, "l_partkey": 160i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 25.0d, "l_extendedprice": 26504.0d, "l_discount": 0.02d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-02-23", "l_commitdate": "1993-01-05", "l_receiptdate": "1993-03-07", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": " ruthless deposits according to the ent" }, { "l_orderkey": 1409i32, "l_partkey": 160i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 17.0d, "l_extendedprice": 18022.72d, "l_discount": 0.07d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-04-15", "l_commitdate": "1993-03-01", "l_receiptdate": "1993-04-29", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "pending accounts poach. care" }, { "l_orderkey": 710i32, "l_partkey": 160i32, "l_suppkey": 2i32, "l_linenumber": 7i32, "l_quantity": 46.0d, "l_extendedprice": 48767.36d, "l_discount": 0.03d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-04-16", "l_commitdate": "1993-03-27", "l_receiptdate": "1993-05-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "ges use; blithely pending excuses inte" }, { "l_orderkey": 2535i32, "l_partkey": 160i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 19.0d, "l_extendedprice": 20143.04d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-06-01", "l_commitdate": "1993-08-01", "l_receiptdate": "1993-06-19", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "ructions. final requests" }, { "l_orderkey": 5830i32, "l_partkey": 160i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 29.0d, "l_extendedprice": 30744.64d, "l_discount": 0.1d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-06-19", "l_commitdate": "1993-05-10", "l_receiptdate": "1993-07-13", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "y bold excuses" }, { "l_orderkey": 769i32, "l_partkey": 160i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 4.0d, "l_extendedprice": 4240.64d, "l_discount": 0.01d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-06-25", "l_commitdate": "1993-08-12", "l_receiptdate": "1993-07-15", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": " ideas. even" }, { "l_orderkey": 1888i32, "l_partkey": 160i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 4.0d, "l_extendedprice": 4240.64d, "l_discount": 0.03d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-12-28", "l_commitdate": "1993-12-19", "l_receiptdate": "1994-01-11", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "lphins. ironically special theodolit" }, { "l_orderkey": 5863i32, "l_partkey": 160i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 21.0d, "l_extendedprice": 22263.36d, "l_discount": 0.09d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-01-13", "l_commitdate": "1994-01-09", "l_receiptdate": "1994-01-28", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "atelets nag blithely furi" }, { "l_orderkey": 2374i32, "l_partkey": 160i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 24.0d, "l_extendedprice": 25443.84d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-02-02", "l_commitdate": "1994-01-12", "l_receiptdate": "1994-02-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": ". requests are above t" }, { "l_orderkey": 5506i32, "l_partkey": 160i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 6.0d, "l_extendedprice": 6360.96d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-02-21", "l_commitdate": "1994-01-30", "l_receiptdate": "1994-02-27", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "hely according to the furiously unusua" }, { "l_orderkey": 4454i32, "l_partkey": 160i32, "l_suppkey": 8i32, "l_linenumber": 6i32, "l_quantity": 20.0d, "l_extendedprice": 21203.2d, "l_discount": 0.1d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-04-08", "l_commitdate": "1994-03-06", "l_receiptdate": "1994-04-26", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "quickly regular requests. furiously" }, { "l_orderkey": 2211i32, "l_partkey": 160i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 25.0d, "l_extendedprice": 26504.0d, "l_discount": 0.0d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-08-13", "l_commitdate": "1994-08-17", "l_receiptdate": "1994-08-16", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "ly regular, express" }, { "l_orderkey": 4389i32, "l_partkey": 160i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 5.0d, "l_extendedprice": 5300.8d, "l_discount": 0.09d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-09-03", "l_commitdate": "1994-06-23", "l_receiptdate": "1994-09-16", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": " ironic request" }, { "l_orderkey": 2854i32, "l_partkey": 160i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 20.0d, "l_extendedprice": 21203.2d, "l_discount": 0.08d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-09-18", "l_commitdate": "1994-08-03", "l_receiptdate": "1994-10-12", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "rs impress after the deposits. " }, { "l_orderkey": 645i32, "l_partkey": 160i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 33.0d, "l_extendedprice": 34985.28d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-12-09", "l_commitdate": "1995-02-21", "l_receiptdate": "1995-01-03", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "heodolites b" }, { "l_orderkey": 3488i32, "l_partkey": 160i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 1.0d, "l_extendedprice": 1060.16d, "l_discount": 0.04d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-03-06", "l_commitdate": "1995-02-16", "l_receiptdate": "1995-03-23", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": " final excuses. carefully even waters hagg" }, { "l_orderkey": 3488i32, "l_partkey": 160i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 11.0d, "l_extendedprice": 11661.76d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-03-25", "l_commitdate": "1995-02-08", "l_receiptdate": "1995-04-16", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "unusual re" }, { "l_orderkey": 1317i32, "l_partkey": 160i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 7.0d, "l_extendedprice": 7421.12d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-06-08", "l_commitdate": "1995-08-03", "l_receiptdate": "1995-06-16", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": " pinto beans according to the final, pend" }, { "l_orderkey": 2823i32, "l_partkey": 160i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 18.0d, "l_extendedprice": 19082.88d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-11", "l_commitdate": "1995-10-30", "l_receiptdate": "1995-12-08", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": " final deposits. furiously regular foxes u" }, { "l_orderkey": 2532i32, "l_partkey": 160i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 33.0d, "l_extendedprice": 34985.28d, "l_discount": 0.06d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-23", "l_commitdate": "1996-01-04", "l_receiptdate": "1995-12-16", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "rve carefully slyly ironic accounts! fluf" }, { "l_orderkey": 3939i32, "l_partkey": 160i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 8.0d, "l_extendedprice": 8481.28d, "l_discount": 0.03d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-29", "l_commitdate": "1996-04-05", "l_receiptdate": "1996-02-26", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "e packages. express, pen" }, { "l_orderkey": 5925i32, "l_partkey": 160i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 41.0d, "l_extendedprice": 43466.56d, "l_discount": 0.0d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-02-03", "l_commitdate": "1995-12-24", "l_receiptdate": "1996-02-20", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": " across the pending deposits nag caref" }, { "l_orderkey": 4262i32, "l_partkey": 160i32, "l_suppkey": 5i32, "l_linenumber": 7i32, "l_quantity": 41.0d, "l_extendedprice": 43466.56d, "l_discount": 0.03d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-28", "l_commitdate": "1996-09-14", "l_receiptdate": "1996-09-20", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "cuses unwind ac" }, { "l_orderkey": 806i32, "l_partkey": 160i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 22.0d, "l_extendedprice": 23323.52d, "l_discount": 0.08d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-03", "l_commitdate": "1996-08-11", "l_receiptdate": "1996-10-20", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "fily pending " }, { "l_orderkey": 4325i32, "l_partkey": 160i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 18.0d, "l_extendedprice": 19082.88d, "l_discount": 0.01d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-07", "l_commitdate": "1996-09-28", "l_receiptdate": "1996-10-31", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": ". blithely" }, { "l_orderkey": 5443i32, "l_partkey": 160i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 25.0d, "l_extendedprice": 26504.0d, "l_discount": 0.05d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-07", "l_commitdate": "1997-01-08", "l_receiptdate": "1997-01-05", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "use carefully above the pinto bea" }, { "l_orderkey": 1220i32, "l_partkey": 160i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 36.0d, "l_extendedprice": 38165.76d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-10", "l_commitdate": "1996-11-14", "l_receiptdate": "1997-01-07", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "ar packages. blithely final acc" }, { "l_orderkey": 2118i32, "l_partkey": 160i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 24.0d, "l_extendedprice": 25443.84d, "l_discount": 0.1d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-06", "l_commitdate": "1996-12-14", "l_receiptdate": "1997-01-14", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "about the slyly bold depende" }, { "l_orderkey": 4807i32, "l_partkey": 160i32, "l_suppkey": 1i32, "l_linenumber": 6i32, "l_quantity": 22.0d, "l_extendedprice": 23323.52d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-13", "l_commitdate": "1997-02-23", "l_receiptdate": "1997-04-01", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "es use final excuses. furiously final" }, { "l_orderkey": 1441i32, "l_partkey": 160i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 37.0d, "l_extendedprice": 39225.92d, "l_discount": 0.01d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-26", "l_commitdate": "1997-04-27", "l_receiptdate": "1997-04-29", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "accounts. slyly special dolphins b" }, { "l_orderkey": 4135i32, "l_partkey": 160i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 33.0d, "l_extendedprice": 34985.28d, "l_discount": 0.05d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-01", "l_commitdate": "1997-05-23", "l_receiptdate": "1997-05-23", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "he fluffil" }, { "l_orderkey": 3364i32, "l_partkey": 160i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 7.0d, "l_extendedprice": 7421.12d, "l_discount": 0.1d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-09", "l_commitdate": "1997-08-01", "l_receiptdate": "1997-07-16", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "furiously regular ideas haggle furiously b" }, { "l_orderkey": 4224i32, "l_partkey": 160i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 50.0d, "l_extendedprice": 53008.0d, "l_discount": 0.1d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-30", "l_commitdate": "1997-09-10", "l_receiptdate": "1997-08-19", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "side of the carefully silent dep" }, { "l_orderkey": 3584i32, "l_partkey": 160i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 23.0d, "l_extendedprice": 24383.68d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-10", "l_commitdate": "1997-10-15", "l_receiptdate": "1997-09-30", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "l platelets until the asymptotes " }, { "l_orderkey": 5125i32, "l_partkey": 160i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 5.0d, "l_extendedprice": 5300.8d, "l_discount": 0.08d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-07", "l_commitdate": "1998-04-14", "l_receiptdate": "1998-04-29", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": " thinly even pack" }, { "l_orderkey": 1157i32, "l_partkey": 160i32, "l_suppkey": 5i32, "l_linenumber": 5i32, "l_quantity": 14.0d, "l_extendedprice": 14842.24d, "l_discount": 0.03d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-17", "l_commitdate": "1998-03-03", "l_receiptdate": "1998-05-01", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "theodolites. fluffily re" }, { "l_orderkey": 5633i32, "l_partkey": 160i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 28.0d, "l_extendedprice": 29684.48d, "l_discount": 0.02d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-14", "l_commitdate": "1998-07-24", "l_receiptdate": "1998-08-26", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "as boost quickly. unusual pinto " } ] }
-{ "partkey": 166i32, "lines": [ { "l_orderkey": 2691i32, "l_partkey": 166i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 1.0d, "l_extendedprice": 1066.16d, "l_discount": 0.08d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-08-11", "l_commitdate": "1992-06-07", "l_receiptdate": "1992-08-16", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "egular instructions b" }, { "l_orderkey": 5095i32, "l_partkey": 166i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 9.0d, "l_extendedprice": 9595.44d, "l_discount": 0.1d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-08-14", "l_commitdate": "1992-06-23", "l_receiptdate": "1992-08-16", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "bold theodolites wake about the expr" }, { "l_orderkey": 1703i32, "l_partkey": 166i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 36.0d, "l_extendedprice": 38381.76d, "l_discount": 0.09d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-04-22", "l_commitdate": "1993-03-05", "l_receiptdate": "1993-04-24", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "riously express " }, { "l_orderkey": 2438i32, "l_partkey": 166i32, "l_suppkey": 3i32, "l_linenumber": 5i32, "l_quantity": 28.0d, "l_extendedprice": 29852.48d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-11-05", "l_commitdate": "1993-08-22", "l_receiptdate": "1993-11-22", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "ctions. bli" }, { "l_orderkey": 3108i32, "l_partkey": 166i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 26.0d, "l_extendedprice": 27720.16d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-11-12", "l_commitdate": "1993-10-05", "l_receiptdate": "1993-12-09", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": " slyly slow foxes wake furious" }, { "l_orderkey": 3777i32, "l_partkey": 166i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 18.0d, "l_extendedprice": 19190.88d, "l_discount": 0.1d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-05-04", "l_commitdate": "1994-05-23", "l_receiptdate": "1994-05-22", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "eful packages use slyly: even deposits " }, { "l_orderkey": 5760i32, "l_partkey": 166i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 6.0d, "l_extendedprice": 6396.96d, "l_discount": 0.03d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-06-09", "l_commitdate": "1994-07-06", "l_receiptdate": "1994-06-16", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": " shall have to cajole along the " }, { "l_orderkey": 4930i32, "l_partkey": 166i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 42.0d, "l_extendedprice": 44778.72d, "l_discount": 0.0d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-06-18", "l_commitdate": "1994-06-22", "l_receiptdate": "1994-07-10", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "ions haggle. furiously regular ideas use " }, { "l_orderkey": 1829i32, "l_partkey": 166i32, "l_suppkey": 5i32, "l_linenumber": 5i32, "l_quantity": 6.0d, "l_extendedprice": 6396.96d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-08-09", "l_commitdate": "1994-08-05", "l_receiptdate": "1994-09-05", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "s haggle! slyl" }, { "l_orderkey": 4993i32, "l_partkey": 166i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 42.0d, "l_extendedprice": 44778.72d, "l_discount": 0.06d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-08-27", "l_commitdate": "1994-09-24", "l_receiptdate": "1994-09-05", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": " final packages at the q" }, { "l_orderkey": 359i32, "l_partkey": 166i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 30.0d, "l_extendedprice": 31984.8d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-01-06", "l_commitdate": "1995-02-20", "l_receiptdate": "1995-01-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "uses detect spec" }, { "l_orderkey": 5253i32, "l_partkey": 166i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 25.0d, "l_extendedprice": 26654.0d, "l_discount": 0.04d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-05-21", "l_commitdate": "1995-06-13", "l_receiptdate": "1995-06-09", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "urts. even theodoli" }, { "l_orderkey": 3750i32, "l_partkey": 166i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 33.0d, "l_extendedprice": 35183.28d, "l_discount": 0.04d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "F", "l_shipdate": "1995-06-15", "l_commitdate": "1995-06-04", "l_receiptdate": "1995-06-29", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "ep blithely according to the flu" }, { "l_orderkey": 5568i32, "l_partkey": 166i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 50.0d, "l_extendedprice": 53308.0d, "l_discount": 0.05d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-14", "l_commitdate": "1995-09-04", "l_receiptdate": "1995-08-03", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "furious ide" }, { "l_orderkey": 995i32, "l_partkey": 166i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 45.0d, "l_extendedprice": 47977.2d, "l_discount": 0.0d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-02", "l_commitdate": "1995-07-21", "l_receiptdate": "1995-08-03", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "lar packages detect blithely above t" }, { "l_orderkey": 2021i32, "l_partkey": 166i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 19.0d, "l_extendedprice": 20257.04d, "l_discount": 0.04d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-14", "l_commitdate": "1995-09-05", "l_receiptdate": "1995-08-23", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": " above the slyly fl" }, { "l_orderkey": 227i32, "l_partkey": 166i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 19.0d, "l_extendedprice": 20257.04d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-10", "l_commitdate": "1996-01-30", "l_receiptdate": "1995-12-26", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "s cajole furiously a" }, { "l_orderkey": 3200i32, "l_partkey": 166i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 27.0d, "l_extendedprice": 28786.32d, "l_discount": 0.03d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-07", "l_commitdate": "1996-05-01", "l_receiptdate": "1996-05-09", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "as haggle furiously against the fluff" }, { "l_orderkey": 5605i32, "l_partkey": 166i32, "l_suppkey": 7i32, "l_linenumber": 6i32, "l_quantity": 29.0d, "l_extendedprice": 30918.64d, "l_discount": 0.08d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-19", "l_commitdate": "1996-10-22", "l_receiptdate": "1996-10-06", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": " quickly. quickly pending sen" }, { "l_orderkey": 3555i32, "l_partkey": 166i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 11.0d, "l_extendedprice": 11727.76d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-25", "l_commitdate": "1996-10-01", "l_receiptdate": "1996-10-03", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "oost caref" }, { "l_orderkey": 5024i32, "l_partkey": 166i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 17.0d, "l_extendedprice": 18124.72d, "l_discount": 0.1d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-24", "l_commitdate": "1997-01-10", "l_receiptdate": "1996-12-04", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": " to the expre" }, { "l_orderkey": 676i32, "l_partkey": 166i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 31.0d, "l_extendedprice": 33050.96d, "l_discount": 0.01d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-06", "l_commitdate": "1997-02-28", "l_receiptdate": "1997-03-08", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "ial deposits cajo" }, { "l_orderkey": 2469i32, "l_partkey": 166i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 11.0d, "l_extendedprice": 11727.76d, "l_discount": 0.0d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-09", "l_commitdate": "1997-01-26", "l_receiptdate": "1997-02-16", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "ies wake carefully b" }, { "l_orderkey": 4258i32, "l_partkey": 166i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 36.0d, "l_extendedprice": 38381.76d, "l_discount": 0.02d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-23", "l_commitdate": "1997-01-25", "l_receiptdate": "1997-02-27", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "ns use alongs" }, { "l_orderkey": 1121i32, "l_partkey": 166i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 29.0d, "l_extendedprice": 30918.64d, "l_discount": 0.02d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-07", "l_commitdate": "1997-04-02", "l_receiptdate": "1997-04-01", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": " use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furious" }, { "l_orderkey": 1698i32, "l_partkey": 166i32, "l_suppkey": 7i32, "l_linenumber": 6i32, "l_quantity": 15.0d, "l_extendedprice": 15992.4d, "l_discount": 0.1d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-20", "l_commitdate": "1997-06-07", "l_receiptdate": "1997-07-21", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "final ideas. even, ironic " }, { "l_orderkey": 2913i32, "l_partkey": 166i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 17.0d, "l_extendedprice": 18124.72d, "l_discount": 0.07d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-10-21", "l_commitdate": "1997-09-25", "l_receiptdate": "1997-11-20", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "requests doze quickly. furious" }, { "l_orderkey": 3079i32, "l_partkey": 166i32, "l_suppkey": 1i32, "l_linenumber": 6i32, "l_quantity": 46.0d, "l_extendedprice": 49043.36d, "l_discount": 0.0d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-11-19", "l_commitdate": "1997-11-04", "l_receiptdate": "1997-11-25", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "es. final, regula" }, { "l_orderkey": 4231i32, "l_partkey": 166i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 4.0d, "l_extendedprice": 4264.64d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-11-28", "l_commitdate": "1998-01-26", "l_receiptdate": "1997-12-12", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "lithely even packages. " }, { "l_orderkey": 1862i32, "l_partkey": 166i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 37.0d, "l_extendedprice": 39447.92d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-15", "l_commitdate": "1998-05-15", "l_receiptdate": "1998-05-14", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "l deposits. carefully even dep" }, { "l_orderkey": 3811i32, "l_partkey": 166i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 2.0d, "l_extendedprice": 2132.32d, "l_discount": 0.01d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-16", "l_commitdate": "1998-06-16", "l_receiptdate": "1998-06-23", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "slyly fluff" }, { "l_orderkey": 2407i32, "l_partkey": 166i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 9.0d, "l_extendedprice": 9595.44d, "l_discount": 0.07d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-06", "l_commitdate": "1998-08-11", "l_receiptdate": "1998-08-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "ts. special deposits are closely." }, { "l_orderkey": 1730i32, "l_partkey": 166i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 41.0d, "l_extendedprice": 43712.56d, "l_discount": 0.01d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-11", "l_commitdate": "1998-08-29", "l_receiptdate": "1998-09-02", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": " instructions. unusual, even Tiresi" } ] }
-{ "partkey": 167i32, "lines": [ { "l_orderkey": 5767i32, "l_partkey": 167i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 11.0d, "l_extendedprice": 11738.76d, "l_discount": 0.08d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-06-02", "l_commitdate": "1992-05-30", "l_receiptdate": "1992-06-08", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "instructions. carefully final accou" }, { "l_orderkey": 1447i32, "l_partkey": 167i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 19.0d, "l_extendedprice": 20276.04d, "l_discount": 0.06d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-01-31", "l_commitdate": "1992-12-07", "l_receiptdate": "1993-02-04", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": ". quickly ironic " }, { "l_orderkey": 1857i32, "l_partkey": 167i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 40.0d, "l_extendedprice": 42686.4d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-02-15", "l_commitdate": "1993-03-08", "l_receiptdate": "1993-02-21", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "slyly close d" }, { "l_orderkey": 614i32, "l_partkey": 167i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 43.0d, "l_extendedprice": 45887.88d, "l_discount": 0.05d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-03-07", "l_commitdate": "1993-02-22", "l_receiptdate": "1993-03-18", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": " express accounts wake. slyly ironic ins" }, { "l_orderkey": 5472i32, "l_partkey": 167i32, "l_suppkey": 2i32, "l_linenumber": 6i32, "l_quantity": 39.0d, "l_extendedprice": 41619.24d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-04-18", "l_commitdate": "1993-07-10", "l_receiptdate": "1993-05-12", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "uriously carefully " }, { "l_orderkey": 1412i32, "l_partkey": 167i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 11.0d, "l_extendedprice": 11738.76d, "l_discount": 0.05d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-05-27", "l_commitdate": "1993-05-30", "l_receiptdate": "1993-06-07", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "en packages. regular packages dete" }, { "l_orderkey": 2241i32, "l_partkey": 167i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 19.0d, "l_extendedprice": 20276.04d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-06-01", "l_commitdate": "1993-08-05", "l_receiptdate": "1993-06-07", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": " are furiously quickl" }, { "l_orderkey": 3461i32, "l_partkey": 167i32, "l_suppkey": 2i32, "l_linenumber": 6i32, "l_quantity": 24.0d, "l_extendedprice": 25611.84d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-06-01", "l_commitdate": "1993-03-12", "l_receiptdate": "1993-06-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "thely. carefully re" }, { "l_orderkey": 3783i32, "l_partkey": 167i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 36.0d, "l_extendedprice": 38417.76d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-12-17", "l_commitdate": "1994-02-26", "l_receiptdate": "1994-01-03", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "ites haggle among the carefully unusu" }, { "l_orderkey": 1888i32, "l_partkey": 167i32, "l_suppkey": 6i32, "l_linenumber": 7i32, "l_quantity": 50.0d, "l_extendedprice": 53358.0d, "l_discount": 0.04d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-12-22", "l_commitdate": "1994-01-10", "l_receiptdate": "1994-01-06", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "ependencies affix blithely regular warhors" }, { "l_orderkey": 2563i32, "l_partkey": 167i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 28.0d, "l_extendedprice": 29880.48d, "l_discount": 0.04d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-03-17", "l_commitdate": "1994-02-04", "l_receiptdate": "1994-04-13", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "hely regular depe" }, { "l_orderkey": 224i32, "l_partkey": 167i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 12.0d, "l_extendedprice": 12805.92d, "l_discount": 0.08d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-10-12", "l_commitdate": "1994-08-29", "l_receiptdate": "1994-10-20", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "uriously regular packages. slyly fina" }, { "l_orderkey": 1601i32, "l_partkey": 167i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 6.0d, "l_extendedprice": 6402.96d, "l_discount": 0.0d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-10-19", "l_commitdate": "1994-09-28", "l_receiptdate": "1994-10-23", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": " bold sheaves. furiously per" }, { "l_orderkey": 3365i32, "l_partkey": 167i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 37.0d, "l_extendedprice": 39484.92d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-11-24", "l_commitdate": "1995-01-09", "l_receiptdate": "1994-11-27", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "oze blithely. furiously ironic theodolit" }, { "l_orderkey": 930i32, "l_partkey": 167i32, "l_suppkey": 4i32, "l_linenumber": 7i32, "l_quantity": 30.0d, "l_extendedprice": 32014.8d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-01-20", "l_commitdate": "1995-02-28", "l_receiptdate": "1995-02-04", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "g accounts sleep along the platelets." }, { "l_orderkey": 3457i32, "l_partkey": 167i32, "l_suppkey": 4i32, "l_linenumber": 7i32, "l_quantity": 9.0d, "l_extendedprice": 9604.44d, "l_discount": 0.04d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-05-29", "l_commitdate": "1995-06-30", "l_receiptdate": "1995-06-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "quests. foxes sleep quickly" }, { "l_orderkey": 2208i32, "l_partkey": 167i32, "l_suppkey": 2i32, "l_linenumber": 6i32, "l_quantity": 18.0d, "l_extendedprice": 19208.88d, "l_discount": 0.02d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-06-06", "l_commitdate": "1995-06-10", "l_receiptdate": "1995-06-11", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "packages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages" }, { "l_orderkey": 5696i32, "l_partkey": 167i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 42.0d, "l_extendedprice": 44820.72d, "l_discount": 0.04d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "F", "l_shipdate": "1995-06-06", "l_commitdate": "1995-06-11", "l_receiptdate": "1995-06-19", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "te furious" }, { "l_orderkey": 166i32, "l_partkey": 167i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 13.0d, "l_extendedprice": 13873.08d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-09", "l_commitdate": "1995-11-18", "l_receiptdate": "1995-11-14", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "fully above the blithely fina" }, { "l_orderkey": 4773i32, "l_partkey": 167i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 49.0d, "l_extendedprice": 52290.84d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-26", "l_commitdate": "1996-02-29", "l_receiptdate": "1996-01-27", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "y final reque" }, { "l_orderkey": 385i32, "l_partkey": 167i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 7.0d, "l_extendedprice": 7470.12d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-23", "l_commitdate": "1996-05-09", "l_receiptdate": "1996-06-06", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": " special asymptote" }, { "l_orderkey": 2151i32, "l_partkey": 167i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 23.0d, "l_extendedprice": 24544.68d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-20", "l_commitdate": "1996-12-17", "l_receiptdate": "1996-11-30", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": " silent dependencies about the slyl" }, { "l_orderkey": 4326i32, "l_partkey": 167i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 27.0d, "l_extendedprice": 28813.32d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-29", "l_commitdate": "1997-01-20", "l_receiptdate": "1996-12-23", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "inal packages. final asymptotes about t" }, { "l_orderkey": 3620i32, "l_partkey": 167i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 16.0d, "l_extendedprice": 17074.56d, "l_discount": 0.0d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-17", "l_commitdate": "1997-05-08", "l_receiptdate": "1997-06-03", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "s. even, pending in" }, { "l_orderkey": 4421i32, "l_partkey": 167i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 46.0d, "l_extendedprice": 49089.36d, "l_discount": 0.0d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-25", "l_commitdate": "1997-05-21", "l_receiptdate": "1997-06-23", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "g dependenci" }, { "l_orderkey": 5063i32, "l_partkey": 167i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 2.0d, "l_extendedprice": 2134.32d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-17", "l_commitdate": "1997-07-27", "l_receiptdate": "1997-06-24", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "kly regular i" }, { "l_orderkey": 5157i32, "l_partkey": 167i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 15.0d, "l_extendedprice": 16007.4d, "l_discount": 0.09d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-27", "l_commitdate": "1997-08-30", "l_receiptdate": "1997-08-08", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "cajole. spec" }, { "l_orderkey": 3520i32, "l_partkey": 167i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 38.0d, "l_extendedprice": 40552.08d, "l_discount": 0.0d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-14", "l_commitdate": "1997-10-26", "l_receiptdate": "1997-09-09", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "yly final packages according to the quickl" }, { "l_orderkey": 2917i32, "l_partkey": 167i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 5.0d, "l_extendedprice": 5335.8d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-16", "l_commitdate": "1998-01-26", "l_receiptdate": "1998-01-07", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "bove the furiously silent packages. pend" }, { "l_orderkey": 5927i32, "l_partkey": 167i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 32.0d, "l_extendedprice": 34149.12d, "l_discount": 0.1d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-26", "l_commitdate": "1997-10-27", "l_receiptdate": "1997-12-31", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "telets. carefully bold accounts was" }, { "l_orderkey": 579i32, "l_partkey": 167i32, "l_suppkey": 6i32, "l_linenumber": 6i32, "l_quantity": 5.0d, "l_extendedprice": 5335.8d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-02", "l_commitdate": "1998-04-25", "l_receiptdate": "1998-05-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "refully silent ideas cajole furious" } ] }
-{ "partkey": 174i32, "lines": [ { "l_orderkey": 2054i32, "l_partkey": 174i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 14.0d, "l_extendedprice": 15038.38d, "l_discount": 0.1d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-06-25", "l_commitdate": "1992-09-05", "l_receiptdate": "1992-07-14", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "uickly final" }, { "l_orderkey": 1991i32, "l_partkey": 174i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 6.0d, "l_extendedprice": 6445.02d, "l_discount": 0.02d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-11-02", "l_commitdate": "1992-10-08", "l_receiptdate": "1992-11-14", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "hes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag " }, { "l_orderkey": 4261i32, "l_partkey": 174i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 36.0d, "l_extendedprice": 38670.12d, "l_discount": 0.04d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-12-02", "l_commitdate": "1992-12-18", "l_receiptdate": "1992-12-25", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": " slyly pendi" }, { "l_orderkey": 3687i32, "l_partkey": 174i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 10.0d, "l_extendedprice": 10741.7d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-02-11", "l_commitdate": "1993-03-22", "l_receiptdate": "1993-03-09", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "ing pinto beans" }, { "l_orderkey": 2305i32, "l_partkey": 174i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 3.0d, "l_extendedprice": 3222.51d, "l_discount": 0.0d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-03-24", "l_commitdate": "1993-04-05", "l_receiptdate": "1993-03-29", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages hag" }, { "l_orderkey": 1857i32, "l_partkey": 174i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 15.0d, "l_extendedprice": 16112.55d, "l_discount": 0.1d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-04-05", "l_commitdate": "1993-02-28", "l_receiptdate": "1993-04-13", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "egular, regular inst" }, { "l_orderkey": 4359i32, "l_partkey": 174i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 41.0d, "l_extendedprice": 44040.97d, "l_discount": 0.03d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-04-06", "l_commitdate": "1993-05-06", "l_receiptdate": "1993-04-14", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "s affix sly" }, { "l_orderkey": 2213i32, "l_partkey": 174i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 39.0d, "l_extendedprice": 41892.63d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-05-12", "l_commitdate": "1993-04-07", "l_receiptdate": "1993-05-23", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "the blithely " }, { "l_orderkey": 2535i32, "l_partkey": 174i32, "l_suppkey": 3i32, "l_linenumber": 5i32, "l_quantity": 25.0d, "l_extendedprice": 26854.25d, "l_discount": 0.07d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-07-19", "l_commitdate": "1993-08-07", "l_receiptdate": "1993-07-27", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "ions believe ab" }, { "l_orderkey": 261i32, "l_partkey": 174i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 28.0d, "l_extendedprice": 30076.76d, "l_discount": 0.08d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-07-24", "l_commitdate": "1993-08-20", "l_receiptdate": "1993-08-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "ironic packages nag slyly. carefully fin" }, { "l_orderkey": 66i32, "l_partkey": 174i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 41.0d, "l_extendedprice": 44040.97d, "l_discount": 0.04d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-02-21", "l_commitdate": "1994-03-01", "l_receiptdate": "1994-03-18", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": " regular de" }, { "l_orderkey": 2820i32, "l_partkey": 174i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 23.0d, "l_extendedprice": 24705.91d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-07-10", "l_commitdate": "1994-08-08", "l_receiptdate": "1994-07-21", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": " was furiously. deposits among the ironic" }, { "l_orderkey": 1287i32, "l_partkey": 174i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 35.0d, "l_extendedprice": 37595.95d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-09-07", "l_commitdate": "1994-09-12", "l_receiptdate": "1994-09-30", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "s wake unusual grou" }, { "l_orderkey": 1767i32, "l_partkey": 174i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 24.0d, "l_extendedprice": 25780.08d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-03-16", "l_commitdate": "1995-04-29", "l_receiptdate": "1995-04-11", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "luffy theodolites need to detect furi" }, { "l_orderkey": 5765i32, "l_partkey": 174i32, "l_suppkey": 3i32, "l_linenumber": 5i32, "l_quantity": 48.0d, "l_extendedprice": 51560.16d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-03-30", "l_commitdate": "1995-01-14", "l_receiptdate": "1995-04-09", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "theodolites integrate furiously" }, { "l_orderkey": 775i32, "l_partkey": 174i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 21.0d, "l_extendedprice": 22557.57d, "l_discount": 0.01d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-05-01", "l_commitdate": "1995-06-02", "l_receiptdate": "1995-05-13", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": " quickly sile" }, { "l_orderkey": 3010i32, "l_partkey": 174i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 22.0d, "l_extendedprice": 23631.74d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-06", "l_commitdate": "1996-04-06", "l_receiptdate": "1996-03-18", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": " final deposit" }, { "l_orderkey": 871i32, "l_partkey": 174i32, "l_suppkey": 3i32, "l_linenumber": 7i32, "l_quantity": 4.0d, "l_extendedprice": 4296.68d, "l_discount": 0.0d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-09", "l_commitdate": "1996-01-20", "l_receiptdate": "1996-03-26", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "l, regular dependencies w" }, { "l_orderkey": 4097i32, "l_partkey": 174i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 42.0d, "l_extendedprice": 45115.14d, "l_discount": 0.06d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-11", "l_commitdate": "1996-07-30", "l_receiptdate": "1996-08-15", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "carefully silent foxes are against the " }, { "l_orderkey": 5606i32, "l_partkey": 174i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 47.0d, "l_extendedprice": 50485.99d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-23", "l_commitdate": "1997-01-31", "l_receiptdate": "1997-01-20", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "carefully final foxes. pending, final" }, { "l_orderkey": 3719i32, "l_partkey": 174i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 2.0d, "l_extendedprice": 2148.34d, "l_discount": 0.02d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-17", "l_commitdate": "1997-04-25", "l_receiptdate": "1997-03-03", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "ccounts boost carefu" }, { "l_orderkey": 67i32, "l_partkey": 174i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 5.0d, "l_extendedprice": 5370.85d, "l_discount": 0.03d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-20", "l_commitdate": "1997-02-12", "l_receiptdate": "1997-02-21", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "y unusual packages thrash pinto " }, { "l_orderkey": 289i32, "l_partkey": 174i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 25.0d, "l_extendedprice": 26854.25d, "l_discount": 0.07d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-18", "l_commitdate": "1997-05-05", "l_receiptdate": "1997-04-15", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "out the quickly bold theodol" }, { "l_orderkey": 1606i32, "l_partkey": 174i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 35.0d, "l_extendedprice": 37595.95d, "l_discount": 0.0d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-20", "l_commitdate": "1997-06-19", "l_receiptdate": "1997-06-22", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "carefully sil" }, { "l_orderkey": 5923i32, "l_partkey": 174i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 46.0d, "l_extendedprice": 49411.82d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-29", "l_commitdate": "1997-07-23", "l_receiptdate": "1997-08-23", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "nto beans cajole blithe" }, { "l_orderkey": 5063i32, "l_partkey": 174i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 43.0d, "l_extendedprice": 46189.31d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-14", "l_commitdate": "1997-07-05", "l_receiptdate": "1997-10-05", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "latelets might nod blithely regular requ" }, { "l_orderkey": 2950i32, "l_partkey": 174i32, "l_suppkey": 5i32, "l_linenumber": 6i32, "l_quantity": 27.0d, "l_extendedprice": 29002.59d, "l_discount": 0.01d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-10-01", "l_commitdate": "1997-09-13", "l_receiptdate": "1997-10-08", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "are alongside of the carefully silent " }, { "l_orderkey": 580i32, "l_partkey": 174i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 31.0d, "l_extendedprice": 33299.27d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-10-04", "l_commitdate": "1997-09-08", "l_receiptdate": "1997-10-15", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "ose alongside of the sl" }, { "l_orderkey": 4450i32, "l_partkey": 174i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 44.0d, "l_extendedprice": 47263.48d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-10-12", "l_commitdate": "1997-10-13", "l_receiptdate": "1997-10-29", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": " the slyly eve" }, { "l_orderkey": 3360i32, "l_partkey": 174i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 31.0d, "l_extendedprice": 33299.27d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-24", "l_commitdate": "1998-04-12", "l_receiptdate": "1998-05-23", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "quests. carefully even deposits wake acros" }, { "l_orderkey": 4613i32, "l_partkey": 174i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 15.0d, "l_extendedprice": 16112.55d, "l_discount": 0.1d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-31", "l_commitdate": "1998-04-16", "l_receiptdate": "1998-06-25", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "against the quickly r" } ] }
-{ "partkey": 183i32, "lines": [ { "l_orderkey": 4998i32, "l_partkey": 183i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 15.0d, "l_extendedprice": 16247.7d, "l_discount": 0.06d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-04-24", "l_commitdate": "1992-03-21", "l_receiptdate": "1992-05-02", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "heodolites sleep quickly." }, { "l_orderkey": 5408i32, "l_partkey": 183i32, "l_suppkey": 4i32, "l_linenumber": 5i32, "l_quantity": 8.0d, "l_extendedprice": 8665.44d, "l_discount": 0.03d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-10-24", "l_commitdate": "1992-09-06", "l_receiptdate": "1992-11-03", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "thely regular hocke" }, { "l_orderkey": 1571i32, "l_partkey": 183i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 6.0d, "l_extendedprice": 6499.08d, "l_discount": 0.03d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-01-08", "l_commitdate": "1993-02-13", "l_receiptdate": "1993-02-07", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": " special, ironic depo" }, { "l_orderkey": 3143i32, "l_partkey": 183i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 22.0d, "l_extendedprice": 23829.96d, "l_discount": 0.05d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-03-18", "l_commitdate": "1993-05-09", "l_receiptdate": "1993-04-14", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "beans. fluf" }, { "l_orderkey": 3202i32, "l_partkey": 183i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 30.0d, "l_extendedprice": 32495.4d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-03-18", "l_commitdate": "1993-03-10", "l_receiptdate": "1993-03-23", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "ven platelets. furiously final" }, { "l_orderkey": 3143i32, "l_partkey": 183i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 40.0d, "l_extendedprice": 43327.2d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-05-07", "l_commitdate": "1993-03-29", "l_receiptdate": "1993-05-17", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "sly unusual theodolites. slyly ev" }, { "l_orderkey": 5792i32, "l_partkey": 183i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 32.0d, "l_extendedprice": 34661.76d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-06-26", "l_commitdate": "1993-05-23", "l_receiptdate": "1993-07-07", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "s are slyly against the ev" }, { "l_orderkey": 3942i32, "l_partkey": 183i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 6.0d, "l_extendedprice": 6499.08d, "l_discount": 0.05d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-07-01", "l_commitdate": "1993-09-14", "l_receiptdate": "1993-07-23", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "ep ruthlessly carefully final accounts: s" }, { "l_orderkey": 515i32, "l_partkey": 183i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 11.0d, "l_extendedprice": 11914.98d, "l_discount": 0.0d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-09-04", "l_commitdate": "1993-10-02", "l_receiptdate": "1993-09-05", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "ly pending accounts haggle blithel" }, { "l_orderkey": 2438i32, "l_partkey": 183i32, "l_suppkey": 4i32, "l_linenumber": 7i32, "l_quantity": 46.0d, "l_extendedprice": 49826.28d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-10-27", "l_commitdate": "1993-08-30", "l_receiptdate": "1993-11-14", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": " ironic requests cajole f" }, { "l_orderkey": 1602i32, "l_partkey": 183i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 4.0d, "l_extendedprice": 4332.72d, "l_discount": 0.08d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-10-31", "l_commitdate": "1993-09-05", "l_receiptdate": "1993-11-21", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "y. even excuses" }, { "l_orderkey": 3299i32, "l_partkey": 183i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 40.0d, "l_extendedprice": 43327.2d, "l_discount": 0.03d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-03-21", "l_commitdate": "1994-03-23", "l_receiptdate": "1994-04-12", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "lyly even request" }, { "l_orderkey": 2150i32, "l_partkey": 183i32, "l_suppkey": 4i32, "l_linenumber": 5i32, "l_quantity": 35.0d, "l_extendedprice": 37911.3d, "l_discount": 0.01d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-09-27", "l_commitdate": "1994-08-17", "l_receiptdate": "1994-10-13", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "refully pending dependen" }, { "l_orderkey": 359i32, "l_partkey": 183i32, "l_suppkey": 4i32, "l_linenumber": 6i32, "l_quantity": 23.0d, "l_extendedprice": 24913.14d, "l_discount": 0.04d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-01-31", "l_commitdate": "1995-03-11", "l_receiptdate": "1995-02-16", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "ic courts snooze quickly furiously final fo" }, { "l_orderkey": 4710i32, "l_partkey": 183i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 40.0d, "l_extendedprice": 43327.2d, "l_discount": 0.1d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-03-09", "l_commitdate": "1995-02-25", "l_receiptdate": "1995-03-29", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "cross the blithely bold packages. silen" }, { "l_orderkey": 5191i32, "l_partkey": 183i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 7.0d, "l_extendedprice": 7582.26d, "l_discount": 0.01d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-03-24", "l_commitdate": "1995-01-30", "l_receiptdate": "1995-03-30", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "eposits. express" }, { "l_orderkey": 3749i32, "l_partkey": 183i32, "l_suppkey": 4i32, "l_linenumber": 5i32, "l_quantity": 14.0d, "l_extendedprice": 15164.52d, "l_discount": 0.02d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "F", "l_shipdate": "1995-06-11", "l_commitdate": "1995-05-19", "l_receiptdate": "1995-07-11", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "press instruc" }, { "l_orderkey": 4070i32, "l_partkey": 183i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 2.0d, "l_extendedprice": 2166.36d, "l_discount": 0.09d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-03", "l_commitdate": "1995-09-10", "l_receiptdate": "1995-08-17", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "ptotes affix" }, { "l_orderkey": 774i32, "l_partkey": 183i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 49.0d, "l_extendedprice": 53075.82d, "l_discount": 0.08d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-06", "l_commitdate": "1996-01-07", "l_receiptdate": "1995-12-14", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "ess accounts are carefully " }, { "l_orderkey": 2721i32, "l_partkey": 183i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 49.0d, "l_extendedprice": 53075.82d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-02-14", "l_commitdate": "1996-04-26", "l_receiptdate": "1996-03-02", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "ounts poach carefu" }, { "l_orderkey": 5122i32, "l_partkey": 183i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 28.0d, "l_extendedprice": 30329.04d, "l_discount": 0.03d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-04-20", "l_commitdate": "1996-03-29", "l_receiptdate": "1996-04-29", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "g the busily ironic accounts boos" }, { "l_orderkey": 7i32, "l_partkey": 183i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 12.0d, "l_extendedprice": 12998.16d, "l_discount": 0.07d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-07", "l_commitdate": "1996-03-13", "l_receiptdate": "1996-06-03", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "ss pinto beans wake against th" }, { "l_orderkey": 5475i32, "l_partkey": 183i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 10.0d, "l_extendedprice": 10831.8d, "l_discount": 0.09d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-19", "l_commitdate": "1996-08-22", "l_receiptdate": "1996-07-23", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "ding to the deposits wake fina" }, { "l_orderkey": 4994i32, "l_partkey": 183i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 29.0d, "l_extendedprice": 31412.22d, "l_discount": 0.08d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-26", "l_commitdate": "1996-09-27", "l_receiptdate": "1996-09-25", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "ptotes boost carefully" }, { "l_orderkey": 260i32, "l_partkey": 183i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 26.0d, "l_extendedprice": 28162.68d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-12", "l_commitdate": "1997-02-06", "l_receiptdate": "1996-12-15", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "ld theodolites boost fl" }, { "l_orderkey": 4834i32, "l_partkey": 183i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 27.0d, "l_extendedprice": 29245.86d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-09", "l_commitdate": "1996-10-27", "l_receiptdate": "1997-01-27", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "es nag blithe" }, { "l_orderkey": 2533i32, "l_partkey": 183i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 37.0d, "l_extendedprice": 40077.66d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-10", "l_commitdate": "1997-04-26", "l_receiptdate": "1997-05-28", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": " haggle carefully " }, { "l_orderkey": 102i32, "l_partkey": 183i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 25.0d, "l_extendedprice": 27079.5d, "l_discount": 0.01d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-31", "l_commitdate": "1997-07-24", "l_receiptdate": "1997-08-17", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "bits. ironic accoun" }, { "l_orderkey": 5734i32, "l_partkey": 183i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 29.0d, "l_extendedprice": 31412.22d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-01", "l_commitdate": "1997-12-08", "l_receiptdate": "1997-12-23", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "structions cajole final, express " }, { "l_orderkey": 1570i32, "l_partkey": 183i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 25.0d, "l_extendedprice": 27079.5d, "l_discount": 0.0d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-03", "l_commitdate": "1998-06-02", "l_receiptdate": "1998-06-02", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "its. slyly regular sentiments" }, { "l_orderkey": 1605i32, "l_partkey": 183i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 25.0d, "l_extendedprice": 27079.5d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-26", "l_commitdate": "1998-06-14", "l_receiptdate": "1998-06-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "ole carefully car" } ] }
-{ "partkey": 185i32, "lines": [ { "l_orderkey": 3712i32, "l_partkey": 185i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 13.0d, "l_extendedprice": 14107.34d, "l_discount": 0.03d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-04-30", "l_commitdate": "1992-02-11", "l_receiptdate": "1992-05-30", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "s around the furiously ironic account" }, { "l_orderkey": 5574i32, "l_partkey": 185i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 46.0d, "l_extendedprice": 49918.28d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-06-20", "l_commitdate": "1992-04-19", "l_receiptdate": "1992-07-11", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "arefully express requests wake furiousl" }, { "l_orderkey": 2023i32, "l_partkey": 185i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 9.0d, "l_extendedprice": 9766.62d, "l_discount": 0.02d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-07-23", "l_commitdate": "1992-07-04", "l_receiptdate": "1992-08-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "nts maintain blithely alongside of the" }, { "l_orderkey": 612i32, "l_partkey": 185i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 5.0d, "l_extendedprice": 5425.9d, "l_discount": 0.07d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-11-08", "l_commitdate": "1992-11-20", "l_receiptdate": "1992-12-03", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "structions. q" }, { "l_orderkey": 1796i32, "l_partkey": 185i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 8.0d, "l_extendedprice": 8681.44d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-01-07", "l_commitdate": "1993-01-04", "l_receiptdate": "1993-01-10", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "slyly bold accounts are furiously agains" }, { "l_orderkey": 4739i32, "l_partkey": 185i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 31.0d, "l_extendedprice": 33640.58d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-06-20", "l_commitdate": "1993-05-18", "l_receiptdate": "1993-06-26", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "blithely special pin" }, { "l_orderkey": 4612i32, "l_partkey": 185i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 10.0d, "l_extendedprice": 10851.8d, "l_discount": 0.1d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-11-11", "l_commitdate": "1993-11-19", "l_receiptdate": "1993-11-13", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "unusual theodol" }, { "l_orderkey": 4389i32, "l_partkey": 185i32, "l_suppkey": 6i32, "l_linenumber": 7i32, "l_quantity": 4.0d, "l_extendedprice": 4340.72d, "l_discount": 0.09d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-06-14", "l_commitdate": "1994-06-30", "l_receiptdate": "1994-07-06", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": " blithely even d" }, { "l_orderkey": 2790i32, "l_partkey": 185i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 27.0d, "l_extendedprice": 29299.86d, "l_discount": 0.06d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-09-04", "l_commitdate": "1994-09-27", "l_receiptdate": "1994-09-16", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "ilent packages cajole. quickly ironic requ" }, { "l_orderkey": 3296i32, "l_partkey": 185i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 29.0d, "l_extendedprice": 31470.22d, "l_discount": 0.02d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-01-12", "l_commitdate": "1994-11-26", "l_receiptdate": "1995-02-06", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "ss ideas are reg" }, { "l_orderkey": 4643i32, "l_partkey": 185i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 50.0d, "l_extendedprice": 54259.0d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-11", "l_commitdate": "1995-08-13", "l_receiptdate": "1995-09-30", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": ". ironic deposits cajo" }, { "l_orderkey": 1666i32, "l_partkey": 185i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 30.0d, "l_extendedprice": 32555.4d, "l_discount": 0.04d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-28", "l_commitdate": "1995-11-30", "l_receiptdate": "1995-11-18", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": " breach evenly final accounts. r" }, { "l_orderkey": 835i32, "l_partkey": 185i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 28.0d, "l_extendedprice": 30385.04d, "l_discount": 0.02d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-27", "l_commitdate": "1995-12-11", "l_receiptdate": "1996-01-21", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": " fluffily furious pinto beans" }, { "l_orderkey": 3173i32, "l_partkey": 185i32, "l_suppkey": 6i32, "l_linenumber": 5i32, "l_quantity": 2.0d, "l_extendedprice": 2170.36d, "l_discount": 0.0d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-18", "l_commitdate": "1996-09-21", "l_receiptdate": "1996-09-07", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "fluffily above t" }, { "l_orderkey": 5634i32, "l_partkey": 185i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 26.0d, "l_extendedprice": 28214.68d, "l_discount": 0.1d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-29", "l_commitdate": "1996-09-15", "l_receiptdate": "1996-11-24", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "ptotes mold qu" }, { "l_orderkey": 4609i32, "l_partkey": 185i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 3.0d, "l_extendedprice": 3255.54d, "l_discount": 0.09d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-28", "l_commitdate": "1997-02-06", "l_receiptdate": "1997-01-20", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "nstructions. furious instructions " }, { "l_orderkey": 3267i32, "l_partkey": 185i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 33.0d, "l_extendedprice": 35810.94d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-30", "l_commitdate": "1997-03-25", "l_receiptdate": "1997-04-23", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "es boost. " }, { "l_orderkey": 3009i32, "l_partkey": 185i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 38.0d, "l_extendedprice": 41236.84d, "l_discount": 0.0d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-01", "l_commitdate": "1997-04-10", "l_receiptdate": "1997-05-17", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "nal packages should haggle slyly. quickl" }, { "l_orderkey": 580i32, "l_partkey": 185i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 19.0d, "l_extendedprice": 20618.42d, "l_discount": 0.04d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-23", "l_commitdate": "1997-09-21", "l_receiptdate": "1997-08-15", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "mong the special packag" }, { "l_orderkey": 1347i32, "l_partkey": 185i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 23.0d, "l_extendedprice": 24959.14d, "l_discount": 0.03d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-31", "l_commitdate": "1997-08-25", "l_receiptdate": "1997-08-21", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "ronic pinto beans. express reques" }, { "l_orderkey": 4577i32, "l_partkey": 185i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 43.0d, "l_extendedprice": 46662.74d, "l_discount": 0.01d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-16", "l_commitdate": "1998-07-09", "l_receiptdate": "1998-06-17", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "packages. " } ] }
-{ "partkey": 187i32, "lines": [ { "l_orderkey": 4391i32, "l_partkey": 187i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 45.0d, "l_extendedprice": 48923.1d, "l_discount": 0.07d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-04-01", "l_commitdate": "1992-05-01", "l_receiptdate": "1992-04-13", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "ep quickly after " }, { "l_orderkey": 4738i32, "l_partkey": 187i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 13.0d, "l_extendedprice": 14133.34d, "l_discount": 0.04d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-05-30", "l_commitdate": "1992-06-11", "l_receiptdate": "1992-06-26", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": " wake. unusual platelets for the" }, { "l_orderkey": 4738i32, "l_partkey": 187i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 9.0d, "l_extendedprice": 9784.62d, "l_discount": 0.04d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-06-01", "l_commitdate": "1992-06-26", "l_receiptdate": "1992-06-02", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "posits serve slyly. unusual pint" }, { "l_orderkey": 3650i32, "l_partkey": 187i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 19.0d, "l_extendedprice": 20656.42d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-08-29", "l_commitdate": "1992-08-09", "l_receiptdate": "1992-09-21", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "y even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even f" }, { "l_orderkey": 1346i32, "l_partkey": 187i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 30.0d, "l_extendedprice": 32615.4d, "l_discount": 0.01d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-10-01", "l_commitdate": "1992-07-22", "l_receiptdate": "1992-10-24", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": " nag blithely. unusual, ru" }, { "l_orderkey": 293i32, "l_partkey": 187i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 11.0d, "l_extendedprice": 11958.98d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-12-24", "l_commitdate": "1992-12-01", "l_receiptdate": "1993-01-12", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": " affix carefully quickly special idea" }, { "l_orderkey": 614i32, "l_partkey": 187i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 48.0d, "l_extendedprice": 52184.64d, "l_discount": 0.07d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-03-09", "l_commitdate": "1993-01-19", "l_receiptdate": "1993-03-19", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "riously special excuses haggle along the" }, { "l_orderkey": 1509i32, "l_partkey": 187i32, "l_suppkey": 8i32, "l_linenumber": 6i32, "l_quantity": 31.0d, "l_extendedprice": 33702.58d, "l_discount": 0.04d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-07-14", "l_commitdate": "1993-08-21", "l_receiptdate": "1993-08-06", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "ic deposits cajole carefully. quickly bold " }, { "l_orderkey": 4647i32, "l_partkey": 187i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 2.0d, "l_extendedprice": 2174.36d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-05-27", "l_commitdate": "1994-08-05", "l_receiptdate": "1994-06-10", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": " pinto beans believe furiously slyly silent" }, { "l_orderkey": 4930i32, "l_partkey": 187i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 35.0d, "l_extendedprice": 38051.3d, "l_discount": 0.03d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-07-09", "l_commitdate": "1994-07-30", "l_receiptdate": "1994-07-15", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "lose slyly regular dependencies. fur" }, { "l_orderkey": 2211i32, "l_partkey": 187i32, "l_suppkey": 8i32, "l_linenumber": 6i32, "l_quantity": 18.0d, "l_extendedprice": 19569.24d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-08-31", "l_commitdate": "1994-09-07", "l_receiptdate": "1994-09-22", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "c grouches. slyly express pinto " }, { "l_orderkey": 1031i32, "l_partkey": 187i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 27.0d, "l_extendedprice": 29353.86d, "l_discount": 0.07d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-09-20", "l_commitdate": "1994-10-18", "l_receiptdate": "1994-10-10", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "gular deposits cajole. blithely unus" }, { "l_orderkey": 4583i32, "l_partkey": 187i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 43.0d, "l_extendedprice": 46748.74d, "l_discount": 0.04d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-10-30", "l_commitdate": "1994-12-17", "l_receiptdate": "1994-11-16", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "fully after the speci" }, { "l_orderkey": 5920i32, "l_partkey": 187i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 50.0d, "l_extendedprice": 54359.0d, "l_discount": 0.06d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-03-13", "l_commitdate": "1995-01-03", "l_receiptdate": "1995-03-31", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "across the carefully pending platelets" }, { "l_orderkey": 1639i32, "l_partkey": 187i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 24.0d, "l_extendedprice": 26092.32d, "l_discount": 0.07d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-24", "l_commitdate": "1995-10-06", "l_receiptdate": "1995-08-31", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": " the regular packages. courts dou" }, { "l_orderkey": 2951i32, "l_partkey": 187i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 40.0d, "l_extendedprice": 43487.2d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-03", "l_commitdate": "1996-04-20", "l_receiptdate": "1996-05-22", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "ial deposits wake fluffily about th" }, { "l_orderkey": 3558i32, "l_partkey": 187i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 3.0d, "l_extendedprice": 3261.54d, "l_discount": 0.03d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-19", "l_commitdate": "1996-04-28", "l_receiptdate": "1996-05-26", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "l, final deposits haggle. fina" }, { "l_orderkey": 3334i32, "l_partkey": 187i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 20.0d, "l_extendedprice": 21743.6d, "l_discount": 0.04d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-21", "l_commitdate": "1996-04-08", "l_receiptdate": "1996-05-26", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "uses nag furiously. instructions are ca" }, { "l_orderkey": 2849i32, "l_partkey": 187i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 39.0d, "l_extendedprice": 42400.02d, "l_discount": 0.1d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-22", "l_commitdate": "1996-07-18", "l_receiptdate": "1996-06-05", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "s sleep furiously silently regul" }, { "l_orderkey": 39i32, "l_partkey": 187i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 26.0d, "l_extendedprice": 28266.68d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-04", "l_commitdate": "1996-10-20", "l_receiptdate": "1996-11-20", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "ckages across the slyly silent" }, { "l_orderkey": 2406i32, "l_partkey": 187i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 25.0d, "l_extendedprice": 27179.5d, "l_discount": 0.08d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-03", "l_commitdate": "1996-12-14", "l_receiptdate": "1996-12-26", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "al, regular in" }, { "l_orderkey": 2980i32, "l_partkey": 187i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 24.0d, "l_extendedprice": 26092.32d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-12", "l_commitdate": "1996-10-27", "l_receiptdate": "1997-01-14", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "elets. fluffily regular in" }, { "l_orderkey": 5600i32, "l_partkey": 187i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 34.0d, "l_extendedprice": 36964.12d, "l_discount": 0.02d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-22", "l_commitdate": "1997-04-05", "l_receiptdate": "1997-04-09", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "ly above the stealthy ideas. permane" }, { "l_orderkey": 2950i32, "l_partkey": 187i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 45.0d, "l_extendedprice": 48923.1d, "l_discount": 0.08d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-05", "l_commitdate": "1997-09-23", "l_receiptdate": "1997-09-11", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "ides the b" }, { "l_orderkey": 1475i32, "l_partkey": 187i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 50.0d, "l_extendedprice": 54359.0d, "l_discount": 0.03d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-14", "l_commitdate": "1997-12-13", "l_receiptdate": "1997-12-21", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": ". slyly bold re" }, { "l_orderkey": 3748i32, "l_partkey": 187i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 5.0d, "l_extendedprice": 5435.9d, "l_discount": 0.0d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-29", "l_commitdate": "1998-05-06", "l_receiptdate": "1998-07-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": " regular accounts sleep quickly-- furious" }, { "l_orderkey": 741i32, "l_partkey": 187i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 25.0d, "l_extendedprice": 27179.5d, "l_discount": 0.03d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-15", "l_commitdate": "1998-08-27", "l_receiptdate": "1998-08-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "accounts. blithely bold pa" }, { "l_orderkey": 3840i32, "l_partkey": 187i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 45.0d, "l_extendedprice": 48923.1d, "l_discount": 0.02d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-10-31", "l_commitdate": "1998-09-19", "l_receiptdate": "1998-11-30", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "o beans are. carefully final courts x" }, { "l_orderkey": 5827i32, "l_partkey": 187i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 30.0d, "l_extendedprice": 32615.4d, "l_discount": 0.03d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-11-11", "l_commitdate": "1998-09-27", "l_receiptdate": "1998-11-30", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "ounts may c" } ] }
-{ "partkey": 191i32, "lines": [ { "l_orderkey": 5767i32, "l_partkey": 191i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 42.0d, "l_extendedprice": 45829.98d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-07-31", "l_commitdate": "1992-06-09", "l_receiptdate": "1992-08-09", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": " blithe deposi" }, { "l_orderkey": 3361i32, "l_partkey": 191i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 31.0d, "l_extendedprice": 33826.89d, "l_discount": 0.06d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-08-29", "l_commitdate": "1992-10-13", "l_receiptdate": "1992-09-08", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "ts. pending, regular accounts sleep fur" }, { "l_orderkey": 1506i32, "l_partkey": 191i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 28.0d, "l_extendedprice": 30553.32d, "l_discount": 0.1d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-09-22", "l_commitdate": "1992-11-19", "l_receiptdate": "1992-10-09", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": " unwind carefully: theodolit" }, { "l_orderkey": 3265i32, "l_partkey": 191i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 28.0d, "l_extendedprice": 30553.32d, "l_discount": 0.09d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-10-22", "l_commitdate": "1992-08-23", "l_receiptdate": "1992-10-25", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "n requests. quickly final dinos" }, { "l_orderkey": 5699i32, "l_partkey": 191i32, "l_suppkey": 5i32, "l_linenumber": 6i32, "l_quantity": 30.0d, "l_extendedprice": 32735.7d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-11-13", "l_commitdate": "1992-10-01", "l_receiptdate": "1992-12-11", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": " the carefully final " }, { "l_orderkey": 2176i32, "l_partkey": 191i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 38.0d, "l_extendedprice": 41465.22d, "l_discount": 0.02d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-11-29", "l_commitdate": "1993-01-14", "l_receiptdate": "1992-12-22", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "lithely ironic pinto beans. furious" }, { "l_orderkey": 4737i32, "l_partkey": 191i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 37.0d, "l_extendedprice": 40374.03d, "l_discount": 0.03d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-05-17", "l_commitdate": "1993-04-10", "l_receiptdate": "1993-05-30", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "s. fluffily regular " }, { "l_orderkey": 4519i32, "l_partkey": 191i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 37.0d, "l_extendedprice": 40374.03d, "l_discount": 0.06d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-07-22", "l_commitdate": "1993-06-16", "l_receiptdate": "1993-08-19", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "ly slyly furious depth" }, { "l_orderkey": 5350i32, "l_partkey": 191i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 44.0d, "l_extendedprice": 48012.36d, "l_discount": 0.04d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-10-30", "l_commitdate": "1993-11-23", "l_receiptdate": "1993-11-25", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "p above the ironic, pending dep" }, { "l_orderkey": 358i32, "l_partkey": 191i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 41.0d, "l_extendedprice": 44738.79d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-11-18", "l_commitdate": "1993-11-14", "l_receiptdate": "1993-11-28", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "ely frets. furious deposits sleep " }, { "l_orderkey": 1792i32, "l_partkey": 191i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 45.0d, "l_extendedprice": 49103.55d, "l_discount": 0.0d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-02-27", "l_commitdate": "1993-12-24", "l_receiptdate": "1994-03-07", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "ests are. ironic, regular asy" }, { "l_orderkey": 2373i32, "l_partkey": 191i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 17.0d, "l_extendedprice": 18550.23d, "l_discount": 0.02d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-03-29", "l_commitdate": "1994-05-19", "l_receiptdate": "1994-04-20", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "auternes. blithely even pinto bea" }, { "l_orderkey": 4708i32, "l_partkey": 191i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 18.0d, "l_extendedprice": 19641.42d, "l_discount": 0.02d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-11-11", "l_commitdate": "1994-11-15", "l_receiptdate": "1994-11-26", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "special, eve" }, { "l_orderkey": 1031i32, "l_partkey": 191i32, "l_suppkey": 5i32, "l_linenumber": 5i32, "l_quantity": 44.0d, "l_extendedprice": 48012.36d, "l_discount": 0.01d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-11-20", "l_commitdate": "1994-11-24", "l_receiptdate": "1994-12-11", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "re slyly above the furio" }, { "l_orderkey": 4485i32, "l_partkey": 191i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 1.0d, "l_extendedprice": 1091.19d, "l_discount": 0.03d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-12-04", "l_commitdate": "1995-02-07", "l_receiptdate": "1994-12-09", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "play according to the ironic, ironic" }, { "l_orderkey": 3590i32, "l_partkey": 191i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 37.0d, "l_extendedprice": 40374.03d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-01", "l_commitdate": "1995-06-29", "l_receiptdate": "1995-09-10", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "ccounts above the silent waters thrash f" }, { "l_orderkey": 550i32, "l_partkey": 191i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 31.0d, "l_extendedprice": 33826.89d, "l_discount": 0.04d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-24", "l_commitdate": "1995-09-27", "l_receiptdate": "1995-11-04", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "thely silent packages. unusual" }, { "l_orderkey": 993i32, "l_partkey": 191i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 40.0d, "l_extendedprice": 43647.6d, "l_discount": 0.01d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-16", "l_commitdate": "1995-11-01", "l_receiptdate": "1995-12-05", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "gle above the furiously " }, { "l_orderkey": 3363i32, "l_partkey": 191i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 21.0d, "l_extendedprice": 22914.99d, "l_discount": 0.08d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-10", "l_commitdate": "1995-10-28", "l_receiptdate": "1995-12-28", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "he regular, brave deposits. f" }, { "l_orderkey": 2531i32, "l_partkey": 191i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 36.0d, "l_extendedprice": 39282.84d, "l_discount": 0.08d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-11", "l_commitdate": "1996-07-26", "l_receiptdate": "1996-06-27", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "y ironic, bold packages. blithely e" }, { "l_orderkey": 5669i32, "l_partkey": 191i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 7.0d, "l_extendedprice": 7638.33d, "l_discount": 0.06d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-19", "l_commitdate": "1996-07-07", "l_receiptdate": "1996-07-11", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "yly regular requests lose blithely. careful" }, { "l_orderkey": 3971i32, "l_partkey": 191i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 2.0d, "l_extendedprice": 2182.38d, "l_discount": 0.04d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-15", "l_commitdate": "1996-08-12", "l_receiptdate": "1996-07-26", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "haggle abou" }, { "l_orderkey": 3298i32, "l_partkey": 191i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 1.0d, "l_extendedprice": 1091.19d, "l_discount": 0.1d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-31", "l_commitdate": "1996-05-23", "l_receiptdate": "1996-08-24", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "refully regular requ" }, { "l_orderkey": 3809i32, "l_partkey": 191i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 17.0d, "l_extendedprice": 18550.23d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-14", "l_commitdate": "1996-07-05", "l_receiptdate": "1996-09-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "es detect furiously sil" }, { "l_orderkey": 4646i32, "l_partkey": 191i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 24.0d, "l_extendedprice": 26188.56d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-18", "l_commitdate": "1996-08-09", "l_receiptdate": "1996-09-21", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "ic platelets lose carefully. blithely unu" }, { "l_orderkey": 5443i32, "l_partkey": 191i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 6.0d, "l_extendedprice": 6547.14d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-17", "l_commitdate": "1996-12-03", "l_receiptdate": "1996-11-30", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "p fluffily foxe" }, { "l_orderkey": 1574i32, "l_partkey": 191i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 50.0d, "l_extendedprice": 54559.5d, "l_discount": 0.0d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-14", "l_commitdate": "1997-02-14", "l_receiptdate": "1996-12-16", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "le regular, regular foxes. blithely e" }, { "l_orderkey": 1632i32, "l_partkey": 191i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 47.0d, "l_extendedprice": 51285.93d, "l_discount": 0.08d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-25", "l_commitdate": "1997-02-09", "l_receiptdate": "1997-02-19", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "g to the closely special no" }, { "l_orderkey": 5829i32, "l_partkey": 191i32, "l_suppkey": 5i32, "l_linenumber": 5i32, "l_quantity": 49.0d, "l_extendedprice": 53468.31d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-31", "l_commitdate": "1997-03-13", "l_receiptdate": "1997-02-18", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": " ironic excuses use fluf" }, { "l_orderkey": 5831i32, "l_partkey": 191i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 2.0d, "l_extendedprice": 2182.38d, "l_discount": 0.1d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-09", "l_commitdate": "1997-01-20", "l_receiptdate": "1997-03-07", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "quickly silent req" }, { "l_orderkey": 1574i32, "l_partkey": 191i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 6.0d, "l_extendedprice": 6547.14d, "l_discount": 0.03d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-24", "l_commitdate": "1997-02-03", "l_receiptdate": "1997-03-01", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "e silent, final packages. speci" }, { "l_orderkey": 4868i32, "l_partkey": 191i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 49.0d, "l_extendedprice": 53468.31d, "l_discount": 0.09d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-23", "l_commitdate": "1997-05-07", "l_receiptdate": "1997-04-26", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "ys engage. th" }, { "l_orderkey": 5952i32, "l_partkey": 191i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 11.0d, "l_extendedprice": 12003.09d, "l_discount": 0.1d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-13", "l_commitdate": "1997-06-04", "l_receiptdate": "1997-05-27", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "y nag blithely aga" }, { "l_orderkey": 5861i32, "l_partkey": 191i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 32.0d, "l_extendedprice": 34918.08d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-27", "l_commitdate": "1997-05-29", "l_receiptdate": "1997-05-28", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "nt asymptotes. carefully express request" }, { "l_orderkey": 4421i32, "l_partkey": 191i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 32.0d, "l_extendedprice": 34918.08d, "l_discount": 0.06d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-09", "l_commitdate": "1997-06-03", "l_receiptdate": "1997-07-25", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "ar ideas eat among the furiousl" }, { "l_orderkey": 5859i32, "l_partkey": 191i32, "l_suppkey": 5i32, "l_linenumber": 7i32, "l_quantity": 27.0d, "l_extendedprice": 29462.13d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-30", "l_commitdate": "1997-07-08", "l_receiptdate": "1997-08-08", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": " across th" }, { "l_orderkey": 1859i32, "l_partkey": 191i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 21.0d, "l_extendedprice": 22914.99d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-06", "l_commitdate": "1997-05-29", "l_receiptdate": "1997-08-26", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "lar packages wake quickly exp" }, { "l_orderkey": 163i32, "l_partkey": 191i32, "l_suppkey": 4i32, "l_linenumber": 6i32, "l_quantity": 20.0d, "l_extendedprice": 21823.8d, "l_discount": 0.0d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-27", "l_commitdate": "1997-11-15", "l_receiptdate": "1997-10-07", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "tructions integrate b" }, { "l_orderkey": 1668i32, "l_partkey": 191i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 9.0d, "l_extendedprice": 9820.71d, "l_discount": 0.05d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-10-17", "l_commitdate": "1997-09-05", "l_receiptdate": "1997-11-01", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "wake furiously even instructions. sil" }, { "l_orderkey": 3909i32, "l_partkey": 191i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 46.0d, "l_extendedprice": 50194.74d, "l_discount": 0.03d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-10-08", "l_commitdate": "1998-10-15", "l_receiptdate": "1998-10-24", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "the blithely unusual ideas" } ] }
-{ "partkey": 192i32, "lines": [ { "l_orderkey": 3685i32, "l_partkey": 192i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 39.0d, "l_extendedprice": 42595.41d, "l_discount": 0.1d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-02-19", "l_commitdate": "1992-04-06", "l_receiptdate": "1992-03-02", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "ic courts nag carefully after the " }, { "l_orderkey": 5254i32, "l_partkey": 192i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 32.0d, "l_extendedprice": 34950.08d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-08-10", "l_commitdate": "1992-09-21", "l_receiptdate": "1992-08-16", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "ts impress closely furi" }, { "l_orderkey": 2500i32, "l_partkey": 192i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 40.0d, "l_extendedprice": 43687.6d, "l_discount": 0.0d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-09-02", "l_commitdate": "1992-09-30", "l_receiptdate": "1992-09-06", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "efully unusual dolphins s" }, { "l_orderkey": 5381i32, "l_partkey": 192i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 13.0d, "l_extendedprice": 14198.47d, "l_discount": 0.08d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-05-09", "l_commitdate": "1993-04-26", "l_receiptdate": "1993-05-25", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "s after the f" }, { "l_orderkey": 2593i32, "l_partkey": 192i32, "l_suppkey": 5i32, "l_linenumber": 7i32, "l_quantity": 11.0d, "l_extendedprice": 12014.09d, "l_discount": 0.0d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-11-01", "l_commitdate": "1993-11-19", "l_receiptdate": "1993-11-28", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "express packages sleep bold re" }, { "l_orderkey": 3169i32, "l_partkey": 192i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 12.0d, "l_extendedprice": 13106.28d, "l_discount": 0.01d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-01-05", "l_commitdate": "1994-03-18", "l_receiptdate": "1994-01-21", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": " regular d" }, { "l_orderkey": 2339i32, "l_partkey": 192i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 22.0d, "l_extendedprice": 24028.18d, "l_discount": 0.03d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-01-06", "l_commitdate": "1994-03-06", "l_receiptdate": "1994-01-10", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": " furiously above " }, { "l_orderkey": 5346i32, "l_partkey": 192i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 13.0d, "l_extendedprice": 14198.47d, "l_discount": 0.04d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-02-03", "l_commitdate": "1994-02-05", "l_receiptdate": "1994-02-09", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "y. fluffily bold accounts grow. furio" }, { "l_orderkey": 4291i32, "l_partkey": 192i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 3.0d, "l_extendedprice": 3276.57d, "l_discount": 0.08d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-03-17", "l_commitdate": "1994-02-21", "l_receiptdate": "1994-03-27", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "tes sleep slyly above the quickly sl" }, { "l_orderkey": 4454i32, "l_partkey": 192i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 45.0d, "l_extendedprice": 49148.55d, "l_discount": 0.07d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-03-29", "l_commitdate": "1994-03-26", "l_receiptdate": "1994-04-04", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "ests promise. packages print fur" }, { "l_orderkey": 1255i32, "l_partkey": 192i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 12.0d, "l_extendedprice": 13106.28d, "l_discount": 0.0d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-08-17", "l_commitdate": "1994-06-29", "l_receiptdate": "1994-09-04", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": " regular, express accounts are " }, { "l_orderkey": 742i32, "l_partkey": 192i32, "l_suppkey": 6i32, "l_linenumber": 6i32, "l_quantity": 49.0d, "l_extendedprice": 53517.31d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-01-13", "l_commitdate": "1995-02-13", "l_receiptdate": "1995-01-26", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": " carefully bold foxes sle" }, { "l_orderkey": 742i32, "l_partkey": 192i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 16.0d, "l_extendedprice": 17475.04d, "l_discount": 0.01d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-01-15", "l_commitdate": "1995-02-25", "l_receiptdate": "1995-01-24", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "eodolites haggle carefully regul" }, { "l_orderkey": 1445i32, "l_partkey": 192i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 7.0d, "l_extendedprice": 7645.33d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-04-25", "l_commitdate": "1995-02-25", "l_receiptdate": "1995-05-10", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "structions: slyly regular re" }, { "l_orderkey": 3554i32, "l_partkey": 192i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 41.0d, "l_extendedprice": 44779.79d, "l_discount": 0.02d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-13", "l_commitdate": "1995-08-28", "l_receiptdate": "1995-07-27", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "ent dependencies. sly" }, { "l_orderkey": 1538i32, "l_partkey": 192i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 27.0d, "l_extendedprice": 29489.13d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-19", "l_commitdate": "1995-08-03", "l_receiptdate": "1995-09-24", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "ngly even packag" }, { "l_orderkey": 5250i32, "l_partkey": 192i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 27.0d, "l_extendedprice": 29489.13d, "l_discount": 0.1d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-24", "l_commitdate": "1995-09-03", "l_receiptdate": "1995-11-18", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "l forges are. furiously unusual pin" }, { "l_orderkey": 679i32, "l_partkey": 192i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 9.0d, "l_extendedprice": 9829.71d, "l_discount": 0.09d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-20", "l_commitdate": "1996-01-27", "l_receiptdate": "1996-01-07", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "leep slyly. entici" }, { "l_orderkey": 3174i32, "l_partkey": 192i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 13.0d, "l_extendedprice": 14198.47d, "l_discount": 0.08d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-11", "l_commitdate": "1996-01-26", "l_receiptdate": "1996-02-01", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "leep quickly? slyly special platelets" }, { "l_orderkey": 262i32, "l_partkey": 192i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 39.0d, "l_extendedprice": 42595.41d, "l_discount": 0.01d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-15", "l_commitdate": "1996-02-18", "l_receiptdate": "1996-01-28", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "usual, regular requests" }, { "l_orderkey": 4513i32, "l_partkey": 192i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 13.0d, "l_extendedprice": 14198.47d, "l_discount": 0.08d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-04-12", "l_commitdate": "1996-05-19", "l_receiptdate": "1996-04-25", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "l, final excuses detect furi" }, { "l_orderkey": 1153i32, "l_partkey": 192i32, "l_suppkey": 4i32, "l_linenumber": 7i32, "l_quantity": 5.0d, "l_extendedprice": 5460.95d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-03", "l_commitdate": "1996-06-12", "l_receiptdate": "1996-05-28", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "special excuses promi" }, { "l_orderkey": 4582i32, "l_partkey": 192i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 17.0d, "l_extendedprice": 18567.23d, "l_discount": 0.09d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-17", "l_commitdate": "1996-08-26", "l_receiptdate": "1996-08-20", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "ng packages. depo" }, { "l_orderkey": 743i32, "l_partkey": 192i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 21.0d, "l_extendedprice": 22935.99d, "l_discount": 0.01d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-26", "l_commitdate": "1996-11-05", "l_receiptdate": "1996-11-11", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "d requests. packages afte" }, { "l_orderkey": 1283i32, "l_partkey": 192i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 40.0d, "l_extendedprice": 43687.6d, "l_discount": 0.07d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-09", "l_commitdate": "1996-11-23", "l_receiptdate": "1996-11-28", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "riously. even, ironic instructions after" }, { "l_orderkey": 5731i32, "l_partkey": 192i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 13.0d, "l_extendedprice": 14198.47d, "l_discount": 0.02d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-30", "l_commitdate": "1997-06-23", "l_receiptdate": "1997-08-13", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "ngside of the quickly regular depos" }, { "l_orderkey": 5345i32, "l_partkey": 192i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 46.0d, "l_extendedprice": 50240.74d, "l_discount": 0.06d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-10-06", "l_commitdate": "1997-09-27", "l_receiptdate": "1997-10-18", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "slyly special deposits. fin" }, { "l_orderkey": 5857i32, "l_partkey": 192i32, "l_suppkey": 4i32, "l_linenumber": 5i32, "l_quantity": 14.0d, "l_extendedprice": 15290.66d, "l_discount": 0.07d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-10", "l_commitdate": "1998-01-06", "l_receiptdate": "1998-01-04", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "ffily pendin" }, { "l_orderkey": 3523i32, "l_partkey": 192i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 36.0d, "l_extendedprice": 39318.84d, "l_discount": 0.06d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-26", "l_commitdate": "1998-06-04", "l_receiptdate": "1998-06-25", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "accounts. fluffily regu" } ] }
-{ "partkey": 196i32, "lines": [ { "l_orderkey": 4000i32, "l_partkey": 196i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 41.0d, "l_extendedprice": 44943.79d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-03-02", "l_commitdate": "1992-03-14", "l_receiptdate": "1992-03-27", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "ve the even, fi" }, { "l_orderkey": 1154i32, "l_partkey": 196i32, "l_suppkey": 8i32, "l_linenumber": 6i32, "l_quantity": 50.0d, "l_extendedprice": 54809.5d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-03-04", "l_commitdate": "1992-04-01", "l_receiptdate": "1992-04-01", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": " even, special " }, { "l_orderkey": 4230i32, "l_partkey": 196i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 10.0d, "l_extendedprice": 10961.9d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-06-11", "l_commitdate": "1992-04-11", "l_receiptdate": "1992-07-02", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "ar packages are " }, { "l_orderkey": 5986i32, "l_partkey": 196i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 25.0d, "l_extendedprice": 27404.75d, "l_discount": 0.03d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-06-16", "l_commitdate": "1992-07-17", "l_receiptdate": "1992-06-29", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": " instructions. slyly regular de" }, { "l_orderkey": 5959i32, "l_partkey": 196i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 13.0d, "l_extendedprice": 14250.47d, "l_discount": 0.03d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-07-29", "l_commitdate": "1992-07-13", "l_receiptdate": "1992-08-20", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "ar forges. deposits det" }, { "l_orderkey": 3845i32, "l_partkey": 196i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 27.0d, "l_extendedprice": 29597.13d, "l_discount": 0.0d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-08-20", "l_commitdate": "1992-07-17", "l_receiptdate": "1992-09-02", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "kages. care" }, { "l_orderkey": 549i32, "l_partkey": 196i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 18.0d, "l_extendedprice": 19731.42d, "l_discount": 0.07d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-10-19", "l_commitdate": "1992-08-12", "l_receiptdate": "1992-11-13", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "furiously according to the ironic, regular " }, { "l_orderkey": 614i32, "l_partkey": 196i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 30.0d, "l_extendedprice": 32885.7d, "l_discount": 0.08d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-01-16", "l_commitdate": "1993-02-08", "l_receiptdate": "1993-02-12", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "tructions are f" }, { "l_orderkey": 1060i32, "l_partkey": 196i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 8.0d, "l_extendedprice": 8769.52d, "l_discount": 0.07d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-05-21", "l_commitdate": "1993-05-06", "l_receiptdate": "1993-06-10", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "iously. furiously regular in" }, { "l_orderkey": 259i32, "l_partkey": 196i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 3.0d, "l_extendedprice": 3288.57d, "l_discount": 0.08d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-10-04", "l_commitdate": "1993-11-07", "l_receiptdate": "1993-10-14", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "ng slyly at the accounts." }, { "l_orderkey": 4289i32, "l_partkey": 196i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 19.0d, "l_extendedprice": 20827.61d, "l_discount": 0.06d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-12-31", "l_commitdate": "1993-11-06", "l_receiptdate": "1994-01-23", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "e carefully regular ideas. sl" }, { "l_orderkey": 4034i32, "l_partkey": 196i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 7.0d, "l_extendedprice": 7673.33d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-03-04", "l_commitdate": "1994-01-22", "l_receiptdate": "1994-04-01", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "y even theodolites. slyly regular instru" }, { "l_orderkey": 1828i32, "l_partkey": 196i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 11.0d, "l_extendedprice": 12058.09d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-07-21", "l_commitdate": "1994-05-28", "l_receiptdate": "1994-08-13", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": " wake blithely " }, { "l_orderkey": 4583i32, "l_partkey": 196i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 28.0d, "l_extendedprice": 30693.32d, "l_discount": 0.0d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-10-29", "l_commitdate": "1994-11-21", "l_receiptdate": "1994-11-28", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "to beans haggle sly" }, { "l_orderkey": 1539i32, "l_partkey": 196i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 21.0d, "l_extendedprice": 23019.99d, "l_discount": 0.08d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-04-19", "l_commitdate": "1995-05-10", "l_receiptdate": "1995-04-27", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "ounts haggle. busy" }, { "l_orderkey": 2306i32, "l_partkey": 196i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 50.0d, "l_extendedprice": 54809.5d, "l_discount": 0.09d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-27", "l_commitdate": "1995-09-26", "l_receiptdate": "1995-08-06", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "y quickly " }, { "l_orderkey": 4390i32, "l_partkey": 196i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 28.0d, "l_extendedprice": 30693.32d, "l_discount": 0.03d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-07", "l_commitdate": "1995-06-22", "l_receiptdate": "1995-10-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "ld braids haggle atop the for" }, { "l_orderkey": 4128i32, "l_partkey": 196i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 5.0d, "l_extendedprice": 5480.95d, "l_discount": 0.04d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-18", "l_commitdate": "1995-11-28", "l_receiptdate": "1995-10-28", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "ake permanently " }, { "l_orderkey": 4038i32, "l_partkey": 196i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 40.0d, "l_extendedprice": 43847.6d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-15", "l_commitdate": "1996-03-13", "l_receiptdate": "1996-01-25", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "t. slyly silent pinto beans amo" }, { "l_orderkey": 4736i32, "l_partkey": 196i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 26.0d, "l_extendedprice": 28500.94d, "l_discount": 0.03d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-02-02", "l_commitdate": "1996-01-18", "l_receiptdate": "1996-02-09", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "efully speci" }, { "l_orderkey": 482i32, "l_partkey": 196i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 8.0d, "l_extendedprice": 8769.52d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-04-19", "l_commitdate": "1996-05-05", "l_receiptdate": "1996-04-21", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "tructions near the final, regular ideas de" }, { "l_orderkey": 1731i32, "l_partkey": 196i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 23.0d, "l_extendedprice": 25212.37d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-04-22", "l_commitdate": "1996-02-25", "l_receiptdate": "1996-05-16", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "rays? bold, express pac" }, { "l_orderkey": 4803i32, "l_partkey": 196i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 42.0d, "l_extendedprice": 46039.98d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-04-27", "l_commitdate": "1996-05-05", "l_receiptdate": "1996-05-17", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": " accounts affix quickly ar" }, { "l_orderkey": 5637i32, "l_partkey": 196i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 10.0d, "l_extendedprice": 10961.9d, "l_discount": 0.01d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-25", "l_commitdate": "1996-08-11", "l_receiptdate": "1996-09-23", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "ickly ironic gifts. blithely even cour" }, { "l_orderkey": 768i32, "l_partkey": 196i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 39.0d, "l_extendedprice": 42751.41d, "l_discount": 0.06d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-25", "l_commitdate": "1996-10-27", "l_receiptdate": "1996-10-20", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "out the ironic" }, { "l_orderkey": 5922i32, "l_partkey": 196i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 9.0d, "l_extendedprice": 9865.71d, "l_discount": 0.07d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-04", "l_commitdate": "1997-01-20", "l_receiptdate": "1996-12-08", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "haggle slyly even packages. packages" }, { "l_orderkey": 3106i32, "l_partkey": 196i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 6.0d, "l_extendedprice": 6577.14d, "l_discount": 0.1d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-02", "l_commitdate": "1997-04-11", "l_receiptdate": "1997-02-27", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "symptotes. slyly bold platelets cajol" }, { "l_orderkey": 5185i32, "l_partkey": 196i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 41.0d, "l_extendedprice": 44943.79d, "l_discount": 0.0d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-10-15", "l_commitdate": "1997-10-11", "l_receiptdate": "1997-11-02", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "ly blithe deposits. furi" }, { "l_orderkey": 1155i32, "l_partkey": 196i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 39.0d, "l_extendedprice": 42751.41d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-29", "l_commitdate": "1998-01-03", "l_receiptdate": "1998-02-01", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "ckly final pinto beans was." }, { "l_orderkey": 71i32, "l_partkey": 196i32, "l_suppkey": 9i32, "l_linenumber": 6i32, "l_quantity": 34.0d, "l_extendedprice": 37270.46d, "l_discount": 0.04d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-05", "l_commitdate": "1998-04-22", "l_receiptdate": "1998-03-30", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "s cajole. " }, { "l_orderkey": 2214i32, "l_partkey": 196i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 22.0d, "l_extendedprice": 24116.18d, "l_discount": 0.01d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-30", "l_commitdate": "1998-07-02", "l_receiptdate": "1998-06-09", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "t the blithely" }, { "l_orderkey": 4263i32, "l_partkey": 196i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 28.0d, "l_extendedprice": 30693.32d, "l_discount": 0.05d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-24", "l_commitdate": "1998-06-08", "l_receiptdate": "1998-07-14", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "ideas for the carefully re" }, { "l_orderkey": 4613i32, "l_partkey": 196i32, "l_suppkey": 8i32, "l_linenumber": 6i32, "l_quantity": 47.0d, "l_extendedprice": 51520.93d, "l_discount": 0.04d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-03", "l_commitdate": "1998-05-26", "l_receiptdate": "1998-07-09", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "uriously special requests wak" }, { "l_orderkey": 2115i32, "l_partkey": 196i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 27.0d, "l_extendedprice": 29597.13d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-09-01", "l_commitdate": "1998-07-29", "l_receiptdate": "1998-09-04", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "de of the carefully bold accounts " }, { "l_orderkey": 3717i32, "l_partkey": 196i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 45.0d, "l_extendedprice": 49328.55d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-09-19", "l_commitdate": "1998-07-22", "l_receiptdate": "1998-09-28", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "s the blithely unu" }, { "l_orderkey": 4902i32, "l_partkey": 196i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 22.0d, "l_extendedprice": 24116.18d, "l_discount": 0.0d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-10-17", "l_commitdate": "1998-08-10", "l_receiptdate": "1998-10-21", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "r the furiously final fox" } ] }
-{ "partkey": 200i32, "lines": [ { "l_orderkey": 324i32, "l_partkey": 200i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 26.0d, "l_extendedprice": 28605.2d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-04-19", "l_commitdate": "1992-05-28", "l_receiptdate": "1992-05-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "ross the slyly regular s" }, { "l_orderkey": 1447i32, "l_partkey": 200i32, "l_suppkey": 3i32, "l_linenumber": 6i32, "l_quantity": 41.0d, "l_extendedprice": 45108.2d, "l_discount": 0.08d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-01-06", "l_commitdate": "1993-01-05", "l_receiptdate": "1993-01-13", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "rts boost s" }, { "l_orderkey": 5764i32, "l_partkey": 200i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 20.0d, "l_extendedprice": 22004.0d, "l_discount": 0.1d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-10-17", "l_commitdate": "1993-12-24", "l_receiptdate": "1993-10-18", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "ng to the fluffily qu" }, { "l_orderkey": 2304i32, "l_partkey": 200i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 42.0d, "l_extendedprice": 46208.4d, "l_discount": 0.0d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-01-20", "l_commitdate": "1994-03-04", "l_receiptdate": "1994-02-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "quests are blithely alongside of" }, { "l_orderkey": 3169i32, "l_partkey": 200i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 17.0d, "l_extendedprice": 18703.4d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-03-02", "l_commitdate": "1994-01-21", "l_receiptdate": "1994-03-03", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "usly regular packages. ironi" }, { "l_orderkey": 2819i32, "l_partkey": 200i32, "l_suppkey": 3i32, "l_linenumber": 5i32, "l_quantity": 6.0d, "l_extendedprice": 6601.2d, "l_discount": 0.03d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-07-22", "l_commitdate": "1994-08-02", "l_receiptdate": "1994-07-29", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "eas after the carefully express pack" }, { "l_orderkey": 2086i32, "l_partkey": 200i32, "l_suppkey": 3i32, "l_linenumber": 6i32, "l_quantity": 20.0d, "l_extendedprice": 22004.0d, "l_discount": 0.01d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-11-30", "l_commitdate": "1994-12-28", "l_receiptdate": "1994-12-07", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "lithely ironic acc" }, { "l_orderkey": 4931i32, "l_partkey": 200i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 50.0d, "l_extendedprice": 55010.0d, "l_discount": 0.04d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-12-15", "l_commitdate": "1994-12-18", "l_receiptdate": "1994-12-23", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "s haggle al" }, { "l_orderkey": 1411i32, "l_partkey": 200i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 20.0d, "l_extendedprice": 22004.0d, "l_discount": 0.01d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-04-06", "l_commitdate": "1995-03-16", "l_receiptdate": "1995-04-17", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "s against the" }, { "l_orderkey": 4227i32, "l_partkey": 200i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 2.0d, "l_extendedprice": 2200.4d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-04-24", "l_commitdate": "1995-05-09", "l_receiptdate": "1995-05-21", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "ep. specia" }, { "l_orderkey": 3363i32, "l_partkey": 200i32, "l_suppkey": 4i32, "l_linenumber": 5i32, "l_quantity": 4.0d, "l_extendedprice": 4400.8d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-30", "l_commitdate": "1995-11-17", "l_receiptdate": "1995-11-22", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": " ironic dependencie" }, { "l_orderkey": 3008i32, "l_partkey": 200i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 31.0d, "l_extendedprice": 34106.2d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-14", "l_commitdate": "1995-12-11", "l_receiptdate": "1995-12-31", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": " bold packages. quic" }, { "l_orderkey": 1254i32, "l_partkey": 200i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 47.0d, "l_extendedprice": 51709.4d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-07", "l_commitdate": "1996-02-20", "l_receiptdate": "1996-04-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": " platelets cajol" }, { "l_orderkey": 1827i32, "l_partkey": 200i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 37.0d, "l_extendedprice": 40707.4d, "l_discount": 0.01d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-20", "l_commitdate": "1996-08-18", "l_receiptdate": "1996-08-08", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "ously ironic theodolites serve quickly af" }, { "l_orderkey": 3264i32, "l_partkey": 200i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 39.0d, "l_extendedprice": 42907.8d, "l_discount": 0.06d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-07", "l_commitdate": "1996-12-12", "l_receiptdate": "1996-11-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "sleep carefully after the slyly final" }, { "l_orderkey": 4064i32, "l_partkey": 200i32, "l_suppkey": 2i32, "l_linenumber": 7i32, "l_quantity": 9.0d, "l_extendedprice": 9901.8d, "l_discount": 0.01d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-17", "l_commitdate": "1996-12-13", "l_receiptdate": "1997-01-12", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "furiously f" }, { "l_orderkey": 4098i32, "l_partkey": 200i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 46.0d, "l_extendedprice": 50609.2d, "l_discount": 0.07d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-26", "l_commitdate": "1997-01-27", "l_receiptdate": "1997-02-13", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "e slyly blithely silent deposits. fluff" }, { "l_orderkey": 1121i32, "l_partkey": 200i32, "l_suppkey": 1i32, "l_linenumber": 6i32, "l_quantity": 50.0d, "l_extendedprice": 55010.0d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-21", "l_commitdate": "1997-02-16", "l_receiptdate": "1997-04-25", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "odolites. slyly even accounts" }, { "l_orderkey": 5895i32, "l_partkey": 200i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 20.0d, "l_extendedprice": 22004.0d, "l_discount": 0.07d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-30", "l_commitdate": "1997-02-07", "l_receiptdate": "1997-05-08", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "gular deposits wake blithely carefully fin" }, { "l_orderkey": 3878i32, "l_partkey": 200i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 6.0d, "l_extendedprice": 6601.2d, "l_discount": 0.07d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-21", "l_commitdate": "1997-05-22", "l_receiptdate": "1997-07-01", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "s. regular instru" }, { "l_orderkey": 5952i32, "l_partkey": 200i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 49.0d, "l_extendedprice": 53909.8d, "l_discount": 0.1d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-30", "l_commitdate": "1997-07-10", "l_receiptdate": "1997-07-02", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "e furiously regular" }, { "l_orderkey": 5730i32, "l_partkey": 200i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 9.0d, "l_extendedprice": 9901.8d, "l_discount": 0.1d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-05", "l_commitdate": "1998-02-02", "l_receiptdate": "1998-03-28", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "s lose blithely. specia" }, { "l_orderkey": 5827i32, "l_partkey": 200i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 26.0d, "l_extendedprice": 28605.2d, "l_discount": 0.06d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-29", "l_commitdate": "1998-09-24", "l_receiptdate": "1998-07-30", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "arefully special packages wake thin" }, { "l_orderkey": 3686i32, "l_partkey": 200i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 38.0d, "l_extendedprice": 41807.6d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-09-04", "l_commitdate": "1998-08-11", "l_receiptdate": "1998-09-19", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "y silent foxes! carefully ruthless cour" } ] }
-{ "partkey": 3i32, "lines": [ { "l_orderkey": 801i32, "l_partkey": 3i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 21.0d, "l_extendedprice": 18963.0d, "l_discount": 0.05d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-04-25", "l_commitdate": "1992-03-20", "l_receiptdate": "1992-05-04", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "cial, special packages." }, { "l_orderkey": 194i32, "l_partkey": 3i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 17.0d, "l_extendedprice": 15351.0d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-05-24", "l_commitdate": "1992-05-22", "l_receiptdate": "1992-05-30", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": " regular deposi" }, { "l_orderkey": 3776i32, "l_partkey": 3i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 39.0d, "l_extendedprice": 35217.0d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-01-03", "l_commitdate": "1993-02-05", "l_receiptdate": "1993-01-08", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "yly blithely pending packages" }, { "l_orderkey": 3015i32, "l_partkey": 3i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 5.0d, "l_extendedprice": 4515.0d, "l_discount": 0.09d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-01-10", "l_commitdate": "1992-12-02", "l_receiptdate": "1993-01-19", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": " the furiously pendi" }, { "l_orderkey": 129i32, "l_partkey": 3i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 46.0d, "l_extendedprice": 41538.0d, "l_discount": 0.08d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-02-15", "l_commitdate": "1993-01-24", "l_receiptdate": "1993-03-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "uietly bold theodolites. fluffil" }, { "l_orderkey": 3331i32, "l_partkey": 3i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 26.0d, "l_extendedprice": 23478.0d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-08-05", "l_commitdate": "1993-07-17", "l_receiptdate": "1993-08-29", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "p asymptotes. carefully unusual in" }, { "l_orderkey": 1542i32, "l_partkey": 3i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 12.0d, "l_extendedprice": 10836.0d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-10-29", "l_commitdate": "1993-11-02", "l_receiptdate": "1993-11-09", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "carefully " }, { "l_orderkey": 999i32, "l_partkey": 3i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 10.0d, "l_extendedprice": 9030.0d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-11-23", "l_commitdate": "1993-12-02", "l_receiptdate": "1993-11-29", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "efully pending" }, { "l_orderkey": 3110i32, "l_partkey": 3i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 34.0d, "l_extendedprice": 30702.0d, "l_discount": 0.02d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-02-23", "l_commitdate": "1995-01-27", "l_receiptdate": "1995-03-09", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "ly pending requests ha" }, { "l_orderkey": 32i32, "l_partkey": 3i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 4.0d, "l_extendedprice": 3612.0d, "l_discount": 0.09d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-04", "l_commitdate": "1995-10-01", "l_receiptdate": "1995-09-03", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "e slyly final pac" }, { "l_orderkey": 5892i32, "l_partkey": 3i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 28.0d, "l_extendedprice": 25284.0d, "l_discount": 0.03d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-16", "l_commitdate": "1995-07-06", "l_receiptdate": "1995-08-22", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "ithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely u" }, { "l_orderkey": 3137i32, "l_partkey": 3i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 6.0d, "l_extendedprice": 5418.0d, "l_discount": 0.02d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-19", "l_commitdate": "1995-10-23", "l_receiptdate": "1995-10-16", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "ly express as" }, { "l_orderkey": 993i32, "l_partkey": 3i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 28.0d, "l_extendedprice": 25284.0d, "l_discount": 0.06d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-24", "l_commitdate": "1995-11-20", "l_receiptdate": "1995-11-06", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "lites. even theodolite" }, { "l_orderkey": 2721i32, "l_partkey": 3i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 2.0d, "l_extendedprice": 1806.0d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-02-13", "l_commitdate": "1996-03-14", "l_receiptdate": "1996-02-28", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": " slyly final requests against " }, { "l_orderkey": 2946i32, "l_partkey": 3i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 35.0d, "l_extendedprice": 31605.0d, "l_discount": 0.03d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-15", "l_commitdate": "1996-04-02", "l_receiptdate": "1996-03-26", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": " sublate along the fluffily iron" }, { "l_orderkey": 5252i32, "l_partkey": 3i32, "l_suppkey": 10i32, "l_linenumber": 6i32, "l_quantity": 41.0d, "l_extendedprice": 37023.0d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-16", "l_commitdate": "1996-04-18", "l_receiptdate": "1996-03-17", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "ording to the blithely express somas sho" }, { "l_orderkey": 2951i32, "l_partkey": 3i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 5.0d, "l_extendedprice": 4515.0d, "l_discount": 0.03d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-27", "l_commitdate": "1996-04-16", "l_receiptdate": "1996-03-30", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "to beans wake ac" }, { "l_orderkey": 1i32, "l_partkey": 3i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 28.0d, "l_extendedprice": 25284.0d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-04-21", "l_commitdate": "1996-03-30", "l_receiptdate": "1996-05-16", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "lites. fluffily even de" }, { "l_orderkey": 4740i32, "l_partkey": 3i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 22.0d, "l_extendedprice": 19866.0d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-04", "l_commitdate": "1996-08-17", "l_receiptdate": "1996-10-05", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "final dependencies nag " }, { "l_orderkey": 39i32, "l_partkey": 3i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 44.0d, "l_extendedprice": 39732.0d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-14", "l_commitdate": "1996-12-15", "l_receiptdate": "1996-12-12", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "eodolites. careful" }, { "l_orderkey": 1186i32, "l_partkey": 3i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 28.0d, "l_extendedprice": 25284.0d, "l_discount": 0.08d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-08", "l_commitdate": "1996-10-17", "l_receiptdate": "1996-12-15", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "ffily spec" }, { "l_orderkey": 4484i32, "l_partkey": 3i32, "l_suppkey": 4i32, "l_linenumber": 5i32, "l_quantity": 42.0d, "l_extendedprice": 37926.0d, "l_discount": 0.03d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-25", "l_commitdate": "1997-02-21", "l_receiptdate": "1997-04-05", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "ding, pending requests wake. fluffily " }, { "l_orderkey": 2401i32, "l_partkey": 3i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 49.0d, "l_extendedprice": 44247.0d, "l_discount": 0.05d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-02", "l_commitdate": "1997-09-11", "l_receiptdate": "1997-09-13", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "lites cajole carefully " }, { "l_orderkey": 2372i32, "l_partkey": 3i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 17.0d, "l_extendedprice": 15351.0d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-17", "l_commitdate": "1998-01-17", "l_receiptdate": "1997-12-25", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "xcuses. slyly ironic theod" }, { "l_orderkey": 519i32, "l_partkey": 3i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 38.0d, "l_extendedprice": 34314.0d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-02-19", "l_commitdate": "1997-12-15", "l_receiptdate": "1998-03-19", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "gular excuses detect quickly furiously " }, { "l_orderkey": 3937i32, "l_partkey": 3i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 29.0d, "l_extendedprice": 26187.0d, "l_discount": 0.03d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-06", "l_commitdate": "1998-02-22", "l_receiptdate": "1998-03-14", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "nt pinto beans above the pending instr" }, { "l_orderkey": 1508i32, "l_partkey": 3i32, "l_suppkey": 10i32, "l_linenumber": 6i32, "l_quantity": 5.0d, "l_extendedprice": 4515.0d, "l_discount": 0.06d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-22", "l_commitdate": "1998-07-06", "l_receiptdate": "1998-06-04", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "cording to the furiously ironic depe" } ] }
-{ "partkey": 5i32, "lines": [ { "l_orderkey": 3970i32, "l_partkey": 5i32, "l_suppkey": 8i32, "l_linenumber": 7i32, "l_quantity": 46.0d, "l_extendedprice": 41630.0d, "l_discount": 0.08d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-05-02", "l_commitdate": "1992-05-12", "l_receiptdate": "1992-05-10", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "ix slyly. quickly silen" }, { "l_orderkey": 5959i32, "l_partkey": 5i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 4.0d, "l_extendedprice": 3620.0d, "l_discount": 0.04d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-06-14", "l_commitdate": "1992-07-05", "l_receiptdate": "1992-07-01", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "gular requests ar" }, { "l_orderkey": 3680i32, "l_partkey": 5i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 41.0d, "l_extendedprice": 37105.0d, "l_discount": 0.0d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-01-06", "l_commitdate": "1993-03-02", "l_receiptdate": "1993-01-08", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "iously ironic platelets in" }, { "l_orderkey": 3328i32, "l_partkey": 5i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 23.0d, "l_extendedprice": 20815.0d, "l_discount": 0.01d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-01-12", "l_commitdate": "1993-02-07", "l_receiptdate": "1993-01-30", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "y. careful" }, { "l_orderkey": 228i32, "l_partkey": 5i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 3.0d, "l_extendedprice": 2715.0d, "l_discount": 0.1d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-05-20", "l_commitdate": "1993-04-08", "l_receiptdate": "1993-05-26", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "ckages. sly" }, { "l_orderkey": 1058i32, "l_partkey": 5i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 25.0d, "l_extendedprice": 22625.0d, "l_discount": 0.09d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-05-27", "l_commitdate": "1993-06-10", "l_receiptdate": "1993-06-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": " the final requests believe carefully " }, { "l_orderkey": 5665i32, "l_partkey": 5i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 14.0d, "l_extendedprice": 12670.0d, "l_discount": 0.02d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-06-29", "l_commitdate": "1993-09-16", "l_receiptdate": "1993-07-16", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "- special pinto beans sleep quickly blithel" }, { "l_orderkey": 3877i32, "l_partkey": 5i32, "l_suppkey": 6i32, "l_linenumber": 5i32, "l_quantity": 41.0d, "l_extendedprice": 37105.0d, "l_discount": 0.03d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-06-30", "l_commitdate": "1993-07-20", "l_receiptdate": "1993-07-01", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "integrate against the expres" }, { "l_orderkey": 3076i32, "l_partkey": 5i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 31.0d, "l_extendedprice": 28055.0d, "l_discount": 0.06d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-08-10", "l_commitdate": "1993-09-17", "l_receiptdate": "1993-08-17", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "regular depos" }, { "l_orderkey": 2241i32, "l_partkey": 5i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 25.0d, "l_extendedprice": 22625.0d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-08-11", "l_commitdate": "1993-07-23", "l_receiptdate": "1993-09-01", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": " final deposits use fluffily. even f" }, { "l_orderkey": 1732i32, "l_partkey": 5i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 50.0d, "l_extendedprice": 45250.0d, "l_discount": 0.02d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-12-05", "l_commitdate": "1994-01-23", "l_receiptdate": "1993-12-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "fily final asymptotes according " }, { "l_orderkey": 3i32, "l_partkey": 5i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 45.0d, "l_extendedprice": 40725.0d, "l_discount": 0.06d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-02-02", "l_commitdate": "1994-01-04", "l_receiptdate": "1994-02-23", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "ongside of the furiously brave acco" }, { "l_orderkey": 2819i32, "l_partkey": 5i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 28.0d, "l_extendedprice": 25340.0d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-05-09", "l_commitdate": "1994-07-02", "l_receiptdate": "1994-05-15", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "ckages sublate carefully closely regular " }, { "l_orderkey": 1829i32, "l_partkey": 5i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 11.0d, "l_extendedprice": 9955.0d, "l_discount": 0.04d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-05-18", "l_commitdate": "1994-06-13", "l_receiptdate": "1994-06-07", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "ding orbits" }, { "l_orderkey": 2725i32, "l_partkey": 5i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 41.0d, "l_extendedprice": 37105.0d, "l_discount": 0.01d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-07-05", "l_commitdate": "1994-06-29", "l_receiptdate": "1994-08-02", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "ns sleep furiously c" }, { "l_orderkey": 5283i32, "l_partkey": 5i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 20.0d, "l_extendedprice": 18100.0d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-09-16", "l_commitdate": "1994-08-03", "l_receiptdate": "1994-10-15", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "al deposits? blithely even pinto beans" }, { "l_orderkey": 3649i32, "l_partkey": 5i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 25.0d, "l_extendedprice": 22625.0d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-10-27", "l_commitdate": "1994-08-23", "l_receiptdate": "1994-11-05", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "special re" }, { "l_orderkey": 548i32, "l_partkey": 5i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 6.0d, "l_extendedprice": 5430.0d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-01-18", "l_commitdate": "1994-12-08", "l_receiptdate": "1995-02-10", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "sits wake furiously regular" }, { "l_orderkey": 645i32, "l_partkey": 5i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 43.0d, "l_extendedprice": 38915.0d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-02-12", "l_commitdate": "1995-02-27", "l_receiptdate": "1995-03-06", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": " furiously accounts. slyly" }, { "l_orderkey": 1637i32, "l_partkey": 5i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 25.0d, "l_extendedprice": 22625.0d, "l_discount": 0.05d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-06-07", "l_commitdate": "1995-03-26", "l_receiptdate": "1995-06-08", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": " haggle carefully silent accou" }, { "l_orderkey": 993i32, "l_partkey": 5i32, "l_suppkey": 2i32, "l_linenumber": 7i32, "l_quantity": 15.0d, "l_extendedprice": 13575.0d, "l_discount": 0.09d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-27", "l_commitdate": "1995-10-21", "l_receiptdate": "1995-10-17", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "sits. pending pinto beans haggle? ca" }, { "l_orderkey": 1633i32, "l_partkey": 5i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 15.0d, "l_extendedprice": 13575.0d, "l_discount": 0.0d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-13", "l_commitdate": "1995-11-13", "l_receiptdate": "1996-01-04", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "ges wake fluffil" }, { "l_orderkey": 354i32, "l_partkey": 5i32, "l_suppkey": 10i32, "l_linenumber": 7i32, "l_quantity": 14.0d, "l_extendedprice": 12670.0d, "l_discount": 0.01d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-06", "l_commitdate": "1996-06-08", "l_receiptdate": "1996-07-10", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "t thinly above the ironic, " }, { "l_orderkey": 3555i32, "l_partkey": 5i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 19.0d, "l_extendedprice": 17195.0d, "l_discount": 0.0d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-08", "l_commitdate": "1996-09-14", "l_receiptdate": "1996-10-01", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "leep special theodolit" }, { "l_orderkey": 1574i32, "l_partkey": 5i32, "l_suppkey": 2i32, "l_linenumber": 6i32, "l_quantity": 42.0d, "l_extendedprice": 38010.0d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-19", "l_commitdate": "1997-01-13", "l_receiptdate": "1996-12-28", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "o beans according t" }, { "l_orderkey": 2375i32, "l_partkey": 5i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 5.0d, "l_extendedprice": 4525.0d, "l_discount": 0.01d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-31", "l_commitdate": "1997-01-25", "l_receiptdate": "1997-02-22", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "final packages cajole according to the furi" }, { "l_orderkey": 2178i32, "l_partkey": 5i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 40.0d, "l_extendedprice": 36200.0d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-17", "l_commitdate": "1997-02-09", "l_receiptdate": "1997-04-15", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "foxes are slowly regularly specia" }, { "l_orderkey": 675i32, "l_partkey": 5i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 46.0d, "l_extendedprice": 41630.0d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-18", "l_commitdate": "1997-10-14", "l_receiptdate": "1997-10-01", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": " deposits along the express foxes " }, { "l_orderkey": 320i32, "l_partkey": 5i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 30.0d, "l_extendedprice": 27150.0d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-04", "l_commitdate": "1998-01-21", "l_receiptdate": "1997-12-13", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": " ironic, final accounts wake quick de" }, { "l_orderkey": 1155i32, "l_partkey": 5i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 49.0d, "l_extendedprice": 44345.0d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-07", "l_commitdate": "1997-12-30", "l_receiptdate": "1997-12-08", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "ccounts are alongside of t" }, { "l_orderkey": 4229i32, "l_partkey": 5i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 34.0d, "l_extendedprice": 30770.0d, "l_discount": 0.07d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-26", "l_commitdate": "1998-04-13", "l_receiptdate": "1998-06-08", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "thely final accounts use even packa" }, { "l_orderkey": 966i32, "l_partkey": 5i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 20.0d, "l_extendedprice": 18100.0d, "l_discount": 0.04d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-19", "l_commitdate": "1998-07-15", "l_receiptdate": "1998-07-27", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "pecial ins" } ] }
-{ "partkey": 7i32, "lines": [ { "l_orderkey": 3140i32, "l_partkey": 7i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 21.0d, "l_extendedprice": 19047.0d, "l_discount": 0.08d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-04-12", "l_commitdate": "1992-05-31", "l_receiptdate": "1992-04-21", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": " furiously sly excuses according to the" }, { "l_orderkey": 3204i32, "l_partkey": 7i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 39.0d, "l_extendedprice": 35373.0d, "l_discount": 0.1d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-02-11", "l_commitdate": "1993-03-19", "l_receiptdate": "1993-02-28", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "sits sleep theodolites. slyly bo" }, { "l_orderkey": 5794i32, "l_partkey": 7i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 15.0d, "l_extendedprice": 13605.0d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-06-25", "l_commitdate": "1993-06-27", "l_receiptdate": "1993-07-09", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "blithely regular ideas. final foxes haggle " }, { "l_orderkey": 4166i32, "l_partkey": 7i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 17.0d, "l_extendedprice": 15419.0d, "l_discount": 0.02d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-06-29", "l_commitdate": "1993-05-15", "l_receiptdate": "1993-07-24", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "ackages. re" }, { "l_orderkey": 5318i32, "l_partkey": 7i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 37.0d, "l_extendedprice": 33559.0d, "l_discount": 0.07d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-07-09", "l_commitdate": "1993-06-22", "l_receiptdate": "1993-07-21", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "ickly final deposi" }, { "l_orderkey": 5670i32, "l_partkey": 7i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 24.0d, "l_extendedprice": 21768.0d, "l_discount": 0.09d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-07-17", "l_commitdate": "1993-07-01", "l_receiptdate": "1993-08-03", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "press, express requests haggle" }, { "l_orderkey": 2080i32, "l_partkey": 7i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 5.0d, "l_extendedprice": 4535.0d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-08-26", "l_commitdate": "1993-08-07", "l_receiptdate": "1993-09-02", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "refully unusual theo" }, { "l_orderkey": 2752i32, "l_partkey": 7i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 29.0d, "l_extendedprice": 26303.0d, "l_discount": 0.02d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-01-22", "l_commitdate": "1994-01-08", "l_receiptdate": "1994-01-28", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "gly blithely re" }, { "l_orderkey": 2659i32, "l_partkey": 7i32, "l_suppkey": 4i32, "l_linenumber": 5i32, "l_quantity": 9.0d, "l_extendedprice": 8163.0d, "l_discount": 0.08d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-02-07", "l_commitdate": "1994-03-17", "l_receiptdate": "1994-03-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "ly final packages sleep ac" }, { "l_orderkey": 2182i32, "l_partkey": 7i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 12.0d, "l_extendedprice": 10884.0d, "l_discount": 0.04d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-05-08", "l_commitdate": "1994-06-02", "l_receiptdate": "1994-05-09", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "ments are fu" }, { "l_orderkey": 2150i32, "l_partkey": 7i32, "l_suppkey": 10i32, "l_linenumber": 6i32, "l_quantity": 12.0d, "l_extendedprice": 10884.0d, "l_discount": 0.09d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-08-27", "l_commitdate": "1994-08-22", "l_receiptdate": "1994-09-18", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "press platelets haggle until the slyly fi" }, { "l_orderkey": 834i32, "l_partkey": 7i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 11.0d, "l_extendedprice": 9977.0d, "l_discount": 0.03d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-09-18", "l_commitdate": "1994-08-03", "l_receiptdate": "1994-10-02", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "inst the regular packa" }, { "l_orderkey": 1281i32, "l_partkey": 7i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 37.0d, "l_extendedprice": 33559.0d, "l_discount": 0.08d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-03-19", "l_commitdate": "1995-02-02", "l_receiptdate": "1995-03-27", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "ounts detect" }, { "l_orderkey": 2208i32, "l_partkey": 7i32, "l_suppkey": 2i32, "l_linenumber": 7i32, "l_quantity": 45.0d, "l_extendedprice": 40815.0d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-05-05", "l_commitdate": "1995-06-10", "l_receiptdate": "1995-05-11", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "e fluffily regular theodolites caj" }, { "l_orderkey": 771i32, "l_partkey": 7i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 12.0d, "l_extendedprice": 10884.0d, "l_discount": 0.1d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-18", "l_commitdate": "1995-08-02", "l_receiptdate": "1995-08-07", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "carefully. pending in" }, { "l_orderkey": 771i32, "l_partkey": 7i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 14.0d, "l_extendedprice": 12698.0d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-31", "l_commitdate": "1995-08-13", "l_receiptdate": "1995-08-07", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "r, final packages are slyly iro" }, { "l_orderkey": 2658i32, "l_partkey": 7i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 45.0d, "l_extendedprice": 40815.0d, "l_discount": 0.03d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-02", "l_commitdate": "1995-11-08", "l_receiptdate": "1995-11-29", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "e special requests. quickly ex" }, { "l_orderkey": 4614i32, "l_partkey": 7i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 19.0d, "l_extendedprice": 17233.0d, "l_discount": 0.09d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-17", "l_commitdate": "1996-06-21", "l_receiptdate": "1996-06-08", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "ix. carefully regular " }, { "l_orderkey": 2598i32, "l_partkey": 7i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 12.0d, "l_extendedprice": 10884.0d, "l_discount": 0.0d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-17", "l_commitdate": "1996-04-12", "l_receiptdate": "1996-06-24", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "express packages nag sly" }, { "l_orderkey": 5606i32, "l_partkey": 7i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 25.0d, "l_extendedprice": 22675.0d, "l_discount": 0.06d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-25", "l_commitdate": "1997-01-12", "l_receiptdate": "1997-01-11", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "breach about the furiously bold " }, { "l_orderkey": 579i32, "l_partkey": 7i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 41.0d, "l_extendedprice": 37187.0d, "l_discount": 0.04d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-28", "l_commitdate": "1998-05-01", "l_receiptdate": "1998-06-04", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "bold, express requests sublate slyly. blith" }, { "l_orderkey": 5351i32, "l_partkey": 7i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 36.0d, "l_extendedprice": 32652.0d, "l_discount": 0.06d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-27", "l_commitdate": "1998-07-06", "l_receiptdate": "1998-08-25", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "ss the ironic, regular asymptotes cajole " } ] }
-{ "partkey": 17i32, "lines": [ { "l_orderkey": 967i32, "l_partkey": 17i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 41.0d, "l_extendedprice": 37597.41d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-07-23", "l_commitdate": "1992-08-07", "l_receiptdate": "1992-08-13", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "efully special ide" }, { "l_orderkey": 931i32, "l_partkey": 17i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 10.0d, "l_extendedprice": 9170.1d, "l_discount": 0.05d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-03-01", "l_commitdate": "1993-01-09", "l_receiptdate": "1993-03-07", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "ajole quickly. slyly sil" }, { "l_orderkey": 611i32, "l_partkey": 17i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 39.0d, "l_extendedprice": 35763.39d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-05-06", "l_commitdate": "1993-04-09", "l_receiptdate": "1993-05-22", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "nto beans " }, { "l_orderkey": 2437i32, "l_partkey": 17i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 29.0d, "l_extendedprice": 26593.29d, "l_discount": 0.02d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-05-12", "l_commitdate": "1993-06-10", "l_receiptdate": "1993-05-25", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "ress dolphins. furiously fin" }, { "l_orderkey": 2720i32, "l_partkey": 17i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 42.0d, "l_extendedprice": 38514.42d, "l_discount": 0.09d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-07-25", "l_commitdate": "1993-07-23", "l_receiptdate": "1993-08-23", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "fter the inst" }, { "l_orderkey": 3621i32, "l_partkey": 17i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 29.0d, "l_extendedprice": 26593.29d, "l_discount": 0.02d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-08-03", "l_commitdate": "1993-07-08", "l_receiptdate": "1993-08-10", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "al requests. fl" }, { "l_orderkey": 5189i32, "l_partkey": 17i32, "l_suppkey": 8i32, "l_linenumber": 6i32, "l_quantity": 41.0d, "l_extendedprice": 37597.41d, "l_discount": 0.02d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-12-12", "l_commitdate": "1994-02-05", "l_receiptdate": "1994-01-09", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "ial theodolites cajole slyly. slyly unus" }, { "l_orderkey": 1825i32, "l_partkey": 17i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 7.0d, "l_extendedprice": 6419.07d, "l_discount": 0.04d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-01-02", "l_commitdate": "1994-01-30", "l_receiptdate": "1994-01-30", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "fully ironic requests. requests cajole ex" }, { "l_orderkey": 1411i32, "l_partkey": 17i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 9.0d, "l_extendedprice": 8253.09d, "l_discount": 0.06d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-03-08", "l_commitdate": "1995-03-04", "l_receiptdate": "1995-03-11", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "accounts. furiou" }, { "l_orderkey": 1958i32, "l_partkey": 17i32, "l_suppkey": 4i32, "l_linenumber": 6i32, "l_quantity": 44.0d, "l_extendedprice": 40348.44d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-17", "l_commitdate": "1995-11-30", "l_receiptdate": "1996-01-15", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "c theodolites after the unusual deposit" }, { "l_orderkey": 5924i32, "l_partkey": 17i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 24.0d, "l_extendedprice": 22008.24d, "l_discount": 0.09d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-12", "l_commitdate": "1995-12-13", "l_receiptdate": "1996-01-25", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": " use carefully. special, e" }, { "l_orderkey": 774i32, "l_partkey": 17i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 3.0d, "l_extendedprice": 2751.03d, "l_discount": 0.1d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-02-13", "l_commitdate": "1996-01-14", "l_receiptdate": "1996-03-04", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": " slyly even courts nag blith" }, { "l_orderkey": 4262i32, "l_partkey": 17i32, "l_suppkey": 7i32, "l_linenumber": 6i32, "l_quantity": 26.0d, "l_extendedprice": 23842.26d, "l_discount": 0.03d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-29", "l_commitdate": "1996-09-25", "l_receiptdate": "1996-08-31", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "s boost slyly along the bold, iro" }, { "l_orderkey": 4673i32, "l_partkey": 17i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 8.0d, "l_extendedprice": 7336.08d, "l_discount": 0.08d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-12", "l_commitdate": "1996-10-05", "l_receiptdate": "1996-11-04", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "lithely final re" }, { "l_orderkey": 3872i32, "l_partkey": 17i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 38.0d, "l_extendedprice": 34846.38d, "l_discount": 0.04d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-18", "l_commitdate": "1996-12-03", "l_receiptdate": "1996-11-15", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "iously against the ironic, unusual a" }, { "l_orderkey": 3943i32, "l_partkey": 17i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 32.0d, "l_extendedprice": 29344.32d, "l_discount": 0.0d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-22", "l_commitdate": "1996-12-17", "l_receiptdate": "1996-11-04", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": " unusual ideas into the furiously even pack" }, { "l_orderkey": 4005i32, "l_partkey": 17i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 28.0d, "l_extendedprice": 25676.28d, "l_discount": 0.02d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-11", "l_commitdate": "1997-01-24", "l_receiptdate": "1996-12-17", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "ly carefully ironic deposits. slyly" }, { "l_orderkey": 5159i32, "l_partkey": 17i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 46.0d, "l_extendedprice": 42182.46d, "l_discount": 0.01d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-15", "l_commitdate": "1996-12-07", "l_receiptdate": "1996-12-30", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "s kindle slyly carefully regular" }, { "l_orderkey": 2405i32, "l_partkey": 17i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 49.0d, "l_extendedprice": 44933.49d, "l_discount": 0.0d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-24", "l_commitdate": "1997-03-23", "l_receiptdate": "1997-01-01", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "cial requests. ironic, regu" }, { "l_orderkey": 4355i32, "l_partkey": 17i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 4.0d, "l_extendedprice": 3668.04d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-25", "l_commitdate": "1997-01-29", "l_receiptdate": "1997-03-17", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "slyly blithely regular packag" }, { "l_orderkey": 289i32, "l_partkey": 17i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 44.0d, "l_extendedprice": 40348.44d, "l_discount": 0.1d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-05", "l_commitdate": "1997-04-20", "l_receiptdate": "1997-07-02", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "ly ironic foxes. asymptotes " }, { "l_orderkey": 5313i32, "l_partkey": 17i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 34.0d, "l_extendedprice": 31178.34d, "l_discount": 0.1d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-07", "l_commitdate": "1997-08-12", "l_receiptdate": "1997-08-24", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "ccording to the blithely final account" }, { "l_orderkey": 3079i32, "l_partkey": 17i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 40.0d, "l_extendedprice": 36680.4d, "l_discount": 0.02d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-26", "l_commitdate": "1997-12-11", "l_receiptdate": "1997-10-09", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "ide of the pending, special deposi" }, { "l_orderkey": 647i32, "l_partkey": 17i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 41.0d, "l_extendedprice": 37597.41d, "l_discount": 0.08d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-11-19", "l_commitdate": "1997-09-24", "l_receiptdate": "1997-12-15", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "r instructions. quickly unusu" }, { "l_orderkey": 2944i32, "l_partkey": 17i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 23.0d, "l_extendedprice": 21091.23d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-12", "l_commitdate": "1997-12-03", "l_receiptdate": "1998-01-17", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": " excuses? regular platelets e" }, { "l_orderkey": 2692i32, "l_partkey": 17i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 3.0d, "l_extendedprice": 2751.03d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-02-25", "l_commitdate": "1998-01-29", "l_receiptdate": "1998-03-27", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "equests. bold, even foxes haggle slyl" }, { "l_orderkey": 5348i32, "l_partkey": 17i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 16.0d, "l_extendedprice": 14672.16d, "l_discount": 0.06d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-02-28", "l_commitdate": "1997-12-25", "l_receiptdate": "1998-03-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "uriously thin pinto beans " }, { "l_orderkey": 4997i32, "l_partkey": 17i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 5.0d, "l_extendedprice": 4585.05d, "l_discount": 0.02d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-16", "l_commitdate": "1998-06-05", "l_receiptdate": "1998-06-07", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "cuses are furiously unusual asymptotes" }, { "l_orderkey": 2565i32, "l_partkey": 17i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 25.0d, "l_extendedprice": 22925.25d, "l_discount": 0.1d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-27", "l_commitdate": "1998-05-20", "l_receiptdate": "1998-07-13", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": ", express accounts. final id" }, { "l_orderkey": 5827i32, "l_partkey": 17i32, "l_suppkey": 4i32, "l_linenumber": 6i32, "l_quantity": 14.0d, "l_extendedprice": 12838.14d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-31", "l_commitdate": "1998-09-06", "l_receiptdate": "1998-09-13", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "rges. fluffily pending " }, { "l_orderkey": 2400i32, "l_partkey": 17i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 23.0d, "l_extendedprice": 21091.23d, "l_discount": 0.09d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-10-04", "l_commitdate": "1998-10-04", "l_receiptdate": "1998-10-31", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "ages lose carefully around the regula" } ] }
-{ "partkey": 18i32, "lines": [ { "l_orderkey": 1537i32, "l_partkey": 18i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 17.0d, "l_extendedprice": 15606.17d, "l_discount": 0.01d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-04-12", "l_commitdate": "1992-04-19", "l_receiptdate": "1992-04-13", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "he regular pack" }, { "l_orderkey": 2880i32, "l_partkey": 18i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 46.0d, "l_extendedprice": 42228.46d, "l_discount": 0.02d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-04-21", "l_commitdate": "1992-06-05", "l_receiptdate": "1992-05-16", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "eep quickly according to t" }, { "l_orderkey": 2688i32, "l_partkey": 18i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 45.0d, "l_extendedprice": 41310.45d, "l_discount": 0.08d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-05-21", "l_commitdate": "1992-04-14", "l_receiptdate": "1992-05-28", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "sits run carefully" }, { "l_orderkey": 1955i32, "l_partkey": 18i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 2.0d, "l_extendedprice": 1836.02d, "l_discount": 0.03d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-07-06", "l_commitdate": "1992-07-06", "l_receiptdate": "1992-08-01", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "ickly aroun" }, { "l_orderkey": 3015i32, "l_partkey": 18i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 17.0d, "l_extendedprice": 15606.17d, "l_discount": 0.03d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-10-16", "l_commitdate": "1992-11-20", "l_receiptdate": "1992-10-28", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "s above the fluffily final t" }, { "l_orderkey": 5699i32, "l_partkey": 18i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 48.0d, "l_extendedprice": 44064.48d, "l_discount": 0.1d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-11-23", "l_commitdate": "1992-10-20", "l_receiptdate": "1992-11-29", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "s. carefully regul" }, { "l_orderkey": 164i32, "l_partkey": 18i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 32.0d, "l_extendedprice": 29376.32d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-12-21", "l_commitdate": "1992-12-23", "l_receiptdate": "1992-12-28", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "ts wake again" }, { "l_orderkey": 3040i32, "l_partkey": 18i32, "l_suppkey": 5i32, "l_linenumber": 6i32, "l_quantity": 10.0d, "l_extendedprice": 9180.1d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-05-16", "l_commitdate": "1993-06-24", "l_receiptdate": "1993-06-11", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "ely regular foxes haggle dari" }, { "l_orderkey": 3109i32, "l_partkey": 18i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 32.0d, "l_extendedprice": 29376.32d, "l_discount": 0.08d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-09-05", "l_commitdate": "1993-10-06", "l_receiptdate": "1993-09-18", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "ecial orbits are furiou" }, { "l_orderkey": 3777i32, "l_partkey": 18i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 35.0d, "l_extendedprice": 32130.35d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-05-25", "l_commitdate": "1994-05-26", "l_receiptdate": "1994-06-13", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "s. carefully express asymptotes accordi" }, { "l_orderkey": 3175i32, "l_partkey": 18i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 47.0d, "l_extendedprice": 43146.47d, "l_discount": 0.08d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-08-08", "l_commitdate": "1994-09-10", "l_receiptdate": "1994-08-21", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": " final requests x-r" }, { "l_orderkey": 2150i32, "l_partkey": 18i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 29.0d, "l_extendedprice": 26622.29d, "l_discount": 0.04d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-09-02", "l_commitdate": "1994-08-04", "l_receiptdate": "1994-10-02", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "y ironic theodolites. foxes ca" }, { "l_orderkey": 2854i32, "l_partkey": 18i32, "l_suppkey": 2i32, "l_linenumber": 6i32, "l_quantity": 13.0d, "l_extendedprice": 11934.13d, "l_discount": 0.04d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-09-15", "l_commitdate": "1994-08-18", "l_receiptdate": "1994-09-19", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": " excuses wak" }, { "l_orderkey": 2818i32, "l_partkey": 18i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 42.0d, "l_extendedprice": 38556.42d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-02-12", "l_commitdate": "1995-02-19", "l_receiptdate": "1995-03-13", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "ar accounts wake carefully a" }, { "l_orderkey": 4960i32, "l_partkey": 18i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 36.0d, "l_extendedprice": 33048.36d, "l_discount": 0.01d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-03-06", "l_commitdate": "1995-05-04", "l_receiptdate": "1995-04-05", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "c, unusual accou" }, { "l_orderkey": 930i32, "l_partkey": 18i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 47.0d, "l_extendedprice": 43146.47d, "l_discount": 0.08d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-03-20", "l_commitdate": "1995-02-04", "l_receiptdate": "1995-04-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "ackages. fluffily e" }, { "l_orderkey": 197i32, "l_partkey": 18i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 25.0d, "l_extendedprice": 22950.25d, "l_discount": 0.04d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "F", "l_shipdate": "1995-06-13", "l_commitdate": "1995-05-23", "l_receiptdate": "1995-06-24", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "s-- quickly final accounts" }, { "l_orderkey": 965i32, "l_partkey": 18i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 23.0d, "l_extendedprice": 21114.23d, "l_discount": 0.06d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-12", "l_commitdate": "1995-07-08", "l_receiptdate": "1995-08-11", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "ld kindle carefully across th" }, { "l_orderkey": 2658i32, "l_partkey": 18i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 13.0d, "l_extendedprice": 11934.13d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-24", "l_commitdate": "1995-12-12", "l_receiptdate": "1995-11-14", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "s kindle blithely regular accounts." }, { "l_orderkey": 4833i32, "l_partkey": 18i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 26.0d, "l_extendedprice": 23868.26d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-13", "l_commitdate": "1996-07-12", "l_receiptdate": "1996-05-31", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "s packages. even gif" }, { "l_orderkey": 2246i32, "l_partkey": 18i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 11.0d, "l_extendedprice": 10098.11d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-21", "l_commitdate": "1996-07-24", "l_receiptdate": "1996-07-18", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "quests alongside o" }, { "l_orderkey": 5186i32, "l_partkey": 18i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 28.0d, "l_extendedprice": 25704.28d, "l_discount": 0.09d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-05", "l_commitdate": "1996-10-27", "l_receiptdate": "1996-10-19", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "al decoys. blit" }, { "l_orderkey": 4071i32, "l_partkey": 18i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 47.0d, "l_extendedprice": 43146.47d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-04", "l_commitdate": "1996-12-09", "l_receiptdate": "1996-11-16", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "ts cajole furiously along the" }, { "l_orderkey": 768i32, "l_partkey": 18i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 2.0d, "l_extendedprice": 1836.02d, "l_discount": 0.0d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-13", "l_commitdate": "1996-10-03", "l_receiptdate": "1996-11-25", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "ular courts. slyly dogged accou" }, { "l_orderkey": 1924i32, "l_partkey": 18i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 47.0d, "l_extendedprice": 43146.47d, "l_discount": 0.02d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-24", "l_commitdate": "1996-10-18", "l_receiptdate": "1996-12-13", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "silent requests cajole blithely final pack" }, { "l_orderkey": 2151i32, "l_partkey": 18i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 28.0d, "l_extendedprice": 25704.28d, "l_discount": 0.1d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-11", "l_commitdate": "1996-12-26", "l_receiptdate": "1996-12-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "y special packages. carefully ironic instru" }, { "l_orderkey": 5829i32, "l_partkey": 18i32, "l_suppkey": 5i32, "l_linenumber": 6i32, "l_quantity": 17.0d, "l_extendedprice": 15606.17d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-10", "l_commitdate": "1997-03-29", "l_receiptdate": "1997-04-22", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "after the furiously ironic ideas no" }, { "l_orderkey": 2404i32, "l_partkey": 18i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 41.0d, "l_extendedprice": 37638.41d, "l_discount": 0.02d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-12", "l_commitdate": "1997-05-03", "l_receiptdate": "1997-07-12", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": " dolphins are" }, { "l_orderkey": 3584i32, "l_partkey": 18i32, "l_suppkey": 5i32, "l_linenumber": 5i32, "l_quantity": 39.0d, "l_extendedprice": 35802.39d, "l_discount": 0.09d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-20", "l_commitdate": "1997-10-31", "l_receiptdate": "1997-10-06", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "eposits. carefu" }, { "l_orderkey": 4263i32, "l_partkey": 18i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 9.0d, "l_extendedprice": 8262.09d, "l_discount": 0.08d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-04", "l_commitdate": "1998-04-29", "l_receiptdate": "1998-05-04", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "structions cajole quic" }, { "l_orderkey": 1920i32, "l_partkey": 18i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 6.0d, "l_extendedprice": 5508.06d, "l_discount": 0.01d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-10-01", "l_commitdate": "1998-08-20", "l_receiptdate": "1998-10-24", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "l ideas boost slyly pl" }, { "l_orderkey": 901i32, "l_partkey": 18i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 11.0d, "l_extendedprice": 10098.11d, "l_discount": 0.0d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-11-13", "l_commitdate": "1998-10-19", "l_receiptdate": "1998-11-14", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "ourts among the quickly expre" } ] }
-{ "partkey": 27i32, "lines": [ { "l_orderkey": 1826i32, "l_partkey": 27i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 4.0d, "l_extendedprice": 3708.08d, "l_discount": 0.06d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-07-05", "l_commitdate": "1992-06-12", "l_receiptdate": "1992-08-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "alongside of the quickly unusual re" }, { "l_orderkey": 4096i32, "l_partkey": 27i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 31.0d, "l_extendedprice": 28737.62d, "l_discount": 0.1d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-07-14", "l_commitdate": "1992-09-03", "l_receiptdate": "1992-07-31", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "y final, even platelets. boldly" }, { "l_orderkey": 4294i32, "l_partkey": 27i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 16.0d, "l_extendedprice": 14832.32d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-08-17", "l_commitdate": "1992-09-24", "l_receiptdate": "1992-09-04", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "lithely pint" }, { "l_orderkey": 2084i32, "l_partkey": 27i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 28.0d, "l_extendedprice": 25956.56d, "l_discount": 0.07d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-05-04", "l_commitdate": "1993-05-14", "l_receiptdate": "1993-05-31", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "cajole quickly carefu" }, { "l_orderkey": 4129i32, "l_partkey": 27i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 39.0d, "l_extendedprice": 36153.78d, "l_discount": 0.06d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-10-21", "l_commitdate": "1993-08-04", "l_receiptdate": "1993-10-29", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "y regular foxes. slyly ironic deposits " }, { "l_orderkey": 3783i32, "l_partkey": 27i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 37.0d, "l_extendedprice": 34299.74d, "l_discount": 0.1d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-12-09", "l_commitdate": "1994-02-17", "l_receiptdate": "1993-12-30", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "ing to the ideas. regular accounts de" }, { "l_orderkey": 1861i32, "l_partkey": 27i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 31.0d, "l_extendedprice": 28737.62d, "l_discount": 0.1d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-01-29", "l_commitdate": "1994-03-07", "l_receiptdate": "1994-02-15", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "arefully unusual" }, { "l_orderkey": 1799i32, "l_partkey": 27i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 42.0d, "l_extendedprice": 38934.84d, "l_discount": 0.02d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-04-05", "l_commitdate": "1994-04-28", "l_receiptdate": "1994-04-09", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "es pending " }, { "l_orderkey": 1411i32, "l_partkey": 27i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 37.0d, "l_extendedprice": 34299.74d, "l_discount": 0.0d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-02-27", "l_commitdate": "1995-03-02", "l_receiptdate": "1995-03-24", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "d excuses. furiously final pear" }, { "l_orderkey": 448i32, "l_partkey": 27i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 35.0d, "l_extendedprice": 32445.7d, "l_discount": 0.1d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-27", "l_commitdate": "1995-11-19", "l_receiptdate": "1995-10-20", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "ses nag quickly quickly ir" }, { "l_orderkey": 4640i32, "l_partkey": 27i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 18.0d, "l_extendedprice": 16686.36d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-02-28", "l_commitdate": "1996-03-06", "l_receiptdate": "1996-03-28", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "boost furiously accord" }, { "l_orderkey": 2342i32, "l_partkey": 27i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 22.0d, "l_extendedprice": 20394.44d, "l_discount": 0.08d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-10", "l_commitdate": "1996-08-02", "l_receiptdate": "1996-08-31", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "s. ironic " }, { "l_orderkey": 1728i32, "l_partkey": 27i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 34.0d, "l_extendedprice": 31518.68d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-28", "l_commitdate": "1996-07-20", "l_receiptdate": "1996-09-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "special req" }, { "l_orderkey": 2534i32, "l_partkey": 27i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 49.0d, "l_extendedprice": 45423.98d, "l_discount": 0.08d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-01", "l_commitdate": "1996-08-20", "l_receiptdate": "1996-09-06", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "sometimes regular requests. blithely unus" }, { "l_orderkey": 3782i32, "l_partkey": 27i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 29.0d, "l_extendedprice": 26883.58d, "l_discount": 0.01d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-17", "l_commitdate": "1996-10-03", "l_receiptdate": "1996-10-07", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "quickly unusual pinto beans. carefully fina" }, { "l_orderkey": 2405i32, "l_partkey": 27i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 30.0d, "l_extendedprice": 27810.6d, "l_discount": 0.1d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-24", "l_commitdate": "1997-03-10", "l_receiptdate": "1997-04-14", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "y final deposits are slyly caref" }, { "l_orderkey": 4544i32, "l_partkey": 27i32, "l_suppkey": 8i32, "l_linenumber": 6i32, "l_quantity": 8.0d, "l_extendedprice": 7416.16d, "l_discount": 0.1d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-10-13", "l_commitdate": "1997-10-06", "l_receiptdate": "1997-10-25", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "olites. fi" }, { "l_orderkey": 1124i32, "l_partkey": 27i32, "l_suppkey": 6i32, "l_linenumber": 6i32, "l_quantity": 43.0d, "l_extendedprice": 39861.86d, "l_discount": 0.01d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-09-19", "l_commitdate": "1998-10-28", "l_receiptdate": "1998-10-10", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "across the " } ] }
-{ "partkey": 32i32, "lines": [ { "l_orderkey": 4900i32, "l_partkey": 32i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 20.0d, "l_extendedprice": 18640.6d, "l_discount": 0.05d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-09-22", "l_commitdate": "1992-09-23", "l_receiptdate": "1992-09-27", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "yers. accounts affix somet" }, { "l_orderkey": 5060i32, "l_partkey": 32i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 28.0d, "l_extendedprice": 26096.84d, "l_discount": 0.04d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-09-25", "l_commitdate": "1992-08-11", "l_receiptdate": "1992-10-09", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "c requests" }, { "l_orderkey": 5603i32, "l_partkey": 32i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 49.0d, "l_extendedprice": 45669.47d, "l_discount": 0.0d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-10-07", "l_commitdate": "1992-07-21", "l_receiptdate": "1992-10-10", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "nic, pending dependencies print" }, { "l_orderkey": 1447i32, "l_partkey": 32i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 6.0d, "l_extendedprice": 5592.18d, "l_discount": 0.01d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-10-24", "l_commitdate": "1992-12-10", "l_receiptdate": "1992-11-05", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "as! regular packages poach above the" }, { "l_orderkey": 2885i32, "l_partkey": 32i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 15.0d, "l_extendedprice": 13980.45d, "l_discount": 0.03d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-10-31", "l_commitdate": "1992-11-24", "l_receiptdate": "1992-11-21", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "odolites. boldly pending packages han" }, { "l_orderkey": 129i32, "l_partkey": 32i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 24.0d, "l_extendedprice": 22368.72d, "l_discount": 0.06d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-12-07", "l_commitdate": "1993-01-02", "l_receiptdate": "1992-12-11", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "uests. foxes cajole slyly after the ca" }, { "l_orderkey": 640i32, "l_partkey": 32i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 45.0d, "l_extendedprice": 41941.35d, "l_discount": 0.07d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-04-15", "l_commitdate": "1993-04-23", "l_receiptdate": "1993-04-21", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "ong the qui" }, { "l_orderkey": 4580i32, "l_partkey": 32i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 10.0d, "l_extendedprice": 9320.3d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-12-20", "l_commitdate": "1993-12-30", "l_receiptdate": "1994-01-17", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "gular, pending deposits. fina" }, { "l_orderkey": 1028i32, "l_partkey": 32i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 26.0d, "l_extendedprice": 24232.78d, "l_discount": 0.07d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-03-18", "l_commitdate": "1994-02-08", "l_receiptdate": "1994-03-19", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "ronic platelets. carefully f" }, { "l_orderkey": 2817i32, "l_partkey": 32i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 5.0d, "l_extendedprice": 4660.15d, "l_discount": 0.03d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-05-07", "l_commitdate": "1994-05-31", "l_receiptdate": "1994-05-12", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "furiously unusual theodolites use furiou" }, { "l_orderkey": 2050i32, "l_partkey": 32i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 11.0d, "l_extendedprice": 10252.33d, "l_discount": 0.02d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-07-27", "l_commitdate": "1994-08-18", "l_receiptdate": "1994-08-02", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "ns. bold, final ideas cajole among the fi" }, { "l_orderkey": 1762i32, "l_partkey": 32i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 7.0d, "l_extendedprice": 6524.21d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-09-03", "l_commitdate": "1994-10-02", "l_receiptdate": "1994-09-10", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "uickly express packages wake slyly-- regul" }, { "l_orderkey": 3553i32, "l_partkey": 32i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 40.0d, "l_extendedprice": 37281.2d, "l_discount": 0.06d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-09-14", "l_commitdate": "1994-06-26", "l_receiptdate": "1994-09-25", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": " slyly pending asymptotes against the furi" }, { "l_orderkey": 5249i32, "l_partkey": 32i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 13.0d, "l_extendedprice": 12116.39d, "l_discount": 0.09d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-09-27", "l_commitdate": "1994-10-20", "l_receiptdate": "1994-10-05", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "ites. finally exp" }, { "l_orderkey": 775i32, "l_partkey": 32i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 16.0d, "l_extendedprice": 14912.48d, "l_discount": 0.1d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "F", "l_shipdate": "1995-05-23", "l_commitdate": "1995-05-07", "l_receiptdate": "1995-06-19", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "un quickly slyly" }, { "l_orderkey": 4770i32, "l_partkey": 32i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 41.0d, "l_extendedprice": 38213.23d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-04", "l_commitdate": "1995-08-08", "l_receiptdate": "1995-09-10", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "ithely even packages sleep caref" }, { "l_orderkey": 4933i32, "l_partkey": 32i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 48.0d, "l_extendedprice": 44737.44d, "l_discount": 0.08d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-10", "l_commitdate": "1995-10-03", "l_receiptdate": "1995-11-04", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "ideas. sly" }, { "l_orderkey": 2465i32, "l_partkey": 32i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 8.0d, "l_extendedprice": 7456.24d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-16", "l_commitdate": "1995-08-26", "l_receiptdate": "1995-11-07", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "s across the express deposits wak" }, { "l_orderkey": 2723i32, "l_partkey": 32i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 10.0d, "l_extendedprice": 9320.3d, "l_discount": 0.06d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-27", "l_commitdate": "1995-11-29", "l_receiptdate": "1995-12-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "al, special r" }, { "l_orderkey": 4038i32, "l_partkey": 32i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 24.0d, "l_extendedprice": 22368.72d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-04-06", "l_commitdate": "1996-02-15", "l_receiptdate": "1996-04-18", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "the furiously regu" }, { "l_orderkey": 4419i32, "l_partkey": 32i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 42.0d, "l_extendedprice": 39145.26d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-18", "l_commitdate": "1996-07-25", "l_receiptdate": "1996-09-21", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "sts. furious" }, { "l_orderkey": 4197i32, "l_partkey": 32i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 28.0d, "l_extendedprice": 26096.84d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-05", "l_commitdate": "1996-10-24", "l_receiptdate": "1996-10-22", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "regular pin" }, { "l_orderkey": 484i32, "l_partkey": 32i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 45.0d, "l_extendedprice": 41941.35d, "l_discount": 0.06d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-09", "l_commitdate": "1997-03-20", "l_receiptdate": "1997-04-19", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "usly final excuses boost slyly blithe" }, { "l_orderkey": 5127i32, "l_partkey": 32i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 20.0d, "l_extendedprice": 18640.6d, "l_discount": 0.01d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-11", "l_commitdate": "1997-02-26", "l_receiptdate": "1997-05-12", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "dolites about the final platelets w" }, { "l_orderkey": 1670i32, "l_partkey": 32i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 41.0d, "l_extendedprice": 38213.23d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-19", "l_commitdate": "1997-08-20", "l_receiptdate": "1997-07-23", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "thely according to the sly" }, { "l_orderkey": 3716i32, "l_partkey": 32i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 10.0d, "l_extendedprice": 9320.3d, "l_discount": 0.09d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-02", "l_commitdate": "1997-11-09", "l_receiptdate": "1997-12-14", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "ts. quickly sly ideas slee" }, { "l_orderkey": 1475i32, "l_partkey": 32i32, "l_suppkey": 3i32, "l_linenumber": 5i32, "l_quantity": 33.0d, "l_extendedprice": 30756.99d, "l_discount": 0.01d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-02", "l_commitdate": "1998-01-27", "l_receiptdate": "1998-01-11", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "quickly fluffy" }, { "l_orderkey": 4449i32, "l_partkey": 32i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 42.0d, "l_extendedprice": 39145.26d, "l_discount": 0.1d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-22", "l_commitdate": "1998-05-09", "l_receiptdate": "1998-04-03", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": " packages. blithely final " } ] }
-{ "partkey": 36i32, "lines": [ { "l_orderkey": 1154i32, "l_partkey": 36i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 18.0d, "l_extendedprice": 16848.54d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-02-26", "l_commitdate": "1992-03-24", "l_receiptdate": "1992-03-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "y regular excuses cajole blithely. fi" }, { "l_orderkey": 134i32, "l_partkey": 36i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 12.0d, "l_extendedprice": 11232.36d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-07-03", "l_commitdate": "1992-06-01", "l_receiptdate": "1992-07-11", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "nts are quic" }, { "l_orderkey": 3521i32, "l_partkey": 36i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 28.0d, "l_extendedprice": 26208.84d, "l_discount": 0.1d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-01-06", "l_commitdate": "1993-01-22", "l_receiptdate": "1993-02-02", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "e slyly above the slyly final" }, { "l_orderkey": 4641i32, "l_partkey": 36i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 15.0d, "l_extendedprice": 14040.45d, "l_discount": 0.01d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-01-25", "l_commitdate": "1993-04-09", "l_receiptdate": "1993-02-05", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "s. carefully even exc" }, { "l_orderkey": 4768i32, "l_partkey": 36i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 5.0d, "l_extendedprice": 4680.15d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-12-27", "l_commitdate": "1994-02-09", "l_receiptdate": "1994-01-11", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "egular accounts. bravely final fra" }, { "l_orderkey": 5666i32, "l_partkey": 36i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 14.0d, "l_extendedprice": 13104.42d, "l_discount": 0.08d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-02-27", "l_commitdate": "1994-04-11", "l_receiptdate": "1994-03-06", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "lar deposits nag against the slyly final d" }, { "l_orderkey": 258i32, "l_partkey": 36i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 25.0d, "l_extendedprice": 23400.75d, "l_discount": 0.08d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-04-13", "l_commitdate": "1994-02-26", "l_receiptdate": "1994-04-29", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "leep pending packages." }, { "l_orderkey": 962i32, "l_partkey": 36i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 27.0d, "l_extendedprice": 25272.81d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-05-11", "l_commitdate": "1994-07-10", "l_receiptdate": "1994-06-03", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "y slyly express deposits. final i" }, { "l_orderkey": 2853i32, "l_partkey": 36i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 1.0d, "l_extendedprice": 936.03d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-09-01", "l_commitdate": "1994-06-27", "l_receiptdate": "1994-09-12", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "refully slyly quick packages. final c" }, { "l_orderkey": 3296i32, "l_partkey": 36i32, "l_suppkey": 2i32, "l_linenumber": 7i32, "l_quantity": 6.0d, "l_extendedprice": 5616.18d, "l_discount": 0.02d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-01-03", "l_commitdate": "1994-12-23", "l_receiptdate": "1995-01-27", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "carefully fur" }, { "l_orderkey": 3395i32, "l_partkey": 36i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 38.0d, "l_extendedprice": 35569.14d, "l_discount": 0.01d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-01-13", "l_commitdate": "1995-01-13", "l_receiptdate": "1995-01-25", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": " silent accounts are blithely" }, { "l_orderkey": 1575i32, "l_partkey": 36i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 39.0d, "l_extendedprice": 36505.17d, "l_discount": 0.0d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-30", "l_commitdate": "1995-10-15", "l_receiptdate": "1995-11-10", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": " ironic requests snooze ironic, regular acc" }, { "l_orderkey": 3302i32, "l_partkey": 36i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 45.0d, "l_extendedprice": 42121.35d, "l_discount": 0.09d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-24", "l_commitdate": "1995-12-16", "l_receiptdate": "1996-02-13", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "counts use quickl" }, { "l_orderkey": 1988i32, "l_partkey": 36i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 27.0d, "l_extendedprice": 25272.81d, "l_discount": 0.08d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-27", "l_commitdate": "1995-12-24", "l_receiptdate": "1996-02-24", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "uests. regular requests are according to t" }, { "l_orderkey": 4038i32, "l_partkey": 36i32, "l_suppkey": 2i32, "l_linenumber": 6i32, "l_quantity": 6.0d, "l_extendedprice": 5616.18d, "l_discount": 0.07d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-02-09", "l_commitdate": "1996-03-05", "l_receiptdate": "1996-03-10", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": " special instructions. packa" }, { "l_orderkey": 4833i32, "l_partkey": 36i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 19.0d, "l_extendedprice": 17784.57d, "l_discount": 0.07d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-21", "l_commitdate": "1996-07-09", "l_receiptdate": "1996-09-10", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "y quick theodolit" }, { "l_orderkey": 2342i32, "l_partkey": 36i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 1.0d, "l_extendedprice": 936.03d, "l_discount": 0.04d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-31", "l_commitdate": "1996-08-09", "l_receiptdate": "1996-09-07", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "ffily. unusual pinto beans wake c" }, { "l_orderkey": 4484i32, "l_partkey": 36i32, "l_suppkey": 7i32, "l_linenumber": 6i32, "l_quantity": 29.0d, "l_extendedprice": 27144.87d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-27", "l_commitdate": "1997-03-10", "l_receiptdate": "1997-01-13", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": " wake blithely ironic" }, { "l_orderkey": 1924i32, "l_partkey": 36i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 17.0d, "l_extendedprice": 15912.51d, "l_discount": 0.04d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-31", "l_commitdate": "1996-11-12", "l_receiptdate": "1997-01-25", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "e carefully theodolites. ironically ironic " }, { "l_orderkey": 2404i32, "l_partkey": 36i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 1.0d, "l_extendedprice": 936.03d, "l_discount": 0.02d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-22", "l_commitdate": "1997-06-06", "l_receiptdate": "1997-05-28", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "from the final orbits? even pinto beans hag" }, { "l_orderkey": 3303i32, "l_partkey": 36i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 26.0d, "l_extendedprice": 24336.78d, "l_discount": 0.09d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-18", "l_commitdate": "1998-03-11", "l_receiptdate": "1998-02-11", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "ickly permanent requests w" }, { "l_orderkey": 2371i32, "l_partkey": 36i32, "l_suppkey": 2i32, "l_linenumber": 7i32, "l_quantity": 32.0d, "l_extendedprice": 29952.96d, "l_discount": 0.07d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-02-15", "l_commitdate": "1998-04-03", "l_receiptdate": "1998-02-23", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "the ruthless accounts. " }, { "l_orderkey": 4131i32, "l_partkey": 36i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 8.0d, "l_extendedprice": 7488.24d, "l_discount": 0.04d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-03", "l_commitdate": "1998-03-15", "l_receiptdate": "1998-03-26", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": " after the furiously ironic d" }, { "l_orderkey": 4901i32, "l_partkey": 36i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 41.0d, "l_extendedprice": 38377.23d, "l_discount": 0.03d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-18", "l_commitdate": "1998-02-18", "l_receiptdate": "1998-04-14", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "efully bold packages affix carefully eve" }, { "l_orderkey": 1126i32, "l_partkey": 36i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 44.0d, "l_extendedprice": 41185.32d, "l_discount": 0.08d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-07", "l_commitdate": "1998-04-02", "l_receiptdate": "1998-05-29", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "es. carefully special" } ] }
-{ "partkey": 39i32, "lines": [ { "l_orderkey": 4515i32, "l_partkey": 39i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 15.0d, "l_extendedprice": 14085.45d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-05-26", "l_commitdate": "1992-05-25", "l_receiptdate": "1992-06-03", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "posits wake" }, { "l_orderkey": 612i32, "l_partkey": 39i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 28.0d, "l_extendedprice": 26292.84d, "l_discount": 0.05d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-11-12", "l_commitdate": "1992-12-05", "l_receiptdate": "1992-12-02", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "lyly regular asym" }, { "l_orderkey": 1447i32, "l_partkey": 39i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 9.0d, "l_extendedprice": 8451.27d, "l_discount": 0.04d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-11-15", "l_commitdate": "1993-01-07", "l_receiptdate": "1992-11-29", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "counts wake s" }, { "l_orderkey": 1600i32, "l_partkey": 39i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 8.0d, "l_extendedprice": 7512.24d, "l_discount": 0.04d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-03-07", "l_commitdate": "1993-04-22", "l_receiptdate": "1993-03-26", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "cajole furiously fluf" }, { "l_orderkey": 3461i32, "l_partkey": 39i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 44.0d, "l_extendedprice": 41317.32d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-05-20", "l_commitdate": "1993-04-03", "l_receiptdate": "1993-05-27", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": " haggle quickly even ideas. fin" }, { "l_orderkey": 896i32, "l_partkey": 39i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 47.0d, "l_extendedprice": 44134.41d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-05-28", "l_commitdate": "1993-05-15", "l_receiptdate": "1993-06-15", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "ly even pinto beans integrate. b" }, { "l_orderkey": 2435i32, "l_partkey": 39i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 8.0d, "l_extendedprice": 7512.24d, "l_discount": 0.08d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-06-08", "l_commitdate": "1993-04-04", "l_receiptdate": "1993-06-29", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "e fluffily quickly final accounts. care" }, { "l_orderkey": 2535i32, "l_partkey": 39i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 12.0d, "l_extendedprice": 11268.36d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-07-17", "l_commitdate": "1993-08-17", "l_receiptdate": "1993-07-31", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "uses sleep among the packages. excuses " }, { "l_orderkey": 4774i32, "l_partkey": 39i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 4.0d, "l_extendedprice": 3756.12d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-08-03", "l_commitdate": "1993-05-30", "l_receiptdate": "1993-08-19", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "xes according to the foxes wake above the f" }, { "l_orderkey": 1603i32, "l_partkey": 39i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 1.0d, "l_extendedprice": 939.03d, "l_discount": 0.08d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-08-17", "l_commitdate": "1993-09-04", "l_receiptdate": "1993-08-22", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "d accounts. special warthogs use fur" }, { "l_orderkey": 5287i32, "l_partkey": 39i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 32.0d, "l_extendedprice": 30048.96d, "l_discount": 0.01d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-01-29", "l_commitdate": "1994-01-27", "l_receiptdate": "1994-02-08", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "heodolites haggle caref" }, { "l_orderkey": 3396i32, "l_partkey": 39i32, "l_suppkey": 10i32, "l_linenumber": 6i32, "l_quantity": 18.0d, "l_extendedprice": 16902.54d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-07-27", "l_commitdate": "1994-06-26", "l_receiptdate": "1994-08-25", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "l requests haggle furiously along the fur" }, { "l_orderkey": 3588i32, "l_partkey": 39i32, "l_suppkey": 5i32, "l_linenumber": 7i32, "l_quantity": 46.0d, "l_extendedprice": 43195.38d, "l_discount": 0.08d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-06-06", "l_commitdate": "1995-05-08", "l_receiptdate": "1995-06-08", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": " slyly ironic deposits sublate ab" }, { "l_orderkey": 1958i32, "l_partkey": 39i32, "l_suppkey": 5i32, "l_linenumber": 7i32, "l_quantity": 29.0d, "l_extendedprice": 27231.87d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-14", "l_commitdate": "1995-11-06", "l_receiptdate": "1995-11-01", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "final requests nag according to the " }, { "l_orderkey": 5958i32, "l_partkey": 39i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 18.0d, "l_extendedprice": 16902.54d, "l_discount": 0.04d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-02", "l_commitdate": "1995-10-17", "l_receiptdate": "1995-12-22", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "regular requests haggle" }, { "l_orderkey": 482i32, "l_partkey": 39i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 46.0d, "l_extendedprice": 43195.38d, "l_discount": 0.01d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-19", "l_commitdate": "1996-06-05", "l_receiptdate": "1996-08-10", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "furiously thin realms. final, fina" }, { "l_orderkey": 4994i32, "l_partkey": 39i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 40.0d, "l_extendedprice": 37561.2d, "l_discount": 0.01d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-25", "l_commitdate": "1996-08-16", "l_receiptdate": "1996-09-07", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "eposits. regula" }, { "l_orderkey": 2596i32, "l_partkey": 39i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 19.0d, "l_extendedprice": 17841.57d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-02", "l_commitdate": "1996-11-03", "l_receiptdate": "1996-09-06", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "ias mold! sp" }, { "l_orderkey": 5570i32, "l_partkey": 39i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 15.0d, "l_extendedprice": 14085.45d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-04", "l_commitdate": "1996-10-05", "l_receiptdate": "1996-10-28", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "beans nag slyly special, regular pack" }, { "l_orderkey": 1569i32, "l_partkey": 39i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 16.0d, "l_extendedprice": 15024.48d, "l_discount": 0.01d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-26", "l_commitdate": "1998-06-16", "l_receiptdate": "1998-05-26", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "deposits. blithely final asymptotes ac" }, { "l_orderkey": 100i32, "l_partkey": 39i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 14.0d, "l_extendedprice": 13146.42d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-22", "l_commitdate": "1998-05-01", "l_receiptdate": "1998-06-03", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "y. furiously ironic ideas gr" }, { "l_orderkey": 5344i32, "l_partkey": 39i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 21.0d, "l_extendedprice": 19719.63d, "l_discount": 0.03d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-31", "l_commitdate": "1998-09-06", "l_receiptdate": "1998-09-02", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "xes. furiously even pinto beans sleep f" } ] }
-{ "partkey": 42i32, "lines": [ { "l_orderkey": 2560i32, "l_partkey": 42i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 9.0d, "l_extendedprice": 8478.36d, "l_discount": 0.04d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-10-23", "l_commitdate": "1992-10-29", "l_receiptdate": "1992-11-02", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": " deposits affix quickly. unusual, eve" }, { "l_orderkey": 2566i32, "l_partkey": 42i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 3.0d, "l_extendedprice": 2826.12d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-11-04", "l_commitdate": "1992-12-30", "l_receiptdate": "1992-12-04", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "ckages are ironic Tiresias. furious" }, { "l_orderkey": 1571i32, "l_partkey": 42i32, "l_suppkey": 5i32, "l_linenumber": 5i32, "l_quantity": 10.0d, "l_extendedprice": 9420.4d, "l_discount": 0.03d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-12-12", "l_commitdate": "1993-02-13", "l_receiptdate": "1992-12-29", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "lets. carefully regular ideas wake" }, { "l_orderkey": 1216i32, "l_partkey": 42i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 18.0d, "l_extendedprice": 16956.72d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-01-20", "l_commitdate": "1993-01-28", "l_receiptdate": "1993-02-02", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "y final packages nod " }, { "l_orderkey": 1604i32, "l_partkey": 42i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 15.0d, "l_extendedprice": 14130.6d, "l_discount": 0.09d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-09-22", "l_commitdate": "1993-09-03", "l_receiptdate": "1993-09-29", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": " instructions haggle" }, { "l_orderkey": 2659i32, "l_partkey": 42i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 28.0d, "l_extendedprice": 26377.12d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-03-17", "l_commitdate": "1994-01-24", "l_receiptdate": "1994-03-19", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "idle tithes" }, { "l_orderkey": 3268i32, "l_partkey": 42i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 40.0d, "l_extendedprice": 37681.6d, "l_discount": 0.08d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-06-30", "l_commitdate": "1994-08-22", "l_receiptdate": "1994-07-25", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "ly. bold, eve" }, { "l_orderkey": 1218i32, "l_partkey": 42i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 1.0d, "l_extendedprice": 942.04d, "l_discount": 0.01d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-09-15", "l_commitdate": "1994-09-07", "l_receiptdate": "1994-10-03", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "press furio" }, { "l_orderkey": 4645i32, "l_partkey": 42i32, "l_suppkey": 9i32, "l_linenumber": 6i32, "l_quantity": 27.0d, "l_extendedprice": 25435.08d, "l_discount": 0.09d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-11-26", "l_commitdate": "1994-10-25", "l_receiptdate": "1994-12-04", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "ously express pinto beans. ironic depos" }, { "l_orderkey": 1152i32, "l_partkey": 42i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 6.0d, "l_extendedprice": 5652.24d, "l_discount": 0.07d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-12-07", "l_commitdate": "1994-11-05", "l_receiptdate": "1994-12-25", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "p furiously; packages above th" }, { "l_orderkey": 3585i32, "l_partkey": 42i32, "l_suppkey": 1i32, "l_linenumber": 7i32, "l_quantity": 45.0d, "l_extendedprice": 42391.8d, "l_discount": 0.03d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-01-20", "l_commitdate": "1995-02-19", "l_receiptdate": "1995-02-11", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "are blithely c" }, { "l_orderkey": 5765i32, "l_partkey": 42i32, "l_suppkey": 5i32, "l_linenumber": 7i32, "l_quantity": 21.0d, "l_extendedprice": 19782.84d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-04-05", "l_commitdate": "1995-02-12", "l_receiptdate": "1995-05-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "ole furiously. quick, special dependencies " }, { "l_orderkey": 3488i32, "l_partkey": 42i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 12.0d, "l_extendedprice": 11304.48d, "l_discount": 0.05d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-04-27", "l_commitdate": "1995-02-16", "l_receiptdate": "1995-05-09", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "e slyly; furiously final packages wak" }, { "l_orderkey": 197i32, "l_partkey": 42i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 14.0d, "l_extendedprice": 13188.56d, "l_discount": 0.09d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-05-08", "l_commitdate": "1995-05-24", "l_receiptdate": "1995-05-12", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "use slyly slyly silent depo" }, { "l_orderkey": 327i32, "l_partkey": 42i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 9.0d, "l_extendedprice": 8478.36d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-05-24", "l_commitdate": "1995-07-11", "l_receiptdate": "1995-06-05", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": " asymptotes are fu" }, { "l_orderkey": 771i32, "l_partkey": 42i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 7.0d, "l_extendedprice": 6594.28d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-06-18", "l_commitdate": "1995-08-31", "l_receiptdate": "1995-06-20", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "theodolites after the fluffily express " }, { "l_orderkey": 1767i32, "l_partkey": 42i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 1.0d, "l_extendedprice": 942.04d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-06-23", "l_commitdate": "1995-05-25", "l_receiptdate": "1995-07-03", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "ing to the slyly fin" }, { "l_orderkey": 1702i32, "l_partkey": 42i32, "l_suppkey": 9i32, "l_linenumber": 6i32, "l_quantity": 28.0d, "l_extendedprice": 26377.12d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-14", "l_commitdate": "1995-07-31", "l_receiptdate": "1995-09-08", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "ackages sleep. furiously even excuses snooz" }, { "l_orderkey": 2882i32, "l_partkey": 42i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 30.0d, "l_extendedprice": 28261.2d, "l_discount": 0.0d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-15", "l_commitdate": "1995-10-13", "l_receiptdate": "1995-10-25", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "among the furiously even theodolites. regu" }, { "l_orderkey": 903i32, "l_partkey": 42i32, "l_suppkey": 3i32, "l_linenumber": 5i32, "l_quantity": 1.0d, "l_extendedprice": 942.04d, "l_discount": 0.04d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-22", "l_commitdate": "1995-09-13", "l_receiptdate": "1995-11-03", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "y final platelets sublate among the " }, { "l_orderkey": 4579i32, "l_partkey": 42i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 28.0d, "l_extendedprice": 26377.12d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-22", "l_commitdate": "1996-02-13", "l_receiptdate": "1996-02-03", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "slyly across the " }, { "l_orderkey": 2342i32, "l_partkey": 42i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 12.0d, "l_extendedprice": 11304.48d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-31", "l_commitdate": "1996-07-26", "l_receiptdate": "1996-08-14", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "print blithely even deposits. carefull" }, { "l_orderkey": 4994i32, "l_partkey": 42i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 24.0d, "l_extendedprice": 22608.96d, "l_discount": 0.01d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-19", "l_commitdate": "1996-09-24", "l_receiptdate": "1996-08-25", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "s. slyly ironic deposits cajole f" }, { "l_orderkey": 4576i32, "l_partkey": 42i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 14.0d, "l_extendedprice": 13188.56d, "l_discount": 0.09d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-12", "l_commitdate": "1996-09-30", "l_receiptdate": "1996-09-24", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "detect slyly." }, { "l_orderkey": 2310i32, "l_partkey": 42i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 48.0d, "l_extendedprice": 45217.92d, "l_discount": 0.08d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-04", "l_commitdate": "1996-11-20", "l_receiptdate": "1996-10-25", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "ep slyly alongside of the " }, { "l_orderkey": 2599i32, "l_partkey": 42i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 26.0d, "l_extendedprice": 24493.04d, "l_discount": 0.03d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-08", "l_commitdate": "1996-12-21", "l_receiptdate": "1996-11-24", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "nag carefully " }, { "l_orderkey": 260i32, "l_partkey": 42i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 27.0d, "l_extendedprice": 25435.08d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-23", "l_commitdate": "1997-02-15", "l_receiptdate": "1997-04-22", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "ions according to the" }, { "l_orderkey": 1413i32, "l_partkey": 42i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 6.0d, "l_extendedprice": 5652.24d, "l_discount": 0.04d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-07", "l_commitdate": "1997-07-30", "l_receiptdate": "1997-09-21", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "lithely excuses. f" }, { "l_orderkey": 2944i32, "l_partkey": 42i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 44.0d, "l_extendedprice": 41449.76d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-10-28", "l_commitdate": "1997-11-22", "l_receiptdate": "1997-11-10", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "ickly. regular requests haggle. idea" }, { "l_orderkey": 5442i32, "l_partkey": 42i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 16.0d, "l_extendedprice": 15072.64d, "l_discount": 0.0d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-12", "l_commitdate": "1998-03-03", "l_receiptdate": "1998-05-04", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "r packages. accounts haggle dependencies. f" }, { "l_orderkey": 4837i32, "l_partkey": 42i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 16.0d, "l_extendedprice": 15072.64d, "l_discount": 0.09d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-12", "l_commitdate": "1998-06-06", "l_receiptdate": "1998-08-26", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "ing requests are blithely regular instructi" } ] }
-{ "partkey": 44i32, "lines": [ { "l_orderkey": 4292i32, "l_partkey": 44i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 22.0d, "l_extendedprice": 20768.88d, "l_discount": 0.08d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-02-14", "l_commitdate": "1992-02-16", "l_receiptdate": "1992-03-01", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "refully expres" }, { "l_orderkey": 322i32, "l_partkey": 44i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 48.0d, "l_extendedprice": 45313.92d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-06-11", "l_commitdate": "1992-06-16", "l_receiptdate": "1992-06-26", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "dolites detect qu" }, { "l_orderkey": 2147i32, "l_partkey": 44i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 34.0d, "l_extendedprice": 32097.36d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-11-29", "l_commitdate": "1992-11-08", "l_receiptdate": "1992-12-22", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "egular deposits hang car" }, { "l_orderkey": 5381i32, "l_partkey": 44i32, "l_suppkey": 3i32, "l_linenumber": 7i32, "l_quantity": 31.0d, "l_extendedprice": 29265.24d, "l_discount": 0.04d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-04-10", "l_commitdate": "1993-03-22", "l_receiptdate": "1993-04-13", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "the carefully expre" }, { "l_orderkey": 1600i32, "l_partkey": 44i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 48.0d, "l_extendedprice": 45313.92d, "l_discount": 0.07d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-04-17", "l_commitdate": "1993-04-14", "l_receiptdate": "1993-05-03", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "furiously silent foxes could wake. car" }, { "l_orderkey": 3621i32, "l_partkey": 44i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 20.0d, "l_extendedprice": 18880.8d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-05-27", "l_commitdate": "1993-07-04", "l_receiptdate": "1993-06-22", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "gular accounts use carefully with" }, { "l_orderkey": 1350i32, "l_partkey": 44i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 32.0d, "l_extendedprice": 30209.28d, "l_discount": 0.03d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-11-18", "l_commitdate": "1993-09-30", "l_receiptdate": "1993-12-16", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "ic, final " }, { "l_orderkey": 3138i32, "l_partkey": 44i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 27.0d, "l_extendedprice": 25489.08d, "l_discount": 0.09d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-03-24", "l_commitdate": "1994-03-23", "l_receiptdate": "1994-04-18", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "counts cajole fluffily carefully special i" }, { "l_orderkey": 3073i32, "l_partkey": 44i32, "l_suppkey": 5i32, "l_linenumber": 7i32, "l_quantity": 11.0d, "l_extendedprice": 10384.44d, "l_discount": 0.08d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-05-01", "l_commitdate": "1994-03-06", "l_receiptdate": "1994-05-08", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "instructions sleep according to the " }, { "l_orderkey": 3138i32, "l_partkey": 44i32, "l_suppkey": 7i32, "l_linenumber": 6i32, "l_quantity": 25.0d, "l_extendedprice": 23601.0d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-05-19", "l_commitdate": "1994-04-07", "l_receiptdate": "1994-06-17", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "dolites around the carefully busy the" }, { "l_orderkey": 5728i32, "l_partkey": 44i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 47.0d, "l_extendedprice": 44369.88d, "l_discount": 0.1d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-12-13", "l_commitdate": "1995-01-25", "l_receiptdate": "1994-12-25", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "nd the bravely final deposits. final ideas" }, { "l_orderkey": 5250i32, "l_partkey": 44i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 2.0d, "l_extendedprice": 1888.08d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-09", "l_commitdate": "1995-10-10", "l_receiptdate": "1995-08-13", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "its. final pinto" }, { "l_orderkey": 5568i32, "l_partkey": 44i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 18.0d, "l_extendedprice": 16992.72d, "l_discount": 0.01d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-19", "l_commitdate": "1995-08-18", "l_receiptdate": "1995-08-24", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "structions haggle. carefully regular " }, { "l_orderkey": 5284i32, "l_partkey": 44i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 24.0d, "l_extendedprice": 22656.96d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-21", "l_commitdate": "1995-08-23", "l_receiptdate": "1995-10-27", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": " haggle according " }, { "l_orderkey": 3269i32, "l_partkey": 44i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 39.0d, "l_extendedprice": 36817.56d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-13", "l_commitdate": "1996-05-26", "l_receiptdate": "1996-03-19", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "he express packages?" }, { "l_orderkey": 5319i32, "l_partkey": 44i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 39.0d, "l_extendedprice": 36817.56d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-17", "l_commitdate": "1996-03-14", "l_receiptdate": "1996-06-11", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "unts. furiously silent" }, { "l_orderkey": 1153i32, "l_partkey": 44i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 25.0d, "l_extendedprice": 23601.0d, "l_discount": 0.0d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-18", "l_commitdate": "1996-06-28", "l_receiptdate": "1996-07-09", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": " theodolites" }, { "l_orderkey": 932i32, "l_partkey": 44i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 41.0d, "l_extendedprice": 38705.64d, "l_discount": 0.01d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-05", "l_commitdate": "1997-07-22", "l_receiptdate": "1997-06-26", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "foxes. ironic pl" }, { "l_orderkey": 5859i32, "l_partkey": 44i32, "l_suppkey": 5i32, "l_linenumber": 6i32, "l_quantity": 9.0d, "l_extendedprice": 8496.36d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-15", "l_commitdate": "1997-06-06", "l_receiptdate": "1997-06-20", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "ges boost quickly. blithely r" }, { "l_orderkey": 1024i32, "l_partkey": 44i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 28.0d, "l_extendedprice": 26433.12d, "l_discount": 0.04d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-04", "l_commitdate": "1998-03-12", "l_receiptdate": "1998-03-15", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "e blithely regular pi" }, { "l_orderkey": 838i32, "l_partkey": 44i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 18.0d, "l_extendedprice": 16992.72d, "l_discount": 0.09d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-28", "l_commitdate": "1998-04-06", "l_receiptdate": "1998-03-31", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "hely unusual foxes. furio" }, { "l_orderkey": 4961i32, "l_partkey": 44i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 38.0d, "l_extendedprice": 35873.52d, "l_discount": 0.1d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-09", "l_commitdate": "1998-06-03", "l_receiptdate": "1998-07-11", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "e on the blithely bold accounts. unu" }, { "l_orderkey": 739i32, "l_partkey": 44i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 47.0d, "l_extendedprice": 44369.88d, "l_discount": 0.09d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-12", "l_commitdate": "1998-07-09", "l_receiptdate": "1998-08-28", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "deas according to the theodolites sn" } ] }
-{ "partkey": 50i32, "lines": [ { "l_orderkey": 2786i32, "l_partkey": 50i32, "l_suppkey": 3i32, "l_linenumber": 5i32, "l_quantity": 43.0d, "l_extendedprice": 40852.15d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-04-22", "l_commitdate": "1992-05-13", "l_receiptdate": "1992-04-29", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "ons. theodolites after" }, { "l_orderkey": 644i32, "l_partkey": 50i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 23.0d, "l_extendedprice": 21851.15d, "l_discount": 0.02d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-07-31", "l_commitdate": "1992-07-28", "l_receiptdate": "1992-08-13", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "uctions nag quickly alongside of t" }, { "l_orderkey": 2885i32, "l_partkey": 50i32, "l_suppkey": 9i32, "l_linenumber": 7i32, "l_quantity": 40.0d, "l_extendedprice": 38002.0d, "l_discount": 0.05d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-09-23", "l_commitdate": "1992-11-15", "l_receiptdate": "1992-10-07", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": " express depos" }, { "l_orderkey": 4581i32, "l_partkey": 50i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 7.0d, "l_extendedprice": 6650.35d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-10-09", "l_commitdate": "1992-10-20", "l_receiptdate": "1992-10-21", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "express accounts d" }, { "l_orderkey": 2562i32, "l_partkey": 50i32, "l_suppkey": 7i32, "l_linenumber": 6i32, "l_quantity": 17.0d, "l_extendedprice": 16150.85d, "l_discount": 0.01d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-10-15", "l_commitdate": "1992-10-08", "l_receiptdate": "1992-10-26", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "lar pinto beans. blithely ev" }, { "l_orderkey": 1506i32, "l_partkey": 50i32, "l_suppkey": 3i32, "l_linenumber": 6i32, "l_quantity": 38.0d, "l_extendedprice": 36101.9d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-12-02", "l_commitdate": "1992-12-19", "l_receiptdate": "1992-12-29", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "xpress, regular excuse" }, { "l_orderkey": 4706i32, "l_partkey": 50i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 27.0d, "l_extendedprice": 25651.35d, "l_discount": 0.06d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-04-04", "l_commitdate": "1993-03-11", "l_receiptdate": "1993-04-09", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "into beans. finally special instruct" }, { "l_orderkey": 97i32, "l_partkey": 50i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 37.0d, "l_extendedprice": 35151.85d, "l_discount": 0.02d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-04-13", "l_commitdate": "1993-03-30", "l_receiptdate": "1993-04-14", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "ic requests boost carefully quic" }, { "l_orderkey": 3877i32, "l_partkey": 50i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 12.0d, "l_extendedprice": 11400.6d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-05-30", "l_commitdate": "1993-08-09", "l_receiptdate": "1993-06-24", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "nal requests. even requests are. pac" }, { "l_orderkey": 870i32, "l_partkey": 50i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 36.0d, "l_extendedprice": 34201.8d, "l_discount": 0.04d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-10-18", "l_commitdate": "1993-09-16", "l_receiptdate": "1993-11-15", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "fily. furiously final accounts are " }, { "l_orderkey": 4612i32, "l_partkey": 50i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 17.0d, "l_extendedprice": 16150.85d, "l_discount": 0.1d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-01-09", "l_commitdate": "1993-11-08", "l_receiptdate": "1994-02-06", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "equests haggle carefully silent excus" }, { "l_orderkey": 4034i32, "l_partkey": 50i32, "l_suppkey": 9i32, "l_linenumber": 6i32, "l_quantity": 5.0d, "l_extendedprice": 4750.25d, "l_discount": 0.01d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-02-12", "l_commitdate": "1994-01-24", "l_receiptdate": "1994-02-13", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "fully around the furiously ironic re" }, { "l_orderkey": 2753i32, "l_partkey": 50i32, "l_suppkey": 1i32, "l_linenumber": 6i32, "l_quantity": 17.0d, "l_extendedprice": 16150.85d, "l_discount": 0.01d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-03-08", "l_commitdate": "1994-01-17", "l_receiptdate": "1994-03-11", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": " carefully bold deposits sublate s" }, { "l_orderkey": 5926i32, "l_partkey": 50i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 27.0d, "l_extendedprice": 25651.35d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-07-05", "l_commitdate": "1994-08-11", "l_receiptdate": "1994-08-02", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "ironic requests" }, { "l_orderkey": 1762i32, "l_partkey": 50i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 39.0d, "l_extendedprice": 37051.95d, "l_discount": 0.1d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-09-12", "l_commitdate": "1994-11-09", "l_receiptdate": "1994-10-08", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": " ironic platelets sleep along t" }, { "l_orderkey": 2724i32, "l_partkey": 50i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 22.0d, "l_extendedprice": 20901.1d, "l_discount": 0.04d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-09-19", "l_commitdate": "1994-11-18", "l_receiptdate": "1994-10-17", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "express fo" }, { "l_orderkey": 3841i32, "l_partkey": 50i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 9.0d, "l_extendedprice": 8550.45d, "l_discount": 0.1d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-11-21", "l_commitdate": "1994-12-26", "l_receiptdate": "1994-11-26", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "s according to the courts shall nag s" }, { "l_orderkey": 5249i32, "l_partkey": 50i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 31.0d, "l_extendedprice": 29451.55d, "l_discount": 0.07d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-11-21", "l_commitdate": "1994-11-19", "l_receiptdate": "1994-12-08", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "f the excuses. furiously fin" }, { "l_orderkey": 3522i32, "l_partkey": 50i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 27.0d, "l_extendedprice": 25651.35d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-11-29", "l_commitdate": "1994-12-15", "l_receiptdate": "1994-12-08", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "ic tithes. car" }, { "l_orderkey": 4645i32, "l_partkey": 50i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 45.0d, "l_extendedprice": 42752.25d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-12-27", "l_commitdate": "1994-11-02", "l_receiptdate": "1994-12-31", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "ular ideas. slyly" }, { "l_orderkey": 3458i32, "l_partkey": 50i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 46.0d, "l_extendedprice": 43702.3d, "l_discount": 0.06d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-03-08", "l_commitdate": "1995-01-21", "l_receiptdate": "1995-03-10", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "nod across the boldly even instruct" }, { "l_orderkey": 1281i32, "l_partkey": 50i32, "l_suppkey": 9i32, "l_linenumber": 6i32, "l_quantity": 4.0d, "l_extendedprice": 3800.2d, "l_discount": 0.07d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-03-15", "l_commitdate": "1995-02-21", "l_receiptdate": "1995-03-20", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "ggle against the even requests. requests " }, { "l_orderkey": 5031i32, "l_partkey": 50i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 15.0d, "l_extendedprice": 14250.75d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-04-01", "l_commitdate": "1995-02-24", "l_receiptdate": "1995-04-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "yly pending theodolites." }, { "l_orderkey": 5347i32, "l_partkey": 50i32, "l_suppkey": 7i32, "l_linenumber": 7i32, "l_quantity": 18.0d, "l_extendedprice": 17100.9d, "l_discount": 0.01d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "F", "l_shipdate": "1995-05-24", "l_commitdate": "1995-05-07", "l_receiptdate": "1995-06-19", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "he ideas among the requests " }, { "l_orderkey": 4324i32, "l_partkey": 50i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 14.0d, "l_extendedprice": 13300.7d, "l_discount": 0.02d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-20", "l_commitdate": "1995-10-08", "l_receiptdate": "1995-10-06", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": " express ideas. blithely blit" }, { "l_orderkey": 5925i32, "l_partkey": 50i32, "l_suppkey": 9i32, "l_linenumber": 6i32, "l_quantity": 48.0d, "l_extendedprice": 45602.4d, "l_discount": 0.02d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-02-03", "l_commitdate": "1996-01-19", "l_receiptdate": "1996-03-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": " haggle after the fo" }, { "l_orderkey": 354i32, "l_partkey": 50i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 14.0d, "l_extendedprice": 13300.7d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-04-12", "l_commitdate": "1996-06-03", "l_receiptdate": "1996-05-08", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "quickly regular grouches will eat. careful" }, { "l_orderkey": 1089i32, "l_partkey": 50i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 35.0d, "l_extendedprice": 33251.75d, "l_discount": 0.03d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-14", "l_commitdate": "1996-07-10", "l_receiptdate": "1996-08-26", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "ly express deposits haggle" }, { "l_orderkey": 5573i32, "l_partkey": 50i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 2.0d, "l_extendedprice": 1900.1d, "l_discount": 0.01d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-26", "l_commitdate": "1996-09-29", "l_receiptdate": "1996-09-04", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": " even foxes. specia" }, { "l_orderkey": 2432i32, "l_partkey": 50i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 30.0d, "l_extendedprice": 28501.5d, "l_discount": 0.03d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-05", "l_commitdate": "1996-10-10", "l_receiptdate": "1996-10-05", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": " requests wake alongside of" }, { "l_orderkey": 2406i32, "l_partkey": 50i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 16.0d, "l_extendedprice": 15200.8d, "l_discount": 0.07d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-31", "l_commitdate": "1996-11-28", "l_receiptdate": "1996-11-08", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": " special accou" }, { "l_orderkey": 3943i32, "l_partkey": 50i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 5.0d, "l_extendedprice": 4750.25d, "l_discount": 0.04d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-09", "l_commitdate": "1996-11-10", "l_receiptdate": "1997-02-06", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "arefully regular deposits accord" }, { "l_orderkey": 4967i32, "l_partkey": 50i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 15.0d, "l_extendedprice": 14250.75d, "l_discount": 0.08d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-16", "l_commitdate": "1997-04-12", "l_receiptdate": "1997-05-08", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "y. blithel" }, { "l_orderkey": 4865i32, "l_partkey": 50i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 21.0d, "l_extendedprice": 19951.05d, "l_discount": 0.04d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-17", "l_commitdate": "1997-08-10", "l_receiptdate": "1997-07-21", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "eposits detect sly" }, { "l_orderkey": 1475i32, "l_partkey": 50i32, "l_suppkey": 7i32, "l_linenumber": 6i32, "l_quantity": 12.0d, "l_extendedprice": 11400.6d, "l_discount": 0.04d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-09", "l_commitdate": "1997-12-30", "l_receiptdate": "1998-01-23", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "arefully-- excuses sublate" }, { "l_orderkey": 4131i32, "l_partkey": 50i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 6.0d, "l_extendedprice": 5700.3d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-27", "l_commitdate": "1998-04-18", "l_receiptdate": "1998-04-29", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "ns cajole slyly. even, iro" }, { "l_orderkey": 3523i32, "l_partkey": 50i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 24.0d, "l_extendedprice": 22801.2d, "l_discount": 0.07d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-02", "l_commitdate": "1998-06-22", "l_receiptdate": "1998-08-27", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "ke according to the doggedly re" }, { "l_orderkey": 1124i32, "l_partkey": 50i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 25.0d, "l_extendedprice": 23751.25d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-05", "l_commitdate": "1998-10-14", "l_receiptdate": "1998-08-11", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "ggle slyly according" }, { "l_orderkey": 5410i32, "l_partkey": 50i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 8.0d, "l_extendedprice": 7600.4d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-09-12", "l_commitdate": "1998-10-22", "l_receiptdate": "1998-09-22", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "ly. fluffily ironic platelets alon" } ] }
-{ "partkey": 53i32, "lines": [ { "l_orderkey": 4800i32, "l_partkey": 53i32, "l_suppkey": 4i32, "l_linenumber": 5i32, "l_quantity": 24.0d, "l_extendedprice": 22873.2d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-01-14", "l_commitdate": "1992-02-23", "l_receiptdate": "1992-01-25", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "ully carefully r" }, { "l_orderkey": 2240i32, "l_partkey": 53i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 39.0d, "l_extendedprice": 37168.95d, "l_discount": 0.08d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-05-22", "l_commitdate": "1992-05-10", "l_receiptdate": "1992-06-08", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "y orbits. final depos" }, { "l_orderkey": 2562i32, "l_partkey": 53i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 28.0d, "l_extendedprice": 26685.4d, "l_discount": 0.04d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-10-04", "l_commitdate": "1992-09-24", "l_receiptdate": "1992-10-09", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "ans haggle special, special packages. " }, { "l_orderkey": 1991i32, "l_partkey": 53i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 49.0d, "l_extendedprice": 46699.45d, "l_discount": 0.08d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-10-19", "l_commitdate": "1992-11-29", "l_receiptdate": "1992-10-25", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "nd the ideas affi" }, { "l_orderkey": 480i32, "l_partkey": 53i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 22.0d, "l_extendedprice": 20967.1d, "l_discount": 0.04d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-06-16", "l_commitdate": "1993-07-28", "l_receiptdate": "1993-07-09", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "into beans cajole furiously. accounts s" }, { "l_orderkey": 1060i32, "l_partkey": 53i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 1.0d, "l_extendedprice": 953.05d, "l_discount": 0.04d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-06-19", "l_commitdate": "1993-05-10", "l_receiptdate": "1993-06-21", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "posits detect carefully abo" }, { "l_orderkey": 772i32, "l_partkey": 53i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 35.0d, "l_extendedprice": 33356.75d, "l_discount": 0.1d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-07-05", "l_commitdate": "1993-06-05", "l_receiptdate": "1993-08-02", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "kly thin packages wake slowly" }, { "l_orderkey": 1888i32, "l_partkey": 53i32, "l_suppkey": 8i32, "l_linenumber": 6i32, "l_quantity": 48.0d, "l_extendedprice": 45746.4d, "l_discount": 0.08d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-02-28", "l_commitdate": "1993-12-16", "l_receiptdate": "1994-03-15", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "ar ideas cajole. regular p" }, { "l_orderkey": 1952i32, "l_partkey": 53i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 7.0d, "l_extendedprice": 6671.35d, "l_discount": 0.04d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-05-06", "l_commitdate": "1994-06-11", "l_receiptdate": "1994-05-12", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "about the express, even requ" }, { "l_orderkey": 5924i32, "l_partkey": 53i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 49.0d, "l_extendedprice": 46699.45d, "l_discount": 0.04d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-25", "l_commitdate": "1995-12-11", "l_receiptdate": "1995-11-08", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "inly final excuses. blithely regular requ" }, { "l_orderkey": 5153i32, "l_partkey": 53i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 14.0d, "l_extendedprice": 13342.7d, "l_discount": 0.05d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-29", "l_commitdate": "1995-10-21", "l_receiptdate": "1995-12-08", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": " slyly daring pinto beans lose blithely fi" }, { "l_orderkey": 2532i32, "l_partkey": 53i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 3.0d, "l_extendedprice": 2859.15d, "l_discount": 0.06d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-14", "l_commitdate": "1995-11-28", "l_receiptdate": "1995-12-15", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "unusual sentiments. even pinto" }, { "l_orderkey": 1731i32, "l_partkey": 53i32, "l_suppkey": 4i32, "l_linenumber": 5i32, "l_quantity": 37.0d, "l_extendedprice": 35262.85d, "l_discount": 0.1d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-04-30", "l_commitdate": "1996-03-17", "l_receiptdate": "1996-05-27", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": " beans use furiously slyly b" }, { "l_orderkey": 2246i32, "l_partkey": 53i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 22.0d, "l_extendedprice": 20967.1d, "l_discount": 0.02d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-25", "l_commitdate": "1996-08-03", "l_receiptdate": "1996-08-24", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "ructions wake carefully fina" }, { "l_orderkey": 1698i32, "l_partkey": 53i32, "l_suppkey": 4i32, "l_linenumber": 5i32, "l_quantity": 37.0d, "l_extendedprice": 35262.85d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-16", "l_commitdate": "1997-05-29", "l_receiptdate": "1997-05-27", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "ly regular ideas. deposit" }, { "l_orderkey": 4967i32, "l_partkey": 53i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 43.0d, "l_extendedprice": 40981.15d, "l_discount": 0.0d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-28", "l_commitdate": "1997-04-10", "l_receiptdate": "1997-06-09", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "ons. slyly ironic requests" }, { "l_orderkey": 2950i32, "l_partkey": 53i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 14.0d, "l_extendedprice": 13342.7d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-29", "l_commitdate": "1997-08-05", "l_receiptdate": "1997-07-31", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "ccounts haggle carefully according " }, { "l_orderkey": 4036i32, "l_partkey": 53i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 21.0d, "l_extendedprice": 20014.05d, "l_discount": 0.09d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-08", "l_commitdate": "1997-06-28", "l_receiptdate": "1997-08-09", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "e carefully. qui" }, { "l_orderkey": 5793i32, "l_partkey": 53i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 20.0d, "l_extendedprice": 19061.0d, "l_discount": 0.05d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-10-05", "l_commitdate": "1997-09-04", "l_receiptdate": "1997-10-30", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "e carefully ex" }, { "l_orderkey": 1893i32, "l_partkey": 53i32, "l_suppkey": 4i32, "l_linenumber": 5i32, "l_quantity": 6.0d, "l_extendedprice": 5718.3d, "l_discount": 0.1d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-23", "l_commitdate": "1997-12-22", "l_receiptdate": "1998-02-09", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "ar accounts use. daringly ironic packag" }, { "l_orderkey": 1984i32, "l_partkey": 53i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 45.0d, "l_extendedprice": 42887.25d, "l_discount": 0.03d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-09", "l_commitdate": "1998-06-11", "l_receiptdate": "1998-05-01", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "p. quickly final ideas sle" }, { "l_orderkey": 3717i32, "l_partkey": 53i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 3.0d, "l_extendedprice": 2859.15d, "l_discount": 0.01d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-09", "l_commitdate": "1998-07-31", "l_receiptdate": "1998-06-14", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "nside the regular packages sleep" }, { "l_orderkey": 2400i32, "l_partkey": 53i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 23.0d, "l_extendedprice": 21920.15d, "l_discount": 0.02d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-05", "l_commitdate": "1998-08-28", "l_receiptdate": "1998-08-30", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "tions. fluffily ironic platelets cajole c" }, { "l_orderkey": 5664i32, "l_partkey": 53i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 31.0d, "l_extendedprice": 29544.55d, "l_discount": 0.01d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-11-10", "l_commitdate": "1998-09-12", "l_receiptdate": "1998-12-07", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "ainst the never silent request" } ] }
-{ "partkey": 54i32, "lines": [ { "l_orderkey": 4515i32, "l_partkey": 54i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 32.0d, "l_extendedprice": 30529.6d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-04-07", "l_commitdate": "1992-05-11", "l_receiptdate": "1992-04-09", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "carefully express depo" }, { "l_orderkey": 3271i32, "l_partkey": 54i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 18.0d, "l_extendedprice": 17172.9d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-05-01", "l_commitdate": "1992-03-28", "l_receiptdate": "1992-05-29", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": " packages eat around the furiously regul" }, { "l_orderkey": 1701i32, "l_partkey": 54i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 2.0d, "l_extendedprice": 1908.1d, "l_discount": 0.01d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-06-24", "l_commitdate": "1992-07-12", "l_receiptdate": "1992-06-29", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "ween the pending, final accounts. " }, { "l_orderkey": 1346i32, "l_partkey": 54i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 13.0d, "l_extendedprice": 12402.65d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-07-22", "l_commitdate": "1992-08-10", "l_receiptdate": "1992-08-06", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "arefully brave deposits into the slyly iro" }, { "l_orderkey": 5408i32, "l_partkey": 54i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 48.0d, "l_extendedprice": 45794.4d, "l_discount": 0.04d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-09-30", "l_commitdate": "1992-08-27", "l_receiptdate": "1992-10-27", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": ". furiously regular " }, { "l_orderkey": 1253i32, "l_partkey": 54i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 13.0d, "l_extendedprice": 12402.65d, "l_discount": 0.01d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-03-05", "l_commitdate": "1993-04-26", "l_receiptdate": "1993-03-08", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "al packages" }, { "l_orderkey": 772i32, "l_partkey": 54i32, "l_suppkey": 5i32, "l_linenumber": 5i32, "l_quantity": 42.0d, "l_extendedprice": 40070.1d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-06-09", "l_commitdate": "1993-07-16", "l_receiptdate": "1993-06-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": " express foxes abo" }, { "l_orderkey": 2535i32, "l_partkey": 54i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 5.0d, "l_extendedprice": 4770.25d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-07-28", "l_commitdate": "1993-08-14", "l_receiptdate": "1993-08-11", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": " across the express requests. silent, eve" }, { "l_orderkey": 4034i32, "l_partkey": 54i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 43.0d, "l_extendedprice": 41024.15d, "l_discount": 0.1d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-11-29", "l_commitdate": "1994-01-08", "l_receiptdate": "1993-12-10", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "posits wake carefully af" }, { "l_orderkey": 1350i32, "l_partkey": 54i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 21.0d, "l_extendedprice": 20035.05d, "l_discount": 0.04d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-12-17", "l_commitdate": "1993-10-17", "l_receiptdate": "1993-12-25", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "lyly above the evenly " }, { "l_orderkey": 5350i32, "l_partkey": 54i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 12.0d, "l_extendedprice": 11448.6d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-01-30", "l_commitdate": "1993-11-21", "l_receiptdate": "1994-02-15", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": " cajole. even instructions haggle. blithe" }, { "l_orderkey": 642i32, "l_partkey": 54i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 26.0d, "l_extendedprice": 24805.3d, "l_discount": 0.1d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-04-16", "l_commitdate": "1994-02-01", "l_receiptdate": "1994-04-27", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "quests according to the unu" }, { "l_orderkey": 833i32, "l_partkey": 54i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 1.0d, "l_extendedprice": 954.05d, "l_discount": 0.04d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-04-26", "l_commitdate": "1994-04-05", "l_receiptdate": "1994-04-29", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "ffily ironic theodolites" }, { "l_orderkey": 2150i32, "l_partkey": 54i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 39.0d, "l_extendedprice": 37207.95d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-07-31", "l_commitdate": "1994-08-17", "l_receiptdate": "1994-08-11", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "ess accounts nag. unusual asymptotes haggl" }, { "l_orderkey": 4645i32, "l_partkey": 54i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 25.0d, "l_extendedprice": 23851.25d, "l_discount": 0.03d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-10-25", "l_commitdate": "1994-12-11", "l_receiptdate": "1994-11-14", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "braids. ironic dependencies main" }, { "l_orderkey": 4321i32, "l_partkey": 54i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 45.0d, "l_extendedprice": 42932.25d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-11-13", "l_commitdate": "1994-09-15", "l_receiptdate": "1994-11-18", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": " haggle ironically bold theodolites. quick" }, { "l_orderkey": 2311i32, "l_partkey": 54i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 15.0d, "l_extendedprice": 14310.75d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-06-23", "l_commitdate": "1995-06-06", "l_receiptdate": "1995-07-09", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "ve the blithely pending accounts. furio" }, { "l_orderkey": 3749i32, "l_partkey": 54i32, "l_suppkey": 6i32, "l_linenumber": 6i32, "l_quantity": 10.0d, "l_extendedprice": 9540.5d, "l_discount": 0.1d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-06-24", "l_commitdate": "1995-05-24", "l_receiptdate": "1995-07-18", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "essly. regular pi" }, { "l_orderkey": 3111i32, "l_partkey": 54i32, "l_suppkey": 6i32, "l_linenumber": 5i32, "l_quantity": 14.0d, "l_extendedprice": 13356.7d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-17", "l_commitdate": "1995-10-19", "l_receiptdate": "1995-10-19", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "re. pinto " }, { "l_orderkey": 1988i32, "l_partkey": 54i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 8.0d, "l_extendedprice": 7632.4d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-20", "l_commitdate": "1995-11-11", "l_receiptdate": "1995-11-18", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "le quickly ac" }, { "l_orderkey": 5925i32, "l_partkey": 54i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 30.0d, "l_extendedprice": 28621.5d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-02-21", "l_commitdate": "1996-02-11", "l_receiptdate": "1996-03-10", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": " the packa" }, { "l_orderkey": 3046i32, "l_partkey": 54i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 46.0d, "l_extendedprice": 43886.3d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-22", "l_commitdate": "1996-02-28", "l_receiptdate": "1996-04-07", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "sits sleep furious" }, { "l_orderkey": 385i32, "l_partkey": 54i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 46.0d, "l_extendedprice": 43886.3d, "l_discount": 0.08d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-29", "l_commitdate": "1996-05-17", "l_receiptdate": "1996-04-18", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "lthily ironic f" }, { "l_orderkey": 5701i32, "l_partkey": 54i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 17.0d, "l_extendedprice": 16218.85d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-27", "l_commitdate": "1997-04-08", "l_receiptdate": "1997-04-21", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "tes. quickly final a" }, { "l_orderkey": 3968i32, "l_partkey": 54i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 27.0d, "l_extendedprice": 25759.35d, "l_discount": 0.04d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-25", "l_commitdate": "1997-04-17", "l_receiptdate": "1997-05-11", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "t silently." }, { "l_orderkey": 1473i32, "l_partkey": 54i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 50.0d, "l_extendedprice": 47702.5d, "l_discount": 0.04d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-05", "l_commitdate": "1997-05-20", "l_receiptdate": "1997-05-09", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "requests wake express deposits. special, ir" }, { "l_orderkey": 2533i32, "l_partkey": 54i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 36.0d, "l_extendedprice": 34345.8d, "l_discount": 0.06d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-10", "l_commitdate": "1997-04-28", "l_receiptdate": "1997-07-01", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "ss requests sleep neve" }, { "l_orderkey": 4865i32, "l_partkey": 54i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 33.0d, "l_extendedprice": 31483.65d, "l_discount": 0.0d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-17", "l_commitdate": "1997-08-16", "l_receiptdate": "1997-07-30", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "y pending notornis ab" }, { "l_orderkey": 803i32, "l_partkey": 54i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 8.0d, "l_extendedprice": 7632.4d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-04", "l_commitdate": "1997-06-19", "l_receiptdate": "1997-08-12", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "ronic theodo" }, { "l_orderkey": 3427i32, "l_partkey": 54i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 41.0d, "l_extendedprice": 39116.05d, "l_discount": 0.1d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-11", "l_commitdate": "1997-07-03", "l_receiptdate": "1997-10-04", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "s the carefully" }, { "l_orderkey": 100i32, "l_partkey": 54i32, "l_suppkey": 6i32, "l_linenumber": 5i32, "l_quantity": 37.0d, "l_extendedprice": 35299.85d, "l_discount": 0.05d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-06", "l_commitdate": "1998-04-16", "l_receiptdate": "1998-03-31", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "nd the quickly s" }, { "l_orderkey": 2784i32, "l_partkey": 54i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 23.0d, "l_extendedprice": 21943.15d, "l_discount": 0.03d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-28", "l_commitdate": "1998-02-07", "l_receiptdate": "1998-04-17", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "uests lose after " }, { "l_orderkey": 5412i32, "l_partkey": 54i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 2.0d, "l_extendedprice": 1908.1d, "l_discount": 0.03d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-14", "l_commitdate": "1998-04-02", "l_receiptdate": "1998-04-19", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": " sleep above the furiou" }, { "l_orderkey": 770i32, "l_partkey": 54i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 25.0d, "l_extendedprice": 23851.25d, "l_discount": 0.03d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-26", "l_commitdate": "1998-07-23", "l_receiptdate": "1998-06-04", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": " deposits dazzle fluffily alongside of " } ] }
-{ "partkey": 61i32, "lines": [ { "l_orderkey": 2020i32, "l_partkey": 61i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 27.0d, "l_extendedprice": 25948.62d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-07-14", "l_commitdate": "1993-09-02", "l_receiptdate": "1993-08-03", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "e of the bold foxes haggle " }, { "l_orderkey": 5318i32, "l_partkey": 61i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 13.0d, "l_extendedprice": 12493.78d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-07-15", "l_commitdate": "1993-06-25", "l_receiptdate": "1993-08-13", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "ly silent ideas. ideas haggle among the " }, { "l_orderkey": 261i32, "l_partkey": 61i32, "l_suppkey": 6i32, "l_linenumber": 5i32, "l_quantity": 49.0d, "l_extendedprice": 47091.94d, "l_discount": 0.01d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-09-29", "l_commitdate": "1993-09-08", "l_receiptdate": "1993-10-01", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": " pinto beans haggle slyly furiously pending" }, { "l_orderkey": 999i32, "l_partkey": 61i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 34.0d, "l_extendedprice": 32676.04d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-10-30", "l_commitdate": "1993-10-17", "l_receiptdate": "1993-10-31", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "its. daringly final instruc" }, { "l_orderkey": 3463i32, "l_partkey": 61i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 45.0d, "l_extendedprice": 43247.7d, "l_discount": 0.02d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-10-30", "l_commitdate": "1993-11-04", "l_receiptdate": "1993-11-08", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "nts are slyly " }, { "l_orderkey": 33i32, "l_partkey": 61i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 32.0d, "l_extendedprice": 30753.92d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-12-09", "l_commitdate": "1994-01-04", "l_receiptdate": "1993-12-28", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "gular theodolites" }, { "l_orderkey": 2374i32, "l_partkey": 61i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 2.0d, "l_extendedprice": 1922.12d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-12-30", "l_commitdate": "1994-01-24", "l_receiptdate": "1994-01-02", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": ", unusual ideas. deposits cajole quietl" }, { "l_orderkey": 291i32, "l_partkey": 61i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 30.0d, "l_extendedprice": 28831.8d, "l_discount": 0.1d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-03-22", "l_commitdate": "1994-04-30", "l_receiptdate": "1994-03-24", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": " fluffily regular deposits. quickl" }, { "l_orderkey": 2370i32, "l_partkey": 61i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 32.0d, "l_extendedprice": 30753.92d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-04-24", "l_commitdate": "1994-03-03", "l_receiptdate": "1994-05-15", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "ies since the final deposits" }, { "l_orderkey": 5376i32, "l_partkey": 61i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 42.0d, "l_extendedprice": 40364.52d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-09-20", "l_commitdate": "1994-08-30", "l_receiptdate": "1994-09-29", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "y even asymptotes. courts are unusual pa" }, { "l_orderkey": 295i32, "l_partkey": 61i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 26.0d, "l_extendedprice": 24987.56d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-01-12", "l_commitdate": "1994-11-22", "l_receiptdate": "1995-01-22", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": " carefully iron" }, { "l_orderkey": 5312i32, "l_partkey": 61i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 27.0d, "l_extendedprice": 25948.62d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-04-20", "l_commitdate": "1995-04-09", "l_receiptdate": "1995-04-25", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "tructions cajol" }, { "l_orderkey": 4672i32, "l_partkey": 61i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 41.0d, "l_extendedprice": 39403.46d, "l_discount": 0.0d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-01", "l_commitdate": "1995-12-15", "l_receiptdate": "1995-12-12", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": " slyly quie" }, { "l_orderkey": 262i32, "l_partkey": 61i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 33.0d, "l_extendedprice": 31714.98d, "l_discount": 0.09d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-10", "l_commitdate": "1996-01-31", "l_receiptdate": "1996-03-27", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "atelets sleep furiously. requests cajole. b" }, { "l_orderkey": 2595i32, "l_partkey": 61i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 42.0d, "l_extendedprice": 40364.52d, "l_discount": 0.08d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-24", "l_commitdate": "1996-01-28", "l_receiptdate": "1996-04-10", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "ggle furiou" }, { "l_orderkey": 3974i32, "l_partkey": 61i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 17.0d, "l_extendedprice": 16338.02d, "l_discount": 0.05d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-04-05", "l_commitdate": "1996-05-21", "l_receiptdate": "1996-04-28", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "ions eat slyly after the blithely " }, { "l_orderkey": 1380i32, "l_partkey": 61i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 33.0d, "l_extendedprice": 31714.98d, "l_discount": 0.04d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-23", "l_commitdate": "1996-10-01", "l_receiptdate": "1996-09-18", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "e ironic, even excuses haggle " }, { "l_orderkey": 1319i32, "l_partkey": 61i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 21.0d, "l_extendedprice": 20182.26d, "l_discount": 0.03d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-05", "l_commitdate": "1996-12-02", "l_receiptdate": "1996-10-28", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "s: carefully express " }, { "l_orderkey": 1763i32, "l_partkey": 61i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 44.0d, "l_extendedprice": 42286.64d, "l_discount": 0.04d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-04", "l_commitdate": "1997-01-06", "l_receiptdate": "1996-12-25", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": " instructions need to integrate deposits. " }, { "l_orderkey": 3968i32, "l_partkey": 61i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 7.0d, "l_extendedprice": 6727.42d, "l_discount": 0.07d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-30", "l_commitdate": "1997-05-01", "l_receiptdate": "1997-04-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "efully bold instructions. express" }, { "l_orderkey": 3682i32, "l_partkey": 61i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 6.0d, "l_extendedprice": 5766.36d, "l_discount": 0.07d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-06", "l_commitdate": "1997-04-04", "l_receiptdate": "1997-05-11", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "ronic deposits wake slyly. ca" }, { "l_orderkey": 2950i32, "l_partkey": 61i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 46.0d, "l_extendedprice": 44208.76d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-15", "l_commitdate": "1997-09-30", "l_receiptdate": "1997-07-25", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "to the regular accounts are slyly carefu" }, { "l_orderkey": 2117i32, "l_partkey": 61i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 19.0d, "l_extendedprice": 18260.14d, "l_discount": 0.04d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-30", "l_commitdate": "1997-06-18", "l_receiptdate": "1997-08-13", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "s between the slyly regula" }, { "l_orderkey": 1093i32, "l_partkey": 61i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 34.0d, "l_extendedprice": 32676.04d, "l_discount": 0.01d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-11-07", "l_commitdate": "1997-09-06", "l_receiptdate": "1997-11-28", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "sits. express accounts play carefully. bol" }, { "l_orderkey": 5797i32, "l_partkey": 61i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 17.0d, "l_extendedprice": 16338.02d, "l_discount": 0.09d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-13", "l_commitdate": "1998-01-12", "l_receiptdate": "1997-12-23", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "the ironic, even theodoli" }, { "l_orderkey": 3846i32, "l_partkey": 61i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 15.0d, "l_extendedprice": 14415.9d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-02-17", "l_commitdate": "1998-04-27", "l_receiptdate": "1998-02-21", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "uternes. carefully even" }, { "l_orderkey": 5442i32, "l_partkey": 61i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 12.0d, "l_extendedprice": 11532.72d, "l_discount": 0.01d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-15", "l_commitdate": "1998-03-18", "l_receiptdate": "1998-05-05", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "fully final" }, { "l_orderkey": 4167i32, "l_partkey": 61i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 47.0d, "l_extendedprice": 45169.82d, "l_discount": 0.04d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-02", "l_commitdate": "1998-08-24", "l_receiptdate": "1998-08-28", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": " carefully final asymptotes. slyly bo" }, { "l_orderkey": 899i32, "l_partkey": 61i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 18.0d, "l_extendedprice": 17299.08d, "l_discount": 0.04d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-06", "l_commitdate": "1998-05-09", "l_receiptdate": "1998-09-05", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "re daring, pending deposits. blit" } ] }
-{ "partkey": 74i32, "lines": [ { "l_orderkey": 4162i32, "l_partkey": 74i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 45.0d, "l_extendedprice": 43833.15d, "l_discount": 0.1d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-03-21", "l_commitdate": "1992-05-02", "l_receiptdate": "1992-03-29", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "elets. slyly regular i" }, { "l_orderkey": 801i32, "l_partkey": 74i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 45.0d, "l_extendedprice": 43833.15d, "l_discount": 0.01d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-03-22", "l_commitdate": "1992-03-22", "l_receiptdate": "1992-03-25", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": " even asymptotes" }, { "l_orderkey": 929i32, "l_partkey": 74i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 14.0d, "l_extendedprice": 13636.98d, "l_discount": 0.06d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-10-21", "l_commitdate": "1992-11-17", "l_receiptdate": "1992-11-15", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "gainst the" }, { "l_orderkey": 4578i32, "l_partkey": 74i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 10.0d, "l_extendedprice": 9740.7d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-01-01", "l_commitdate": "1992-11-19", "l_receiptdate": "1993-01-28", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "uests. blithely unus" }, { "l_orderkey": 4288i32, "l_partkey": 74i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 32.0d, "l_extendedprice": 31170.24d, "l_discount": 0.1d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-03-19", "l_commitdate": "1993-01-26", "l_receiptdate": "1993-04-18", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "e blithely even instructions. speci" }, { "l_orderkey": 2245i32, "l_partkey": 74i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 28.0d, "l_extendedprice": 27273.96d, "l_discount": 0.05d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-08-19", "l_commitdate": "1993-07-27", "l_receiptdate": "1993-09-04", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "e requests sleep furiou" }, { "l_orderkey": 4004i32, "l_partkey": 74i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 46.0d, "l_extendedprice": 44807.22d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-09-04", "l_commitdate": "1993-07-13", "l_receiptdate": "1993-09-28", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "ncies. slyly pending dolphins sleep furio" }, { "l_orderkey": 1888i32, "l_partkey": 74i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 38.0d, "l_extendedprice": 37014.66d, "l_discount": 0.03d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-11-29", "l_commitdate": "1994-01-16", "l_receiptdate": "1993-12-08", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "dazzle carefull" }, { "l_orderkey": 5093i32, "l_partkey": 74i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 15.0d, "l_extendedprice": 14611.05d, "l_discount": 0.01d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-12-02", "l_commitdate": "1993-11-18", "l_receiptdate": "1994-01-01", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "ly among the unusual foxe" }, { "l_orderkey": 2374i32, "l_partkey": 74i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 28.0d, "l_extendedprice": 27273.96d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-02-19", "l_commitdate": "1993-12-16", "l_receiptdate": "1994-03-15", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "ets cajole fu" }, { "l_orderkey": 2528i32, "l_partkey": 74i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 13.0d, "l_extendedprice": 12662.91d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-11-27", "l_commitdate": "1995-01-20", "l_receiptdate": "1994-12-03", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "ggle furiously. slyly final asympt" }, { "l_orderkey": 65i32, "l_partkey": 74i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 22.0d, "l_extendedprice": 21429.54d, "l_discount": 0.0d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-17", "l_commitdate": "1995-06-04", "l_receiptdate": "1995-07-19", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": " ideas. special, r" }, { "l_orderkey": 2208i32, "l_partkey": 74i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 41.0d, "l_extendedprice": 39936.87d, "l_discount": 0.08d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-18", "l_commitdate": "1995-06-19", "l_receiptdate": "1995-09-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "nd the furious, express dependencies." }, { "l_orderkey": 4775i32, "l_partkey": 74i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 1.0d, "l_extendedprice": 974.07d, "l_discount": 0.1d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-06", "l_commitdate": "1995-09-28", "l_receiptdate": "1995-09-29", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "furiously ironic theodolite" }, { "l_orderkey": 3460i32, "l_partkey": 74i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 3.0d, "l_extendedprice": 2922.21d, "l_discount": 0.06d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-19", "l_commitdate": "1995-12-28", "l_receiptdate": "1996-01-31", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "er quickly " }, { "l_orderkey": 3046i32, "l_partkey": 74i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 44.0d, "l_extendedprice": 42859.08d, "l_discount": 0.03d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-03", "l_commitdate": "1996-02-25", "l_receiptdate": "1996-04-01", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": " are quickly. blithe" }, { "l_orderkey": 4100i32, "l_partkey": 74i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 4.0d, "l_extendedprice": 3896.28d, "l_discount": 0.03d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-20", "l_commitdate": "1996-04-29", "l_receiptdate": "1996-06-21", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "lyly regular, bold requ" }, { "l_orderkey": 4097i32, "l_partkey": 74i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 46.0d, "l_extendedprice": 44807.22d, "l_discount": 0.1d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-29", "l_commitdate": "1996-08-19", "l_receiptdate": "1996-08-25", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": " even depend" }, { "l_orderkey": 3587i32, "l_partkey": 74i32, "l_suppkey": 2i32, "l_linenumber": 7i32, "l_quantity": 23.0d, "l_extendedprice": 22403.61d, "l_discount": 0.07d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-30", "l_commitdate": "1996-07-01", "l_receiptdate": "1996-09-10", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "l multipliers sleep theodolites-- slyly " }, { "l_orderkey": 4097i32, "l_partkey": 74i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 50.0d, "l_extendedprice": 48703.5d, "l_discount": 0.04d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-31", "l_commitdate": "1996-08-14", "l_receiptdate": "1996-09-27", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "egular deposits. blithely pending" }, { "l_orderkey": 4262i32, "l_partkey": 74i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 45.0d, "l_extendedprice": 43833.15d, "l_discount": 0.02d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-09", "l_commitdate": "1996-09-09", "l_receiptdate": "1996-11-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "ackages boost. pending, even instruction" }, { "l_orderkey": 1156i32, "l_partkey": 74i32, "l_suppkey": 4i32, "l_linenumber": 5i32, "l_quantity": 49.0d, "l_extendedprice": 47729.43d, "l_discount": 0.04d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-16", "l_commitdate": "1996-12-02", "l_receiptdate": "1996-12-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "ithely unusual in" }, { "l_orderkey": 5831i32, "l_partkey": 74i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 33.0d, "l_extendedprice": 32144.31d, "l_discount": 0.04d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-20", "l_commitdate": "1997-01-18", "l_receiptdate": "1996-12-18", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": " instructions wake. slyly sil" }, { "l_orderkey": 5606i32, "l_partkey": 74i32, "l_suppkey": 5i32, "l_linenumber": 7i32, "l_quantity": 46.0d, "l_extendedprice": 44807.22d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-01", "l_commitdate": "1997-01-31", "l_receiptdate": "1997-02-15", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "ow requests wake around the regular accoun" }, { "l_orderkey": 5412i32, "l_partkey": 74i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 31.0d, "l_extendedprice": 30196.17d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-23", "l_commitdate": "1998-04-17", "l_receiptdate": "1998-04-10", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "t the accounts detect slyly about the c" } ] }
-{ "partkey": 78i32, "lines": [ { "l_orderkey": 2210i32, "l_partkey": 78i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 36.0d, "l_extendedprice": 35210.52d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-03-04", "l_commitdate": "1992-03-24", "l_receiptdate": "1992-03-21", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": " requests wake enticingly final" }, { "l_orderkey": 2022i32, "l_partkey": 78i32, "l_suppkey": 9i32, "l_linenumber": 7i32, "l_quantity": 13.0d, "l_extendedprice": 12714.91d, "l_discount": 0.06d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-04-04", "l_commitdate": "1992-05-30", "l_receiptdate": "1992-04-21", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": " orbits haggle fluffily fl" }, { "l_orderkey": 1764i32, "l_partkey": 78i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 27.0d, "l_extendedprice": 26407.89d, "l_discount": 0.07d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-05-06", "l_commitdate": "1992-05-11", "l_receiptdate": "1992-05-23", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "ly final foxes wake blithely even requests" }, { "l_orderkey": 2240i32, "l_partkey": 78i32, "l_suppkey": 7i32, "l_linenumber": 7i32, "l_quantity": 24.0d, "l_extendedprice": 23473.68d, "l_discount": 0.04d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-05-13", "l_commitdate": "1992-04-09", "l_receiptdate": "1992-05-14", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "ng the silent accounts. slyly ironic t" }, { "l_orderkey": 2145i32, "l_partkey": 78i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 13.0d, "l_extendedprice": 12714.91d, "l_discount": 0.04d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-11-12", "l_commitdate": "1992-12-13", "l_receiptdate": "1992-12-07", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "alongside of the slyly final" }, { "l_orderkey": 5126i32, "l_partkey": 78i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 23.0d, "l_extendedprice": 22495.61d, "l_discount": 0.08d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-01-02", "l_commitdate": "1993-01-02", "l_receiptdate": "1993-01-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "egular, blithe packages." }, { "l_orderkey": 129i32, "l_partkey": 78i32, "l_suppkey": 6i32, "l_linenumber": 6i32, "l_quantity": 22.0d, "l_extendedprice": 21517.54d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-02-15", "l_commitdate": "1993-01-31", "l_receiptdate": "1993-02-24", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "e. fluffily regular " }, { "l_orderkey": 5088i32, "l_partkey": 78i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 23.0d, "l_extendedprice": 22495.61d, "l_discount": 0.06d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-03-03", "l_commitdate": "1993-03-07", "l_receiptdate": "1993-03-08", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "cording to the fluffily expr" }, { "l_orderkey": 1187i32, "l_partkey": 78i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 40.0d, "l_extendedprice": 39122.8d, "l_discount": 0.08d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-03-05", "l_commitdate": "1992-12-31", "l_receiptdate": "1993-03-12", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "ar, brave deposits nag blithe" }, { "l_orderkey": 3078i32, "l_partkey": 78i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 21.0d, "l_extendedprice": 20539.47d, "l_discount": 0.09d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-03-20", "l_commitdate": "1993-03-21", "l_receiptdate": "1993-04-01", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "e fluffily. " }, { "l_orderkey": 4359i32, "l_partkey": 78i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 1.0d, "l_extendedprice": 978.07d, "l_discount": 0.05d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-04-27", "l_commitdate": "1993-05-09", "l_receiptdate": "1993-05-08", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": " fluffily ironic, bold pac" }, { "l_orderkey": 97i32, "l_partkey": 78i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 19.0d, "l_extendedprice": 18583.33d, "l_discount": 0.06d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-05-14", "l_commitdate": "1993-03-05", "l_receiptdate": "1993-05-25", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "gifts. furiously ironic packages cajole. " }, { "l_orderkey": 5538i32, "l_partkey": 78i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 9.0d, "l_extendedprice": 8802.63d, "l_discount": 0.0d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-12-26", "l_commitdate": "1994-01-31", "l_receiptdate": "1994-01-03", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "encies across the blithely fina" }, { "l_orderkey": 353i32, "l_partkey": 78i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 46.0d, "l_extendedprice": 44991.22d, "l_discount": 0.0d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-04-14", "l_commitdate": "1994-01-31", "l_receiptdate": "1994-05-05", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": " ironic dolphins " }, { "l_orderkey": 1665i32, "l_partkey": 78i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 1.0d, "l_extendedprice": 978.07d, "l_discount": 0.03d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-05-22", "l_commitdate": "1994-07-06", "l_receiptdate": "1994-05-24", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "sly final p" }, { "l_orderkey": 4514i32, "l_partkey": 78i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 10.0d, "l_extendedprice": 9780.7d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-06-19", "l_commitdate": "1994-06-25", "l_receiptdate": "1994-07-01", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "ake furiously. carefully regular requests" }, { "l_orderkey": 2150i32, "l_partkey": 78i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 26.0d, "l_extendedprice": 25429.82d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-06-21", "l_commitdate": "1994-08-05", "l_receiptdate": "1994-06-23", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": ". always unusual packages" }, { "l_orderkey": 1281i32, "l_partkey": 78i32, "l_suppkey": 6i32, "l_linenumber": 7i32, "l_quantity": 43.0d, "l_extendedprice": 42057.01d, "l_discount": 0.1d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-01-28", "l_commitdate": "1995-02-08", "l_receiptdate": "1995-02-10", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "final accounts. final packages slee" }, { "l_orderkey": 771i32, "l_partkey": 78i32, "l_suppkey": 6i32, "l_linenumber": 5i32, "l_quantity": 13.0d, "l_extendedprice": 12714.91d, "l_discount": 0.09d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-10", "l_commitdate": "1995-08-21", "l_receiptdate": "1995-08-30", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "packages affix slyly about the quickly " }, { "l_orderkey": 2882i32, "l_partkey": 78i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 27.0d, "l_extendedprice": 26407.89d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-04", "l_commitdate": "1995-11-11", "l_receiptdate": "1995-09-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "rding to the regu" }, { "l_orderkey": 2532i32, "l_partkey": 78i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 50.0d, "l_extendedprice": 48903.5d, "l_discount": 0.02d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-13", "l_commitdate": "1996-01-01", "l_receiptdate": "1995-11-26", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "yly after the fluffily regul" }, { "l_orderkey": 2657i32, "l_partkey": 78i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 42.0d, "l_extendedprice": 41078.94d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-23", "l_commitdate": "1995-11-22", "l_receiptdate": "1996-01-25", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "ckly slyly even accounts. platelets x-ray" }, { "l_orderkey": 1380i32, "l_partkey": 78i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 15.0d, "l_extendedprice": 14671.05d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-14", "l_commitdate": "1996-08-12", "l_receiptdate": "1996-08-03", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "riously ironic foxes aff" }, { "l_orderkey": 4704i32, "l_partkey": 78i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 14.0d, "l_extendedprice": 13692.98d, "l_discount": 0.04d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-27", "l_commitdate": "1996-11-02", "l_receiptdate": "1996-11-07", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": " above the slyly final requests. quickly " }, { "l_orderkey": 2918i32, "l_partkey": 78i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 24.0d, "l_extendedprice": 23473.68d, "l_discount": 0.1d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-20", "l_commitdate": "1996-10-28", "l_receiptdate": "1996-12-26", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": " quickly. express requests haggle careful" }, { "l_orderkey": 676i32, "l_partkey": 78i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 20.0d, "l_extendedprice": 19561.4d, "l_discount": 0.07d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-02", "l_commitdate": "1997-02-01", "l_receiptdate": "1997-02-11", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "riously around the blithely " }, { "l_orderkey": 5829i32, "l_partkey": 78i32, "l_suppkey": 9i32, "l_linenumber": 7i32, "l_quantity": 27.0d, "l_extendedprice": 26407.89d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-25", "l_commitdate": "1997-03-31", "l_receiptdate": "1997-03-03", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "ns about the excuses are c" }, { "l_orderkey": 2178i32, "l_partkey": 78i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 3.0d, "l_extendedprice": 2934.21d, "l_discount": 0.07d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-07", "l_commitdate": "1997-01-23", "l_receiptdate": "1997-04-18", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": " permanentl" }, { "l_orderkey": 5895i32, "l_partkey": 78i32, "l_suppkey": 7i32, "l_linenumber": 6i32, "l_quantity": 15.0d, "l_extendedprice": 14671.05d, "l_discount": 0.08d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-19", "l_commitdate": "1997-03-09", "l_receiptdate": "1997-05-13", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "silent package" }, { "l_orderkey": 3719i32, "l_partkey": 78i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 19.0d, "l_extendedprice": 18583.33d, "l_discount": 0.06d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-22", "l_commitdate": "1997-03-20", "l_receiptdate": "1997-06-12", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "he regular ideas integrate acros" }, { "l_orderkey": 5025i32, "l_partkey": 78i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 10.0d, "l_extendedprice": 9780.7d, "l_discount": 0.07d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-04", "l_commitdate": "1997-04-29", "l_receiptdate": "1997-06-28", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "lly silent deposits boost busily again" }, { "l_orderkey": 3077i32, "l_partkey": 78i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 13.0d, "l_extendedprice": 12714.91d, "l_discount": 0.03d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-09", "l_commitdate": "1997-10-15", "l_receiptdate": "1997-09-19", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "luffily close depende" }, { "l_orderkey": 1251i32, "l_partkey": 78i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 36.0d, "l_extendedprice": 35210.52d, "l_discount": 0.07d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-11-29", "l_commitdate": "1998-01-07", "l_receiptdate": "1997-12-03", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "y ironic Tiresias are slyly furio" }, { "l_orderkey": 5091i32, "l_partkey": 78i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 50.0d, "l_extendedprice": 48903.5d, "l_discount": 0.05d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-21", "l_commitdate": "1998-06-22", "l_receiptdate": "1998-07-26", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "al dependencies. r" }, { "l_orderkey": 5604i32, "l_partkey": 78i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 10.0d, "l_extendedprice": 9780.7d, "l_discount": 0.07d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-03", "l_commitdate": "1998-06-23", "l_receiptdate": "1998-08-04", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "ly final realms wake blit" } ] }
-{ "partkey": 80i32, "lines": [ { "l_orderkey": 644i32, "l_partkey": 80i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 7.0d, "l_extendedprice": 6860.56d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-05-18", "l_commitdate": "1992-07-01", "l_receiptdate": "1992-06-07", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": " regular requests are blithely. slyly" }, { "l_orderkey": 2500i32, "l_partkey": 80i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 41.0d, "l_extendedprice": 40183.28d, "l_discount": 0.02d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-09-02", "l_commitdate": "1992-11-11", "l_receiptdate": "1992-09-06", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "s could have to integrate after the " }, { "l_orderkey": 3877i32, "l_partkey": 80i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 44.0d, "l_extendedprice": 43123.52d, "l_discount": 0.09d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-06-07", "l_commitdate": "1993-07-15", "l_receiptdate": "1993-07-06", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "elets. quickly regular accounts caj" }, { "l_orderkey": 2245i32, "l_partkey": 80i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 33.0d, "l_extendedprice": 32342.64d, "l_discount": 0.03d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-06-16", "l_commitdate": "1993-06-05", "l_receiptdate": "1993-07-07", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": " across the express reques" }, { "l_orderkey": 5543i32, "l_partkey": 80i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 32.0d, "l_extendedprice": 31362.56d, "l_discount": 0.03d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-10-04", "l_commitdate": "1993-11-14", "l_receiptdate": "1993-11-03", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "ully around the " }, { "l_orderkey": 5346i32, "l_partkey": 80i32, "l_suppkey": 9i32, "l_linenumber": 7i32, "l_quantity": 41.0d, "l_extendedprice": 40183.28d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-01-10", "l_commitdate": "1994-02-15", "l_receiptdate": "1994-01-26", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "fully close instructi" }, { "l_orderkey": 807i32, "l_partkey": 80i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 10.0d, "l_extendedprice": 9800.8d, "l_discount": 0.09d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-01-19", "l_commitdate": "1994-02-12", "l_receiptdate": "1994-01-28", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "furiously final depths sleep a" }, { "l_orderkey": 1888i32, "l_partkey": 80i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 49.0d, "l_extendedprice": 48023.92d, "l_discount": 0.07d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-02-27", "l_commitdate": "1994-01-14", "l_receiptdate": "1994-03-28", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "lar accounts haggle carefu" }, { "l_orderkey": 962i32, "l_partkey": 80i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 3.0d, "l_extendedprice": 2940.24d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-05-08", "l_commitdate": "1994-07-06", "l_receiptdate": "1994-06-02", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "ag furiously. even pa" }, { "l_orderkey": 2756i32, "l_partkey": 80i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 47.0d, "l_extendedprice": 46063.76d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-05-10", "l_commitdate": "1994-05-25", "l_receiptdate": "1994-05-13", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "e final, f" }, { "l_orderkey": 3136i32, "l_partkey": 80i32, "l_suppkey": 1i32, "l_linenumber": 6i32, "l_quantity": 29.0d, "l_extendedprice": 28422.32d, "l_discount": 0.08d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-11-16", "l_commitdate": "1994-10-03", "l_receiptdate": "1994-12-14", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "latelets. final " }, { "l_orderkey": 3750i32, "l_partkey": 80i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 20.0d, "l_extendedprice": 19601.6d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "F", "l_shipdate": "1995-06-17", "l_commitdate": "1995-06-06", "l_receiptdate": "1995-06-28", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "ss, ironic requests! fur" }, { "l_orderkey": 483i32, "l_partkey": 80i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 23.0d, "l_extendedprice": 22541.84d, "l_discount": 0.04d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-20", "l_commitdate": "1995-08-11", "l_receiptdate": "1995-08-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "requests was quickly against th" }, { "l_orderkey": 4422i32, "l_partkey": 80i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 20.0d, "l_extendedprice": 19601.6d, "l_discount": 0.07d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-17", "l_commitdate": "1995-07-16", "l_receiptdate": "1995-09-13", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "ructions wake slyly al" }, { "l_orderkey": 5217i32, "l_partkey": 80i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 50.0d, "l_extendedprice": 49004.0d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-26", "l_commitdate": "1995-11-21", "l_receiptdate": "1996-01-24", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "s. express, express accounts c" }, { "l_orderkey": 7i32, "l_partkey": 80i32, "l_suppkey": 10i32, "l_linenumber": 6i32, "l_quantity": 35.0d, "l_extendedprice": 34302.8d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-16", "l_commitdate": "1996-02-23", "l_receiptdate": "1996-01-22", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "jole. excuses wake carefully alongside of " }, { "l_orderkey": 4295i32, "l_partkey": 80i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 30.0d, "l_extendedprice": 29402.4d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-22", "l_commitdate": "1996-04-23", "l_receiptdate": "1996-04-20", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "yly ironic frets. pending foxes after " }, { "l_orderkey": 1827i32, "l_partkey": 80i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 24.0d, "l_extendedprice": 23521.92d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-07", "l_commitdate": "1996-09-01", "l_receiptdate": "1996-09-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "al gifts! re" }, { "l_orderkey": 4994i32, "l_partkey": 80i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 47.0d, "l_extendedprice": 46063.76d, "l_discount": 0.04d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-20", "l_commitdate": "1996-08-04", "l_receiptdate": "1996-10-15", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "sts. blithely close ideas sleep quic" }, { "l_orderkey": 1121i32, "l_partkey": 80i32, "l_suppkey": 8i32, "l_linenumber": 7i32, "l_quantity": 37.0d, "l_extendedprice": 36262.96d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-27", "l_commitdate": "1997-03-04", "l_receiptdate": "1997-03-02", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "special packages. fluffily final requests s" }, { "l_orderkey": 3623i32, "l_partkey": 80i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 32.0d, "l_extendedprice": 31362.56d, "l_discount": 0.05d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-18", "l_commitdate": "1997-03-15", "l_receiptdate": "1997-05-09", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": " courts. furiously regular ideas b" }, { "l_orderkey": 3652i32, "l_partkey": 80i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 1.0d, "l_extendedprice": 980.08d, "l_discount": 0.01d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-20", "l_commitdate": "1997-05-03", "l_receiptdate": "1997-05-18", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": " bold dependencies sublate. r" }, { "l_orderkey": 5090i32, "l_partkey": 80i32, "l_suppkey": 9i32, "l_linenumber": 6i32, "l_quantity": 30.0d, "l_extendedprice": 29402.4d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-04", "l_commitdate": "1997-04-14", "l_receiptdate": "1997-05-30", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "osits nag slyly. fluffily ex" }, { "l_orderkey": 4868i32, "l_partkey": 80i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 34.0d, "l_extendedprice": 33322.72d, "l_discount": 0.04d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-19", "l_commitdate": "1997-04-27", "l_receiptdate": "1997-06-15", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "en instructions about th" }, { "l_orderkey": 864i32, "l_partkey": 80i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 34.0d, "l_extendedprice": 33322.72d, "l_discount": 0.03d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-14", "l_commitdate": "1997-11-04", "l_receiptdate": "1997-09-21", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "to the furiously ironic platelets! " }, { "l_orderkey": 5477i32, "l_partkey": 80i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 20.0d, "l_extendedprice": 19601.6d, "l_discount": 0.03d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-21", "l_commitdate": "1998-02-09", "l_receiptdate": "1998-04-07", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "platelets about the ironic" }, { "l_orderkey": 5030i32, "l_partkey": 80i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 50.0d, "l_extendedprice": 49004.0d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-22", "l_commitdate": "1998-07-25", "l_receiptdate": "1998-09-18", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "ss excuses serve bli" }, { "l_orderkey": 5184i32, "l_partkey": 80i32, "l_suppkey": 9i32, "l_linenumber": 6i32, "l_quantity": 49.0d, "l_extendedprice": 48023.92d, "l_discount": 0.02d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-09-18", "l_commitdate": "1998-08-28", "l_receiptdate": "1998-10-14", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "thlessly closely even reque" }, { "l_orderkey": 736i32, "l_partkey": 80i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 23.0d, "l_extendedprice": 22541.84d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-10-08", "l_commitdate": "1998-08-27", "l_receiptdate": "1998-10-19", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "k accounts are carefully" } ] }
-{ "partkey": 82i32, "lines": [ { "l_orderkey": 4867i32, "l_partkey": 82i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 7.0d, "l_extendedprice": 6874.56d, "l_discount": 0.09d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-07-17", "l_commitdate": "1992-08-17", "l_receiptdate": "1992-07-22", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "e carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie careful" }, { "l_orderkey": 1504i32, "l_partkey": 82i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 42.0d, "l_extendedprice": 41247.36d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-10-18", "l_commitdate": "1992-10-14", "l_receiptdate": "1992-11-10", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "ep. carefully ironic excuses haggle quickl" }, { "l_orderkey": 4261i32, "l_partkey": 82i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 4.0d, "l_extendedprice": 3928.32d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-12-11", "l_commitdate": "1992-12-18", "l_receiptdate": "1992-12-24", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "ackages unwind furiously fluff" }, { "l_orderkey": 481i32, "l_partkey": 82i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 11.0d, "l_extendedprice": 10802.88d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-01-12", "l_commitdate": "1992-11-17", "l_receiptdate": "1993-02-05", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "eful attai" }, { "l_orderkey": 4611i32, "l_partkey": 82i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 50.0d, "l_extendedprice": 49104.0d, "l_discount": 0.08d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-01-22", "l_commitdate": "1993-03-30", "l_receiptdate": "1993-02-16", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "l platelets. " }, { "l_orderkey": 931i32, "l_partkey": 82i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 38.0d, "l_extendedprice": 37319.04d, "l_discount": 0.08d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-03-06", "l_commitdate": "1993-02-24", "l_receiptdate": "1993-03-27", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "usly final packages integrate carefully" }, { "l_orderkey": 2241i32, "l_partkey": 82i32, "l_suppkey": 3i32, "l_linenumber": 5i32, "l_quantity": 2.0d, "l_extendedprice": 1964.16d, "l_discount": 0.04d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-08-16", "l_commitdate": "1993-08-02", "l_receiptdate": "1993-08-24", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": ", express deposits. pear" }, { "l_orderkey": 2976i32, "l_partkey": 82i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 22.0d, "l_extendedprice": 21605.76d, "l_discount": 0.0d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-02-08", "l_commitdate": "1994-03-03", "l_receiptdate": "1994-02-12", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "ncies kindle furiously. carefull" }, { "l_orderkey": 5317i32, "l_partkey": 82i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 29.0d, "l_extendedprice": 28480.32d, "l_discount": 0.02d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-11-28", "l_commitdate": "1994-11-27", "l_receiptdate": "1994-12-16", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "oss the carefull" }, { "l_orderkey": 1444i32, "l_partkey": 82i32, "l_suppkey": 3i32, "l_linenumber": 7i32, "l_quantity": 12.0d, "l_extendedprice": 11784.96d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-12-23", "l_commitdate": "1995-01-15", "l_receiptdate": "1995-01-13", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "ly among the bol" }, { "l_orderkey": 1830i32, "l_partkey": 82i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 36.0d, "l_extendedprice": 35354.88d, "l_discount": 0.07d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-04-21", "l_commitdate": "1995-04-14", "l_receiptdate": "1995-05-10", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": " slowly unusual orbits. carefull" }, { "l_orderkey": 771i32, "l_partkey": 82i32, "l_suppkey": 3i32, "l_linenumber": 6i32, "l_quantity": 23.0d, "l_extendedprice": 22587.84d, "l_discount": 0.08d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-06-19", "l_commitdate": "1995-09-07", "l_receiptdate": "1995-07-09", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "cajole besides the quickly ironic pin" }, { "l_orderkey": 4933i32, "l_partkey": 82i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 2.0d, "l_extendedprice": 1964.16d, "l_discount": 0.09d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-01", "l_commitdate": "1995-09-29", "l_receiptdate": "1995-10-19", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "ctions nag final instructions. accou" }, { "l_orderkey": 4324i32, "l_partkey": 82i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 14.0d, "l_extendedprice": 13749.12d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-12", "l_commitdate": "1995-08-26", "l_receiptdate": "1995-11-21", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": " packages nag express excuses. qui" }, { "l_orderkey": 4387i32, "l_partkey": 82i32, "l_suppkey": 3i32, "l_linenumber": 5i32, "l_quantity": 3.0d, "l_extendedprice": 2946.24d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-17", "l_commitdate": "1995-12-28", "l_receiptdate": "1995-11-25", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": " pinto beans " }, { "l_orderkey": 2723i32, "l_partkey": 82i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 12.0d, "l_extendedprice": 11784.96d, "l_discount": 0.01d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-24", "l_commitdate": "1995-11-15", "l_receiptdate": "1996-01-17", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "bold foxes are bold packages. regular, fin" }, { "l_orderkey": 2595i32, "l_partkey": 82i32, "l_suppkey": 3i32, "l_linenumber": 6i32, "l_quantity": 31.0d, "l_extendedprice": 30444.48d, "l_discount": 0.06d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-02-07", "l_commitdate": "1996-02-10", "l_receiptdate": "1996-03-05", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "tipliers w" }, { "l_orderkey": 5122i32, "l_partkey": 82i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 43.0d, "l_extendedprice": 42229.44d, "l_discount": 0.09d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-31", "l_commitdate": "1996-04-12", "l_receiptdate": "1996-06-13", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "ut the carefully special foxes. idle," }, { "l_orderkey": 5186i32, "l_partkey": 82i32, "l_suppkey": 3i32, "l_linenumber": 6i32, "l_quantity": 35.0d, "l_extendedprice": 34372.8d, "l_discount": 0.0d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-20", "l_commitdate": "1996-10-12", "l_receiptdate": "1996-11-12", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "sly silent pack" }, { "l_orderkey": 5831i32, "l_partkey": 82i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 6.0d, "l_extendedprice": 5892.48d, "l_discount": 0.05d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-29", "l_commitdate": "1997-01-14", "l_receiptdate": "1997-02-09", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "ly ironic accounts nag pendin" }, { "l_orderkey": 5606i32, "l_partkey": 82i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 30.0d, "l_extendedprice": 29462.4d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-06", "l_commitdate": "1997-01-26", "l_receiptdate": "1997-02-16", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": " nag always. blithely express packages " }, { "l_orderkey": 2468i32, "l_partkey": 82i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 5.0d, "l_extendedprice": 4910.4d, "l_discount": 0.08d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-28", "l_commitdate": "1997-08-02", "l_receiptdate": "1997-07-22", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": " sleep fluffily acc" }, { "l_orderkey": 3360i32, "l_partkey": 82i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 39.0d, "l_extendedprice": 38301.12d, "l_discount": 0.08d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-09", "l_commitdate": "1998-04-20", "l_receiptdate": "1998-05-05", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "s. blithely express pinto bean" } ] }
-{ "partkey": 83i32, "lines": [ { "l_orderkey": 4738i32, "l_partkey": 83i32, "l_suppkey": 4i32, "l_linenumber": 7i32, "l_quantity": 28.0d, "l_extendedprice": 27526.24d, "l_discount": 0.05d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-06-09", "l_commitdate": "1992-07-05", "l_receiptdate": "1992-06-25", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "e furiously ironic excuses. care" }, { "l_orderkey": 5218i32, "l_partkey": 83i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 43.0d, "l_extendedprice": 42272.44d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-08-04", "l_commitdate": "1992-09-12", "l_receiptdate": "1992-08-17", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "k theodolites. express, even id" }, { "l_orderkey": 5220i32, "l_partkey": 83i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 27.0d, "l_extendedprice": 26543.16d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-09-21", "l_commitdate": "1992-08-29", "l_receiptdate": "1992-10-16", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "s cajole blithely furiously iron" }, { "l_orderkey": 5635i32, "l_partkey": 83i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 43.0d, "l_extendedprice": 42272.44d, "l_discount": 0.03d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-10-12", "l_commitdate": "1992-09-29", "l_receiptdate": "1992-11-01", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "cross the d" }, { "l_orderkey": 487i32, "l_partkey": 83i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 2.0d, "l_extendedprice": 1966.16d, "l_discount": 0.02d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-10-19", "l_commitdate": "1992-11-04", "l_receiptdate": "1992-11-11", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "oss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. reg" }, { "l_orderkey": 4067i32, "l_partkey": 83i32, "l_suppkey": 4i32, "l_linenumber": 7i32, "l_quantity": 17.0d, "l_extendedprice": 16712.36d, "l_discount": 0.01d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-12-12", "l_commitdate": "1992-12-23", "l_receiptdate": "1992-12-30", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "ts affix. regular, regular requests s" }, { "l_orderkey": 1573i32, "l_partkey": 83i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 16.0d, "l_extendedprice": 15729.28d, "l_discount": 0.04d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-03-15", "l_commitdate": "1993-03-16", "l_receiptdate": "1993-03-31", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "ely. furiously final requests wake slyl" }, { "l_orderkey": 3040i32, "l_partkey": 83i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 14.0d, "l_extendedprice": 13763.12d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-05-13", "l_commitdate": "1993-05-18", "l_receiptdate": "1993-05-19", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": " haggle carefully. express hocke" }, { "l_orderkey": 226i32, "l_partkey": 83i32, "l_suppkey": 4i32, "l_linenumber": 6i32, "l_quantity": 48.0d, "l_extendedprice": 47187.84d, "l_discount": 0.02d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-06-11", "l_commitdate": "1993-05-15", "l_receiptdate": "1993-06-19", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "efully silent packages. final deposit" }, { "l_orderkey": 358i32, "l_partkey": 83i32, "l_suppkey": 4i32, "l_linenumber": 7i32, "l_quantity": 45.0d, "l_extendedprice": 44238.6d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-12-08", "l_commitdate": "1993-10-29", "l_receiptdate": "1993-12-30", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "to beans. regular, unusual deposits sl" }, { "l_orderkey": 3072i32, "l_partkey": 83i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 39.0d, "l_extendedprice": 38340.12d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-05-27", "l_commitdate": "1994-04-20", "l_receiptdate": "1994-06-14", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "es; slyly spe" }, { "l_orderkey": 5765i32, "l_partkey": 83i32, "l_suppkey": 4i32, "l_linenumber": 6i32, "l_quantity": 41.0d, "l_extendedprice": 40306.28d, "l_discount": 0.04d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-12-31", "l_commitdate": "1995-02-11", "l_receiptdate": "1995-01-17", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": " furiously. slyly sile" }, { "l_orderkey": 5347i32, "l_partkey": 83i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 48.0d, "l_extendedprice": 47187.84d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-02-25", "l_commitdate": "1995-04-26", "l_receiptdate": "1995-03-26", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "equests are slyly. blithely regu" }, { "l_orderkey": 1411i32, "l_partkey": 83i32, "l_suppkey": 4i32, "l_linenumber": 5i32, "l_quantity": 46.0d, "l_extendedprice": 45221.68d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-04-03", "l_commitdate": "1995-01-20", "l_receiptdate": "1995-04-05", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "ly daring instructions" }, { "l_orderkey": 3814i32, "l_partkey": 83i32, "l_suppkey": 4i32, "l_linenumber": 6i32, "l_quantity": 47.0d, "l_extendedprice": 46204.76d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-04-16", "l_commitdate": "1995-04-03", "l_receiptdate": "1995-05-14", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "nusual requests. bli" }, { "l_orderkey": 3750i32, "l_partkey": 83i32, "l_suppkey": 4i32, "l_linenumber": 5i32, "l_quantity": 1.0d, "l_extendedprice": 983.08d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-24", "l_commitdate": "1995-06-25", "l_receiptdate": "1995-08-21", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "l dolphins against the slyly" }, { "l_orderkey": 512i32, "l_partkey": 83i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 10.0d, "l_extendedprice": 9830.8d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-16", "l_commitdate": "1995-07-29", "l_receiptdate": "1995-10-07", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "xes. pinto beans cajole carefully; " }, { "l_orderkey": 1958i32, "l_partkey": 83i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 38.0d, "l_extendedprice": 37357.04d, "l_discount": 0.09d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-09", "l_commitdate": "1995-11-26", "l_receiptdate": "1995-11-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "yly. slyly regular courts use silentl" }, { "l_orderkey": 32i32, "l_partkey": 83i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 28.0d, "l_extendedprice": 27526.24d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-23", "l_commitdate": "1995-08-27", "l_receiptdate": "1995-10-26", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "sleep quickly. req" }, { "l_orderkey": 1575i32, "l_partkey": 83i32, "l_suppkey": 4i32, "l_linenumber": 5i32, "l_quantity": 10.0d, "l_extendedprice": 9830.8d, "l_discount": 0.09d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-10", "l_commitdate": "1995-11-20", "l_receiptdate": "1996-01-13", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "k excuses. pinto beans wake a" }, { "l_orderkey": 2916i32, "l_partkey": 83i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 21.0d, "l_extendedprice": 20644.68d, "l_discount": 0.06d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-11", "l_commitdate": "1996-02-21", "l_receiptdate": "1996-03-30", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "uickly express ideas over the slyly even " }, { "l_orderkey": 3269i32, "l_partkey": 83i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 37.0d, "l_extendedprice": 36373.96d, "l_discount": 0.07d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-14", "l_commitdate": "1996-04-27", "l_receiptdate": "1996-07-07", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "egular requests. carefully un" }, { "l_orderkey": 3936i32, "l_partkey": 83i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 42.0d, "l_extendedprice": 41289.36d, "l_discount": 0.0d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-03", "l_commitdate": "1997-01-29", "l_receiptdate": "1997-01-14", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "elets wake amo" }, { "l_orderkey": 5443i32, "l_partkey": 83i32, "l_suppkey": 4i32, "l_linenumber": 5i32, "l_quantity": 40.0d, "l_extendedprice": 39323.2d, "l_discount": 0.03d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-28", "l_commitdate": "1996-12-10", "l_receiptdate": "1997-02-13", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "n courts. special re" }, { "l_orderkey": 5187i32, "l_partkey": 83i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 1.0d, "l_extendedprice": 983.08d, "l_discount": 0.1d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-08", "l_commitdate": "1997-08-24", "l_receiptdate": "1997-08-22", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "aggle never bold " }, { "l_orderkey": 1120i32, "l_partkey": 83i32, "l_suppkey": 4i32, "l_linenumber": 5i32, "l_quantity": 10.0d, "l_extendedprice": 9830.8d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-11-10", "l_commitdate": "1998-02-01", "l_receiptdate": "1997-11-28", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "ages haggle furiously " }, { "l_orderkey": 5345i32, "l_partkey": 83i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 3.0d, "l_extendedprice": 2949.24d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-10", "l_commitdate": "1997-10-03", "l_receiptdate": "1998-01-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "ites wake carefully unusual " }, { "l_orderkey": 192i32, "l_partkey": 83i32, "l_suppkey": 4i32, "l_linenumber": 5i32, "l_quantity": 25.0d, "l_extendedprice": 24577.0d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-02-15", "l_commitdate": "1998-01-11", "l_receiptdate": "1998-03-17", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": ". carefully regular" }, { "l_orderkey": 1157i32, "l_partkey": 83i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 4.0d, "l_extendedprice": 3932.32d, "l_discount": 0.1d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-02-24", "l_commitdate": "1998-03-30", "l_receiptdate": "1998-03-24", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "ounts. ironic deposits" }, { "l_orderkey": 2403i32, "l_partkey": 83i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 34.0d, "l_extendedprice": 33424.72d, "l_discount": 0.04d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-30", "l_commitdate": "1998-06-19", "l_receiptdate": "1998-06-05", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": " slyly bold re" }, { "l_orderkey": 3207i32, "l_partkey": 83i32, "l_suppkey": 4i32, "l_linenumber": 5i32, "l_quantity": 8.0d, "l_extendedprice": 7864.64d, "l_discount": 0.0d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-13", "l_commitdate": "1998-04-26", "l_receiptdate": "1998-07-11", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "y. final pint" }, { "l_orderkey": 68i32, "l_partkey": 83i32, "l_suppkey": 4i32, "l_linenumber": 5i32, "l_quantity": 27.0d, "l_extendedprice": 26543.16d, "l_discount": 0.03d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-19", "l_commitdate": "1998-06-25", "l_receiptdate": "1998-06-29", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "ccounts. deposits use. furiously" }, { "l_orderkey": 4902i32, "l_partkey": 83i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 1.0d, "l_extendedprice": 983.08d, "l_discount": 0.09d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-10-12", "l_commitdate": "1998-08-20", "l_receiptdate": "1998-11-08", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "daring foxes? even, bold requests wake f" } ] }
-{ "partkey": 87i32, "lines": [ { "l_orderkey": 4294i32, "l_partkey": 87i32, "l_suppkey": 8i32, "l_linenumber": 6i32, "l_quantity": 42.0d, "l_extendedprice": 41457.36d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-09-30", "l_commitdate": "1992-11-13", "l_receiptdate": "1992-10-15", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": " carefully; furiously ex" }, { "l_orderkey": 1540i32, "l_partkey": 87i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 27.0d, "l_extendedprice": 26651.16d, "l_discount": 0.1d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-12-02", "l_commitdate": "1992-10-18", "l_receiptdate": "1992-12-31", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "carefully final packages; b" }, { "l_orderkey": 3556i32, "l_partkey": 87i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 28.0d, "l_extendedprice": 27638.24d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-01-06", "l_commitdate": "1992-11-27", "l_receiptdate": "1993-01-16", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "refully final instructions? ironic packa" }, { "l_orderkey": 4545i32, "l_partkey": 87i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 9.0d, "l_extendedprice": 8883.72d, "l_discount": 0.1d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-03-20", "l_commitdate": "1993-02-23", "l_receiptdate": "1993-04-11", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "xpress accounts" }, { "l_orderkey": 865i32, "l_partkey": 87i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 15.0d, "l_extendedprice": 14806.2d, "l_discount": 0.0d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-07-05", "l_commitdate": "1993-06-25", "l_receiptdate": "1993-07-26", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": " deposits sleep quickl" }, { "l_orderkey": 4610i32, "l_partkey": 87i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 21.0d, "l_extendedprice": 20728.68d, "l_discount": 0.07d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-08-10", "l_commitdate": "1993-08-05", "l_receiptdate": "1993-08-27", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "ly special theodolites. even," }, { "l_orderkey": 4932i32, "l_partkey": 87i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 5.0d, "l_extendedprice": 4935.4d, "l_discount": 0.06d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-10-01", "l_commitdate": "1993-09-13", "l_receiptdate": "1993-10-04", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": " haggle furiously. slyly ironic packages sl" }, { "l_orderkey": 3073i32, "l_partkey": 87i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 10.0d, "l_extendedprice": 9870.8d, "l_discount": 0.03d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-02-11", "l_commitdate": "1994-03-24", "l_receiptdate": "1994-02-26", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": " furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref" }, { "l_orderkey": 5572i32, "l_partkey": 87i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 19.0d, "l_extendedprice": 18754.52d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-08-12", "l_commitdate": "1994-10-07", "l_receiptdate": "1994-09-01", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "es. final, final requests wake blithely ag" }, { "l_orderkey": 4772i32, "l_partkey": 87i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 1.0d, "l_extendedprice": 987.08d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-11-13", "l_commitdate": "1994-10-25", "l_receiptdate": "1994-11-15", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "ans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly e" }, { "l_orderkey": 2433i32, "l_partkey": 87i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 39.0d, "l_extendedprice": 38496.12d, "l_discount": 0.01d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-11-20", "l_commitdate": "1994-09-23", "l_receiptdate": "1994-12-10", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "ly final asy" }, { "l_orderkey": 3522i32, "l_partkey": 87i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 48.0d, "l_extendedprice": 47379.84d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-12-05", "l_commitdate": "1994-10-30", "l_receiptdate": "1994-12-26", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "ve the quickly special packages" }, { "l_orderkey": 4583i32, "l_partkey": 87i32, "l_suppkey": 8i32, "l_linenumber": 7i32, "l_quantity": 32.0d, "l_extendedprice": 31586.56d, "l_discount": 0.04d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-01-13", "l_commitdate": "1994-10-29", "l_receiptdate": "1995-02-08", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "across the pinto beans-- quickly" }, { "l_orderkey": 4132i32, "l_partkey": 87i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 18.0d, "l_extendedprice": 17767.44d, "l_discount": 0.09d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-06-01", "l_commitdate": "1995-08-01", "l_receiptdate": "1995-06-02", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "y final de" }, { "l_orderkey": 2882i32, "l_partkey": 87i32, "l_suppkey": 8i32, "l_linenumber": 6i32, "l_quantity": 47.0d, "l_extendedprice": 46392.76d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-13", "l_commitdate": "1995-09-21", "l_receiptdate": "1995-09-14", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "l, special" }, { "l_orderkey": 5281i32, "l_partkey": 87i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 48.0d, "l_extendedprice": 47379.84d, "l_discount": 0.03d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-31", "l_commitdate": "1995-12-23", "l_receiptdate": "1996-02-08", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "ss the furiously " }, { "l_orderkey": 5925i32, "l_partkey": 87i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 42.0d, "l_extendedprice": 41457.36d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-05", "l_commitdate": "1996-01-13", "l_receiptdate": "1996-03-10", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "to the furiously" }, { "l_orderkey": 5252i32, "l_partkey": 87i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 48.0d, "l_extendedprice": 47379.84d, "l_discount": 0.01d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-04-17", "l_commitdate": "1996-03-19", "l_receiptdate": "1996-05-03", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "bold requests. furious" }, { "l_orderkey": 3558i32, "l_partkey": 87i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 8.0d, "l_extendedprice": 7896.64d, "l_discount": 0.01d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-31", "l_commitdate": "1996-05-26", "l_receiptdate": "1996-06-25", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "? even requests sle" }, { "l_orderkey": 5605i32, "l_partkey": 87i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 50.0d, "l_extendedprice": 49354.0d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-26", "l_commitdate": "1996-10-15", "l_receiptdate": "1996-09-04", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "instructions sleep carefully ironic req" }, { "l_orderkey": 1156i32, "l_partkey": 87i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 15.0d, "l_extendedprice": 14806.2d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-21", "l_commitdate": "1997-01-03", "l_receiptdate": "1997-01-10", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "the furiously pen" }, { "l_orderkey": 1766i32, "l_partkey": 87i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 32.0d, "l_extendedprice": 31586.56d, "l_discount": 0.08d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-08", "l_commitdate": "1996-11-11", "l_receiptdate": "1997-01-31", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "ess accounts. stealthily ironic accou" }, { "l_orderkey": 160i32, "l_partkey": 87i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 22.0d, "l_extendedprice": 21715.76d, "l_discount": 0.0d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-18", "l_commitdate": "1997-03-05", "l_receiptdate": "1997-03-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "ncies about the request" }, { "l_orderkey": 576i32, "l_partkey": 87i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 2.0d, "l_extendedprice": 1974.16d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-15", "l_commitdate": "1997-06-30", "l_receiptdate": "1997-05-28", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "ccounts along the ac" }, { "l_orderkey": 5056i32, "l_partkey": 87i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 14.0d, "l_extendedprice": 13819.12d, "l_discount": 0.08d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-09", "l_commitdate": "1997-04-13", "l_receiptdate": "1997-07-06", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "sts haggle carefully along the slyl" }, { "l_orderkey": 1252i32, "l_partkey": 87i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 13.0d, "l_extendedprice": 12832.04d, "l_discount": 0.1d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-07", "l_commitdate": "1997-09-12", "l_receiptdate": "1997-10-01", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "sts dazzle" }, { "l_orderkey": 5027i32, "l_partkey": 87i32, "l_suppkey": 8i32, "l_linenumber": 6i32, "l_quantity": 25.0d, "l_extendedprice": 24677.0d, "l_discount": 0.06d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-16", "l_commitdate": "1997-11-25", "l_receiptdate": "1997-10-08", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "ic ideas. requests sleep fluffily am" }, { "l_orderkey": 3107i32, "l_partkey": 87i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 27.0d, "l_extendedprice": 26651.16d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-11-15", "l_commitdate": "1997-10-31", "l_receiptdate": "1997-11-28", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "furiously final " }, { "l_orderkey": 1093i32, "l_partkey": 87i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 7.0d, "l_extendedprice": 6909.56d, "l_discount": 0.04d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-11-24", "l_commitdate": "1997-09-23", "l_receiptdate": "1997-11-25", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "bold deposits. blithely ironic depos" }, { "l_orderkey": 4644i32, "l_partkey": 87i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 10.0d, "l_extendedprice": 9870.8d, "l_discount": 0.08d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-12", "l_commitdate": "1998-03-11", "l_receiptdate": "1998-03-19", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": " the slow, final fo" }, { "l_orderkey": 709i32, "l_partkey": 87i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 7.0d, "l_extendedprice": 6909.56d, "l_discount": 0.0d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-14", "l_commitdate": "1998-06-08", "l_receiptdate": "1998-06-18", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": " special orbits cajole " }, { "l_orderkey": 451i32, "l_partkey": 87i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 1.0d, "l_extendedprice": 987.08d, "l_discount": 0.07d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-13", "l_commitdate": "1998-07-03", "l_receiptdate": "1998-08-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": " carefully ironic packages solve furiously " }, { "l_orderkey": 4196i32, "l_partkey": 87i32, "l_suppkey": 8i32, "l_linenumber": 6i32, "l_quantity": 43.0d, "l_extendedprice": 42444.44d, "l_discount": 0.01d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-12", "l_commitdate": "1998-07-12", "l_receiptdate": "1998-08-22", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "es. slyly even " }, { "l_orderkey": 4167i32, "l_partkey": 87i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 17.0d, "l_extendedprice": 16780.36d, "l_discount": 0.06d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-09-18", "l_commitdate": "1998-09-06", "l_receiptdate": "1998-10-07", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "ly around the even instr" } ] }
-{ "partkey": 90i32, "lines": [ { "l_orderkey": 4162i32, "l_partkey": 90i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 29.0d, "l_extendedprice": 28712.61d, "l_discount": 0.0d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-02-25", "l_commitdate": "1992-04-25", "l_receiptdate": "1992-03-17", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "nding pinto beans haggle blithe" }, { "l_orderkey": 5474i32, "l_partkey": 90i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 46.0d, "l_extendedprice": 45544.14d, "l_discount": 0.03d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-06-07", "l_commitdate": "1992-07-11", "l_receiptdate": "1992-06-22", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "nstructions. furio" }, { "l_orderkey": 5986i32, "l_partkey": 90i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 31.0d, "l_extendedprice": 30692.79d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-08-21", "l_commitdate": "1992-06-29", "l_receiptdate": "1992-09-14", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "structions! furiously pending instructi" }, { "l_orderkey": 3559i32, "l_partkey": 90i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 29.0d, "l_extendedprice": 28712.61d, "l_discount": 0.0d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-12-10", "l_commitdate": "1992-12-03", "l_receiptdate": "1992-12-20", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "l, regular accounts wake flu" }, { "l_orderkey": 4067i32, "l_partkey": 90i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 40.0d, "l_extendedprice": 39603.6d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-01-09", "l_commitdate": "1992-11-21", "l_receiptdate": "1993-01-16", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "lar theodolites nag blithely above the" }, { "l_orderkey": 2592i32, "l_partkey": 90i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 7.0d, "l_extendedprice": 6930.63d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-03-13", "l_commitdate": "1993-04-25", "l_receiptdate": "1993-04-01", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": " carefully special theodolites integrate " }, { "l_orderkey": 710i32, "l_partkey": 90i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 25.0d, "l_extendedprice": 24752.25d, "l_discount": 0.0d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-03-31", "l_commitdate": "1993-02-05", "l_receiptdate": "1993-04-22", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "eas detect do" }, { "l_orderkey": 3461i32, "l_partkey": 90i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 16.0d, "l_extendedprice": 15841.44d, "l_discount": 0.08d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-05-09", "l_commitdate": "1993-04-29", "l_receiptdate": "1993-05-26", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": " pending deposi" }, { "l_orderkey": 5670i32, "l_partkey": 90i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 27.0d, "l_extendedprice": 26732.43d, "l_discount": 0.1d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-05-09", "l_commitdate": "1993-05-30", "l_receiptdate": "1993-06-06", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": " ideas promise bli" }, { "l_orderkey": 3143i32, "l_partkey": 90i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 22.0d, "l_extendedprice": 21781.98d, "l_discount": 0.02d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-05-11", "l_commitdate": "1993-03-26", "l_receiptdate": "1993-05-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "l, special instructions nag " }, { "l_orderkey": 1058i32, "l_partkey": 90i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 44.0d, "l_extendedprice": 43563.96d, "l_discount": 0.1d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-06-26", "l_commitdate": "1993-06-21", "l_receiptdate": "1993-07-20", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "uriously f" }, { "l_orderkey": 2272i32, "l_partkey": 90i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 18.0d, "l_extendedprice": 17821.62d, "l_discount": 0.04d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-08-01", "l_commitdate": "1993-07-06", "l_receiptdate": "1993-08-25", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "ons along the blithely e" }, { "l_orderkey": 1509i32, "l_partkey": 90i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 37.0d, "l_extendedprice": 36633.33d, "l_discount": 0.01d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-08-31", "l_commitdate": "1993-09-10", "l_receiptdate": "1993-09-24", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "he slyly even deposits wake a" }, { "l_orderkey": 5445i32, "l_partkey": 90i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 33.0d, "l_extendedprice": 32672.97d, "l_discount": 0.08d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-10-21", "l_commitdate": "1993-10-14", "l_receiptdate": "1993-10-28", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "ests. final instructions" }, { "l_orderkey": 2593i32, "l_partkey": 90i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 28.0d, "l_extendedprice": 27722.52d, "l_discount": 0.08d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-10-30", "l_commitdate": "1993-10-18", "l_receiptdate": "1993-11-06", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "y even escapades shall" }, { "l_orderkey": 2628i32, "l_partkey": 90i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 50.0d, "l_extendedprice": 49504.5d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-01-13", "l_commitdate": "1993-12-11", "l_receiptdate": "1994-01-14", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "posits serve carefully toward " }, { "l_orderkey": 2563i32, "l_partkey": 90i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 50.0d, "l_extendedprice": 49504.5d, "l_discount": 0.01d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-01-26", "l_commitdate": "1994-01-03", "l_receiptdate": "1994-02-09", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "ly regular, regular excuses. bold plate" }, { "l_orderkey": 5926i32, "l_partkey": 90i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 8.0d, "l_extendedprice": 7920.72d, "l_discount": 0.02d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-07-17", "l_commitdate": "1994-07-20", "l_receiptdate": "1994-08-11", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "gle furiously express foxes. bo" }, { "l_orderkey": 1601i32, "l_partkey": 90i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 14.0d, "l_extendedprice": 13861.26d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-09-17", "l_commitdate": "1994-11-22", "l_receiptdate": "1994-10-03", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "he special, fin" }, { "l_orderkey": 646i32, "l_partkey": 90i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 17.0d, "l_extendedprice": 16831.53d, "l_discount": 0.04d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-12-31", "l_commitdate": "1994-12-26", "l_receiptdate": "1995-01-01", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "inal packages haggle carefully " }, { "l_orderkey": 5636i32, "l_partkey": 90i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 21.0d, "l_extendedprice": 20791.89d, "l_discount": 0.03d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-03-13", "l_commitdate": "1995-05-11", "l_receiptdate": "1995-03-24", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": " are furiously unusual " }, { "l_orderkey": 359i32, "l_partkey": 90i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 38.0d, "l_extendedprice": 37623.42d, "l_discount": 0.1d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-03-30", "l_commitdate": "1995-01-20", "l_receiptdate": "1995-04-25", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "g furiously. regular, sile" }, { "l_orderkey": 2311i32, "l_partkey": 90i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 42.0d, "l_extendedprice": 41583.78d, "l_discount": 0.01d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-06-03", "l_commitdate": "1995-06-27", "l_receiptdate": "1995-06-11", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "gle furiously. bold " }, { "l_orderkey": 2978i32, "l_partkey": 90i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 29.0d, "l_extendedprice": 28712.61d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-06-03", "l_commitdate": "1995-07-25", "l_receiptdate": "1995-06-06", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "ecial ideas promise slyly" }, { "l_orderkey": 3335i32, "l_partkey": 90i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 47.0d, "l_extendedprice": 46534.23d, "l_discount": 0.1d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-02", "l_commitdate": "1995-11-19", "l_receiptdate": "1995-12-27", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": " quickly special ideas." }, { "l_orderkey": 1827i32, "l_partkey": 90i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 47.0d, "l_extendedprice": 46534.23d, "l_discount": 0.0d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-01", "l_commitdate": "1996-08-07", "l_receiptdate": "1996-08-23", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": ". pending courts about the even e" }, { "l_orderkey": 5669i32, "l_partkey": 90i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 31.0d, "l_extendedprice": 30692.79d, "l_discount": 0.04d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-05", "l_commitdate": "1996-06-10", "l_receiptdate": "1996-08-29", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "to beans against the regular depo" }, { "l_orderkey": 4576i32, "l_partkey": 90i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 5.0d, "l_extendedprice": 4950.45d, "l_discount": 0.09d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-23", "l_commitdate": "1996-11-08", "l_receiptdate": "1996-09-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "ly express, special asymptote" }, { "l_orderkey": 5186i32, "l_partkey": 90i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 8.0d, "l_extendedprice": 7920.72d, "l_discount": 0.1d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-23", "l_commitdate": "1996-09-29", "l_receiptdate": "1996-09-30", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "y regular notornis k" }, { "l_orderkey": 5922i32, "l_partkey": 90i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 35.0d, "l_extendedprice": 34653.15d, "l_discount": 0.08d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-12", "l_commitdate": "1997-01-21", "l_receiptdate": "1997-01-01", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "accounts. regu" }, { "l_orderkey": 3105i32, "l_partkey": 90i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 8.0d, "l_extendedprice": 7920.72d, "l_discount": 0.07d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-28", "l_commitdate": "1996-12-28", "l_receiptdate": "1997-01-25", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "s. blithely unusual ideas was after" }, { "l_orderkey": 5829i32, "l_partkey": 90i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 42.0d, "l_extendedprice": 41583.78d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-26", "l_commitdate": "1997-04-01", "l_receiptdate": "1997-03-30", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "pearls. slyly bold deposits solve final" }, { "l_orderkey": 1635i32, "l_partkey": 90i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 8.0d, "l_extendedprice": 7920.72d, "l_discount": 0.04d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-30", "l_commitdate": "1997-04-21", "l_receiptdate": "1997-05-09", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "ravely carefully express " }, { "l_orderkey": 3719i32, "l_partkey": 90i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 13.0d, "l_extendedprice": 12871.17d, "l_discount": 0.02d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-03", "l_commitdate": "1997-04-16", "l_receiptdate": "1997-05-27", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "iously. regular dep" }, { "l_orderkey": 5056i32, "l_partkey": 90i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 23.0d, "l_extendedprice": 22772.07d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-12", "l_commitdate": "1997-04-28", "l_receiptdate": "1997-05-25", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "ickly regular requests cajole. depos" }, { "l_orderkey": 1568i32, "l_partkey": 90i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 36.0d, "l_extendedprice": 35643.24d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-31", "l_commitdate": "1997-04-22", "l_receiptdate": "1997-06-21", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "platelets-- furiously sly excu" }, { "l_orderkey": 3552i32, "l_partkey": 90i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 44.0d, "l_extendedprice": 43563.96d, "l_discount": 0.01d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-08", "l_commitdate": "1997-06-15", "l_receiptdate": "1997-08-29", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "ns after the blithely reg" }, { "l_orderkey": 3364i32, "l_partkey": 90i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 49.0d, "l_extendedprice": 48514.41d, "l_discount": 0.03d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-17", "l_commitdate": "1997-08-23", "l_receiptdate": "1997-10-06", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "d accounts? caref" }, { "l_orderkey": 2944i32, "l_partkey": 90i32, "l_suppkey": 1i32, "l_linenumber": 7i32, "l_quantity": 7.0d, "l_extendedprice": 6930.63d, "l_discount": 0.01d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-10-30", "l_commitdate": "1997-11-03", "l_receiptdate": "1997-11-03", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "fluffily blithely express pea" }, { "l_orderkey": 3170i32, "l_partkey": 90i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 32.0d, "l_extendedprice": 31682.88d, "l_discount": 0.02d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-11-24", "l_commitdate": "1997-12-12", "l_receiptdate": "1997-12-15", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "ggle about the furiously r" }, { "l_orderkey": 5927i32, "l_partkey": 90i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 44.0d, "l_extendedprice": 43563.96d, "l_discount": 0.04d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-11-29", "l_commitdate": "1997-11-21", "l_receiptdate": "1997-12-13", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "rding to the special, final decoy" }, { "l_orderkey": 2917i32, "l_partkey": 90i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 4.0d, "l_extendedprice": 3960.36d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-10", "l_commitdate": "1998-01-18", "l_receiptdate": "1998-02-08", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "s. unusual instruct" }, { "l_orderkey": 133i32, "l_partkey": 90i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 11.0d, "l_extendedprice": 10890.99d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-21", "l_commitdate": "1998-01-15", "l_receiptdate": "1998-04-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "e quickly across the dolphins" }, { "l_orderkey": 4386i32, "l_partkey": 90i32, "l_suppkey": 1i32, "l_linenumber": 6i32, "l_quantity": 18.0d, "l_extendedprice": 17821.62d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-12", "l_commitdate": "1998-04-09", "l_receiptdate": "1998-05-12", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": " deposits use according to the pending, " }, { "l_orderkey": 5536i32, "l_partkey": 90i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 14.0d, "l_extendedprice": 13861.26d, "l_discount": 0.08d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-18", "l_commitdate": "1998-05-08", "l_receiptdate": "1998-06-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "instructions sleep " }, { "l_orderkey": 2400i32, "l_partkey": 90i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 1.0d, "l_extendedprice": 990.09d, "l_discount": 0.04d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-18", "l_commitdate": "1998-09-12", "l_receiptdate": "1998-09-11", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "silent deposits serve furious" }, { "l_orderkey": 3713i32, "l_partkey": 90i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 46.0d, "l_extendedprice": 45544.14d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-22", "l_commitdate": "1998-06-27", "l_receiptdate": "1998-08-31", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "totes. carefully special theodolites s" }, { "l_orderkey": 34i32, "l_partkey": 90i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 22.0d, "l_extendedprice": 21781.98d, "l_discount": 0.08d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-10-09", "l_commitdate": "1998-10-16", "l_receiptdate": "1998-10-12", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "thely slyly p" } ] }
-{ "partkey": 101i32, "lines": [ { "l_orderkey": 644i32, "l_partkey": 101i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 44.0d, "l_extendedprice": 44048.4d, "l_discount": 0.04d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-08-17", "l_commitdate": "1992-07-26", "l_receiptdate": "1992-08-20", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "iously ironic pinto beans. bold packa" }, { "l_orderkey": 2147i32, "l_partkey": 101i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 4.0d, "l_extendedprice": 4004.4d, "l_discount": 0.01d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-09-27", "l_commitdate": "1992-11-15", "l_receiptdate": "1992-10-22", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "mong the blithely special" }, { "l_orderkey": 1571i32, "l_partkey": 101i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 48.0d, "l_extendedprice": 48052.8d, "l_discount": 0.05d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-12-28", "l_commitdate": "1993-01-04", "l_receiptdate": "1993-01-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "slyly pending p" }, { "l_orderkey": 5062i32, "l_partkey": 101i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 9.0d, "l_extendedprice": 9009.9d, "l_discount": 0.08d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-01-02", "l_commitdate": "1992-12-01", "l_receiptdate": "1993-01-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": " silent theodolites wake. c" }, { "l_orderkey": 5126i32, "l_partkey": 101i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 43.0d, "l_extendedprice": 43047.3d, "l_discount": 0.09d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-01-07", "l_commitdate": "1992-12-19", "l_receiptdate": "1993-01-16", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "e silently. ironic, unusual accounts" }, { "l_orderkey": 3683i32, "l_partkey": 101i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 35.0d, "l_extendedprice": 35038.5d, "l_discount": 0.05d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-05-31", "l_commitdate": "1993-04-17", "l_receiptdate": "1993-06-14", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": " the furiously expr" }, { "l_orderkey": 5665i32, "l_partkey": 101i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 32.0d, "l_extendedprice": 32035.2d, "l_discount": 0.0d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-08-11", "l_commitdate": "1993-08-01", "l_receiptdate": "1993-09-07", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "f the slyly even requests! regular request" }, { "l_orderkey": 4965i32, "l_partkey": 101i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 27.0d, "l_extendedprice": 27029.7d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-11-06", "l_commitdate": "1993-12-24", "l_receiptdate": "1993-11-30", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "efully final foxes" }, { "l_orderkey": 5764i32, "l_partkey": 101i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 28.0d, "l_extendedprice": 28030.8d, "l_discount": 0.04d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-12-07", "l_commitdate": "1993-12-20", "l_receiptdate": "1993-12-26", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "sleep furi" }, { "l_orderkey": 2048i32, "l_partkey": 101i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 12.0d, "l_extendedprice": 12013.2d, "l_discount": 0.01d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-01-28", "l_commitdate": "1994-01-19", "l_receiptdate": "1994-02-08", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": " even theodoli" }, { "l_orderkey": 3905i32, "l_partkey": 101i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 43.0d, "l_extendedprice": 43047.3d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-03-30", "l_commitdate": "1994-02-18", "l_receiptdate": "1994-04-09", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "uses are care" }, { "l_orderkey": 5572i32, "l_partkey": 101i32, "l_suppkey": 2i32, "l_linenumber": 6i32, "l_quantity": 14.0d, "l_extendedprice": 14015.4d, "l_discount": 0.04d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-11-02", "l_commitdate": "1994-09-20", "l_receiptdate": "1994-11-03", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "he fluffily express packages. fluffily fina" }, { "l_orderkey": 1990i32, "l_partkey": 101i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 46.0d, "l_extendedprice": 46050.6d, "l_discount": 0.01d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-12-29", "l_commitdate": "1995-03-14", "l_receiptdate": "1995-01-13", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "ar sentiments." }, { "l_orderkey": 742i32, "l_partkey": 101i32, "l_suppkey": 4i32, "l_linenumber": 5i32, "l_quantity": 48.0d, "l_extendedprice": 48052.8d, "l_discount": 0.09d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-03-24", "l_commitdate": "1995-01-23", "l_receiptdate": "1995-04-08", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": " platelets " }, { "l_orderkey": 2053i32, "l_partkey": 101i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 20.0d, "l_extendedprice": 20022.0d, "l_discount": 0.09d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-04-25", "l_commitdate": "1995-04-12", "l_receiptdate": "1995-05-13", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "ly ironic foxes haggle slyly speci" }, { "l_orderkey": 4390i32, "l_partkey": 101i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 42.0d, "l_extendedprice": 42046.2d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-06-12", "l_commitdate": "1995-07-16", "l_receiptdate": "1995-06-17", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "arefully even accoun" }, { "l_orderkey": 1958i32, "l_partkey": 101i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 31.0d, "l_extendedprice": 31034.1d, "l_discount": 0.08d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-31", "l_commitdate": "1995-11-12", "l_receiptdate": "1995-11-07", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "r deposits c" }, { "l_orderkey": 420i32, "l_partkey": 101i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 5.0d, "l_extendedprice": 5005.5d, "l_discount": 0.04d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-04", "l_commitdate": "1996-01-02", "l_receiptdate": "1995-11-30", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "cajole blit" }, { "l_orderkey": 3044i32, "l_partkey": 101i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 10.0d, "l_extendedprice": 10011.0d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-13", "l_commitdate": "1996-05-06", "l_receiptdate": "1996-07-21", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": " slyly ironic requests. s" }, { "l_orderkey": 1186i32, "l_partkey": 101i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 20.0d, "l_extendedprice": 20022.0d, "l_discount": 0.07d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-20", "l_commitdate": "1996-10-23", "l_receiptdate": "1996-09-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "ely alongside of the blithel" }, { "l_orderkey": 1123i32, "l_partkey": 101i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 38.0d, "l_extendedprice": 38041.8d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-23", "l_commitdate": "1996-10-04", "l_receiptdate": "1996-09-27", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": " blithely carefully unusual reques" }, { "l_orderkey": 4673i32, "l_partkey": 101i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 44.0d, "l_extendedprice": 44048.4d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-11", "l_commitdate": "1996-10-31", "l_receiptdate": "1997-01-08", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": " gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts c" }, { "l_orderkey": 4355i32, "l_partkey": 101i32, "l_suppkey": 4i32, "l_linenumber": 7i32, "l_quantity": 47.0d, "l_extendedprice": 47051.7d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-28", "l_commitdate": "1996-12-29", "l_receiptdate": "1997-01-09", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "e. realms integrate " }, { "l_orderkey": 2599i32, "l_partkey": 101i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 11.0d, "l_extendedprice": 11012.1d, "l_discount": 0.08d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-01", "l_commitdate": "1996-12-14", "l_receiptdate": "1997-02-27", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": " express accoun" }, { "l_orderkey": 581i32, "l_partkey": 101i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 49.0d, "l_extendedprice": 49053.9d, "l_discount": 0.1d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-27", "l_commitdate": "1997-04-24", "l_receiptdate": "1997-03-10", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": ". slyly regular pinto beans acr" }, { "l_orderkey": 2464i32, "l_partkey": 101i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 20.0d, "l_extendedprice": 20022.0d, "l_discount": 0.01d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-26", "l_commitdate": "1998-01-02", "l_receiptdate": "1998-01-24", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "sts. slyly close ideas shall h" }, { "l_orderkey": 1893i32, "l_partkey": 101i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 18.0d, "l_extendedprice": 18019.8d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-24", "l_commitdate": "1998-01-12", "l_receiptdate": "1998-02-13", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "g packages. fluffily final reques" }, { "l_orderkey": 2371i32, "l_partkey": 101i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 11.0d, "l_extendedprice": 11012.1d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-02-25", "l_commitdate": "1998-04-06", "l_receiptdate": "1998-03-23", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "requests. regular pinto beans wake. car" } ] }
-{ "partkey": 104i32, "lines": [ { "l_orderkey": 5409i32, "l_partkey": 104i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 38.0d, "l_extendedprice": 38155.8d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-03-17", "l_commitdate": "1992-03-29", "l_receiptdate": "1992-04-13", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "onic, regular accounts! blithely even" }, { "l_orderkey": 4897i32, "l_partkey": 104i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 19.0d, "l_extendedprice": 19077.9d, "l_discount": 0.03d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-11-08", "l_commitdate": "1992-12-14", "l_receiptdate": "1992-12-03", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "! ironic, pending dependencies doze furiou" }, { "l_orderkey": 5479i32, "l_partkey": 104i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 19.0d, "l_extendedprice": 19077.9d, "l_discount": 0.05d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-01-22", "l_commitdate": "1994-03-07", "l_receiptdate": "1994-02-11", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "arefully bo" }, { "l_orderkey": 1829i32, "l_partkey": 104i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 49.0d, "l_extendedprice": 49200.9d, "l_discount": 0.09d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-08-26", "l_commitdate": "1994-08-01", "l_receiptdate": "1994-09-16", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "ound the quickly " }, { "l_orderkey": 3488i32, "l_partkey": 104i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 48.0d, "l_extendedprice": 48196.8d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-03-29", "l_commitdate": "1995-03-26", "l_receiptdate": "1995-04-28", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "sly? final requests " }, { "l_orderkey": 1538i32, "l_partkey": 104i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 28.0d, "l_extendedprice": 28114.8d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-19", "l_commitdate": "1995-08-27", "l_receiptdate": "1995-10-10", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "bout the fluffily unusual" }, { "l_orderkey": 5221i32, "l_partkey": 104i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 24.0d, "l_extendedprice": 24098.4d, "l_discount": 0.07d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-04", "l_commitdate": "1995-08-11", "l_receiptdate": "1995-10-30", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "s pinto beans sleep. sly" }, { "l_orderkey": 3010i32, "l_partkey": 104i32, "l_suppkey": 5i32, "l_linenumber": 5i32, "l_quantity": 9.0d, "l_extendedprice": 9036.9d, "l_discount": 0.02d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-04-28", "l_commitdate": "1996-03-17", "l_receiptdate": "1996-05-18", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "inal packages. quickly even pinto" }, { "l_orderkey": 2598i32, "l_partkey": 104i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 4.0d, "l_extendedprice": 4016.4d, "l_discount": 0.03d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-23", "l_commitdate": "1996-05-13", "l_receiptdate": "1996-05-25", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": " across the furiously fi" }, { "l_orderkey": 2246i32, "l_partkey": 104i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 43.0d, "l_extendedprice": 43176.3d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-25", "l_commitdate": "1996-08-23", "l_receiptdate": "1996-09-19", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "ainst the ironic theodolites haggle fi" }, { "l_orderkey": 2179i32, "l_partkey": 104i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 5.0d, "l_extendedprice": 5020.5d, "l_discount": 0.03d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-09", "l_commitdate": "1996-10-08", "l_receiptdate": "1996-11-11", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "ts haggle blithely. ironic, careful theodol" }, { "l_orderkey": 1697i32, "l_partkey": 104i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 24.0d, "l_extendedprice": 24098.4d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-29", "l_commitdate": "1996-12-19", "l_receiptdate": "1997-01-10", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "ts cajole carefully above the carefully" }, { "l_orderkey": 2469i32, "l_partkey": 104i32, "l_suppkey": 5i32, "l_linenumber": 6i32, "l_quantity": 49.0d, "l_extendedprice": 49200.9d, "l_discount": 0.02d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-03", "l_commitdate": "1996-12-26", "l_receiptdate": "1997-03-13", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": " requests are car" }, { "l_orderkey": 5377i32, "l_partkey": 104i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 12.0d, "l_extendedprice": 12049.2d, "l_discount": 0.05d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-08", "l_commitdate": "1997-06-15", "l_receiptdate": "1997-05-15", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": " ironic, final" }, { "l_orderkey": 3047i32, "l_partkey": 104i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 17.0d, "l_extendedprice": 17069.7d, "l_discount": 0.08d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-14", "l_commitdate": "1997-04-20", "l_receiptdate": "1997-06-23", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "onic instruction" }, { "l_orderkey": 133i32, "l_partkey": 104i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 27.0d, "l_extendedprice": 27110.7d, "l_discount": 0.0d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-21", "l_commitdate": "1998-02-23", "l_receiptdate": "1997-12-27", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "yly even gifts after the sl" }, { "l_orderkey": 71i32, "l_partkey": 104i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 39.0d, "l_extendedprice": 39159.9d, "l_discount": 0.08d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-29", "l_commitdate": "1998-04-07", "l_receiptdate": "1998-02-18", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "l accounts sleep across the pack" }, { "l_orderkey": 1862i32, "l_partkey": 104i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 26.0d, "l_extendedprice": 26106.6d, "l_discount": 0.02d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-25", "l_commitdate": "1998-05-17", "l_receiptdate": "1998-04-17", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "g carefully: thinly ironic deposits af" }, { "l_orderkey": 3748i32, "l_partkey": 104i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 12.0d, "l_extendedprice": 12049.2d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-17", "l_commitdate": "1998-04-15", "l_receiptdate": "1998-05-12", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "old reques" } ] }
-{ "partkey": 107i32, "lines": [ { "l_orderkey": 1088i32, "l_partkey": 107i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 30.0d, "l_extendedprice": 30213.0d, "l_discount": 0.07d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-05-22", "l_commitdate": "1992-06-25", "l_receiptdate": "1992-06-11", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "long the packages snooze careful" }, { "l_orderkey": 3654i32, "l_partkey": 107i32, "l_suppkey": 4i32, "l_linenumber": 6i32, "l_quantity": 20.0d, "l_extendedprice": 20142.0d, "l_discount": 0.03d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-07-30", "l_commitdate": "1992-07-05", "l_receiptdate": "1992-08-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "s sleep about the slyly " }, { "l_orderkey": 3842i32, "l_partkey": 107i32, "l_suppkey": 4i32, "l_linenumber": 6i32, "l_quantity": 24.0d, "l_extendedprice": 24170.4d, "l_discount": 0.08d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-08-05", "l_commitdate": "1992-06-29", "l_receiptdate": "1992-08-16", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "phins are quickly" }, { "l_orderkey": 128i32, "l_partkey": 107i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 38.0d, "l_extendedprice": 38269.8d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-09-01", "l_commitdate": "1992-08-27", "l_receiptdate": "1992-10-01", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": " cajole careful" }, { "l_orderkey": 1509i32, "l_partkey": 107i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 17.0d, "l_extendedprice": 17120.7d, "l_discount": 0.06d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-07-25", "l_commitdate": "1993-08-28", "l_receiptdate": "1993-08-19", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": " furiously. blithely regular ideas haggle c" }, { "l_orderkey": 258i32, "l_partkey": 107i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 8.0d, "l_extendedprice": 8056.8d, "l_discount": 0.0d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-01-20", "l_commitdate": "1994-03-21", "l_receiptdate": "1994-02-09", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "ully about the fluffily silent dependencies" }, { "l_orderkey": 2150i32, "l_partkey": 107i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 29.0d, "l_extendedprice": 29205.9d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-06-10", "l_commitdate": "1994-07-31", "l_receiptdate": "1994-06-26", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "arefully final att" }, { "l_orderkey": 4065i32, "l_partkey": 107i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 8.0d, "l_extendedprice": 8056.8d, "l_discount": 0.0d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-10-04", "l_commitdate": "1994-08-05", "l_receiptdate": "1994-10-25", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "ages haggle carefully" }, { "l_orderkey": 960i32, "l_partkey": 107i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 1.0d, "l_extendedprice": 1007.1d, "l_discount": 0.07d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-12-24", "l_commitdate": "1994-10-26", "l_receiptdate": "1995-01-20", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "y ironic packages. quickly even " }, { "l_orderkey": 5729i32, "l_partkey": 107i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 39.0d, "l_extendedprice": 39276.9d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-01-22", "l_commitdate": "1994-11-21", "l_receiptdate": "1995-02-13", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": ". special pl" }, { "l_orderkey": 450i32, "l_partkey": 107i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 5.0d, "l_extendedprice": 5035.5d, "l_discount": 0.03d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-04-02", "l_commitdate": "1995-05-06", "l_receiptdate": "1995-04-13", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "the pinto bea" }, { "l_orderkey": 1411i32, "l_partkey": 107i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 26.0d, "l_extendedprice": 26184.6d, "l_discount": 0.02d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-04-12", "l_commitdate": "1995-01-24", "l_receiptdate": "1995-05-03", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "c packages. " }, { "l_orderkey": 3814i32, "l_partkey": 107i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 15.0d, "l_extendedprice": 15106.5d, "l_discount": 0.03d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-06-23", "l_commitdate": "1995-03-25", "l_receiptdate": "1995-07-09", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": " carefully final deposits haggle slyly" }, { "l_orderkey": 1414i32, "l_partkey": 107i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 4.0d, "l_extendedprice": 4028.4d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-16", "l_commitdate": "1995-11-01", "l_receiptdate": "1995-10-02", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": " haggle quickly" }, { "l_orderkey": 835i32, "l_partkey": 107i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 33.0d, "l_extendedprice": 33234.3d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-01", "l_commitdate": "1995-12-02", "l_receiptdate": "1995-11-24", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "onic instructions among the carefully iro" }, { "l_orderkey": 354i32, "l_partkey": 107i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 7.0d, "l_extendedprice": 7049.7d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-07", "l_commitdate": "1996-04-18", "l_receiptdate": "1996-05-24", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "ously idly ironic accounts-- quickl" }, { "l_orderkey": 3587i32, "l_partkey": 107i32, "l_suppkey": 2i32, "l_linenumber": 6i32, "l_quantity": 16.0d, "l_extendedprice": 16113.6d, "l_discount": 0.01d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-11", "l_commitdate": "1996-06-19", "l_receiptdate": "1996-06-04", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "y ruthless dolphins to " }, { "l_orderkey": 4833i32, "l_partkey": 107i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 31.0d, "l_extendedprice": 31220.1d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-24", "l_commitdate": "1996-07-15", "l_receiptdate": "1996-07-02", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "ven instructions cajole against the caref" }, { "l_orderkey": 5824i32, "l_partkey": 107i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 44.0d, "l_extendedprice": 44312.4d, "l_discount": 0.08d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-24", "l_commitdate": "1997-01-31", "l_receiptdate": "1997-02-11", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "fily fluffily bold" }, { "l_orderkey": 2i32, "l_partkey": 107i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 38.0d, "l_extendedprice": 38269.8d, "l_discount": 0.0d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-28", "l_commitdate": "1997-01-14", "l_receiptdate": "1997-02-02", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "ven requests. deposits breach a" }, { "l_orderkey": 5829i32, "l_partkey": 107i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 40.0d, "l_extendedprice": 40284.0d, "l_discount": 0.04d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-21", "l_commitdate": "1997-02-12", "l_receiptdate": "1997-05-04", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": " the carefully ironic accounts. a" }, { "l_orderkey": 1477i32, "l_partkey": 107i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 32.0d, "l_extendedprice": 32227.2d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-12", "l_commitdate": "1997-10-26", "l_receiptdate": "1997-10-12", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "; quickly regula" }, { "l_orderkey": 5380i32, "l_partkey": 107i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 48.0d, "l_extendedprice": 48340.8d, "l_discount": 0.04d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-01", "l_commitdate": "1997-12-28", "l_receiptdate": "1997-12-05", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "encies haggle car" }, { "l_orderkey": 3716i32, "l_partkey": 107i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 42.0d, "l_extendedprice": 42298.2d, "l_discount": 0.02d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-03", "l_commitdate": "1997-10-12", "l_receiptdate": "1997-12-15", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": " of the pend" }, { "l_orderkey": 390i32, "l_partkey": 107i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 10.0d, "l_extendedprice": 10071.0d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-26", "l_commitdate": "1998-07-06", "l_receiptdate": "1998-06-23", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": " requests. final accounts x-ray beside the" }, { "l_orderkey": 3840i32, "l_partkey": 107i32, "l_suppkey": 8i32, "l_linenumber": 6i32, "l_quantity": 33.0d, "l_extendedprice": 33234.3d, "l_discount": 0.1d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-29", "l_commitdate": "1998-10-06", "l_receiptdate": "1998-08-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "hely silent deposits w" }, { "l_orderkey": 5633i32, "l_partkey": 107i32, "l_suppkey": 2i32, "l_linenumber": 6i32, "l_quantity": 1.0d, "l_extendedprice": 1007.1d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-09-29", "l_commitdate": "1998-08-28", "l_receiptdate": "1998-10-19", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "thely notornis: " } ] }
-{ "partkey": 110i32, "lines": [ { "l_orderkey": 3907i32, "l_partkey": 110i32, "l_suppkey": 5i32, "l_linenumber": 7i32, "l_quantity": 8.0d, "l_extendedprice": 8080.88d, "l_discount": 0.1d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-09-18", "l_commitdate": "1992-10-29", "l_receiptdate": "1992-09-27", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "furiously final packages." }, { "l_orderkey": 4261i32, "l_partkey": 110i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 12.0d, "l_extendedprice": 12121.32d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-11-01", "l_commitdate": "1993-01-01", "l_receiptdate": "1992-11-12", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans" }, { "l_orderkey": 1991i32, "l_partkey": 110i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 39.0d, "l_extendedprice": 39394.29d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-01-01", "l_commitdate": "1992-11-29", "l_receiptdate": "1993-01-10", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "ckages? carefully bold depos" }, { "l_orderkey": 2656i32, "l_partkey": 110i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 40.0d, "l_extendedprice": 40404.4d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-06-09", "l_commitdate": "1993-07-24", "l_receiptdate": "1993-06-21", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "refully final pearls. final ideas wake. qu" }, { "l_orderkey": 1060i32, "l_partkey": 110i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 16.0d, "l_extendedprice": 16161.76d, "l_discount": 0.03d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-06-15", "l_commitdate": "1993-04-18", "l_receiptdate": "1993-07-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "ccounts. foxes maintain care" }, { "l_orderkey": 4033i32, "l_partkey": 110i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 27.0d, "l_extendedprice": 27272.97d, "l_discount": 0.01d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-08-08", "l_commitdate": "1993-08-14", "l_receiptdate": "1993-08-09", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "pinto beans" }, { "l_orderkey": 5189i32, "l_partkey": 110i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 4.0d, "l_extendedprice": 4040.44d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-12-21", "l_commitdate": "1994-02-23", "l_receiptdate": "1994-01-09", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": ". blithely exp" }, { "l_orderkey": 1059i32, "l_partkey": 110i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 26.0d, "l_extendedprice": 26262.86d, "l_discount": 0.09d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-03-17", "l_commitdate": "1994-04-18", "l_receiptdate": "1994-03-26", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "ar pinto beans at the furiously " }, { "l_orderkey": 1314i32, "l_partkey": 110i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 39.0d, "l_extendedprice": 39394.29d, "l_discount": 0.01d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-08-09", "l_commitdate": "1994-06-14", "l_receiptdate": "1994-08-31", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": " unusual accounts slee" }, { "l_orderkey": 4065i32, "l_partkey": 110i32, "l_suppkey": 5i32, "l_linenumber": 6i32, "l_quantity": 16.0d, "l_extendedprice": 16161.76d, "l_discount": 0.05d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-08-25", "l_commitdate": "1994-08-06", "l_receiptdate": "1994-09-09", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "ncies use furiously. quickly un" }, { "l_orderkey": 98i32, "l_partkey": 110i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 1.0d, "l_extendedprice": 1010.11d, "l_discount": 0.0d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-12-01", "l_commitdate": "1994-12-12", "l_receiptdate": "1994-12-15", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": ". unusual instructions against" }, { "l_orderkey": 3588i32, "l_partkey": 110i32, "l_suppkey": 3i32, "l_linenumber": 6i32, "l_quantity": 37.0d, "l_extendedprice": 37374.07d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "F", "l_shipdate": "1995-06-17", "l_commitdate": "1995-05-25", "l_receiptdate": "1995-06-24", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "xcuses sleep quickly along th" }, { "l_orderkey": 2785i32, "l_partkey": 110i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 37.0d, "l_extendedprice": 37374.07d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-25", "l_commitdate": "1995-09-12", "l_receiptdate": "1995-08-06", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "tructions. furiously " }, { "l_orderkey": 5575i32, "l_partkey": 110i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 7.0d, "l_extendedprice": 7070.77d, "l_discount": 0.01d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-15", "l_commitdate": "1995-09-14", "l_receiptdate": "1995-10-18", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "special requests. final, final " }, { "l_orderkey": 1127i32, "l_partkey": 110i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 38.0d, "l_extendedprice": 38384.18d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-07", "l_commitdate": "1995-11-11", "l_receiptdate": "1995-11-26", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": ". never final packages boost acro" }, { "l_orderkey": 2343i32, "l_partkey": 110i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 27.0d, "l_extendedprice": 27272.97d, "l_discount": 0.0d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-10", "l_commitdate": "1995-11-17", "l_receiptdate": "1995-12-10", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "old theodolites." }, { "l_orderkey": 4801i32, "l_partkey": 110i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 4.0d, "l_extendedprice": 4040.44d, "l_discount": 0.04d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-23", "l_commitdate": "1996-04-04", "l_receiptdate": "1996-03-25", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "pitaphs. regular, reg" }, { "l_orderkey": 4995i32, "l_partkey": 110i32, "l_suppkey": 5i32, "l_linenumber": 6i32, "l_quantity": 48.0d, "l_extendedprice": 48485.28d, "l_discount": 0.09d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-04-14", "l_commitdate": "1996-04-04", "l_receiptdate": "1996-05-07", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "nstructions. carefully final depos" }, { "l_orderkey": 3941i32, "l_partkey": 110i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 29.0d, "l_extendedprice": 29293.19d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-14", "l_commitdate": "1996-10-04", "l_receiptdate": "1996-09-19", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "g the blithely" }, { "l_orderkey": 3426i32, "l_partkey": 110i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 20.0d, "l_extendedprice": 20202.2d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-10", "l_commitdate": "1996-12-24", "l_receiptdate": "1996-12-01", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "sits cajole blit" }, { "l_orderkey": 4068i32, "l_partkey": 110i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 43.0d, "l_extendedprice": 43434.73d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-28", "l_commitdate": "1996-11-16", "l_receiptdate": "1996-12-22", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "ructions. regular, special packag" }, { "l_orderkey": 2850i32, "l_partkey": 110i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 30.0d, "l_extendedprice": 30303.3d, "l_discount": 0.09d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-14", "l_commitdate": "1996-11-29", "l_receiptdate": "1997-01-03", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "even ideas. busy pinto beans sleep above t" }, { "l_orderkey": 3779i32, "l_partkey": 110i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 5.0d, "l_extendedprice": 5050.55d, "l_discount": 0.07d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-07", "l_commitdate": "1997-03-26", "l_receiptdate": "1997-02-05", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "heodolites. slyly regular a" }, { "l_orderkey": 4934i32, "l_partkey": 110i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 41.0d, "l_extendedprice": 41414.51d, "l_discount": 0.06d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-04", "l_commitdate": "1997-04-11", "l_receiptdate": "1997-06-25", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "wake final, ironic f" }, { "l_orderkey": 2470i32, "l_partkey": 110i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 12.0d, "l_extendedprice": 12121.32d, "l_discount": 0.06d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-12", "l_commitdate": "1997-05-24", "l_receiptdate": "1997-07-17", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "l accounts. deposits nag daringly. express," }, { "l_orderkey": 1477i32, "l_partkey": 110i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 8.0d, "l_extendedprice": 8080.88d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-10-25", "l_commitdate": "1997-10-18", "l_receiptdate": "1997-11-16", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "ironic realms wake unusual, even ac" }, { "l_orderkey": 5413i32, "l_partkey": 110i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 22.0d, "l_extendedprice": 22222.42d, "l_discount": 0.02d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-11-10", "l_commitdate": "1997-11-24", "l_receiptdate": "1997-11-22", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "posits. quick" }, { "l_orderkey": 3170i32, "l_partkey": 110i32, "l_suppkey": 5i32, "l_linenumber": 6i32, "l_quantity": 43.0d, "l_extendedprice": 43434.73d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-05", "l_commitdate": "1998-01-04", "l_receiptdate": "1998-01-14", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": ". express dolphins use sly" }, { "l_orderkey": 3651i32, "l_partkey": 110i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 27.0d, "l_extendedprice": 27272.97d, "l_discount": 0.05d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-03", "l_commitdate": "1998-06-30", "l_receiptdate": "1998-05-05", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": " sleep blithely furiously do" } ] }
-{ "partkey": 112i32, "lines": [ { "l_orderkey": 3907i32, "l_partkey": 112i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 41.0d, "l_extendedprice": 41496.51d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-09-13", "l_commitdate": "1992-10-23", "l_receiptdate": "1992-09-29", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "ackages wake along the carefully regul" }, { "l_orderkey": 2885i32, "l_partkey": 112i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 4.0d, "l_extendedprice": 4048.44d, "l_discount": 0.07d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-10-09", "l_commitdate": "1992-12-17", "l_receiptdate": "1992-11-04", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": " pending packages wake. " }, { "l_orderkey": 481i32, "l_partkey": 112i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 31.0d, "l_extendedprice": 31375.41d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-01-15", "l_commitdate": "1992-12-31", "l_receiptdate": "1993-01-21", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "usly final packages believe. quick" }, { "l_orderkey": 2305i32, "l_partkey": 112i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 17.0d, "l_extendedprice": 17205.87d, "l_discount": 0.0d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-02-21", "l_commitdate": "1993-03-30", "l_receiptdate": "1993-03-19", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": " carefully alongside of " }, { "l_orderkey": 2759i32, "l_partkey": 112i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 11.0d, "l_extendedprice": 11133.21d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-01-24", "l_commitdate": "1994-01-16", "l_receiptdate": "1994-02-21", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "hely regular " }, { "l_orderkey": 1028i32, "l_partkey": 112i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 39.0d, "l_extendedprice": 39472.29d, "l_discount": 0.06d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-02-18", "l_commitdate": "1994-03-22", "l_receiptdate": "1994-03-06", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": " final dependencies affix a" }, { "l_orderkey": 833i32, "l_partkey": 112i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 38.0d, "l_extendedprice": 38460.18d, "l_discount": 0.05d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-04-05", "l_commitdate": "1994-04-21", "l_receiptdate": "1994-05-01", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": " platelets promise furiously. " }, { "l_orderkey": 2564i32, "l_partkey": 112i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 4.0d, "l_extendedprice": 4048.44d, "l_discount": 0.02d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-11-12", "l_commitdate": "1994-10-29", "l_receiptdate": "1994-12-04", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "y express requests sleep furi" }, { "l_orderkey": 3585i32, "l_partkey": 112i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 11.0d, "l_extendedprice": 11133.21d, "l_discount": 0.01d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-01-04", "l_commitdate": "1995-02-14", "l_receiptdate": "1995-01-15", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "even packages" }, { "l_orderkey": 5955i32, "l_partkey": 112i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 40.0d, "l_extendedprice": 40484.4d, "l_discount": 0.03d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-04-01", "l_commitdate": "1995-06-11", "l_receiptdate": "1995-04-27", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "oss the fluffily regular" }, { "l_orderkey": 2982i32, "l_partkey": 112i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 21.0d, "l_extendedprice": 21254.31d, "l_discount": 0.0d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-04-03", "l_commitdate": "1995-06-08", "l_receiptdate": "1995-04-18", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "ironic deposits. furiously ex" }, { "l_orderkey": 4769i32, "l_partkey": 112i32, "l_suppkey": 6i32, "l_linenumber": 5i32, "l_quantity": 15.0d, "l_extendedprice": 15181.65d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "F", "l_shipdate": "1995-06-12", "l_commitdate": "1995-07-07", "l_receiptdate": "1995-07-04", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "egular platelets can cajole across the " }, { "l_orderkey": 1095i32, "l_partkey": 112i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 40.0d, "l_extendedprice": 40484.4d, "l_discount": 0.09d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-18", "l_commitdate": "1995-11-14", "l_receiptdate": "1995-11-09", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": " bold accounts haggle slyly furiously even" }, { "l_orderkey": 5153i32, "l_partkey": 112i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 36.0d, "l_extendedprice": 36435.96d, "l_discount": 0.01d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-15", "l_commitdate": "1995-11-08", "l_receiptdate": "1995-12-30", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": " ironic instru" }, { "l_orderkey": 768i32, "l_partkey": 112i32, "l_suppkey": 9i32, "l_linenumber": 6i32, "l_quantity": 43.0d, "l_extendedprice": 43520.73d, "l_discount": 0.1d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-22", "l_commitdate": "1996-11-03", "l_receiptdate": "1996-10-22", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "sual ideas wake quickly" }, { "l_orderkey": 4071i32, "l_partkey": 112i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 22.0d, "l_extendedprice": 22266.42d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-31", "l_commitdate": "1996-12-14", "l_receiptdate": "1996-11-05", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "sits cajole carefully final instructio" }, { "l_orderkey": 5888i32, "l_partkey": 112i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 24.0d, "l_extendedprice": 24290.64d, "l_discount": 0.03d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-07", "l_commitdate": "1996-11-30", "l_receiptdate": "1996-11-20", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "ing to the spe" }, { "l_orderkey": 5024i32, "l_partkey": 112i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 18.0d, "l_extendedprice": 18217.98d, "l_discount": 0.04d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-02", "l_commitdate": "1997-01-16", "l_receiptdate": "1996-12-05", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "zle carefully sauternes. quickly" }, { "l_orderkey": 289i32, "l_partkey": 112i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 6.0d, "l_extendedprice": 6072.66d, "l_discount": 0.06d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-18", "l_commitdate": "1997-05-08", "l_receiptdate": "1997-03-19", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "d packages use fluffily furiously" }, { "l_orderkey": 1698i32, "l_partkey": 112i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 19.0d, "l_extendedprice": 19230.09d, "l_discount": 0.0d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-04", "l_commitdate": "1997-06-21", "l_receiptdate": "1997-08-01", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": " fluffily e" }, { "l_orderkey": 5313i32, "l_partkey": 112i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 47.0d, "l_extendedprice": 47569.17d, "l_discount": 0.06d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-12", "l_commitdate": "1997-08-18", "l_receiptdate": "1997-08-13", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "pinto beans across the " }, { "l_orderkey": 2887i32, "l_partkey": 112i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 17.0d, "l_extendedprice": 17205.87d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-31", "l_commitdate": "1997-07-04", "l_receiptdate": "1997-09-17", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "fily final packages. regula" }, { "l_orderkey": 1475i32, "l_partkey": 112i32, "l_suppkey": 3i32, "l_linenumber": 7i32, "l_quantity": 23.0d, "l_extendedprice": 23278.53d, "l_discount": 0.02d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-02-13", "l_commitdate": "1998-02-05", "l_receiptdate": "1998-03-08", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "hely regular hocke" }, { "l_orderkey": 2113i32, "l_partkey": 112i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 24.0d, "l_extendedprice": 24290.64d, "l_discount": 0.03d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-02-19", "l_commitdate": "1998-01-08", "l_receiptdate": "1998-03-16", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "kly regular accounts hinder about the" }, { "l_orderkey": 2567i32, "l_partkey": 112i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 50.0d, "l_extendedprice": 50605.5d, "l_discount": 0.06d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-05", "l_commitdate": "1998-04-18", "l_receiptdate": "1998-05-09", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": ". carefully pending foxes are furi" }, { "l_orderkey": 3713i32, "l_partkey": 112i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 41.0d, "l_extendedprice": 41496.51d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-11", "l_commitdate": "1998-07-17", "l_receiptdate": "1998-05-22", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "eposits wake blithely fina" }, { "l_orderkey": 5664i32, "l_partkey": 112i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 44.0d, "l_extendedprice": 44532.84d, "l_discount": 0.01d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-09-24", "l_commitdate": "1998-09-26", "l_receiptdate": "1998-10-23", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "ang thinly bold pa" }, { "l_orderkey": 5827i32, "l_partkey": 112i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 38.0d, "l_extendedprice": 38460.18d, "l_discount": 0.03d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-10-18", "l_commitdate": "1998-08-27", "l_receiptdate": "1998-10-23", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "ly ruthless accounts" } ] }
-{ "partkey": 117i32, "lines": [ { "l_orderkey": 1856i32, "l_partkey": 117i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 20.0d, "l_extendedprice": 20342.2d, "l_discount": 0.04d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-05-04", "l_commitdate": "1992-05-06", "l_receiptdate": "1992-05-11", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "ost carefully. slyly bold accounts" }, { "l_orderkey": 4545i32, "l_partkey": 117i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 27.0d, "l_extendedprice": 27461.97d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-03-18", "l_commitdate": "1993-02-22", "l_receiptdate": "1993-03-23", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "ccounts haggle carefully. deposits " }, { "l_orderkey": 3494i32, "l_partkey": 117i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 40.0d, "l_extendedprice": 40684.4d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-07-10", "l_commitdate": "1993-06-01", "l_receiptdate": "1993-07-25", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "lites haggle furiously about the fin" }, { "l_orderkey": 3648i32, "l_partkey": 117i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 25.0d, "l_extendedprice": 25427.75d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-08-15", "l_commitdate": "1993-08-25", "l_receiptdate": "1993-09-09", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "s requests. silent asymp" }, { "l_orderkey": 807i32, "l_partkey": 117i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 49.0d, "l_extendedprice": 49838.39d, "l_discount": 0.0d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-12-05", "l_commitdate": "1994-01-13", "l_receiptdate": "1993-12-25", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": " furiously according to the un" }, { "l_orderkey": 2339i32, "l_partkey": 117i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 13.0d, "l_extendedprice": 13222.43d, "l_discount": 0.06d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-03-10", "l_commitdate": "1994-02-18", "l_receiptdate": "1994-03-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "ges. blithely special depend" }, { "l_orderkey": 353i32, "l_partkey": 117i32, "l_suppkey": 4i32, "l_linenumber": 5i32, "l_quantity": 9.0d, "l_extendedprice": 9153.99d, "l_discount": 0.02d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-03-15", "l_commitdate": "1994-03-20", "l_receiptdate": "1994-03-18", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "ual accounts! carefu" }, { "l_orderkey": 4193i32, "l_partkey": 117i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 3.0d, "l_extendedprice": 3051.33d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-04-29", "l_commitdate": "1994-03-20", "l_receiptdate": "1994-05-29", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "osits above the depo" }, { "l_orderkey": 960i32, "l_partkey": 117i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 25.0d, "l_extendedprice": 25427.75d, "l_discount": 0.06d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-12-01", "l_commitdate": "1994-10-29", "l_receiptdate": "1994-12-27", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "ts. fluffily regular requests " }, { "l_orderkey": 2790i32, "l_partkey": 117i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 50.0d, "l_extendedprice": 50855.5d, "l_discount": 0.0d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-12-08", "l_commitdate": "1994-11-17", "l_receiptdate": "1994-12-19", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "fter the regular ideas. f" }, { "l_orderkey": 5920i32, "l_partkey": 117i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 2.0d, "l_extendedprice": 2034.22d, "l_discount": 0.08d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-02-18", "l_commitdate": "1995-01-13", "l_receiptdate": "1995-03-04", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": " evenly spe" }, { "l_orderkey": 3526i32, "l_partkey": 117i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 23.0d, "l_extendedprice": 23393.53d, "l_discount": 0.03d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-05-01", "l_commitdate": "1995-05-31", "l_receiptdate": "1995-05-25", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "special, regular packages cajole. " }, { "l_orderkey": 3393i32, "l_partkey": 117i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 16.0d, "l_extendedprice": 16273.76d, "l_discount": 0.01d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-17", "l_commitdate": "1995-08-19", "l_receiptdate": "1995-08-04", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "uses. instructions after the blithely " }, { "l_orderkey": 2436i32, "l_partkey": 117i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 18.0d, "l_extendedprice": 18307.98d, "l_discount": 0.05d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-14", "l_commitdate": "1995-11-21", "l_receiptdate": "1995-11-12", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "y ironic accounts. furiously even packa" }, { "l_orderkey": 1575i32, "l_partkey": 117i32, "l_suppkey": 1i32, "l_linenumber": 7i32, "l_quantity": 48.0d, "l_extendedprice": 48821.28d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-19", "l_commitdate": "1995-10-25", "l_receiptdate": "1995-12-07", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "cies. regu" }, { "l_orderkey": 3617i32, "l_partkey": 117i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 46.0d, "l_extendedprice": 46787.06d, "l_discount": 0.03d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-19", "l_commitdate": "1996-05-14", "l_receiptdate": "1996-06-11", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "ar theodolites. regu" }, { "l_orderkey": 4833i32, "l_partkey": 117i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 11.0d, "l_extendedprice": 11188.21d, "l_discount": 0.03d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-24", "l_commitdate": "1996-07-26", "l_receiptdate": "1996-09-19", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "s nag above the busily sile" }, { "l_orderkey": 5508i32, "l_partkey": 117i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 4.0d, "l_extendedprice": 4068.44d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-01", "l_commitdate": "1996-08-02", "l_receiptdate": "1996-09-17", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "fluffily about the even " }, { "l_orderkey": 2342i32, "l_partkey": 117i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 24.0d, "l_extendedprice": 24410.64d, "l_discount": 0.1d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-30", "l_commitdate": "1996-07-22", "l_receiptdate": "1996-10-28", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "nstructions c" }, { "l_orderkey": 3782i32, "l_partkey": 117i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 34.0d, "l_extendedprice": 34581.74d, "l_discount": 0.02d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-07", "l_commitdate": "1996-10-22", "l_receiptdate": "1996-11-19", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "gage after the even" }, { "l_orderkey": 3236i32, "l_partkey": 117i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 10.0d, "l_extendedprice": 10171.1d, "l_discount": 0.06d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-15", "l_commitdate": "1996-12-14", "l_receiptdate": "1996-11-29", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "arefully. fluffily reg" }, { "l_orderkey": 5156i32, "l_partkey": 117i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 21.0d, "l_extendedprice": 21359.31d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-01", "l_commitdate": "1997-01-30", "l_receiptdate": "1997-01-11", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "ts detect against the furiously reg" }, { "l_orderkey": 3623i32, "l_partkey": 117i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 33.0d, "l_extendedprice": 33564.63d, "l_discount": 0.08d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-17", "l_commitdate": "1997-02-13", "l_receiptdate": "1997-04-02", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "odolites. blithely spe" }, { "l_orderkey": 705i32, "l_partkey": 117i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 35.0d, "l_extendedprice": 35598.85d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-25", "l_commitdate": "1997-03-20", "l_receiptdate": "1997-04-23", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "carefully ironic accounts" }, { "l_orderkey": 288i32, "l_partkey": 117i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 49.0d, "l_extendedprice": 49838.39d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-19", "l_commitdate": "1997-05-19", "l_receiptdate": "1997-05-18", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "ic excuses sleep always spe" }, { "l_orderkey": 3270i32, "l_partkey": 117i32, "l_suppkey": 1i32, "l_linenumber": 7i32, "l_quantity": 9.0d, "l_extendedprice": 9153.99d, "l_discount": 0.06d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-14", "l_commitdate": "1997-08-11", "l_receiptdate": "1997-09-09", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "ual packages" }, { "l_orderkey": 1794i32, "l_partkey": 117i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 23.0d, "l_extendedprice": 23393.53d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-10-13", "l_commitdate": "1997-11-30", "l_receiptdate": "1997-10-28", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "usly unusual theodolites doze about " }, { "l_orderkey": 3079i32, "l_partkey": 117i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 38.0d, "l_extendedprice": 38650.18d, "l_discount": 0.08d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-11-07", "l_commitdate": "1997-11-25", "l_receiptdate": "1997-12-06", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "e carefully regular realms" }, { "l_orderkey": 1794i32, "l_partkey": 117i32, "l_suppkey": 4i32, "l_linenumber": 5i32, "l_quantity": 47.0d, "l_extendedprice": 47804.17d, "l_discount": 0.1d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-15", "l_commitdate": "1997-11-30", "l_receiptdate": "1998-02-14", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": " haggle slyly. furiously express orbit" }, { "l_orderkey": 1508i32, "l_partkey": 117i32, "l_suppkey": 8i32, "l_linenumber": 7i32, "l_quantity": 38.0d, "l_extendedprice": 38650.18d, "l_discount": 0.03d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-30", "l_commitdate": "1998-06-23", "l_receiptdate": "1998-05-18", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "tes wake furiously regular w" }, { "l_orderkey": 3360i32, "l_partkey": 117i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 29.0d, "l_extendedprice": 29496.19d, "l_discount": 0.1d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-19", "l_commitdate": "1998-03-03", "l_receiptdate": "1998-06-09", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "hely gifts. spe" }, { "l_orderkey": 966i32, "l_partkey": 117i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 42.0d, "l_extendedprice": 42718.62d, "l_discount": 0.02d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-28", "l_commitdate": "1998-06-20", "l_receiptdate": "1998-07-05", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "tions boost furiously car" }, { "l_orderkey": 3686i32, "l_partkey": 117i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 7.0d, "l_extendedprice": 7119.77d, "l_discount": 0.1d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-16", "l_commitdate": "1998-09-02", "l_receiptdate": "1998-07-22", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "ake carefully carefully q" }, { "l_orderkey": 5410i32, "l_partkey": 117i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 48.0d, "l_extendedprice": 48821.28d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-09-27", "l_commitdate": "1998-09-11", "l_receiptdate": "1998-10-01", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": " about the slyly even courts. quickly regul" }, { "l_orderkey": 4678i32, "l_partkey": 117i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 18.0d, "l_extendedprice": 18307.98d, "l_discount": 0.03d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-10-30", "l_commitdate": "1998-09-22", "l_receiptdate": "1998-11-25", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "usly ironic " } ] }
-{ "partkey": 120i32, "lines": [ { "l_orderkey": 4292i32, "l_partkey": 120i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 35.0d, "l_extendedprice": 35704.2d, "l_discount": 0.03d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-03-23", "l_commitdate": "1992-04-04", "l_receiptdate": "1992-04-02", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "dugouts use. furiously bold packag" }, { "l_orderkey": 1221i32, "l_partkey": 120i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 41.0d, "l_extendedprice": 41824.92d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-04-28", "l_commitdate": "1992-07-02", "l_receiptdate": "1992-05-19", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "ns. bold deposit" }, { "l_orderkey": 4903i32, "l_partkey": 120i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 27.0d, "l_extendedprice": 27543.24d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-06-29", "l_commitdate": "1992-06-09", "l_receiptdate": "1992-07-08", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "pinto beans are; " }, { "l_orderkey": 3142i32, "l_partkey": 120i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 15.0d, "l_extendedprice": 15301.8d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-08-15", "l_commitdate": "1992-08-18", "l_receiptdate": "1992-08-22", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "instructions are. ironic packages doz" }, { "l_orderkey": 2054i32, "l_partkey": 120i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 31.0d, "l_extendedprice": 31623.72d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-08-18", "l_commitdate": "1992-09-04", "l_receiptdate": "1992-08-24", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "se bold, regular accounts. unusual depos" }, { "l_orderkey": 1505i32, "l_partkey": 120i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 4.0d, "l_extendedprice": 4080.48d, "l_discount": 0.09d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-12-14", "l_commitdate": "1992-11-11", "l_receiptdate": "1993-01-02", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "side of the s" }, { "l_orderkey": 611i32, "l_partkey": 120i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 39.0d, "l_extendedprice": 39784.68d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-03-10", "l_commitdate": "1993-03-10", "l_receiptdate": "1993-03-17", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "the evenly bold requests. furious" }, { "l_orderkey": 3367i32, "l_partkey": 120i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 38.0d, "l_extendedprice": 38764.56d, "l_discount": 0.03d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-03-13", "l_commitdate": "1993-02-12", "l_receiptdate": "1993-03-31", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "even packages sleep blithely slyly expr" }, { "l_orderkey": 97i32, "l_partkey": 120i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 13.0d, "l_extendedprice": 13261.56d, "l_discount": 0.0d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-04-01", "l_commitdate": "1993-04-04", "l_receiptdate": "1993-04-08", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "ayers cajole against the furiously" }, { "l_orderkey": 2720i32, "l_partkey": 120i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 50.0d, "l_extendedprice": 51006.0d, "l_discount": 0.1d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-08-10", "l_commitdate": "1993-07-29", "l_receiptdate": "1993-09-06", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "l requests. deposits nag furiously" }, { "l_orderkey": 132i32, "l_partkey": 120i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 43.0d, "l_extendedprice": 43865.16d, "l_discount": 0.01d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-09-01", "l_commitdate": "1993-08-16", "l_receiptdate": "1993-09-22", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "y pending theodolites" }, { "l_orderkey": 353i32, "l_partkey": 120i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 41.0d, "l_extendedprice": 41824.92d, "l_discount": 0.0d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-03-25", "l_commitdate": "1994-03-31", "l_receiptdate": "1994-03-30", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "refully final theodoli" }, { "l_orderkey": 1824i32, "l_partkey": 120i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 45.0d, "l_extendedprice": 45905.4d, "l_discount": 0.03d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-08-21", "l_commitdate": "1994-06-21", "l_receiptdate": "1994-09-19", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "ent Tiresias. quickly express " }, { "l_orderkey": 5317i32, "l_partkey": 120i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 37.0d, "l_extendedprice": 37744.44d, "l_discount": 0.09d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-09-15", "l_commitdate": "1994-10-24", "l_receiptdate": "1994-09-23", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "totes nag theodolites. pend" }, { "l_orderkey": 3175i32, "l_partkey": 120i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 28.0d, "l_extendedprice": 28563.36d, "l_discount": 0.1d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-09-27", "l_commitdate": "1994-10-05", "l_receiptdate": "1994-10-04", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "ore the even, silent foxes. b" }, { "l_orderkey": 4960i32, "l_partkey": 120i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 14.0d, "l_extendedprice": 14281.68d, "l_discount": 0.0d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-04-03", "l_commitdate": "1995-04-17", "l_receiptdate": "1995-04-07", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "accounts. warhorses are. grouches " }, { "l_orderkey": 1830i32, "l_partkey": 120i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 38.0d, "l_extendedprice": 38764.56d, "l_discount": 0.0d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-04-20", "l_commitdate": "1995-05-22", "l_receiptdate": "1995-04-24", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "ely even a" }, { "l_orderkey": 35i32, "l_partkey": 120i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 34.0d, "l_extendedprice": 34684.08d, "l_discount": 0.08d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-08", "l_commitdate": "1996-01-15", "l_receiptdate": "1995-11-26", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": ". silent, unusual deposits boost" }, { "l_orderkey": 3174i32, "l_partkey": 120i32, "l_suppkey": 7i32, "l_linenumber": 6i32, "l_quantity": 8.0d, "l_extendedprice": 8160.96d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-07", "l_commitdate": "1996-01-08", "l_receiptdate": "1995-12-29", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "nic deposits among t" }, { "l_orderkey": 774i32, "l_partkey": 120i32, "l_suppkey": 1i32, "l_linenumber": 6i32, "l_quantity": 2.0d, "l_extendedprice": 2040.24d, "l_discount": 0.07d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-11", "l_commitdate": "1996-02-10", "l_receiptdate": "1995-12-14", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "accounts; slyly regular" }, { "l_orderkey": 4579i32, "l_partkey": 120i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 8.0d, "l_extendedprice": 8160.96d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-16", "l_commitdate": "1996-01-15", "l_receiptdate": "1995-12-18", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "posits. carefully perman" }, { "l_orderkey": 36i32, "l_partkey": 120i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 42.0d, "l_extendedprice": 42845.04d, "l_discount": 0.09d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-02-03", "l_commitdate": "1996-01-21", "l_receiptdate": "1996-02-23", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": " careful courts. special " }, { "l_orderkey": 3425i32, "l_partkey": 120i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 11.0d, "l_extendedprice": 11221.32d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-04-24", "l_commitdate": "1996-05-29", "l_receiptdate": "1996-05-23", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "ckly final deposits use quickly?" }, { "l_orderkey": 1733i32, "l_partkey": 120i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 29.0d, "l_extendedprice": 29583.48d, "l_discount": 0.1d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-16", "l_commitdate": "1996-08-08", "l_receiptdate": "1996-07-28", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "ns detect among the special accounts. qu" }, { "l_orderkey": 3619i32, "l_partkey": 120i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 38.0d, "l_extendedprice": 38764.56d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-08", "l_commitdate": "1997-02-03", "l_receiptdate": "1997-01-07", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "theodolites detect abo" }, { "l_orderkey": 1959i32, "l_partkey": 120i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 15.0d, "l_extendedprice": 15301.8d, "l_discount": 0.08d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-20", "l_commitdate": "1997-02-18", "l_receiptdate": "1997-02-08", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": " quickly sp" }, { "l_orderkey": 4135i32, "l_partkey": 120i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 32.0d, "l_extendedprice": 32643.84d, "l_discount": 0.07d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-14", "l_commitdate": "1997-04-23", "l_receiptdate": "1997-04-12", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": " ideas. requests use. furiously" }, { "l_orderkey": 3013i32, "l_partkey": 120i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 35.0d, "l_extendedprice": 35704.2d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-02", "l_commitdate": "1997-05-04", "l_receiptdate": "1997-04-16", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "ely accord" }, { "l_orderkey": 583i32, "l_partkey": 120i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 47.0d, "l_extendedprice": 47945.64d, "l_discount": 0.1d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-14", "l_commitdate": "1997-05-12", "l_receiptdate": "1997-08-11", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "nts are fluffily. furiously even re" }, { "l_orderkey": 5313i32, "l_partkey": 120i32, "l_suppkey": 7i32, "l_linenumber": 6i32, "l_quantity": 21.0d, "l_extendedprice": 21422.52d, "l_discount": 0.05d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-26", "l_commitdate": "1997-09-02", "l_receiptdate": "1997-10-18", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "he blithely regular packages. quickly" }, { "l_orderkey": 1477i32, "l_partkey": 120i32, "l_suppkey": 4i32, "l_linenumber": 7i32, "l_quantity": 33.0d, "l_extendedprice": 33663.96d, "l_discount": 0.06d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-11-12", "l_commitdate": "1997-11-06", "l_receiptdate": "1997-11-24", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "yly regular p" }, { "l_orderkey": 2944i32, "l_partkey": 120i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 44.0d, "l_extendedprice": 44885.28d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-25", "l_commitdate": "1997-10-28", "l_receiptdate": "1998-01-21", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "ickly special theodolit" }, { "l_orderkey": 899i32, "l_partkey": 120i32, "l_suppkey": 4i32, "l_linenumber": 6i32, "l_quantity": 47.0d, "l_extendedprice": 47945.64d, "l_discount": 0.0d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-14", "l_commitdate": "1998-05-30", "l_receiptdate": "1998-05-13", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "furiously final foxes after the s" }, { "l_orderkey": 5671i32, "l_partkey": 120i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 25.0d, "l_extendedprice": 25503.0d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-17", "l_commitdate": "1998-03-28", "l_receiptdate": "1998-05-06", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "cording to the quickly final requests-- " }, { "l_orderkey": 4901i32, "l_partkey": 120i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 16.0d, "l_extendedprice": 16321.92d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-19", "l_commitdate": "1998-03-18", "l_receiptdate": "1998-04-21", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "deposits. blithely fin" }, { "l_orderkey": 4164i32, "l_partkey": 120i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 9.0d, "l_extendedprice": 9181.08d, "l_discount": 0.07d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-25", "l_commitdate": "1998-08-13", "l_receiptdate": "1998-09-19", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "re fluffily slyly bold requests. " } ] }
-{ "partkey": 123i32, "lines": [ { "l_orderkey": 3011i32, "l_partkey": 123i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 42.0d, "l_extendedprice": 42971.04d, "l_discount": 0.05d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-02-01", "l_commitdate": "1992-03-18", "l_receiptdate": "1992-02-29", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "osits haggle quickly pending, " }, { "l_orderkey": 5095i32, "l_partkey": 123i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 28.0d, "l_extendedprice": 28647.36d, "l_discount": 0.01d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-06-20", "l_commitdate": "1992-06-27", "l_receiptdate": "1992-06-22", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": " into the final courts. ca" }, { "l_orderkey": 1505i32, "l_partkey": 123i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 50.0d, "l_extendedprice": 51156.0d, "l_discount": 0.0d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-11-22", "l_commitdate": "1992-09-24", "l_receiptdate": "1992-11-26", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "lyly special platelets. requests ar" }, { "l_orderkey": 5414i32, "l_partkey": 123i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 48.0d, "l_extendedprice": 49109.76d, "l_discount": 0.06d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-06-08", "l_commitdate": "1993-05-14", "l_receiptdate": "1993-07-06", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": " silent dolphins; fluffily regular tithe" }, { "l_orderkey": 3877i32, "l_partkey": 123i32, "l_suppkey": 4i32, "l_linenumber": 6i32, "l_quantity": 7.0d, "l_extendedprice": 7161.84d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-06-14", "l_commitdate": "1993-07-09", "l_receiptdate": "1993-06-28", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "lar dolphins cajole silently " }, { "l_orderkey": 2503i32, "l_partkey": 123i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 33.0d, "l_extendedprice": 33762.96d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-07-06", "l_commitdate": "1993-08-14", "l_receiptdate": "1993-08-02", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "nal courts integrate according to the" }, { "l_orderkey": 4455i32, "l_partkey": 123i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 34.0d, "l_extendedprice": 34786.08d, "l_discount": 0.0d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-10-24", "l_commitdate": "1993-11-27", "l_receiptdate": "1993-11-04", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": " slyly ironic requests. quickly even d" }, { "l_orderkey": 5189i32, "l_partkey": 123i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 14.0d, "l_extendedprice": 14323.68d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-01-23", "l_commitdate": "1994-01-05", "l_receiptdate": "1994-02-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "unusual packag" }, { "l_orderkey": 3586i32, "l_partkey": 123i32, "l_suppkey": 4i32, "l_linenumber": 7i32, "l_quantity": 33.0d, "l_extendedprice": 33762.96d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-02-11", "l_commitdate": "1994-01-15", "l_receiptdate": "1994-03-03", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "iously regular pinto beans integrate" }, { "l_orderkey": 5059i32, "l_partkey": 123i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 19.0d, "l_extendedprice": 19439.28d, "l_discount": 0.06d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-03-02", "l_commitdate": "1993-12-26", "l_receiptdate": "1994-03-14", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": " special ideas poach blithely qu" }, { "l_orderkey": 291i32, "l_partkey": 123i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 21.0d, "l_extendedprice": 21485.52d, "l_discount": 0.05d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-05-26", "l_commitdate": "1994-05-10", "l_receiptdate": "1994-06-23", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "y quickly regular theodolites. final t" }, { "l_orderkey": 1059i32, "l_partkey": 123i32, "l_suppkey": 4i32, "l_linenumber": 7i32, "l_quantity": 13.0d, "l_extendedprice": 13300.56d, "l_discount": 0.01d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-06-12", "l_commitdate": "1994-05-11", "l_receiptdate": "1994-07-02", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "usly regular theodo" }, { "l_orderkey": 4065i32, "l_partkey": 123i32, "l_suppkey": 4i32, "l_linenumber": 5i32, "l_quantity": 29.0d, "l_extendedprice": 29670.48d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-06-29", "l_commitdate": "1994-08-19", "l_receiptdate": "1994-07-17", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "equests. packages sleep slyl" }, { "l_orderkey": 5760i32, "l_partkey": 123i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 19.0d, "l_extendedprice": 19439.28d, "l_discount": 0.1d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-08-02", "l_commitdate": "1994-08-02", "l_receiptdate": "1994-08-15", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "sits nag. even, regular ideas cajole b" }, { "l_orderkey": 1474i32, "l_partkey": 123i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 30.0d, "l_extendedprice": 30693.6d, "l_discount": 0.04d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-03-23", "l_commitdate": "1995-02-11", "l_receiptdate": "1995-04-17", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "usly. evenly express " }, { "l_orderkey": 3329i32, "l_partkey": 123i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 1.0d, "l_extendedprice": 1023.12d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-22", "l_commitdate": "1995-09-28", "l_receiptdate": "1995-09-09", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "regular packages are carefull" }, { "l_orderkey": 2823i32, "l_partkey": 123i32, "l_suppkey": 2i32, "l_linenumber": 6i32, "l_quantity": 20.0d, "l_extendedprice": 20462.4d, "l_discount": 0.07d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-13", "l_commitdate": "1995-12-06", "l_receiptdate": "1995-12-07", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "its sleep between the unusual, ironic pac" }, { "l_orderkey": 3392i32, "l_partkey": 123i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 13.0d, "l_extendedprice": 13300.56d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-26", "l_commitdate": "1996-01-17", "l_receiptdate": "1995-12-01", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "across the fluffily bold deposits." }, { "l_orderkey": 1607i32, "l_partkey": 123i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 39.0d, "l_extendedprice": 39901.68d, "l_discount": 0.0d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-02-01", "l_commitdate": "1996-02-12", "l_receiptdate": "1996-02-16", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "uches cajole. accounts ar" }, { "l_orderkey": 4548i32, "l_partkey": 123i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 47.0d, "l_extendedprice": 48086.64d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-24", "l_commitdate": "1996-09-12", "l_receiptdate": "1996-08-08", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "ts. excuses use slyly spec" }, { "l_orderkey": 4673i32, "l_partkey": 123i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 9.0d, "l_extendedprice": 9208.08d, "l_discount": 0.04d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-15", "l_commitdate": "1996-09-30", "l_receiptdate": "1996-10-30", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "ages nag across " }, { "l_orderkey": 3941i32, "l_partkey": 123i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 19.0d, "l_extendedprice": 19439.28d, "l_discount": 0.05d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-10", "l_commitdate": "1996-10-26", "l_receiptdate": "1996-12-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "eposits haggle furiously even" }, { "l_orderkey": 5024i32, "l_partkey": 123i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 42.0d, "l_extendedprice": 42971.04d, "l_discount": 0.03d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-02", "l_commitdate": "1996-12-08", "l_receiptdate": "1996-12-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "tegrate. busily spec" }, { "l_orderkey": 4967i32, "l_partkey": 123i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 1.0d, "l_extendedprice": 1023.12d, "l_discount": 0.1d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-04", "l_commitdate": "1997-03-29", "l_receiptdate": "1997-06-23", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "osits. unusual frets thrash furiously" }, { "l_orderkey": 2242i32, "l_partkey": 123i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 15.0d, "l_extendedprice": 15346.8d, "l_discount": 0.09d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-04", "l_commitdate": "1997-09-21", "l_receiptdate": "1997-08-11", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "its. carefully express packages cajole. bli" }, { "l_orderkey": 2913i32, "l_partkey": 123i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 39.0d, "l_extendedprice": 39901.68d, "l_discount": 0.06d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-28", "l_commitdate": "1997-09-27", "l_receiptdate": "1997-09-02", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": ". final packages a" }, { "l_orderkey": 2113i32, "l_partkey": 123i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 40.0d, "l_extendedprice": 40924.8d, "l_discount": 0.04d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-16", "l_commitdate": "1997-12-11", "l_receiptdate": "1998-02-06", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "bout the quickly ironic t" }, { "l_orderkey": 5700i32, "l_partkey": 123i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 30.0d, "l_extendedprice": 30693.6d, "l_discount": 0.0d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-19", "l_commitdate": "1998-03-13", "l_receiptdate": "1998-04-27", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "ly blithely final instructions. fl" }, { "l_orderkey": 3813i32, "l_partkey": 123i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 39.0d, "l_extendedprice": 39901.68d, "l_discount": 0.05d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-30", "l_commitdate": "1998-08-12", "l_receiptdate": "1998-09-29", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "y ideas. final ideas about the sp" }, { "l_orderkey": 5763i32, "l_partkey": 123i32, "l_suppkey": 4i32, "l_linenumber": 5i32, "l_quantity": 8.0d, "l_extendedprice": 8184.96d, "l_discount": 0.06d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-09-23", "l_commitdate": "1998-09-15", "l_receiptdate": "1998-09-27", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "foxes wake slyly. car" } ] }
-{ "partkey": 137i32, "lines": [ { "l_orderkey": 3524i32, "l_partkey": 137i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 5.0d, "l_extendedprice": 5185.65d, "l_discount": 0.01d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-05-23", "l_commitdate": "1992-07-25", "l_receiptdate": "1992-06-19", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "ts whithout the bold depende" }, { "l_orderkey": 1955i32, "l_partkey": 137i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 32.0d, "l_extendedprice": 33188.16d, "l_discount": 0.02d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-07-05", "l_commitdate": "1992-06-29", "l_receiptdate": "1992-08-03", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "g to the carefully sile" }, { "l_orderkey": 4099i32, "l_partkey": 137i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 3.0d, "l_extendedprice": 3111.39d, "l_discount": 0.04d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-09-12", "l_commitdate": "1992-10-18", "l_receiptdate": "1992-10-01", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": ". special packages sleep" }, { "l_orderkey": 3810i32, "l_partkey": 137i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 41.0d, "l_extendedprice": 42522.33d, "l_discount": 0.08d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-10-26", "l_commitdate": "1992-10-27", "l_receiptdate": "1992-11-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "l requests boost slyly along the slyl" }, { "l_orderkey": 5635i32, "l_partkey": 137i32, "l_suppkey": 3i32, "l_linenumber": 7i32, "l_quantity": 32.0d, "l_extendedprice": 33188.16d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-11-24", "l_commitdate": "1992-09-20", "l_receiptdate": "1992-12-17", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "slyly even" }, { "l_orderkey": 614i32, "l_partkey": 137i32, "l_suppkey": 8i32, "l_linenumber": 6i32, "l_quantity": 48.0d, "l_extendedprice": 49782.24d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-12-14", "l_commitdate": "1993-01-22", "l_receiptdate": "1993-01-11", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": " regular platelets cajole quickly eve" }, { "l_orderkey": 1573i32, "l_partkey": 137i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 7.0d, "l_extendedprice": 7259.91d, "l_discount": 0.0d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-01-30", "l_commitdate": "1993-03-14", "l_receiptdate": "1993-02-27", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "eodolites sleep slyly. slyly f" }, { "l_orderkey": 1703i32, "l_partkey": 137i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 35.0d, "l_extendedprice": 36299.55d, "l_discount": 0.01d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-04-14", "l_commitdate": "1993-03-31", "l_receiptdate": "1993-04-27", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "he carefully" }, { "l_orderkey": 2656i32, "l_partkey": 137i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 38.0d, "l_extendedprice": 39410.94d, "l_discount": 0.07d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-06-25", "l_commitdate": "1993-06-04", "l_receiptdate": "1993-07-24", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "structions wake along the furio" }, { "l_orderkey": 5794i32, "l_partkey": 137i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 47.0d, "l_extendedprice": 48745.11d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-07-16", "l_commitdate": "1993-06-21", "l_receiptdate": "1993-08-05", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "quests. blithely final excu" }, { "l_orderkey": 4612i32, "l_partkey": 137i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 40.0d, "l_extendedprice": 41485.2d, "l_discount": 0.08d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-10-08", "l_commitdate": "1993-11-23", "l_receiptdate": "1993-10-24", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "special platelets." }, { "l_orderkey": 3745i32, "l_partkey": 137i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 18.0d, "l_extendedprice": 18668.34d, "l_discount": 0.01d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-10-17", "l_commitdate": "1993-11-16", "l_receiptdate": "1993-11-13", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": " slyly bold pinto beans according to " }, { "l_orderkey": 2753i32, "l_partkey": 137i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 36.0d, "l_extendedprice": 37336.68d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-03-15", "l_commitdate": "1994-01-03", "l_receiptdate": "1994-04-03", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "gle slyly final c" }, { "l_orderkey": 1795i32, "l_partkey": 137i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 44.0d, "l_extendedprice": 45633.72d, "l_discount": 0.08d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-04-28", "l_commitdate": "1994-05-24", "l_receiptdate": "1994-05-27", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "ites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sle" }, { "l_orderkey": 1029i32, "l_partkey": 137i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 45.0d, "l_extendedprice": 46670.85d, "l_discount": 0.05d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-07-21", "l_commitdate": "1994-08-30", "l_receiptdate": "1994-07-29", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "sits boost blithely" }, { "l_orderkey": 4290i32, "l_partkey": 137i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 23.0d, "l_extendedprice": 23853.99d, "l_discount": 0.06d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-04-04", "l_commitdate": "1995-02-16", "l_receiptdate": "1995-04-07", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "uests cajole carefully." }, { "l_orderkey": 2277i32, "l_partkey": 137i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 38.0d, "l_extendedprice": 39410.94d, "l_discount": 0.03d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-04-23", "l_commitdate": "1995-03-25", "l_receiptdate": "1995-05-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "fully bold" }, { "l_orderkey": 5696i32, "l_partkey": 137i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 28.0d, "l_extendedprice": 29039.64d, "l_discount": 0.03d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-03", "l_commitdate": "1995-06-14", "l_receiptdate": "1995-07-27", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": " the fluffily brave pearls " }, { "l_orderkey": 3111i32, "l_partkey": 137i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 22.0d, "l_extendedprice": 22816.86d, "l_discount": 0.06d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-21", "l_commitdate": "1995-11-09", "l_receiptdate": "1995-10-17", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "quests. regular dolphins against the " }, { "l_orderkey": 1095i32, "l_partkey": 137i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 33.0d, "l_extendedprice": 34225.29d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-03", "l_commitdate": "1995-09-22", "l_receiptdate": "1995-10-13", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "slyly around the iron" }, { "l_orderkey": 993i32, "l_partkey": 137i32, "l_suppkey": 3i32, "l_linenumber": 6i32, "l_quantity": 35.0d, "l_extendedprice": 36299.55d, "l_discount": 0.04d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-26", "l_commitdate": "1995-10-20", "l_receiptdate": "1995-11-05", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "es. ironic, ironic requests" }, { "l_orderkey": 2309i32, "l_partkey": 137i32, "l_suppkey": 3i32, "l_linenumber": 5i32, "l_quantity": 9.0d, "l_extendedprice": 9334.17d, "l_discount": 0.0d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-21", "l_commitdate": "1995-10-10", "l_receiptdate": "1996-01-20", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "ding, unusual instructions. dep" }, { "l_orderkey": 135i32, "l_partkey": 137i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 20.0d, "l_extendedprice": 20742.6d, "l_discount": 0.01d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-25", "l_commitdate": "1995-11-20", "l_receiptdate": "1996-02-09", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "theodolites. quickly p" }, { "l_orderkey": 3940i32, "l_partkey": 137i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 11.0d, "l_extendedprice": 11408.43d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-09", "l_commitdate": "1996-05-13", "l_receiptdate": "1996-03-17", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "e of the special packages. furiously" }, { "l_orderkey": 1760i32, "l_partkey": 137i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 44.0d, "l_extendedprice": 45633.72d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-11", "l_commitdate": "1996-06-16", "l_receiptdate": "1996-07-02", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "instructions poach slyly ironic theodolites" }, { "l_orderkey": 4102i32, "l_partkey": 137i32, "l_suppkey": 8i32, "l_linenumber": 6i32, "l_quantity": 7.0d, "l_extendedprice": 7259.91d, "l_discount": 0.02d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-19", "l_commitdate": "1996-05-21", "l_receiptdate": "1996-07-15", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "bove the carefully pending the" }, { "l_orderkey": 3617i32, "l_partkey": 137i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 11.0d, "l_extendedprice": 11408.43d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-16", "l_commitdate": "1996-04-23", "l_receiptdate": "1996-07-28", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "ly quickly even requests. final" }, { "l_orderkey": 547i32, "l_partkey": 137i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 48.0d, "l_extendedprice": 49782.24d, "l_discount": 0.01d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-21", "l_commitdate": "1996-08-04", "l_receiptdate": "1996-11-20", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "thely specia" }, { "l_orderkey": 3936i32, "l_partkey": 137i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 25.0d, "l_extendedprice": 25928.25d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-03", "l_commitdate": "1996-12-27", "l_receiptdate": "1997-01-01", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "gular requests nag quic" }, { "l_orderkey": 1062i32, "l_partkey": 137i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 38.0d, "l_extendedprice": 39410.94d, "l_discount": 0.0d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-27", "l_commitdate": "1997-03-07", "l_receiptdate": "1997-02-16", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "deas. pending acc" }, { "l_orderkey": 2661i32, "l_partkey": 137i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 41.0d, "l_extendedprice": 42522.33d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-06", "l_commitdate": "1997-03-27", "l_receiptdate": "1997-03-15", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "iously ironically ironic requests. " }, { "l_orderkey": 4484i32, "l_partkey": 137i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 39.0d, "l_extendedprice": 40448.07d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-01", "l_commitdate": "1997-01-26", "l_receiptdate": "1997-04-21", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "onic accounts wake blithel" }, { "l_orderkey": 485i32, "l_partkey": 137i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 22.0d, "l_extendedprice": 22816.86d, "l_discount": 0.0d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-06", "l_commitdate": "1997-04-27", "l_receiptdate": "1997-05-01", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "refully final notornis haggle according " }, { "l_orderkey": 3429i32, "l_partkey": 137i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 48.0d, "l_extendedprice": 49782.24d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-08", "l_commitdate": "1997-03-09", "l_receiptdate": "1997-04-25", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": " haggle furiously ir" }, { "l_orderkey": 387i32, "l_partkey": 137i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 1.0d, "l_extendedprice": 1037.13d, "l_discount": 0.08d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-06", "l_commitdate": "1997-04-23", "l_receiptdate": "1997-05-10", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": " pinto beans wake furiously carefu" }, { "l_orderkey": 3652i32, "l_partkey": 137i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 37.0d, "l_extendedprice": 38373.81d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-11", "l_commitdate": "1997-04-06", "l_receiptdate": "1997-06-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "osits haggle carefu" }, { "l_orderkey": 4865i32, "l_partkey": 137i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 4.0d, "l_extendedprice": 4148.52d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-24", "l_commitdate": "1997-07-25", "l_receiptdate": "1997-08-07", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "sts. blithely special instruction" }, { "l_orderkey": 675i32, "l_partkey": 137i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 35.0d, "l_extendedprice": 36299.55d, "l_discount": 0.08d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-19", "l_commitdate": "1997-10-16", "l_receiptdate": "1997-09-17", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "s. furiously expre" } ] }
-{ "partkey": 142i32, "lines": [ { "l_orderkey": 3556i32, "l_partkey": 142i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 45.0d, "l_extendedprice": 46896.3d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-10-14", "l_commitdate": "1992-12-21", "l_receiptdate": "1992-10-16", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "ckages boost quickl" }, { "l_orderkey": 2241i32, "l_partkey": 142i32, "l_suppkey": 3i32, "l_linenumber": 7i32, "l_quantity": 9.0d, "l_extendedprice": 9379.26d, "l_discount": 0.09d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-05-14", "l_commitdate": "1993-07-12", "l_receiptdate": "1993-05-29", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "lyly final " }, { "l_orderkey": 5670i32, "l_partkey": 142i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 11.0d, "l_extendedprice": 11463.54d, "l_discount": 0.06d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-07-11", "l_commitdate": "1993-06-26", "l_receiptdate": "1993-07-24", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "etect furiously among the even pin" }, { "l_orderkey": 5318i32, "l_partkey": 142i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 31.0d, "l_extendedprice": 32306.34d, "l_discount": 0.01d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-07-28", "l_commitdate": "1993-05-06", "l_receiptdate": "1993-08-06", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "requests must sleep slyly quickly" }, { "l_orderkey": 2307i32, "l_partkey": 142i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 24.0d, "l_extendedprice": 25011.36d, "l_discount": 0.1d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-10-07", "l_commitdate": "1993-08-05", "l_receiptdate": "1993-10-20", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "stealthily special packages nag a" }, { "l_orderkey": 1952i32, "l_partkey": 142i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 6.0d, "l_extendedprice": 6252.84d, "l_discount": 0.06d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-05-09", "l_commitdate": "1994-05-21", "l_receiptdate": "1994-05-26", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "packages haggle. " }, { "l_orderkey": 3136i32, "l_partkey": 142i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 30.0d, "l_extendedprice": 31264.2d, "l_discount": 0.02d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-08-13", "l_commitdate": "1994-10-02", "l_receiptdate": "1994-09-02", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "leep blithel" }, { "l_orderkey": 998i32, "l_partkey": 142i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 30.0d, "l_extendedprice": 31264.2d, "l_discount": 0.05d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-12-02", "l_commitdate": "1995-01-23", "l_receiptdate": "1994-12-23", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "lyly idle Tir" }, { "l_orderkey": 2816i32, "l_partkey": 142i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 4.0d, "l_extendedprice": 4168.56d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-12-11", "l_commitdate": "1994-12-07", "l_receiptdate": "1995-01-03", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": ". blithely pending id" }, { "l_orderkey": 3395i32, "l_partkey": 142i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 21.0d, "l_extendedprice": 21884.94d, "l_discount": 0.03d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-12-19", "l_commitdate": "1995-01-13", "l_receiptdate": "1994-12-25", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": " careful dep" }, { "l_orderkey": 3458i32, "l_partkey": 142i32, "l_suppkey": 1i32, "l_linenumber": 6i32, "l_quantity": 6.0d, "l_extendedprice": 6252.84d, "l_discount": 0.09d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-03-10", "l_commitdate": "1995-02-02", "l_receiptdate": "1995-03-23", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "dolites; regular theodolites cajole " }, { "l_orderkey": 2306i32, "l_partkey": 142i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 42.0d, "l_extendedprice": 43769.88d, "l_discount": 0.04d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-05", "l_commitdate": "1995-08-25", "l_receiptdate": "1995-09-28", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "furiously final acco" }, { "l_orderkey": 225i32, "l_partkey": 142i32, "l_suppkey": 1i32, "l_linenumber": 7i32, "l_quantity": 44.0d, "l_extendedprice": 45854.16d, "l_discount": 0.1d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-22", "l_commitdate": "1995-08-16", "l_receiptdate": "1995-10-22", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "leep slyly " }, { "l_orderkey": 1153i32, "l_partkey": 142i32, "l_suppkey": 5i32, "l_linenumber": 5i32, "l_quantity": 45.0d, "l_extendedprice": 46896.3d, "l_discount": 0.0d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-18", "l_commitdate": "1996-06-20", "l_receiptdate": "1996-07-03", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "oss the ex" }, { "l_orderkey": 1632i32, "l_partkey": 142i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 43.0d, "l_extendedprice": 44812.02d, "l_discount": 0.1d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-24", "l_commitdate": "1997-02-19", "l_receiptdate": "1997-03-25", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "ts. blithe, bold ideas cajo" }, { "l_orderkey": 5158i32, "l_partkey": 142i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 41.0d, "l_extendedprice": 42727.74d, "l_discount": 0.05d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-25", "l_commitdate": "1997-03-19", "l_receiptdate": "1997-03-03", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "deposits. quickly special " }, { "l_orderkey": 3719i32, "l_partkey": 142i32, "l_suppkey": 5i32, "l_linenumber": 6i32, "l_quantity": 43.0d, "l_extendedprice": 44812.02d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-08", "l_commitdate": "1997-04-15", "l_receiptdate": "1997-06-06", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "the furiously special pinto bean" }, { "l_orderkey": 583i32, "l_partkey": 142i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 33.0d, "l_extendedprice": 34390.62d, "l_discount": 0.1d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-28", "l_commitdate": "1997-04-25", "l_receiptdate": "1997-06-24", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "kages cajole slyly across the" }, { "l_orderkey": 4036i32, "l_partkey": 142i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 6.0d, "l_extendedprice": 6252.84d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-19", "l_commitdate": "1997-06-16", "l_receiptdate": "1997-07-01", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "equests wake about the bold id" }, { "l_orderkey": 3107i32, "l_partkey": 142i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 35.0d, "l_extendedprice": 36474.9d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-27", "l_commitdate": "1997-11-19", "l_receiptdate": "1997-09-14", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "ets doubt furiously final ideas. final" }, { "l_orderkey": 2081i32, "l_partkey": 142i32, "l_suppkey": 9i32, "l_linenumber": 6i32, "l_quantity": 31.0d, "l_extendedprice": 32306.34d, "l_discount": 0.03d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-19", "l_commitdate": "1997-09-13", "l_receiptdate": "1997-09-27", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": " silent, spe" }, { "l_orderkey": 4231i32, "l_partkey": 142i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 47.0d, "l_extendedprice": 48980.58d, "l_discount": 0.09d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-11-27", "l_commitdate": "1998-01-26", "l_receiptdate": "1997-12-17", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "hely along the silent at" }, { "l_orderkey": 5413i32, "l_partkey": 142i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 37.0d, "l_extendedprice": 38559.18d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-08", "l_commitdate": "1998-01-01", "l_receiptdate": "1997-12-13", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "usly bold instructions affix idly unusual, " }, { "l_orderkey": 192i32, "l_partkey": 142i32, "l_suppkey": 9i32, "l_linenumber": 6i32, "l_quantity": 45.0d, "l_extendedprice": 46896.3d, "l_discount": 0.0d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-11", "l_commitdate": "1998-01-09", "l_receiptdate": "1998-04-03", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "equests. ideas sleep idea" }, { "l_orderkey": 1605i32, "l_partkey": 142i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 47.0d, "l_extendedprice": 48980.58d, "l_discount": 0.0d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-29", "l_commitdate": "1998-06-12", "l_receiptdate": "1998-05-20", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": ". carefully r" }, { "l_orderkey": 390i32, "l_partkey": 142i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 42.0d, "l_extendedprice": 43769.88d, "l_discount": 0.01d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-06", "l_commitdate": "1998-06-22", "l_receiptdate": "1998-07-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "counts nag across the sly, sil" } ] }
-{ "partkey": 145i32, "lines": [ { "l_orderkey": 4998i32, "l_partkey": 145i32, "l_suppkey": 4i32, "l_linenumber": 5i32, "l_quantity": 24.0d, "l_extendedprice": 25083.36d, "l_discount": 0.01d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-01-25", "l_commitdate": "1992-03-16", "l_receiptdate": "1992-01-27", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": " unwind about" }, { "l_orderkey": 134i32, "l_partkey": 145i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 47.0d, "l_extendedprice": 49121.58d, "l_discount": 0.05d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-08-16", "l_commitdate": "1992-07-06", "l_receiptdate": "1992-08-28", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "s! carefully unusual requests boost careful" }, { "l_orderkey": 3907i32, "l_partkey": 145i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 41.0d, "l_extendedprice": 42850.74d, "l_discount": 0.03d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-10-25", "l_commitdate": "1992-10-17", "l_receiptdate": "1992-11-01", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "s above the unusual ideas sleep furiousl" }, { "l_orderkey": 5954i32, "l_partkey": 145i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 20.0d, "l_extendedprice": 20902.8d, "l_discount": 0.0d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-02-27", "l_commitdate": "1993-01-04", "l_receiptdate": "1993-03-08", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "ke furiously blithely special packa" }, { "l_orderkey": 3687i32, "l_partkey": 145i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 32.0d, "l_extendedprice": 33444.48d, "l_discount": 0.03d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-05-07", "l_commitdate": "1993-04-05", "l_receiptdate": "1993-05-25", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "deas cajole fo" }, { "l_orderkey": 3877i32, "l_partkey": 145i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 47.0d, "l_extendedprice": 49121.58d, "l_discount": 0.05d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-08-01", "l_commitdate": "1993-08-16", "l_receiptdate": "1993-08-04", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "furiously quick requests nag along the theo" }, { "l_orderkey": 3109i32, "l_partkey": 145i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 49.0d, "l_extendedprice": 51211.86d, "l_discount": 0.08d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-10-24", "l_commitdate": "1993-09-30", "l_receiptdate": "1993-11-21", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": " even pearls. furiously pending " }, { "l_orderkey": 3653i32, "l_partkey": 145i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 38.0d, "l_extendedprice": 39715.32d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-06-26", "l_commitdate": "1994-05-13", "l_receiptdate": "1994-07-13", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "ainst the " }, { "l_orderkey": 834i32, "l_partkey": 145i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 36.0d, "l_extendedprice": 37625.04d, "l_discount": 0.06d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-06-28", "l_commitdate": "1994-07-25", "l_receiptdate": "1994-07-07", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "ccounts haggle after the furiously " }, { "l_orderkey": 1762i32, "l_partkey": 145i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 24.0d, "l_extendedprice": 25083.36d, "l_discount": 0.03d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-11-30", "l_commitdate": "1994-11-02", "l_receiptdate": "1994-12-20", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "accounts solve alongside of the fluffily " }, { "l_orderkey": 930i32, "l_partkey": 145i32, "l_suppkey": 4i32, "l_linenumber": 6i32, "l_quantity": 10.0d, "l_extendedprice": 10451.4d, "l_discount": 0.0d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-02-09", "l_commitdate": "1995-02-17", "l_receiptdate": "1995-02-16", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "blithely bold i" }, { "l_orderkey": 4327i32, "l_partkey": 145i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 11.0d, "l_extendedprice": 11496.54d, "l_discount": 0.1d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-04-24", "l_commitdate": "1995-05-27", "l_receiptdate": "1995-05-24", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": " ironic dolphins" }, { "l_orderkey": 3554i32, "l_partkey": 145i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 18.0d, "l_extendedprice": 18812.52d, "l_discount": 0.03d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-11", "l_commitdate": "1995-08-12", "l_receiptdate": "1995-10-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": " haggle. furiously fluffy requests ac" }, { "l_orderkey": 5667i32, "l_partkey": 145i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 37.0d, "l_extendedprice": 38670.18d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-24", "l_commitdate": "1995-09-17", "l_receiptdate": "1995-10-03", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "s cajole blit" }, { "l_orderkey": 4512i32, "l_partkey": 145i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 21.0d, "l_extendedprice": 21947.94d, "l_discount": 0.0d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-31", "l_commitdate": "1995-12-30", "l_receiptdate": "1995-11-15", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "lly unusual pinto b" }, { "l_orderkey": 1797i32, "l_partkey": 145i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 16.0d, "l_extendedprice": 16722.24d, "l_discount": 0.01d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-03", "l_commitdate": "1996-07-21", "l_receiptdate": "1996-06-07", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "o beans wake regular accounts. blit" }, { "l_orderkey": 2531i32, "l_partkey": 145i32, "l_suppkey": 4i32, "l_linenumber": 6i32, "l_quantity": 46.0d, "l_extendedprice": 48076.44d, "l_discount": 0.1d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-03", "l_commitdate": "1996-06-27", "l_receiptdate": "1996-07-12", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "e final, bold pains. ir" }, { "l_orderkey": 3812i32, "l_partkey": 145i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 33.0d, "l_extendedprice": 34489.62d, "l_discount": 0.0d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-10", "l_commitdate": "1996-10-05", "l_receiptdate": "1996-10-15", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "posits engage. ironic, regular p" }, { "l_orderkey": 2118i32, "l_partkey": 145i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 11.0d, "l_extendedprice": 11496.54d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-23", "l_commitdate": "1996-12-20", "l_receiptdate": "1997-01-01", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "y ironic accounts sleep upon the packages. " }, { "l_orderkey": 4807i32, "l_partkey": 145i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 34.0d, "l_extendedprice": 35534.76d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-31", "l_commitdate": "1997-03-13", "l_receiptdate": "1997-02-01", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "ecial ideas. deposits according to the fin" }, { "l_orderkey": 583i32, "l_partkey": 145i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 1.0d, "l_extendedprice": 1045.14d, "l_discount": 0.07d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-17", "l_commitdate": "1997-04-29", "l_receiptdate": "1997-06-28", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": " regular, regular ideas. even, bra" }, { "l_orderkey": 4198i32, "l_partkey": 145i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 13.0d, "l_extendedprice": 13586.82d, "l_discount": 0.03d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-18", "l_commitdate": "1997-07-24", "l_receiptdate": "1997-08-10", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": " furious excuses. bli" }, { "l_orderkey": 4711i32, "l_partkey": 145i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 15.0d, "l_extendedprice": 15677.1d, "l_discount": 0.08d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-09", "l_commitdate": "1998-07-30", "l_receiptdate": "1998-06-18", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": " beans wake. deposits could bo" }, { "l_orderkey": 3873i32, "l_partkey": 145i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 44.0d, "l_extendedprice": 45986.16d, "l_discount": 0.05d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-23", "l_commitdate": "1998-05-22", "l_receiptdate": "1998-08-14", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "yly even platelets wake. " } ] }
-{ "partkey": 146i32, "lines": [ { "l_orderkey": 194i32, "l_partkey": 146i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 36.0d, "l_extendedprice": 37661.04d, "l_discount": 0.0d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-05-21", "l_commitdate": "1992-05-18", "l_receiptdate": "1992-05-27", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "pecial packages wake after the slyly r" }, { "l_orderkey": 678i32, "l_partkey": 146i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 20.0d, "l_extendedprice": 20922.8d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-06-21", "l_commitdate": "1993-04-07", "l_receiptdate": "1993-07-10", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "furiously express excuses. foxes eat fu" }, { "l_orderkey": 1286i32, "l_partkey": 146i32, "l_suppkey": 5i32, "l_linenumber": 6i32, "l_quantity": 41.0d, "l_extendedprice": 42891.74d, "l_discount": 0.04d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-08-02", "l_commitdate": "1993-08-06", "l_receiptdate": "1993-08-07", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": " the furiously expre" }, { "l_orderkey": 711i32, "l_partkey": 146i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 2.0d, "l_extendedprice": 2092.28d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-12-01", "l_commitdate": "1993-12-09", "l_receiptdate": "1993-12-16", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "ely across t" }, { "l_orderkey": 5285i32, "l_partkey": 146i32, "l_suppkey": 7i32, "l_linenumber": 6i32, "l_quantity": 1.0d, "l_extendedprice": 1046.14d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-02-08", "l_commitdate": "1994-04-02", "l_receiptdate": "1994-02-17", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "ing deposits integra" }, { "l_orderkey": 5921i32, "l_partkey": 146i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 25.0d, "l_extendedprice": 26153.5d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-05-19", "l_commitdate": "1994-06-15", "l_receiptdate": "1994-06-17", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "nd the slyly regular deposits. quick" }, { "l_orderkey": 2722i32, "l_partkey": 146i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 15.0d, "l_extendedprice": 15692.1d, "l_discount": 0.05d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-07-02", "l_commitdate": "1994-06-01", "l_receiptdate": "1994-07-13", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "refully final asympt" }, { "l_orderkey": 5249i32, "l_partkey": 146i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 29.0d, "l_extendedprice": 30338.06d, "l_discount": 0.0d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-09-16", "l_commitdate": "1994-11-03", "l_receiptdate": "1994-10-06", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": " players. f" }, { "l_orderkey": 4772i32, "l_partkey": 146i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 16.0d, "l_extendedprice": 16738.24d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-10-27", "l_commitdate": "1994-12-07", "l_receiptdate": "1994-10-29", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "egular accounts wake s" }, { "l_orderkey": 4960i32, "l_partkey": 146i32, "l_suppkey": 7i32, "l_linenumber": 6i32, "l_quantity": 37.0d, "l_extendedprice": 38707.18d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-05-23", "l_commitdate": "1995-04-12", "l_receiptdate": "1995-06-01", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "ending theodolites w" }, { "l_orderkey": 993i32, "l_partkey": 146i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 33.0d, "l_extendedprice": 34522.62d, "l_discount": 0.09d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-28", "l_commitdate": "1995-10-24", "l_receiptdate": "1995-10-03", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "fluffily. quiet excuses sleep furiously sly" }, { "l_orderkey": 610i32, "l_partkey": 146i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 39.0d, "l_extendedprice": 40799.46d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-30", "l_commitdate": "1995-10-21", "l_receiptdate": "1995-11-11", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "counts. ironic warhorses are " }, { "l_orderkey": 4676i32, "l_partkey": 146i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 4.0d, "l_extendedprice": 4184.56d, "l_discount": 0.1d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-12", "l_commitdate": "1995-10-22", "l_receiptdate": "1995-12-13", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "detect above the ironic platelets. fluffily" }, { "l_orderkey": 7i32, "l_partkey": 146i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 9.0d, "l_extendedprice": 9415.26d, "l_discount": 0.08d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-02-01", "l_commitdate": "1996-03-02", "l_receiptdate": "1996-02-19", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "es. instructions" }, { "l_orderkey": 1733i32, "l_partkey": 146i32, "l_suppkey": 9i32, "l_linenumber": 7i32, "l_quantity": 13.0d, "l_extendedprice": 13599.82d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-03", "l_commitdate": "1996-08-02", "l_receiptdate": "1996-08-18", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "olites sleep furious" }, { "l_orderkey": 3394i32, "l_partkey": 146i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 43.0d, "l_extendedprice": 44984.02d, "l_discount": 0.08d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-23", "l_commitdate": "1996-07-20", "l_receiptdate": "1996-08-25", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "hockey players. slyly regular requests afte" }, { "l_orderkey": 2215i32, "l_partkey": 146i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 20.0d, "l_extendedprice": 20922.8d, "l_discount": 0.02d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-09", "l_commitdate": "1996-08-10", "l_receiptdate": "1996-09-19", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": " unusual deposits haggle carefully. ide" }, { "l_orderkey": 2406i32, "l_partkey": 146i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 34.0d, "l_extendedprice": 35568.76d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-01", "l_commitdate": "1996-12-07", "l_receiptdate": "1996-12-16", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "hinly even accounts are slyly q" }, { "l_orderkey": 5895i32, "l_partkey": 146i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 31.0d, "l_extendedprice": 32430.34d, "l_discount": 0.03d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-03", "l_commitdate": "1997-03-30", "l_receiptdate": "1997-03-08", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": " final deposits nod slyly careful" }, { "l_orderkey": 3041i32, "l_partkey": 146i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 9.0d, "l_extendedprice": 9415.26d, "l_discount": 0.03d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-29", "l_commitdate": "1997-08-14", "l_receiptdate": "1997-07-19", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "iously across the silent pinto beans. furi" }, { "l_orderkey": 4198i32, "l_partkey": 146i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 48.0d, "l_extendedprice": 50214.72d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-03", "l_commitdate": "1997-07-18", "l_receiptdate": "1997-09-11", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "cajole carefully final, ironic ide" }, { "l_orderkey": 5185i32, "l_partkey": 146i32, "l_suppkey": 9i32, "l_linenumber": 6i32, "l_quantity": 50.0d, "l_extendedprice": 52307.0d, "l_discount": 0.03d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-10-15", "l_commitdate": "1997-10-19", "l_receiptdate": "1997-11-06", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "final platelets. ideas sleep careful" }, { "l_orderkey": 5345i32, "l_partkey": 146i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 2.0d, "l_extendedprice": 2092.28d, "l_discount": 0.1d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-11-18", "l_commitdate": "1997-10-12", "l_receiptdate": "1997-12-08", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "ut the slyly specia" }, { "l_orderkey": 3584i32, "l_partkey": 146i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 11.0d, "l_extendedprice": 11507.54d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-11-27", "l_commitdate": "1997-10-15", "l_receiptdate": "1997-12-08", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "lithely slyly " }, { "l_orderkey": 2884i32, "l_partkey": 146i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 25.0d, "l_extendedprice": 26153.5d, "l_discount": 0.09d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-18", "l_commitdate": "1997-12-06", "l_receiptdate": "1998-02-16", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "onic theodolites with the instructi" }, { "l_orderkey": 3714i32, "l_partkey": 146i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 14.0d, "l_extendedprice": 14645.96d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-30", "l_commitdate": "1998-06-30", "l_receiptdate": "1998-05-31", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "ending ideas. thinly unusual theodo" }, { "l_orderkey": 5798i32, "l_partkey": 146i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 40.0d, "l_extendedprice": 41845.6d, "l_discount": 0.08d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-09", "l_commitdate": "1998-06-24", "l_receiptdate": "1998-07-16", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": " integrate carefu" } ] }
-{ "partkey": 148i32, "lines": [ { "l_orderkey": 3712i32, "l_partkey": 148i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 38.0d, "l_extendedprice": 39829.32d, "l_discount": 0.01d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-01-15", "l_commitdate": "1992-03-24", "l_receiptdate": "1992-01-27", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "s nag carefully-- even, reg" }, { "l_orderkey": 5601i32, "l_partkey": 148i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 12.0d, "l_extendedprice": 12577.68d, "l_discount": 0.03d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-02-27", "l_commitdate": "1992-03-16", "l_receiptdate": "1992-03-27", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "ep carefully a" }, { "l_orderkey": 1154i32, "l_partkey": 148i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 50.0d, "l_extendedprice": 52407.0d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-04-22", "l_commitdate": "1992-04-21", "l_receiptdate": "1992-05-01", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "ove the furiously bold Tires" }, { "l_orderkey": 4838i32, "l_partkey": 148i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 2.0d, "l_extendedprice": 2096.28d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-08-11", "l_commitdate": "1992-09-16", "l_receiptdate": "1992-08-26", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "hely final notornis are furiously blithe" }, { "l_orderkey": 3172i32, "l_partkey": 148i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 43.0d, "l_extendedprice": 45070.02d, "l_discount": 0.05d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-08-22", "l_commitdate": "1992-07-07", "l_receiptdate": "1992-08-26", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": " final packages. " }, { "l_orderkey": 967i32, "l_partkey": 148i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 49.0d, "l_extendedprice": 51358.86d, "l_discount": 0.01d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-09-28", "l_commitdate": "1992-09-15", "l_receiptdate": "1992-10-14", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "the slyly even ideas. carefully even" }, { "l_orderkey": 5858i32, "l_partkey": 148i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 7.0d, "l_extendedprice": 7336.98d, "l_discount": 0.08d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-10-07", "l_commitdate": "1992-08-16", "l_receiptdate": "1992-10-15", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": ". doggedly regular packages use pendin" }, { "l_orderkey": 2562i32, "l_partkey": 148i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 1.0d, "l_extendedprice": 1048.14d, "l_discount": 0.01d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-10-16", "l_commitdate": "1992-09-18", "l_receiptdate": "1992-10-17", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": " slyly final ideas haggle car" }, { "l_orderkey": 2562i32, "l_partkey": 148i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 37.0d, "l_extendedprice": 38781.18d, "l_discount": 0.08d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-10-29", "l_commitdate": "1992-10-06", "l_receiptdate": "1992-11-09", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": ". slyly regular ideas according to the fl" }, { "l_orderkey": 164i32, "l_partkey": 148i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 43.0d, "l_extendedprice": 45070.02d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-11-26", "l_commitdate": "1993-01-03", "l_receiptdate": "1992-12-08", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "y carefully regular dep" }, { "l_orderkey": 2566i32, "l_partkey": 148i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 19.0d, "l_extendedprice": 19914.66d, "l_discount": 0.06d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-12-21", "l_commitdate": "1992-11-24", "l_receiptdate": "1992-12-22", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "ests. silent" }, { "l_orderkey": 3908i32, "l_partkey": 148i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 8.0d, "l_extendedprice": 8385.12d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-03-12", "l_commitdate": "1993-04-13", "l_receiptdate": "1993-03-22", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "r instructions was requests. ironically " }, { "l_orderkey": 3877i32, "l_partkey": 148i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 36.0d, "l_extendedprice": 37733.04d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-07-27", "l_commitdate": "1993-07-13", "l_receiptdate": "1993-08-11", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "lithely about the dogged ideas. ac" }, { "l_orderkey": 4161i32, "l_partkey": 148i32, "l_suppkey": 9i32, "l_linenumber": 6i32, "l_quantity": 19.0d, "l_extendedprice": 19914.66d, "l_discount": 0.07d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-08-22", "l_commitdate": "1993-11-11", "l_receiptdate": "1993-09-01", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "beans breach s" }, { "l_orderkey": 515i32, "l_partkey": 148i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 38.0d, "l_extendedprice": 39829.32d, "l_discount": 0.1d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-09-19", "l_commitdate": "1993-11-12", "l_receiptdate": "1993-10-03", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "ays. furiously express requests haggle furi" }, { "l_orderkey": 4547i32, "l_partkey": 148i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 15.0d, "l_extendedprice": 15722.1d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-11-29", "l_commitdate": "1993-10-12", "l_receiptdate": "1993-12-29", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "ironic gifts integrate " }, { "l_orderkey": 677i32, "l_partkey": 148i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 1.0d, "l_extendedprice": 1048.14d, "l_discount": 0.06d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-12-01", "l_commitdate": "1994-01-14", "l_receiptdate": "1993-12-26", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "ly. regular " }, { "l_orderkey": 353i32, "l_partkey": 148i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 29.0d, "l_extendedprice": 30396.06d, "l_discount": 0.09d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-01-11", "l_commitdate": "1994-03-19", "l_receiptdate": "1994-02-09", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "ctions impr" }, { "l_orderkey": 2753i32, "l_partkey": 148i32, "l_suppkey": 9i32, "l_linenumber": 7i32, "l_quantity": 20.0d, "l_extendedprice": 20962.8d, "l_discount": 0.01d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-02-24", "l_commitdate": "1994-02-04", "l_receiptdate": "1994-03-23", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": " express pack" }, { "l_orderkey": 1825i32, "l_partkey": 148i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 39.0d, "l_extendedprice": 40877.46d, "l_discount": 0.0d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-04-01", "l_commitdate": "1994-01-12", "l_receiptdate": "1994-04-21", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "ual, bold ideas haggle above the quickly ir" }, { "l_orderkey": 5760i32, "l_partkey": 148i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 8.0d, "l_extendedprice": 8385.12d, "l_discount": 0.07d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-09-06", "l_commitdate": "1994-08-03", "l_receiptdate": "1994-10-06", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "l accounts among the carefully even de" }, { "l_orderkey": 2790i32, "l_partkey": 148i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 11.0d, "l_extendedprice": 11529.54d, "l_discount": 0.08d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-09-28", "l_commitdate": "1994-11-14", "l_receiptdate": "1994-10-04", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "lar requests poach slyly foxes" }, { "l_orderkey": 5188i32, "l_partkey": 148i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 9.0d, "l_extendedprice": 9433.26d, "l_discount": 0.06d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-05-09", "l_commitdate": "1995-05-22", "l_receiptdate": "1995-05-19", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "r attainments are across the " }, { "l_orderkey": 5892i32, "l_partkey": 148i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 7.0d, "l_extendedprice": 7336.98d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-06-26", "l_commitdate": "1995-07-18", "l_receiptdate": "1995-07-25", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "e furiously. quickly even deposits da" }, { "l_orderkey": 2757i32, "l_partkey": 148i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 26.0d, "l_extendedprice": 27251.64d, "l_discount": 0.07d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-19", "l_commitdate": "1995-10-02", "l_receiptdate": "1995-09-06", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "around the blithely" }, { "l_orderkey": 2465i32, "l_partkey": 148i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 45.0d, "l_extendedprice": 47166.3d, "l_discount": 0.03d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-27", "l_commitdate": "1995-08-25", "l_receiptdate": "1995-10-06", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "y silent foxes. final pinto beans above " }, { "l_orderkey": 3111i32, "l_partkey": 148i32, "l_suppkey": 9i32, "l_linenumber": 7i32, "l_quantity": 41.0d, "l_extendedprice": 42973.74d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-22", "l_commitdate": "1995-11-01", "l_receiptdate": "1995-12-01", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "fily slow ideas. " }, { "l_orderkey": 774i32, "l_partkey": 148i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 34.0d, "l_extendedprice": 35636.76d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-16", "l_commitdate": "1996-01-03", "l_receiptdate": "1996-03-22", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "lar excuses are furiously final instr" }, { "l_orderkey": 4995i32, "l_partkey": 148i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 48.0d, "l_extendedprice": 50310.72d, "l_discount": 0.08d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-22", "l_commitdate": "1996-04-01", "l_receiptdate": "1996-04-07", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "t blithely. requests affix blithely. " }, { "l_orderkey": 3425i32, "l_partkey": 148i32, "l_suppkey": 9i32, "l_linenumber": 6i32, "l_quantity": 24.0d, "l_extendedprice": 25155.36d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-04-22", "l_commitdate": "1996-06-24", "l_receiptdate": "1996-04-25", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "ajole blithely sl" }, { "l_orderkey": 2598i32, "l_partkey": 148i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 40.0d, "l_extendedprice": 41925.6d, "l_discount": 0.07d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-11", "l_commitdate": "1996-05-19", "l_receiptdate": "1996-06-08", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "the enticing" }, { "l_orderkey": 2531i32, "l_partkey": 148i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 9.0d, "l_extendedprice": 9433.26d, "l_discount": 0.03d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-27", "l_commitdate": "1996-07-03", "l_receiptdate": "1996-08-01", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "t the dogged, un" }, { "l_orderkey": 1632i32, "l_partkey": 148i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 14.0d, "l_extendedprice": 14673.96d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-15", "l_commitdate": "1997-02-25", "l_receiptdate": "1997-01-28", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "oxes. deposits nag slyly along the slyly " }, { "l_orderkey": 5156i32, "l_partkey": 148i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 36.0d, "l_extendedprice": 37733.04d, "l_discount": 0.04d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-12", "l_commitdate": "1996-12-10", "l_receiptdate": "1997-03-13", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": " slyly even orbi" }, { "l_orderkey": 4934i32, "l_partkey": 148i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 9.0d, "l_extendedprice": 9433.26d, "l_discount": 0.06d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-10", "l_commitdate": "1997-04-09", "l_receiptdate": "1997-06-12", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": " haggle alongside of the" }, { "l_orderkey": 5793i32, "l_partkey": 148i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 48.0d, "l_extendedprice": 50310.72d, "l_discount": 0.02d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-27", "l_commitdate": "1997-08-23", "l_receiptdate": "1997-10-27", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "quickly enticing excuses use slyly abov" }, { "l_orderkey": 4964i32, "l_partkey": 148i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 46.0d, "l_extendedprice": 48214.44d, "l_discount": 0.06d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-10-05", "l_commitdate": "1997-09-12", "l_receiptdate": "1997-10-11", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "althy deposits" }, { "l_orderkey": 2851i32, "l_partkey": 148i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 8.0d, "l_extendedprice": 8385.12d, "l_discount": 0.09d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-11-12", "l_commitdate": "1997-11-22", "l_receiptdate": "1997-12-11", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "y special theodolites. carefully" }, { "l_orderkey": 1893i32, "l_partkey": 148i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 49.0d, "l_extendedprice": 51358.86d, "l_discount": 0.03d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-19", "l_commitdate": "1998-01-28", "l_receiptdate": "1998-02-02", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "y final foxes bo" }, { "l_orderkey": 1408i32, "l_partkey": 148i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 29.0d, "l_extendedprice": 30396.06d, "l_discount": 0.03d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-12", "l_commitdate": "1998-02-14", "l_receiptdate": "1998-03-17", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "en accounts grow furiousl" }, { "l_orderkey": 1408i32, "l_partkey": 148i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 20.0d, "l_extendedprice": 20962.8d, "l_discount": 0.06d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-21", "l_commitdate": "1998-01-25", "l_receiptdate": "1998-05-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": " blithely fluffi" }, { "l_orderkey": 1508i32, "l_partkey": 148i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 1.0d, "l_extendedprice": 1048.14d, "l_discount": 0.02d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-13", "l_commitdate": "1998-06-03", "l_receiptdate": "1998-07-17", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "s the blithely bold instruction" }, { "l_orderkey": 3840i32, "l_partkey": 148i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 41.0d, "l_extendedprice": 42973.74d, "l_discount": 0.07d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-21", "l_commitdate": "1998-10-08", "l_receiptdate": "1998-08-01", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": " nag slyly? slyly pending accounts " } ] }
-{ "partkey": 151i32, "lines": [ { "l_orderkey": 1248i32, "l_partkey": 151i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 37.0d, "l_extendedprice": 38892.55d, "l_discount": 0.06d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-01-26", "l_commitdate": "1992-02-05", "l_receiptdate": "1992-02-13", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": ". final requests integrate quickly. blit" }, { "l_orderkey": 4256i32, "l_partkey": 151i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 22.0d, "l_extendedprice": 23125.3d, "l_discount": 0.05d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-07-30", "l_commitdate": "1992-05-14", "l_receiptdate": "1992-08-14", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": ", final platelets are slyly final pint" }, { "l_orderkey": 3014i32, "l_partkey": 151i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 48.0d, "l_extendedprice": 50455.2d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-12-19", "l_commitdate": "1993-01-08", "l_receiptdate": "1992-12-25", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "y pending theodolites wake. reg" }, { "l_orderkey": 2822i32, "l_partkey": 151i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 39.0d, "l_extendedprice": 40994.85d, "l_discount": 0.04d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-09-11", "l_commitdate": "1993-08-29", "l_receiptdate": "1993-09-18", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "kly about the sly" }, { "l_orderkey": 5093i32, "l_partkey": 151i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 31.0d, "l_extendedprice": 32585.65d, "l_discount": 0.0d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-09-22", "l_commitdate": "1993-11-14", "l_receiptdate": "1993-09-26", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": " against the" }, { "l_orderkey": 773i32, "l_partkey": 151i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 39.0d, "l_extendedprice": 40994.85d, "l_discount": 0.06d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-01-04", "l_commitdate": "1993-12-23", "l_receiptdate": "1994-01-26", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "quickly eve" }, { "l_orderkey": 4454i32, "l_partkey": 151i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 20.0d, "l_extendedprice": 21023.0d, "l_discount": 0.1d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-05-06", "l_commitdate": "1994-03-17", "l_receiptdate": "1994-05-20", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "lar theodolites. even instructio" }, { "l_orderkey": 224i32, "l_partkey": 151i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 16.0d, "l_extendedprice": 16818.4d, "l_discount": 0.04d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-08-01", "l_commitdate": "1994-07-30", "l_receiptdate": "1994-08-27", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "y unusual foxes " }, { "l_orderkey": 5222i32, "l_partkey": 151i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 1.0d, "l_extendedprice": 1051.15d, "l_discount": 0.0d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-08-19", "l_commitdate": "1994-07-16", "l_receiptdate": "1994-09-08", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "idle requests. carefully pending pinto bean" }, { "l_orderkey": 4931i32, "l_partkey": 151i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 8.0d, "l_extendedprice": 8409.2d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-12-15", "l_commitdate": "1995-01-14", "l_receiptdate": "1995-01-06", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "ts boost. packages wake sly" }, { "l_orderkey": 3365i32, "l_partkey": 151i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 37.0d, "l_extendedprice": 38892.55d, "l_discount": 0.02d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-12-22", "l_commitdate": "1995-02-07", "l_receiptdate": "1995-01-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "requests. quickly pending instructions a" }, { "l_orderkey": 1664i32, "l_partkey": 151i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 10.0d, "l_extendedprice": 10511.5d, "l_discount": 0.0d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-04-10", "l_commitdate": "1996-05-13", "l_receiptdate": "1996-05-07", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "instructions up the acc" }, { "l_orderkey": 1089i32, "l_partkey": 151i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 47.0d, "l_extendedprice": 49404.05d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-26", "l_commitdate": "1996-06-25", "l_receiptdate": "1996-07-11", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "aggle furiously among the bravely eve" }, { "l_orderkey": 3587i32, "l_partkey": 151i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 36.0d, "l_extendedprice": 37841.4d, "l_discount": 0.05d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-26", "l_commitdate": "1996-06-16", "l_receiptdate": "1996-08-23", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "ully regular excuse" }, { "l_orderkey": 5605i32, "l_partkey": 151i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 7.0d, "l_extendedprice": 7358.05d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-13", "l_commitdate": "1996-10-13", "l_receiptdate": "1996-12-15", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "lowly special courts nag among the furi" }, { "l_orderkey": 5537i32, "l_partkey": 151i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 39.0d, "l_extendedprice": 40994.85d, "l_discount": 0.03d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-17", "l_commitdate": "1996-11-08", "l_receiptdate": "1997-01-15", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": " slyly bold packages are. qu" }, { "l_orderkey": 1122i32, "l_partkey": 151i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 15.0d, "l_extendedprice": 15767.25d, "l_discount": 0.05d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-15", "l_commitdate": "1997-03-15", "l_receiptdate": "1997-05-07", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "olve blithely regular, " }, { "l_orderkey": 3462i32, "l_partkey": 151i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 4.0d, "l_extendedprice": 4204.6d, "l_discount": 0.09d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-12", "l_commitdate": "1997-07-31", "l_receiptdate": "1997-06-16", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "ackages. fu" }, { "l_orderkey": 3969i32, "l_partkey": 151i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 21.0d, "l_extendedprice": 22074.15d, "l_discount": 0.07d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-31", "l_commitdate": "1997-07-16", "l_receiptdate": "1997-09-02", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "unts doze quickly final reque" }, { "l_orderkey": 519i32, "l_partkey": 151i32, "l_suppkey": 6i32, "l_linenumber": 6i32, "l_quantity": 3.0d, "l_extendedprice": 3153.45d, "l_discount": 0.04d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-02-01", "l_commitdate": "1998-01-25", "l_receiptdate": "1998-02-27", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "erve blithely blithely ironic asymp" }, { "l_orderkey": 5730i32, "l_partkey": 151i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 2.0d, "l_extendedprice": 2102.3d, "l_discount": 0.08d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-02-24", "l_commitdate": "1998-03-15", "l_receiptdate": "1998-03-11", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "ely ironic foxes. carefu" }, { "l_orderkey": 2727i32, "l_partkey": 151i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 3.0d, "l_extendedprice": 3153.45d, "l_discount": 0.03d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-18", "l_commitdate": "1998-06-06", "l_receiptdate": "1998-06-23", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": " the carefully regular foxes u" }, { "l_orderkey": 579i32, "l_partkey": 151i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 9.0d, "l_extendedprice": 9460.35d, "l_discount": 0.0d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-20", "l_commitdate": "1998-04-28", "l_receiptdate": "1998-07-19", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "e ironic, express deposits are furiously" }, { "l_orderkey": 1061i32, "l_partkey": 151i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 7.0d, "l_extendedprice": 7358.05d, "l_discount": 0.04d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-09", "l_commitdate": "1998-08-12", "l_receiptdate": "1998-08-16", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "es are slyly expr" } ] }
-{ "partkey": 169i32, "lines": [ { "l_orderkey": 1057i32, "l_partkey": 169i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 11.0d, "l_extendedprice": 11760.76d, "l_discount": 0.0d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-03-31", "l_commitdate": "1992-04-18", "l_receiptdate": "1992-04-18", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "yly final theodolites. furi" }, { "l_orderkey": 5953i32, "l_partkey": 169i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 23.0d, "l_extendedprice": 24590.68d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-06-05", "l_commitdate": "1992-06-03", "l_receiptdate": "1992-06-29", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "he silent ideas. silent foxes po" }, { "l_orderkey": 1894i32, "l_partkey": 169i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 40.0d, "l_extendedprice": 42766.4d, "l_discount": 0.03d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-06-07", "l_commitdate": "1992-05-11", "l_receiptdate": "1992-07-01", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "ily furiously bold packages. flu" }, { "l_orderkey": 2022i32, "l_partkey": 169i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 38.0d, "l_extendedprice": 40628.08d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-07-05", "l_commitdate": "1992-04-20", "l_receiptdate": "1992-07-13", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": " against the express accounts wake ca" }, { "l_orderkey": 5095i32, "l_partkey": 169i32, "l_suppkey": 10i32, "l_linenumber": 7i32, "l_quantity": 40.0d, "l_extendedprice": 42766.4d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-07-11", "l_commitdate": "1992-06-07", "l_receiptdate": "1992-07-26", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "carefully unusual plat" }, { "l_orderkey": 5635i32, "l_partkey": 169i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 38.0d, "l_extendedprice": 40628.08d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-10-09", "l_commitdate": "1992-09-25", "l_receiptdate": "1992-10-18", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "ckly pendin" }, { "l_orderkey": 2560i32, "l_partkey": 169i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 41.0d, "l_extendedprice": 43835.56d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-10-23", "l_commitdate": "1992-11-11", "l_receiptdate": "1992-11-22", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": " after the accounts. regular foxes are be" }, { "l_orderkey": 3810i32, "l_partkey": 169i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 18.0d, "l_extendedprice": 19244.88d, "l_discount": 0.01d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-11-28", "l_commitdate": "1992-11-15", "l_receiptdate": "1992-12-27", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "s. furiously careful deposi" }, { "l_orderkey": 1506i32, "l_partkey": 169i32, "l_suppkey": 6i32, "l_linenumber": 7i32, "l_quantity": 4.0d, "l_extendedprice": 4276.64d, "l_discount": 0.07d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-01-03", "l_commitdate": "1992-12-06", "l_receiptdate": "1993-01-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "posits. furiou" }, { "l_orderkey": 2146i32, "l_partkey": 169i32, "l_suppkey": 4i32, "l_linenumber": 5i32, "l_quantity": 28.0d, "l_extendedprice": 29936.48d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-01-03", "l_commitdate": "1992-10-17", "l_receiptdate": "1993-01-08", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "r accounts sleep furio" }, { "l_orderkey": 4578i32, "l_partkey": 169i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 42.0d, "l_extendedprice": 44904.72d, "l_discount": 0.06d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-01-05", "l_commitdate": "1992-11-06", "l_receiptdate": "1993-01-13", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "s are caref" }, { "l_orderkey": 129i32, "l_partkey": 169i32, "l_suppkey": 6i32, "l_linenumber": 7i32, "l_quantity": 1.0d, "l_extendedprice": 1069.16d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-01-26", "l_commitdate": "1993-01-08", "l_receiptdate": "1993-02-24", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "e carefully blithely bold dolp" }, { "l_orderkey": 865i32, "l_partkey": 169i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 34.0d, "l_extendedprice": 36351.44d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-05-09", "l_commitdate": "1993-07-28", "l_receiptdate": "1993-05-18", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "furiously fluffily unusual account" }, { "l_orderkey": 2279i32, "l_partkey": 169i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 9.0d, "l_extendedprice": 9622.44d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-05-21", "l_commitdate": "1993-03-29", "l_receiptdate": "1993-06-17", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "ns cajole after the final platelets. s" }, { "l_orderkey": 3778i32, "l_partkey": 169i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 28.0d, "l_extendedprice": 29936.48d, "l_discount": 0.03d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-08-18", "l_commitdate": "1993-07-10", "l_receiptdate": "1993-09-06", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "y silent orbits print carefully against " }, { "l_orderkey": 3648i32, "l_partkey": 169i32, "l_suppkey": 10i32, "l_linenumber": 6i32, "l_quantity": 14.0d, "l_extendedprice": 14968.24d, "l_discount": 0.08d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-10-02", "l_commitdate": "1993-08-26", "l_receiptdate": "1993-10-09", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "sly pending excuses. carefully i" }, { "l_orderkey": 358i32, "l_partkey": 169i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 40.0d, "l_extendedprice": 42766.4d, "l_discount": 0.09d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-12-05", "l_commitdate": "1993-11-04", "l_receiptdate": "1994-01-01", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "ng the ironic theo" }, { "l_orderkey": 1732i32, "l_partkey": 169i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 25.0d, "l_extendedprice": 26729.0d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-02-15", "l_commitdate": "1994-01-07", "l_receiptdate": "1994-02-21", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "nag slyly. even, special de" }, { "l_orderkey": 5317i32, "l_partkey": 169i32, "l_suppkey": 4i32, "l_linenumber": 7i32, "l_quantity": 30.0d, "l_extendedprice": 32074.8d, "l_discount": 0.07d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-10-13", "l_commitdate": "1994-10-31", "l_receiptdate": "1994-10-28", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "cross the attainments. slyly " }, { "l_orderkey": 3301i32, "l_partkey": 169i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 45.0d, "l_extendedprice": 48112.2d, "l_discount": 0.04d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-11-19", "l_commitdate": "1994-10-27", "l_receiptdate": "1994-11-24", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "nusual, final excuses after the entici" }, { "l_orderkey": 928i32, "l_partkey": 169i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 29.0d, "l_extendedprice": 31005.64d, "l_discount": 0.07d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-05-17", "l_commitdate": "1995-05-12", "l_receiptdate": "1995-05-21", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "ly alongside of the s" }, { "l_orderkey": 1666i32, "l_partkey": 169i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 41.0d, "l_extendedprice": 43835.56d, "l_discount": 0.06d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-29", "l_commitdate": "1996-01-04", "l_receiptdate": "1995-12-24", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "ly regular excuses; regular ac" }, { "l_orderkey": 2309i32, "l_partkey": 169i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 1.0d, "l_extendedprice": 1069.16d, "l_discount": 0.01d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-08", "l_commitdate": "1995-11-03", "l_receiptdate": "1995-12-31", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "eposits alongside of the final re" }, { "l_orderkey": 1153i32, "l_partkey": 169i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 50.0d, "l_extendedprice": 53458.0d, "l_discount": 0.0d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-27", "l_commitdate": "1996-07-13", "l_receiptdate": "1996-07-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "ronic asymptotes nag slyly. " }, { "l_orderkey": 3715i32, "l_partkey": 169i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 16.0d, "l_extendedprice": 17106.56d, "l_discount": 0.01d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-28", "l_commitdate": "1996-04-22", "l_receiptdate": "1996-06-30", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "usly regular pearls haggle final packages" }, { "l_orderkey": 1220i32, "l_partkey": 169i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 25.0d, "l_extendedprice": 26729.0d, "l_discount": 0.1d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-15", "l_commitdate": "1996-11-07", "l_receiptdate": "1996-11-06", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": " regular orbi" }, { "l_orderkey": 5573i32, "l_partkey": 169i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 43.0d, "l_extendedprice": 45973.88d, "l_discount": 0.1d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-22", "l_commitdate": "1996-11-03", "l_receiptdate": "1996-11-02", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": " furiously pending packages against " }, { "l_orderkey": 3872i32, "l_partkey": 169i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 18.0d, "l_extendedprice": 19244.88d, "l_discount": 0.07d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-25", "l_commitdate": "1996-10-24", "l_receiptdate": "1997-01-08", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "s. regular, brave accounts sleep blith" }, { "l_orderkey": 2369i32, "l_partkey": 169i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 47.0d, "l_extendedprice": 50250.52d, "l_discount": 0.1d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-02", "l_commitdate": "1997-02-18", "l_receiptdate": "1997-01-13", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": " to the regular dep" }, { "l_orderkey": 1959i32, "l_partkey": 169i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 46.0d, "l_extendedprice": 49181.36d, "l_discount": 0.04d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-05", "l_commitdate": "1997-03-03", "l_receiptdate": "1997-05-24", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": " furiously ex" }, { "l_orderkey": 1636i32, "l_partkey": 169i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 45.0d, "l_extendedprice": 48112.2d, "l_discount": 0.03d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-14", "l_commitdate": "1997-08-08", "l_receiptdate": "1997-07-27", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "ely express reque" }, { "l_orderkey": 1376i32, "l_partkey": 169i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 22.0d, "l_extendedprice": 23521.52d, "l_discount": 0.01d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-05", "l_commitdate": "1997-07-08", "l_receiptdate": "1997-09-03", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "inst the final, pending " }, { "l_orderkey": 709i32, "l_partkey": 169i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 10.0d, "l_extendedprice": 10691.6d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-04", "l_commitdate": "1998-06-30", "l_receiptdate": "1998-06-11", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "ts cajole boldly " }, { "l_orderkey": 3713i32, "l_partkey": 169i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 45.0d, "l_extendedprice": 48112.2d, "l_discount": 0.06d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-15", "l_commitdate": "1998-07-30", "l_receiptdate": "1998-07-14", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "al pinto beans affix after the slyly " }, { "l_orderkey": 736i32, "l_partkey": 169i32, "l_suppkey": 6i32, "l_linenumber": 5i32, "l_quantity": 32.0d, "l_extendedprice": 34213.12d, "l_discount": 0.04d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-30", "l_commitdate": "1998-08-22", "l_receiptdate": "1998-08-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "iously final accoun" } ] }
-{ "partkey": 173i32, "lines": [ { "l_orderkey": 4738i32, "l_partkey": 173i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 16.0d, "l_extendedprice": 17170.72d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-06-17", "l_commitdate": "1992-06-20", "l_receiptdate": "1992-06-21", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "nic deposits are slyly! carefu" }, { "l_orderkey": 3654i32, "l_partkey": 173i32, "l_suppkey": 1i32, "l_linenumber": 7i32, "l_quantity": 45.0d, "l_extendedprice": 48292.65d, "l_discount": 0.01d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-09-15", "l_commitdate": "1992-07-04", "l_receiptdate": "1992-09-20", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "sly ironic notornis nag slyly" }, { "l_orderkey": 1540i32, "l_partkey": 173i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 38.0d, "l_extendedprice": 40780.46d, "l_discount": 0.03d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-09-30", "l_commitdate": "1992-10-27", "l_receiptdate": "1992-10-12", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": " final grouches bo" }, { "l_orderkey": 2630i32, "l_partkey": 173i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 45.0d, "l_extendedprice": 48292.65d, "l_discount": 0.08d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-01-04", "l_commitdate": "1993-01-11", "l_receiptdate": "1993-01-09", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "edly express ideas. carefully final " }, { "l_orderkey": 4545i32, "l_partkey": 173i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 38.0d, "l_extendedprice": 40780.46d, "l_discount": 0.06d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-01-27", "l_commitdate": "1993-03-01", "l_receiptdate": "1993-02-04", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "nts serve according to th" }, { "l_orderkey": 3238i32, "l_partkey": 173i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 26.0d, "l_extendedprice": 27902.42d, "l_discount": 0.01d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-02-25", "l_commitdate": "1993-04-04", "l_receiptdate": "1993-03-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "g accounts sleep furiously ironic attai" }, { "l_orderkey": 4774i32, "l_partkey": 173i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 47.0d, "l_extendedprice": 50438.99d, "l_discount": 0.1d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-06-13", "l_commitdate": "1993-07-04", "l_receiptdate": "1993-07-09", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "regular dolphins above the furi" }, { "l_orderkey": 2466i32, "l_partkey": 173i32, "l_suppkey": 2i32, "l_linenumber": 6i32, "l_quantity": 19.0d, "l_extendedprice": 20390.23d, "l_discount": 0.1d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-06-12", "l_commitdate": "1994-04-18", "l_receiptdate": "1994-07-12", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "ccounts cajole a" }, { "l_orderkey": 672i32, "l_partkey": 173i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 41.0d, "l_extendedprice": 43999.97d, "l_discount": 0.06d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-06-20", "l_commitdate": "1994-07-03", "l_receiptdate": "1994-06-22", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": " dependencies in" }, { "l_orderkey": 2853i32, "l_partkey": 173i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 40.0d, "l_extendedprice": 42926.8d, "l_discount": 0.06d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-08-06", "l_commitdate": "1994-06-24", "l_receiptdate": "1994-08-29", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "lyly. pearls cajole. final accounts ca" }, { "l_orderkey": 1312i32, "l_partkey": 173i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 18.0d, "l_extendedprice": 19317.06d, "l_discount": 0.03d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-09-13", "l_commitdate": "1994-07-08", "l_receiptdate": "1994-09-22", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": ". slyly ironic" }, { "l_orderkey": 4608i32, "l_partkey": 173i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 30.0d, "l_extendedprice": 32195.1d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-10-08", "l_commitdate": "1994-07-18", "l_receiptdate": "1994-10-25", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "s cajole. slyly " }, { "l_orderkey": 4869i32, "l_partkey": 173i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 42.0d, "l_extendedprice": 45073.14d, "l_discount": 0.07d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-10-16", "l_commitdate": "1994-12-10", "l_receiptdate": "1994-11-07", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": " slyly even instructions. " }, { "l_orderkey": 4583i32, "l_partkey": 173i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 27.0d, "l_extendedprice": 28975.59d, "l_discount": 0.08d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-01-11", "l_commitdate": "1994-12-24", "l_receiptdate": "1995-02-10", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": " detect silent requests. furiously speci" }, { "l_orderkey": 3814i32, "l_partkey": 173i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 14.0d, "l_extendedprice": 15024.38d, "l_discount": 0.01d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-03-17", "l_commitdate": "1995-05-10", "l_receiptdate": "1995-04-16", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "sits along the final, ironic deposit" }, { "l_orderkey": 3749i32, "l_partkey": 173i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 11.0d, "l_extendedprice": 11804.87d, "l_discount": 0.07d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-06-25", "l_commitdate": "1995-05-23", "l_receiptdate": "1995-07-10", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "egular requests along the " }, { "l_orderkey": 995i32, "l_partkey": 173i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 15.0d, "l_extendedprice": 16097.55d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-06-30", "l_commitdate": "1995-08-04", "l_receiptdate": "1995-07-27", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "uses. fluffily fina" }, { "l_orderkey": 5284i32, "l_partkey": 173i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 16.0d, "l_extendedprice": 17170.72d, "l_discount": 0.04d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-17", "l_commitdate": "1995-08-23", "l_receiptdate": "1995-08-26", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "unts detect furiously even d" }, { "l_orderkey": 448i32, "l_partkey": 173i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 46.0d, "l_extendedprice": 49365.82d, "l_discount": 0.05d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-31", "l_commitdate": "1995-09-30", "l_receiptdate": "1995-09-09", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": " to the fluffily ironic packages." }, { "l_orderkey": 5153i32, "l_partkey": 173i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 32.0d, "l_extendedprice": 34341.44d, "l_discount": 0.1d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-05", "l_commitdate": "1995-09-25", "l_receiptdate": "1996-01-03", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "egular deposits. ironi" }, { "l_orderkey": 2945i32, "l_partkey": 173i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 10.0d, "l_extendedprice": 10731.7d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-13", "l_commitdate": "1996-03-10", "l_receiptdate": "1996-04-06", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "thely. final courts could hang qu" }, { "l_orderkey": 3495i32, "l_partkey": 173i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 24.0d, "l_extendedprice": 25756.08d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-22", "l_commitdate": "1996-04-10", "l_receiptdate": "1996-04-07", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "ic, final pains along the even request" }, { "l_orderkey": 1664i32, "l_partkey": 173i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 30.0d, "l_extendedprice": 32195.1d, "l_discount": 0.06d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-04-04", "l_commitdate": "1996-05-04", "l_receiptdate": "1996-05-03", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "ess multip" }, { "l_orderkey": 2534i32, "l_partkey": 173i32, "l_suppkey": 3i32, "l_linenumber": 7i32, "l_quantity": 17.0d, "l_extendedprice": 18243.89d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-22", "l_commitdate": "1996-09-15", "l_receiptdate": "1996-08-03", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "riously regular " }, { "l_orderkey": 5605i32, "l_partkey": 173i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 3.0d, "l_extendedprice": 3219.51d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-01", "l_commitdate": "1996-10-02", "l_receiptdate": "1996-09-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "posits. accounts boost. t" }, { "l_orderkey": 3812i32, "l_partkey": 173i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 33.0d, "l_extendedprice": 35414.61d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-05", "l_commitdate": "1996-10-13", "l_receiptdate": "1996-10-22", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "inal excuses d" }, { "l_orderkey": 3398i32, "l_partkey": 173i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 1.0d, "l_extendedprice": 1073.17d, "l_discount": 0.01d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-22", "l_commitdate": "1996-11-16", "l_receiptdate": "1996-12-09", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": " blithely final deposits." }, { "l_orderkey": 5377i32, "l_partkey": 173i32, "l_suppkey": 3i32, "l_linenumber": 5i32, "l_quantity": 27.0d, "l_extendedprice": 28975.59d, "l_discount": 0.08d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-11", "l_commitdate": "1997-06-12", "l_receiptdate": "1997-08-08", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "press theodolites. e" }, { "l_orderkey": 4964i32, "l_partkey": 173i32, "l_suppkey": 4i32, "l_linenumber": 7i32, "l_quantity": 28.0d, "l_extendedprice": 30048.76d, "l_discount": 0.0d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-30", "l_commitdate": "1997-09-15", "l_receiptdate": "1997-09-18", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "among the carefully regula" }, { "l_orderkey": 2561i32, "l_partkey": 173i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 47.0d, "l_extendedprice": 50438.99d, "l_discount": 0.04d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-11-19", "l_commitdate": "1998-01-21", "l_receiptdate": "1997-12-03", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "larly pending t" }, { "l_orderkey": 1408i32, "l_partkey": 173i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 7.0d, "l_extendedprice": 7512.19d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-14", "l_commitdate": "1998-03-21", "l_receiptdate": "1998-01-29", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "fully final instructions. theodolites ca" }, { "l_orderkey": 996i32, "l_partkey": 173i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 43.0d, "l_extendedprice": 46146.31d, "l_discount": 0.03d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-27", "l_commitdate": "1998-03-25", "l_receiptdate": "1998-04-06", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": " the blithely ironic foxes. slyly silent d" }, { "l_orderkey": 5664i32, "l_partkey": 173i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 9.0d, "l_extendedprice": 9658.53d, "l_discount": 0.07d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-31", "l_commitdate": "1998-08-26", "l_receiptdate": "1998-08-12", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": " ironic deposits haggle furiously. re" }, { "l_orderkey": 3840i32, "l_partkey": 173i32, "l_suppkey": 3i32, "l_linenumber": 5i32, "l_quantity": 7.0d, "l_extendedprice": 7512.19d, "l_discount": 0.09d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-09-17", "l_commitdate": "1998-09-20", "l_receiptdate": "1998-10-14", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": ". furiously final gifts sleep carefully pin" } ] }
-{ "partkey": 176i32, "lines": [ { "l_orderkey": 4800i32, "l_partkey": 176i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 38.0d, "l_extendedprice": 40894.46d, "l_discount": 0.1d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-02-01", "l_commitdate": "1992-02-28", "l_receiptdate": "1992-02-21", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "s sleep fluffily. furiou" }, { "l_orderkey": 1826i32, "l_partkey": 176i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 14.0d, "l_extendedprice": 15066.38d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-04-28", "l_commitdate": "1992-05-31", "l_receiptdate": "1992-05-25", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "uriously bold pinto beans are carefully ag" }, { "l_orderkey": 3907i32, "l_partkey": 176i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 48.0d, "l_extendedprice": 51656.16d, "l_discount": 0.05d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-09-24", "l_commitdate": "1992-10-16", "l_receiptdate": "1992-10-06", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "nt asymptotes lose across th" }, { "l_orderkey": 1253i32, "l_partkey": 176i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 23.0d, "l_extendedprice": 24751.91d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-04-18", "l_commitdate": "1993-04-18", "l_receiptdate": "1993-05-07", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": " the slyly silent re" }, { "l_orderkey": 3109i32, "l_partkey": 176i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 43.0d, "l_extendedprice": 46275.31d, "l_discount": 0.04d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-09-29", "l_commitdate": "1993-09-06", "l_receiptdate": "1993-10-13", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "ding to the foxes. " }, { "l_orderkey": 769i32, "l_partkey": 176i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 36.0d, "l_extendedprice": 38742.12d, "l_discount": 0.02d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-10-01", "l_commitdate": "1993-08-07", "l_receiptdate": "1993-10-15", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "es. furiously iro" }, { "l_orderkey": 2020i32, "l_partkey": 176i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 40.0d, "l_extendedprice": 43046.8d, "l_discount": 0.09d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-10-17", "l_commitdate": "1993-09-14", "l_receiptdate": "1993-10-29", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "ently across the" }, { "l_orderkey": 3841i32, "l_partkey": 176i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 3.0d, "l_extendedprice": 3228.51d, "l_discount": 0.04d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-10-24", "l_commitdate": "1994-12-07", "l_receiptdate": "1994-11-09", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "foxes integrate " }, { "l_orderkey": 3365i32, "l_partkey": 176i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 49.0d, "l_extendedprice": 52732.33d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-01-03", "l_commitdate": "1995-01-01", "l_receiptdate": "1995-01-18", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "lyly unusual asymptotes. final" }, { "l_orderkey": 3590i32, "l_partkey": 176i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 10.0d, "l_extendedprice": 10761.7d, "l_discount": 0.08d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-17", "l_commitdate": "1995-06-26", "l_receiptdate": "1995-08-12", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "t the quickly ironic" }, { "l_orderkey": 2306i32, "l_partkey": 176i32, "l_suppkey": 4i32, "l_linenumber": 7i32, "l_quantity": 19.0d, "l_extendedprice": 20447.23d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-17", "l_commitdate": "1995-09-06", "l_receiptdate": "1995-11-30", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "tainments nag furiously carefull" }, { "l_orderkey": 5924i32, "l_partkey": 176i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 38.0d, "l_extendedprice": 40894.46d, "l_discount": 0.06d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-17", "l_commitdate": "1995-12-11", "l_receiptdate": "1996-01-06", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "ions cajole carefully along the " }, { "l_orderkey": 1958i32, "l_partkey": 176i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 29.0d, "l_extendedprice": 31208.93d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-19", "l_commitdate": "1995-12-05", "l_receiptdate": "1996-02-14", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "d pinto beans" }, { "l_orderkey": 4803i32, "l_partkey": 176i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 47.0d, "l_extendedprice": 50579.99d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-14", "l_commitdate": "1996-03-30", "l_receiptdate": "1996-03-15", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "ly final excuses. slyly express requ" }, { "l_orderkey": 38i32, "l_partkey": 176i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 44.0d, "l_extendedprice": 47351.48d, "l_discount": 0.04d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-29", "l_commitdate": "1996-11-17", "l_receiptdate": "1996-09-30", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "s. blithely unusual theodolites am" }, { "l_orderkey": 3206i32, "l_partkey": 176i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 1.0d, "l_extendedprice": 1076.17d, "l_discount": 0.07d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-22", "l_commitdate": "1996-10-16", "l_receiptdate": "1996-12-07", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "y unusual foxes cajole ab" }, { "l_orderkey": 5987i32, "l_partkey": 176i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 20.0d, "l_extendedprice": 21523.4d, "l_discount": 0.1d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-28", "l_commitdate": "1996-09-17", "l_receiptdate": "1996-12-05", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "ing excuses nag quickly always bold" }, { "l_orderkey": 422i32, "l_partkey": 176i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 46.0d, "l_extendedprice": 49503.82d, "l_discount": 0.09d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-21", "l_commitdate": "1997-07-14", "l_receiptdate": "1997-06-27", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": " ideas. qu" }, { "l_orderkey": 453i32, "l_partkey": 176i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 38.0d, "l_extendedprice": 40894.46d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-30", "l_commitdate": "1997-07-08", "l_receiptdate": "1997-07-16", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": " furiously f" }, { "l_orderkey": 5602i32, "l_partkey": 176i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 9.0d, "l_extendedprice": 9685.53d, "l_discount": 0.08d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-10-14", "l_commitdate": "1997-09-14", "l_receiptdate": "1997-11-11", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "lar foxes; quickly ironic ac" }, { "l_orderkey": 675i32, "l_partkey": 176i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 34.0d, "l_extendedprice": 36589.78d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-11-17", "l_commitdate": "1997-10-07", "l_receiptdate": "1997-11-27", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "y final accounts unwind around the " }, { "l_orderkey": 5280i32, "l_partkey": 176i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 46.0d, "l_extendedprice": 49503.82d, "l_discount": 0.01d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-04", "l_commitdate": "1998-01-21", "l_receiptdate": "1998-02-03", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "efully carefully pen" }, { "l_orderkey": 2789i32, "l_partkey": 176i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 33.0d, "l_extendedprice": 35513.61d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-21", "l_commitdate": "1998-05-02", "l_receiptdate": "1998-04-30", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "deposits. ironic " }, { "l_orderkey": 68i32, "l_partkey": 176i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 46.0d, "l_extendedprice": 49503.82d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-26", "l_commitdate": "1998-06-07", "l_receiptdate": "1998-07-05", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": " requests are unusual, regular pinto " }, { "l_orderkey": 800i32, "l_partkey": 176i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 26.0d, "l_extendedprice": 27980.42d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-23", "l_commitdate": "1998-10-08", "l_receiptdate": "1998-07-25", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "bove the pending requests." }, { "l_orderkey": 2981i32, "l_partkey": 176i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 8.0d, "l_extendedprice": 8609.36d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-21", "l_commitdate": "1998-09-28", "l_receiptdate": "1998-09-05", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "ng to the f" }, { "l_orderkey": 3813i32, "l_partkey": 176i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 37.0d, "l_extendedprice": 39818.29d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-10-13", "l_commitdate": "1998-09-19", "l_receiptdate": "1998-10-28", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "ravely special packages haggle p" }, { "l_orderkey": 5184i32, "l_partkey": 176i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 26.0d, "l_extendedprice": 27980.42d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-11-11", "l_commitdate": "1998-08-26", "l_receiptdate": "1998-12-01", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": " packages are" } ] }
-{ "partkey": 188i32, "lines": [ { "l_orderkey": 1285i32, "l_partkey": 188i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 39.0d, "l_extendedprice": 42439.02d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-09-15", "l_commitdate": "1992-08-05", "l_receiptdate": "1992-10-05", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "uctions. car" }, { "l_orderkey": 5381i32, "l_partkey": 188i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 37.0d, "l_extendedprice": 40262.66d, "l_discount": 0.04d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-04-08", "l_commitdate": "1993-04-07", "l_receiptdate": "1993-04-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "ly final deposits print carefully. unusua" }, { "l_orderkey": 4226i32, "l_partkey": 188i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 27.0d, "l_extendedprice": 29380.86d, "l_discount": 0.06d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-05-03", "l_commitdate": "1993-04-12", "l_receiptdate": "1993-05-16", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "sly alongside of the slyly ironic pac" }, { "l_orderkey": 896i32, "l_partkey": 188i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 34.0d, "l_extendedprice": 36998.12d, "l_discount": 0.0d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-05-21", "l_commitdate": "1993-06-01", "l_receiptdate": "1993-05-23", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "ular, close requests cajo" }, { "l_orderkey": 738i32, "l_partkey": 188i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 4.0d, "l_extendedprice": 4352.72d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-06-20", "l_commitdate": "1993-04-08", "l_receiptdate": "1993-07-09", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "ar packages. fluffily bo" }, { "l_orderkey": 4935i32, "l_partkey": 188i32, "l_suppkey": 9i32, "l_linenumber": 6i32, "l_quantity": 36.0d, "l_extendedprice": 39174.48d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-07-11", "l_commitdate": "1993-07-04", "l_receiptdate": "1993-08-01", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "requests across the quick" }, { "l_orderkey": 5764i32, "l_partkey": 188i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 4.0d, "l_extendedprice": 4352.72d, "l_discount": 0.03d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-10-25", "l_commitdate": "1993-12-23", "l_receiptdate": "1993-11-06", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "ily regular courts haggle" }, { "l_orderkey": 4547i32, "l_partkey": 188i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 15.0d, "l_extendedprice": 16322.7d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-12-08", "l_commitdate": "1993-11-15", "l_receiptdate": "1993-12-22", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "ets haggle. regular dinos affix fu" }, { "l_orderkey": 5766i32, "l_partkey": 188i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 1.0d, "l_extendedprice": 1088.18d, "l_discount": 0.1d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-01-16", "l_commitdate": "1993-11-16", "l_receiptdate": "1994-01-23", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "blithely regular the" }, { "l_orderkey": 3169i32, "l_partkey": 188i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 12.0d, "l_extendedprice": 13058.16d, "l_discount": 0.08d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-04-18", "l_commitdate": "1994-03-12", "l_receiptdate": "1994-05-08", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "atelets. pac" }, { "l_orderkey": 5698i32, "l_partkey": 188i32, "l_suppkey": 9i32, "l_linenumber": 6i32, "l_quantity": 1.0d, "l_extendedprice": 1088.18d, "l_discount": 0.06d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-05-31", "l_commitdate": "1994-07-10", "l_receiptdate": "1994-06-03", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "nts. slyly quiet pinto beans nag carefu" }, { "l_orderkey": 3653i32, "l_partkey": 188i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 41.0d, "l_extendedprice": 44615.38d, "l_discount": 0.08d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-06-18", "l_commitdate": "1994-05-18", "l_receiptdate": "1994-06-20", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "onic packages affix sly" }, { "l_orderkey": 5155i32, "l_partkey": 188i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 5.0d, "l_extendedprice": 5440.9d, "l_discount": 0.08d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-06-30", "l_commitdate": "1994-08-13", "l_receiptdate": "1994-07-15", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "ole blithely slyly ironic " }, { "l_orderkey": 962i32, "l_partkey": 188i32, "l_suppkey": 9i32, "l_linenumber": 6i32, "l_quantity": 5.0d, "l_extendedprice": 5440.9d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-08-29", "l_commitdate": "1994-07-15", "l_receiptdate": "1994-09-19", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "efully bold packages run slyly caref" }, { "l_orderkey": 3746i32, "l_partkey": 188i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 3.0d, "l_extendedprice": 3264.54d, "l_discount": 0.1d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-11-03", "l_commitdate": "1994-12-10", "l_receiptdate": "1994-11-12", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": " the silent ideas cajole carefully " }, { "l_orderkey": 5511i32, "l_partkey": 188i32, "l_suppkey": 9i32, "l_linenumber": 6i32, "l_quantity": 5.0d, "l_extendedprice": 5440.9d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-12-29", "l_commitdate": "1995-01-16", "l_receiptdate": "1995-01-24", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "al theodolites. blithely final de" }, { "l_orderkey": 4742i32, "l_partkey": 188i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 31.0d, "l_extendedprice": 33733.58d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "F", "l_shipdate": "1995-06-13", "l_commitdate": "1995-05-08", "l_receiptdate": "1995-06-24", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "ke slyly among the furiousl" }, { "l_orderkey": 3362i32, "l_partkey": 188i32, "l_suppkey": 9i32, "l_linenumber": 6i32, "l_quantity": 46.0d, "l_extendedprice": 50056.28d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-02", "l_commitdate": "1995-10-12", "l_receiptdate": "1995-08-28", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "ly bold packages. regular deposits cajol" }, { "l_orderkey": 2945i32, "l_partkey": 188i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 34.0d, "l_extendedprice": 36998.12d, "l_discount": 0.08d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-02-03", "l_commitdate": "1996-03-17", "l_receiptdate": "1996-02-29", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "at the unusual theodolite" }, { "l_orderkey": 2979i32, "l_partkey": 188i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 35.0d, "l_extendedprice": 38086.3d, "l_discount": 0.04d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-25", "l_commitdate": "1996-06-11", "l_receiptdate": "1996-06-24", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "old ideas beneath the blit" }, { "l_orderkey": 3781i32, "l_partkey": 188i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 39.0d, "l_extendedprice": 42439.02d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-20", "l_commitdate": "1996-08-16", "l_receiptdate": "1996-09-01", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "unts are carefully. ir" }, { "l_orderkey": 3936i32, "l_partkey": 188i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 24.0d, "l_extendedprice": 26116.32d, "l_discount": 0.1d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-22", "l_commitdate": "1997-01-01", "l_receiptdate": "1996-12-08", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "ns. accounts mold fl" }, { "l_orderkey": 836i32, "l_partkey": 188i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 6.0d, "l_extendedprice": 6529.08d, "l_discount": 0.09d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-09", "l_commitdate": "1997-01-31", "l_receiptdate": "1996-12-29", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "fully bold theodolites are daringly across" }, { "l_orderkey": 4320i32, "l_partkey": 188i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 33.0d, "l_extendedprice": 35909.94d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-11", "l_commitdate": "1997-02-27", "l_receiptdate": "1997-01-08", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "ess asymptotes so" }, { "l_orderkey": 578i32, "l_partkey": 188i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 23.0d, "l_extendedprice": 25028.14d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-06", "l_commitdate": "1997-03-03", "l_receiptdate": "1997-03-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "nstructions. ironic deposits" }, { "l_orderkey": 1859i32, "l_partkey": 188i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 36.0d, "l_extendedprice": 39174.48d, "l_discount": 0.02d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-05", "l_commitdate": "1997-07-08", "l_receiptdate": "1997-05-25", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "regular requests. carefully unusual theo" }, { "l_orderkey": 1410i32, "l_partkey": 188i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 22.0d, "l_extendedprice": 23939.96d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-31", "l_commitdate": "1997-05-17", "l_receiptdate": "1997-08-19", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "gular account" }, { "l_orderkey": 1251i32, "l_partkey": 188i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 1.0d, "l_extendedprice": 1088.18d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-08", "l_commitdate": "1998-01-06", "l_receiptdate": "1998-01-01", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": " use quickly final packages. iron" }, { "l_orderkey": 3079i32, "l_partkey": 188i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 2.0d, "l_extendedprice": 2176.36d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-27", "l_commitdate": "1997-10-25", "l_receiptdate": "1998-01-08", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "y regular asymptotes doz" }, { "l_orderkey": 3203i32, "l_partkey": 188i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 22.0d, "l_extendedprice": 23939.96d, "l_discount": 0.03d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-02-12", "l_commitdate": "1998-01-01", "l_receiptdate": "1998-02-18", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "e the blithely regular accounts boost f" }, { "l_orderkey": 739i32, "l_partkey": 188i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 30.0d, "l_extendedprice": 32645.4d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-19", "l_commitdate": "1998-08-26", "l_receiptdate": "1998-07-02", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "above the even deposits. ironic requests" } ] }
-{ "partkey": 193i32, "lines": [ { "l_orderkey": 1057i32, "l_partkey": 193i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 29.0d, "l_extendedprice": 31702.51d, "l_discount": 0.1d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-05-05", "l_commitdate": "1992-05-05", "l_receiptdate": "1992-06-03", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "es wake according to the q" }, { "l_orderkey": 5795i32, "l_partkey": 193i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 34.0d, "l_extendedprice": 37168.46d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-08-21", "l_commitdate": "1992-07-30", "l_receiptdate": "1992-08-27", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "al instructions must affix along the ironic" }, { "l_orderkey": 2244i32, "l_partkey": 193i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 16.0d, "l_extendedprice": 17491.04d, "l_discount": 0.01d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-02-12", "l_commitdate": "1993-03-09", "l_receiptdate": "1993-02-28", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "rate around the reques" }, { "l_orderkey": 5954i32, "l_partkey": 193i32, "l_suppkey": 5i32, "l_linenumber": 6i32, "l_quantity": 39.0d, "l_extendedprice": 42634.41d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-02-27", "l_commitdate": "1993-02-25", "l_receiptdate": "1993-03-29", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": " always regular dolphins. furiously p" }, { "l_orderkey": 710i32, "l_partkey": 193i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 38.0d, "l_extendedprice": 41541.22d, "l_discount": 0.07d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-04-18", "l_commitdate": "1993-03-12", "l_receiptdate": "1993-05-15", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "sts boost fluffily aft" }, { "l_orderkey": 4359i32, "l_partkey": 193i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 32.0d, "l_extendedprice": 34982.08d, "l_discount": 0.1d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-06-18", "l_commitdate": "1993-04-04", "l_receiptdate": "1993-07-18", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "olites nag quietly caref" }, { "l_orderkey": 898i32, "l_partkey": 193i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 36.0d, "l_extendedprice": 39354.84d, "l_discount": 0.04d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-08-04", "l_commitdate": "1993-07-25", "l_receiptdate": "1993-08-23", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": " after the carefully " }, { "l_orderkey": 1383i32, "l_partkey": 193i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 14.0d, "l_extendedprice": 15304.66d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-08-25", "l_commitdate": "1993-07-09", "l_receiptdate": "1993-09-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "ole carefully silent requests. car" }, { "l_orderkey": 259i32, "l_partkey": 193i32, "l_suppkey": 6i32, "l_linenumber": 5i32, "l_quantity": 6.0d, "l_extendedprice": 6559.14d, "l_discount": 0.0d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-12-05", "l_commitdate": "1993-12-22", "l_receiptdate": "1993-12-21", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": " requests sleep" }, { "l_orderkey": 5285i32, "l_partkey": 193i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 31.0d, "l_extendedprice": 33888.89d, "l_discount": 0.08d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-04-17", "l_commitdate": "1994-04-05", "l_receiptdate": "1994-05-09", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "ubt. quickly blithe " }, { "l_orderkey": 5666i32, "l_partkey": 193i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 39.0d, "l_extendedprice": 42634.41d, "l_discount": 0.0d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-05-13", "l_commitdate": "1994-04-02", "l_receiptdate": "1994-06-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "the even, final foxes. quickly iron" }, { "l_orderkey": 1440i32, "l_partkey": 193i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 3.0d, "l_extendedprice": 3279.57d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-30", "l_commitdate": "1995-10-17", "l_receiptdate": "1995-11-08", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "instructions boost. fluffily regul" }, { "l_orderkey": 2340i32, "l_partkey": 193i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 21.0d, "l_extendedprice": 22956.99d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-17", "l_commitdate": "1996-03-04", "l_receiptdate": "1996-01-29", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": " asymptotes. unusual theo" }, { "l_orderkey": 1254i32, "l_partkey": 193i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 6.0d, "l_extendedprice": 6559.14d, "l_discount": 0.08d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-02-02", "l_commitdate": "1996-03-21", "l_receiptdate": "1996-02-29", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "lithely even deposits eat!" }, { "l_orderkey": 2336i32, "l_partkey": 193i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 20.0d, "l_extendedprice": 21863.8d, "l_discount": 0.01d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-12", "l_commitdate": "1996-02-25", "l_receiptdate": "1996-03-18", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "across the fi" }, { "l_orderkey": 4295i32, "l_partkey": 193i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 3.0d, "l_extendedprice": 3279.57d, "l_discount": 0.04d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-04", "l_commitdate": "1996-04-24", "l_receiptdate": "1996-06-24", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "telets cajole bravely" }, { "l_orderkey": 2180i32, "l_partkey": 193i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 39.0d, "l_extendedprice": 42634.41d, "l_discount": 0.01d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-03", "l_commitdate": "1996-10-29", "l_receiptdate": "1997-01-25", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "ep furiously furiously final request" }, { "l_orderkey": 1923i32, "l_partkey": 193i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 49.0d, "l_extendedprice": 53566.31d, "l_discount": 0.06d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-21", "l_commitdate": "1997-08-08", "l_receiptdate": "1997-07-26", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "de of the carefully expre" }, { "l_orderkey": 4964i32, "l_partkey": 193i32, "l_suppkey": 7i32, "l_linenumber": 6i32, "l_quantity": 22.0d, "l_extendedprice": 24050.18d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-11", "l_commitdate": "1997-10-06", "l_receiptdate": "1997-09-29", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "equests doubt quickly. caref" }, { "l_orderkey": 163i32, "l_partkey": 193i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 5.0d, "l_extendedprice": 5465.95d, "l_discount": 0.02d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-11-17", "l_commitdate": "1997-10-09", "l_receiptdate": "1997-12-05", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": " must belie" }, { "l_orderkey": 320i32, "l_partkey": 193i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 13.0d, "l_extendedprice": 14211.47d, "l_discount": 0.03d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-16", "l_commitdate": "1997-12-26", "l_receiptdate": "1997-12-17", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "he furiously regular pinto beans. car" }, { "l_orderkey": 3937i32, "l_partkey": 193i32, "l_suppkey": 6i32, "l_linenumber": 6i32, "l_quantity": 6.0d, "l_extendedprice": 6559.14d, "l_discount": 0.0d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-24", "l_commitdate": "1998-02-13", "l_receiptdate": "1998-01-27", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "into beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside oin" }, { "l_orderkey": 5477i32, "l_partkey": 193i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 16.0d, "l_extendedprice": 17491.04d, "l_discount": 0.0d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-07", "l_commitdate": "1998-03-12", "l_receiptdate": "1998-04-06", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "regular, s" }, { "l_orderkey": 1696i32, "l_partkey": 193i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 21.0d, "l_extendedprice": 22956.99d, "l_discount": 0.05d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-04", "l_commitdate": "1998-02-18", "l_receiptdate": "1998-05-07", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "y players sleep along the final, pending " }, { "l_orderkey": 5058i32, "l_partkey": 193i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 16.0d, "l_extendedprice": 17491.04d, "l_discount": 0.09d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-12", "l_commitdate": "1998-06-09", "l_receiptdate": "1998-07-15", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": " the special foxes " }, { "l_orderkey": 2403i32, "l_partkey": 193i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 27.0d, "l_extendedprice": 29516.13d, "l_discount": 0.05d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-27", "l_commitdate": "1998-07-08", "l_receiptdate": "1998-08-03", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "deposits sleep slyly special theodolit" }, { "l_orderkey": 4837i32, "l_partkey": 193i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 16.0d, "l_extendedprice": 17491.04d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-19", "l_commitdate": "1998-06-18", "l_receiptdate": "1998-08-26", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "counts cajole slyly furiou" } ] }
+{ "partkey": 1i32, "lines": [ { "l_orderkey": 35i32, "l_partkey": 1i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 24.0d, "l_extendedprice": 21624.0d, "l_discount": 0.02d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-02-21", "l_commitdate": "1996-01-03", "l_receiptdate": "1996-03-18", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": ", regular tithe" }, { "l_orderkey": 134i32, "l_partkey": 1i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 21.0d, "l_extendedprice": 18921.0d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-07-17", "l_commitdate": "1992-07-08", "l_receiptdate": "1992-07-26", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "s. quickly regular" }, { "l_orderkey": 321i32, "l_partkey": 1i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 21.0d, "l_extendedprice": 18921.0d, "l_discount": 0.01d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-07-18", "l_commitdate": "1993-04-24", "l_receiptdate": "1993-08-13", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "hockey players sleep slyly sl" }, { "l_orderkey": 548i32, "l_partkey": 1i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 21.0d, "l_extendedprice": 18921.0d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-01-13", "l_commitdate": "1994-12-18", "l_receiptdate": "1995-01-25", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "ideas. special accounts above the furiou" }, { "l_orderkey": 640i32, "l_partkey": 1i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 40.0d, "l_extendedprice": 36040.0d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-05-11", "l_commitdate": "1993-04-11", "l_receiptdate": "1993-05-15", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "oach according to the bol" }, { "l_orderkey": 807i32, "l_partkey": 1i32, "l_suppkey": 6i32, "l_linenumber": 7i32, "l_quantity": 19.0d, "l_extendedprice": 17119.0d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-02-10", "l_commitdate": "1994-02-20", "l_receiptdate": "1994-03-06", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "ns haggle quickly across the furi" }, { "l_orderkey": 1122i32, "l_partkey": 1i32, "l_suppkey": 6i32, "l_linenumber": 7i32, "l_quantity": 38.0d, "l_extendedprice": 34238.0d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-23", "l_commitdate": "1997-04-02", "l_receiptdate": "1997-02-16", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "t theodolites sleep. even, ironic" }, { "l_orderkey": 1154i32, "l_partkey": 1i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 35.0d, "l_extendedprice": 31535.0d, "l_discount": 0.0d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-03-30", "l_commitdate": "1992-04-02", "l_receiptdate": "1992-04-21", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "the carefully regular pinto beans boost" }, { "l_orderkey": 1287i32, "l_partkey": 1i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 30.0d, "l_extendedprice": 27030.0d, "l_discount": 0.0d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-07-12", "l_commitdate": "1994-09-23", "l_receiptdate": "1994-08-07", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "ar packages. even, even" }, { "l_orderkey": 1472i32, "l_partkey": 1i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 6.0d, "l_extendedprice": 5406.0d, "l_discount": 0.08d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-24", "l_commitdate": "1996-11-19", "l_receiptdate": "1996-11-23", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "onic theodolites hinder slyly slyly r" }, { "l_orderkey": 1668i32, "l_partkey": 1i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 25.0d, "l_extendedprice": 22525.0d, "l_discount": 0.01d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-08", "l_commitdate": "1997-09-28", "l_receiptdate": "1997-09-01", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "y ironic requests. bold, final ideas a" }, { "l_orderkey": 1761i32, "l_partkey": 1i32, "l_suppkey": 6i32, "l_linenumber": 7i32, "l_quantity": 13.0d, "l_extendedprice": 11713.0d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-03-06", "l_commitdate": "1994-03-18", "l_receiptdate": "1994-03-22", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "ons boost fu" }, { "l_orderkey": 2117i32, "l_partkey": 1i32, "l_suppkey": 4i32, "l_linenumber": 6i32, "l_quantity": 27.0d, "l_extendedprice": 24327.0d, "l_discount": 0.09d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-30", "l_commitdate": "1997-06-27", "l_receiptdate": "1997-07-11", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": " the carefully ironic ideas" }, { "l_orderkey": 2374i32, "l_partkey": 1i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 25.0d, "l_extendedprice": 22525.0d, "l_discount": 0.08d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-11-26", "l_commitdate": "1993-12-15", "l_receiptdate": "1993-12-10", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "refully pending d" }, { "l_orderkey": 2528i32, "l_partkey": 1i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 10.0d, "l_extendedprice": 9010.0d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-12-12", "l_commitdate": "1994-12-29", "l_receiptdate": "1994-12-28", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "ely. fluffily even re" }, { "l_orderkey": 2534i32, "l_partkey": 1i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 50.0d, "l_extendedprice": 45050.0d, "l_discount": 0.1d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-25", "l_commitdate": "1996-10-07", "l_receiptdate": "1996-10-09", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "ideas. deposits use. slyly regular pa" }, { "l_orderkey": 2726i32, "l_partkey": 1i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 50.0d, "l_extendedprice": 45050.0d, "l_discount": 0.0d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-03-04", "l_commitdate": "1993-01-29", "l_receiptdate": "1993-03-28", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": " furiously bold theodolites" }, { "l_orderkey": 2883i32, "l_partkey": 1i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 33.0d, "l_extendedprice": 29733.0d, "l_discount": 0.08d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-02-26", "l_commitdate": "1995-03-04", "l_receiptdate": "1995-03-01", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "s. final i" }, { "l_orderkey": 2885i32, "l_partkey": 1i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 45.0d, "l_extendedprice": 40545.0d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-12-24", "l_commitdate": "1992-10-30", "l_receiptdate": "1993-01-04", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "ess ideas. regular, silen" }, { "l_orderkey": 3175i32, "l_partkey": 1i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 38.0d, "l_extendedprice": 34238.0d, "l_discount": 0.01d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-10-10", "l_commitdate": "1994-08-25", "l_receiptdate": "1994-10-28", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "the quickly even dolph" }, { "l_orderkey": 3175i32, "l_partkey": 1i32, "l_suppkey": 4i32, "l_linenumber": 7i32, "l_quantity": 32.0d, "l_extendedprice": 28832.0d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-09-29", "l_commitdate": "1994-09-20", "l_receiptdate": "1994-10-10", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "lites sleep" }, { "l_orderkey": 3457i32, "l_partkey": 1i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 24.0d, "l_extendedprice": 21624.0d, "l_discount": 0.07d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-03", "l_commitdate": "1995-05-30", "l_receiptdate": "1995-08-14", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "tructions haggle alongsid" }, { "l_orderkey": 3843i32, "l_partkey": 1i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 30.0d, "l_extendedprice": 27030.0d, "l_discount": 0.01d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-14", "l_commitdate": "1997-03-25", "l_receiptdate": "1997-03-13", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": " wake. slyly even packages boost " }, { "l_orderkey": 3940i32, "l_partkey": 1i32, "l_suppkey": 6i32, "l_linenumber": 5i32, "l_quantity": 41.0d, "l_extendedprice": 36941.0d, "l_discount": 0.0d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-08", "l_commitdate": "1996-05-03", "l_receiptdate": "1996-06-03", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "thily. deposits cajole." }, { "l_orderkey": 4102i32, "l_partkey": 1i32, "l_suppkey": 6i32, "l_linenumber": 5i32, "l_quantity": 32.0d, "l_extendedprice": 28832.0d, "l_discount": 0.08d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-14", "l_commitdate": "1996-04-29", "l_receiptdate": "1996-05-29", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": " the even requests; regular pinto" }, { "l_orderkey": 4293i32, "l_partkey": 1i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 34.0d, "l_extendedprice": 30634.0d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-05", "l_commitdate": "1996-10-12", "l_receiptdate": "1996-12-04", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "ions sleep blithely on" }, { "l_orderkey": 4323i32, "l_partkey": 1i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 33.0d, "l_extendedprice": 29733.0d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-05-04", "l_commitdate": "1994-03-06", "l_receiptdate": "1994-05-23", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "the slyly bold deposits slee" }, { "l_orderkey": 4355i32, "l_partkey": 1i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 13.0d, "l_extendedprice": 11713.0d, "l_discount": 0.07d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-21", "l_commitdate": "1996-12-22", "l_receiptdate": "1997-02-14", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": " ought to mold. blithely pending ideas " }, { "l_orderkey": 4452i32, "l_partkey": 1i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 47.0d, "l_extendedprice": 42347.0d, "l_discount": 0.01d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-10-08", "l_commitdate": "1994-08-09", "l_receiptdate": "1994-10-09", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "ts. slyly regular cour" }, { "l_orderkey": 4580i32, "l_partkey": 1i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 41.0d, "l_extendedprice": 36941.0d, "l_discount": 0.0d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-12-13", "l_commitdate": "1994-01-31", "l_receiptdate": "1994-01-06", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "requests. quickly silent asymptotes sle" }, { "l_orderkey": 5121i32, "l_partkey": 1i32, "l_suppkey": 8i32, "l_linenumber": 6i32, "l_quantity": 2.0d, "l_extendedprice": 1802.0d, "l_discount": 0.04d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-08-10", "l_commitdate": "1992-06-28", "l_receiptdate": "1992-08-11", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": " final, regular account" }, { "l_orderkey": 5409i32, "l_partkey": 1i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 9.0d, "l_extendedprice": 8109.0d, "l_discount": 0.07d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-02-15", "l_commitdate": "1992-04-02", "l_receiptdate": "1992-02-28", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": " unusual, unusual reques" }, { "l_orderkey": 5634i32, "l_partkey": 1i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 1.0d, "l_extendedprice": 901.0d, "l_discount": 0.04d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-02", "l_commitdate": "1996-10-21", "l_receiptdate": "1996-10-27", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "ctions haggle carefully. carefully clo" }, { "l_orderkey": 5760i32, "l_partkey": 1i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 6.0d, "l_extendedprice": 5406.0d, "l_discount": 0.09d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-07-30", "l_commitdate": "1994-07-31", "l_receiptdate": "1994-08-16", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "ng the acco" }, { "l_orderkey": 5984i32, "l_partkey": 1i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 8.0d, "l_extendedprice": 7208.0d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-09-17", "l_commitdate": "1994-08-28", "l_receiptdate": "1994-09-25", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "its. express," } ] }
+{ "partkey": 2i32, "lines": [ { "l_orderkey": 65i32, "l_partkey": 2i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 21.0d, "l_extendedprice": 18942.0d, "l_discount": 0.09d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-06", "l_commitdate": "1995-05-14", "l_receiptdate": "1995-07-31", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "bove the even packages. accounts nag carefu" }, { "l_orderkey": 130i32, "l_partkey": 2i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 48.0d, "l_extendedprice": 43296.0d, "l_discount": 0.03d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-07-01", "l_commitdate": "1992-07-12", "l_receiptdate": "1992-07-24", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "lithely alongside of the regu" }, { "l_orderkey": 261i32, "l_partkey": 2i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 34.0d, "l_extendedprice": 30668.0d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-08-18", "l_commitdate": "1993-09-24", "l_receiptdate": "1993-08-20", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "c packages. asymptotes da" }, { "l_orderkey": 290i32, "l_partkey": 2i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 5.0d, "l_extendedprice": 4510.0d, "l_discount": 0.03d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-01-19", "l_commitdate": "1994-02-24", "l_receiptdate": "1994-01-27", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "ans integrate. requests sleep. fur" }, { "l_orderkey": 418i32, "l_partkey": 2i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 1.0d, "l_extendedprice": 902.0d, "l_discount": 0.04d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-06-23", "l_commitdate": "1995-06-16", "l_receiptdate": "1995-07-23", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "regular, silent pinto" }, { "l_orderkey": 740i32, "l_partkey": 2i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 22.0d, "l_extendedprice": 19844.0d, "l_discount": 0.1d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-24", "l_commitdate": "1995-09-11", "l_receiptdate": "1995-08-11", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "odolites cajole ironic, pending instruc" }, { "l_orderkey": 896i32, "l_partkey": 2i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 7.0d, "l_extendedprice": 6314.0d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-05-02", "l_commitdate": "1993-05-24", "l_receiptdate": "1993-05-31", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": " requests " }, { "l_orderkey": 1250i32, "l_partkey": 2i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 15.0d, "l_extendedprice": 13530.0d, "l_discount": 0.1d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-11-05", "l_commitdate": "1992-12-17", "l_receiptdate": "1992-12-03", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": " regular, i" }, { "l_orderkey": 1575i32, "l_partkey": 2i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 12.0d, "l_extendedprice": 10824.0d, "l_discount": 0.01d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-27", "l_commitdate": "1995-11-11", "l_receiptdate": "1996-01-23", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": " bold accounts. furi" }, { "l_orderkey": 1696i32, "l_partkey": 2i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 19.0d, "l_extendedprice": 17138.0d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-03", "l_commitdate": "1998-03-13", "l_receiptdate": "1998-05-28", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "its maintain alongside of the f" }, { "l_orderkey": 2370i32, "l_partkey": 2i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 24.0d, "l_extendedprice": 21648.0d, "l_discount": 0.0d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-05-15", "l_commitdate": "1994-04-09", "l_receiptdate": "1994-06-12", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "final depen" }, { "l_orderkey": 2437i32, "l_partkey": 2i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 23.0d, "l_extendedprice": 20746.0d, "l_discount": 0.01d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-08-15", "l_commitdate": "1993-06-28", "l_receiptdate": "1993-08-23", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "s deposits. pendi" }, { "l_orderkey": 2656i32, "l_partkey": 2i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 19.0d, "l_extendedprice": 17138.0d, "l_discount": 0.03d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-08-03", "l_commitdate": "1993-07-25", "l_receiptdate": "1993-08-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "ts serve deposi" }, { "l_orderkey": 2662i32, "l_partkey": 2i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 6.0d, "l_extendedprice": 5412.0d, "l_discount": 0.02d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-30", "l_commitdate": "1996-09-20", "l_receiptdate": "1996-12-03", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "olites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the bolites cajole quickly along the " }, { "l_orderkey": 3046i32, "l_partkey": 2i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 31.0d, "l_extendedprice": 27962.0d, "l_discount": 0.03d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-24", "l_commitdate": "1996-01-30", "l_receiptdate": "1996-03-26", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "y pending somas alongside of the slyly iro" }, { "l_orderkey": 3362i32, "l_partkey": 2i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 3.0d, "l_extendedprice": 2706.0d, "l_discount": 0.03d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-26", "l_commitdate": "1995-09-02", "l_receiptdate": "1995-09-17", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "its cajole blithely excuses. de" }, { "l_orderkey": 3650i32, "l_partkey": 2i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 1.0d, "l_extendedprice": 902.0d, "l_discount": 0.04d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-06-23", "l_commitdate": "1992-07-18", "l_receiptdate": "1992-07-08", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "re about the pinto " }, { "l_orderkey": 3654i32, "l_partkey": 2i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 37.0d, "l_extendedprice": 33374.0d, "l_discount": 0.07d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-09-22", "l_commitdate": "1992-07-20", "l_receiptdate": "1992-10-19", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "unts doze bravely ab" }, { "l_orderkey": 3811i32, "l_partkey": 2i32, "l_suppkey": 7i32, "l_linenumber": 6i32, "l_quantity": 35.0d, "l_extendedprice": 31570.0d, "l_discount": 0.04d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-17", "l_commitdate": "1998-06-30", "l_receiptdate": "1998-04-25", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "yly final dolphins? quickly ironic frets" }, { "l_orderkey": 4001i32, "l_partkey": 2i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 39.0d, "l_extendedprice": 35178.0d, "l_discount": 0.0d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-13", "l_commitdate": "1997-06-17", "l_receiptdate": "1997-06-25", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": " dogged excuses. blithe" }, { "l_orderkey": 4032i32, "l_partkey": 2i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 27.0d, "l_extendedprice": 24354.0d, "l_discount": 0.09d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-31", "l_commitdate": "1998-04-19", "l_receiptdate": "1998-06-24", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "le furiously according to" }, { "l_orderkey": 4135i32, "l_partkey": 2i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 23.0d, "l_extendedprice": 20746.0d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-09", "l_commitdate": "1997-05-12", "l_receiptdate": "1997-04-16", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "posits cajole furiously carefully" }, { "l_orderkey": 4387i32, "l_partkey": 2i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 15.0d, "l_extendedprice": 13530.0d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-11", "l_commitdate": "1996-01-14", "l_receiptdate": "1996-01-30", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "s hinder quietly across the pla" }, { "l_orderkey": 4389i32, "l_partkey": 2i32, "l_suppkey": 3i32, "l_linenumber": 6i32, "l_quantity": 22.0d, "l_extendedprice": 19844.0d, "l_discount": 0.01d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-06-07", "l_commitdate": "1994-06-29", "l_receiptdate": "1994-06-19", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "at the final excuses hinder carefully a" }, { "l_orderkey": 4454i32, "l_partkey": 2i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 1.0d, "l_extendedprice": 902.0d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-02-05", "l_commitdate": "1994-04-19", "l_receiptdate": "1994-02-12", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "equests run." }, { "l_orderkey": 5090i32, "l_partkey": 2i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 22.0d, "l_extendedprice": 19844.0d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-03", "l_commitdate": "1997-04-12", "l_receiptdate": "1997-07-26", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "ular requests su" }, { "l_orderkey": 5312i32, "l_partkey": 2i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 43.0d, "l_extendedprice": 38786.0d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-03-24", "l_commitdate": "1995-05-07", "l_receiptdate": "1995-03-28", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "ly unusual" }, { "l_orderkey": 5348i32, "l_partkey": 2i32, "l_suppkey": 5i32, "l_linenumber": 5i32, "l_quantity": 37.0d, "l_extendedprice": 33374.0d, "l_discount": 0.06d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-01", "l_commitdate": "1998-02-02", "l_receiptdate": "1997-12-07", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "y according to the carefully pending acco" }, { "l_orderkey": 5478i32, "l_partkey": 2i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 47.0d, "l_extendedprice": 42394.0d, "l_discount": 0.1d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-15", "l_commitdate": "1996-07-12", "l_receiptdate": "1996-08-31", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": " instructions; slyly even accounts hagg" }, { "l_orderkey": 5699i32, "l_partkey": 2i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 24.0d, "l_extendedprice": 21648.0d, "l_discount": 0.01d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-10-21", "l_commitdate": "1992-09-04", "l_receiptdate": "1992-11-04", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "kages. fin" }, { "l_orderkey": 5828i32, "l_partkey": 2i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 28.0d, "l_extendedprice": 25256.0d, "l_discount": 0.1d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-05-15", "l_commitdate": "1994-05-20", "l_receiptdate": "1994-06-08", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": " special ideas haggle slyly ac" }, { "l_orderkey": 5862i32, "l_partkey": 2i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 29.0d, "l_extendedprice": 26158.0d, "l_discount": 0.03d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-02", "l_commitdate": "1997-04-16", "l_receiptdate": "1997-04-04", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "e fluffily. furiously" }, { "l_orderkey": 5893i32, "l_partkey": 2i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 2.0d, "l_extendedprice": 1804.0d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-07-18", "l_commitdate": "1992-09-10", "l_receiptdate": "1992-08-12", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "ckages wake sly" }, { "l_orderkey": 5957i32, "l_partkey": 2i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 17.0d, "l_extendedprice": 15334.0d, "l_discount": 0.01d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-01-24", "l_commitdate": "1994-02-16", "l_receiptdate": "1994-02-08", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": ". final, pending packages" } ] }
+{ "partkey": 3i32, "lines": [ { "l_orderkey": 1i32, "l_partkey": 3i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 28.0d, "l_extendedprice": 25284.0d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-04-21", "l_commitdate": "1996-03-30", "l_receiptdate": "1996-05-16", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "lites. fluffily even de" }, { "l_orderkey": 32i32, "l_partkey": 3i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 4.0d, "l_extendedprice": 3612.0d, "l_discount": 0.09d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-04", "l_commitdate": "1995-10-01", "l_receiptdate": "1995-09-03", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "e slyly final pac" }, { "l_orderkey": 39i32, "l_partkey": 3i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 44.0d, "l_extendedprice": 39732.0d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-14", "l_commitdate": "1996-12-15", "l_receiptdate": "1996-12-12", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "eodolites. careful" }, { "l_orderkey": 129i32, "l_partkey": 3i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 46.0d, "l_extendedprice": 41538.0d, "l_discount": 0.08d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-02-15", "l_commitdate": "1993-01-24", "l_receiptdate": "1993-03-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "uietly bold theodolites. fluffil" }, { "l_orderkey": 194i32, "l_partkey": 3i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 17.0d, "l_extendedprice": 15351.0d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-05-24", "l_commitdate": "1992-05-22", "l_receiptdate": "1992-05-30", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": " regular deposi" }, { "l_orderkey": 519i32, "l_partkey": 3i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 38.0d, "l_extendedprice": 34314.0d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-02-19", "l_commitdate": "1997-12-15", "l_receiptdate": "1998-03-19", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "gular excuses detect quickly furiously " }, { "l_orderkey": 801i32, "l_partkey": 3i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 21.0d, "l_extendedprice": 18963.0d, "l_discount": 0.05d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-04-25", "l_commitdate": "1992-03-20", "l_receiptdate": "1992-05-04", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "cial, special packages." }, { "l_orderkey": 993i32, "l_partkey": 3i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 28.0d, "l_extendedprice": 25284.0d, "l_discount": 0.06d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-24", "l_commitdate": "1995-11-20", "l_receiptdate": "1995-11-06", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "lites. even theodolite" }, { "l_orderkey": 999i32, "l_partkey": 3i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 10.0d, "l_extendedprice": 9030.0d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-11-23", "l_commitdate": "1993-12-02", "l_receiptdate": "1993-11-29", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "efully pending" }, { "l_orderkey": 1186i32, "l_partkey": 3i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 28.0d, "l_extendedprice": 25284.0d, "l_discount": 0.08d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-08", "l_commitdate": "1996-10-17", "l_receiptdate": "1996-12-15", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "ffily spec" }, { "l_orderkey": 1508i32, "l_partkey": 3i32, "l_suppkey": 10i32, "l_linenumber": 6i32, "l_quantity": 5.0d, "l_extendedprice": 4515.0d, "l_discount": 0.06d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-22", "l_commitdate": "1998-07-06", "l_receiptdate": "1998-06-04", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "cording to the furiously ironic depe" }, { "l_orderkey": 1542i32, "l_partkey": 3i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 12.0d, "l_extendedprice": 10836.0d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-10-29", "l_commitdate": "1993-11-02", "l_receiptdate": "1993-11-09", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "carefully " }, { "l_orderkey": 2372i32, "l_partkey": 3i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 17.0d, "l_extendedprice": 15351.0d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-17", "l_commitdate": "1998-01-17", "l_receiptdate": "1997-12-25", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "xcuses. slyly ironic theod" }, { "l_orderkey": 2401i32, "l_partkey": 3i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 49.0d, "l_extendedprice": 44247.0d, "l_discount": 0.05d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-02", "l_commitdate": "1997-09-11", "l_receiptdate": "1997-09-13", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "lites cajole carefully " }, { "l_orderkey": 2721i32, "l_partkey": 3i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 2.0d, "l_extendedprice": 1806.0d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-02-13", "l_commitdate": "1996-03-14", "l_receiptdate": "1996-02-28", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": " slyly final requests against " }, { "l_orderkey": 2946i32, "l_partkey": 3i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 35.0d, "l_extendedprice": 31605.0d, "l_discount": 0.03d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-15", "l_commitdate": "1996-04-02", "l_receiptdate": "1996-03-26", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": " sublate along the fluffily iron" }, { "l_orderkey": 2951i32, "l_partkey": 3i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 5.0d, "l_extendedprice": 4515.0d, "l_discount": 0.03d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-27", "l_commitdate": "1996-04-16", "l_receiptdate": "1996-03-30", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "to beans wake ac" }, { "l_orderkey": 3015i32, "l_partkey": 3i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 5.0d, "l_extendedprice": 4515.0d, "l_discount": 0.09d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-01-10", "l_commitdate": "1992-12-02", "l_receiptdate": "1993-01-19", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": " the furiously pendi" }, { "l_orderkey": 3110i32, "l_partkey": 3i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 34.0d, "l_extendedprice": 30702.0d, "l_discount": 0.02d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-02-23", "l_commitdate": "1995-01-27", "l_receiptdate": "1995-03-09", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "ly pending requests ha" }, { "l_orderkey": 3137i32, "l_partkey": 3i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 6.0d, "l_extendedprice": 5418.0d, "l_discount": 0.02d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-19", "l_commitdate": "1995-10-23", "l_receiptdate": "1995-10-16", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "ly express as" }, { "l_orderkey": 3331i32, "l_partkey": 3i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 26.0d, "l_extendedprice": 23478.0d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-08-05", "l_commitdate": "1993-07-17", "l_receiptdate": "1993-08-29", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "p asymptotes. carefully unusual in" }, { "l_orderkey": 3776i32, "l_partkey": 3i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 39.0d, "l_extendedprice": 35217.0d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-01-03", "l_commitdate": "1993-02-05", "l_receiptdate": "1993-01-08", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "yly blithely pending packages" }, { "l_orderkey": 3937i32, "l_partkey": 3i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 29.0d, "l_extendedprice": 26187.0d, "l_discount": 0.03d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-06", "l_commitdate": "1998-02-22", "l_receiptdate": "1998-03-14", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "nt pinto beans above the pending instr" }, { "l_orderkey": 4484i32, "l_partkey": 3i32, "l_suppkey": 4i32, "l_linenumber": 5i32, "l_quantity": 42.0d, "l_extendedprice": 37926.0d, "l_discount": 0.03d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-25", "l_commitdate": "1997-02-21", "l_receiptdate": "1997-04-05", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "ding, pending requests wake. fluffily " }, { "l_orderkey": 4740i32, "l_partkey": 3i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 22.0d, "l_extendedprice": 19866.0d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-04", "l_commitdate": "1996-08-17", "l_receiptdate": "1996-10-05", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "final dependencies nag " }, { "l_orderkey": 5252i32, "l_partkey": 3i32, "l_suppkey": 10i32, "l_linenumber": 6i32, "l_quantity": 41.0d, "l_extendedprice": 37023.0d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-16", "l_commitdate": "1996-04-18", "l_receiptdate": "1996-03-17", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "ording to the blithely express somas sho" }, { "l_orderkey": 5892i32, "l_partkey": 3i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 28.0d, "l_extendedprice": 25284.0d, "l_discount": 0.03d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-16", "l_commitdate": "1995-07-06", "l_receiptdate": "1995-08-22", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "ithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely unusual accounts will have to integithely u" } ] }
+{ "partkey": 4i32, "lines": [ { "l_orderkey": 164i32, "l_partkey": 4i32, "l_suppkey": 7i32, "l_linenumber": 7i32, "l_quantity": 23.0d, "l_extendedprice": 20792.0d, "l_discount": 0.09d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-11-03", "l_commitdate": "1992-12-02", "l_receiptdate": "1992-11-12", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "ress packages haggle ideas. blithely spec" }, { "l_orderkey": 641i32, "l_partkey": 4i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 41.0d, "l_extendedprice": 37064.0d, "l_discount": 0.07d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-11-29", "l_commitdate": "1993-10-27", "l_receiptdate": "1993-12-04", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": " asymptotes are quickly. bol" }, { "l_orderkey": 704i32, "l_partkey": 4i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 14.0d, "l_extendedprice": 12656.0d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-02", "l_commitdate": "1996-12-26", "l_receiptdate": "1997-02-19", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "ve the quickly final forges. furiously p" }, { "l_orderkey": 739i32, "l_partkey": 4i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 50.0d, "l_extendedprice": 45200.0d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-26", "l_commitdate": "1998-07-16", "l_receiptdate": "1998-09-02", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "ndencies. blith" }, { "l_orderkey": 1251i32, "l_partkey": 4i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 37.0d, "l_extendedprice": 33448.0d, "l_discount": 0.08d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-21", "l_commitdate": "1998-01-12", "l_receiptdate": "1997-12-26", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": ". furiously" }, { "l_orderkey": 1316i32, "l_partkey": 4i32, "l_suppkey": 7i32, "l_linenumber": 6i32, "l_quantity": 7.0d, "l_extendedprice": 6328.0d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-12-09", "l_commitdate": "1994-01-12", "l_receiptdate": "1993-12-30", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": ". furiously even accounts a" }, { "l_orderkey": 2019i32, "l_partkey": 4i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 31.0d, "l_extendedprice": 28024.0d, "l_discount": 0.07d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-11-18", "l_commitdate": "1992-12-26", "l_receiptdate": "1992-11-24", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "l ideas across the slowl" }, { "l_orderkey": 2144i32, "l_partkey": 4i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 29.0d, "l_extendedprice": 26216.0d, "l_discount": 0.0d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-05-03", "l_commitdate": "1994-05-16", "l_receiptdate": "1994-06-01", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "ns wake carefully carefully ironic" }, { "l_orderkey": 2279i32, "l_partkey": 4i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 3.0d, "l_extendedprice": 2712.0d, "l_discount": 0.09d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-05-31", "l_commitdate": "1993-05-07", "l_receiptdate": "1993-06-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "ing foxes above the even accounts use slyly" }, { "l_orderkey": 2404i32, "l_partkey": 4i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 18.0d, "l_extendedprice": 16272.0d, "l_discount": 0.0d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-25", "l_commitdate": "1997-05-06", "l_receiptdate": "1997-07-02", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "packages. even requests according to " }, { "l_orderkey": 2560i32, "l_partkey": 4i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 27.0d, "l_extendedprice": 24408.0d, "l_discount": 0.0d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-12-03", "l_commitdate": "1992-11-16", "l_receiptdate": "1992-12-30", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": " against the carefully" }, { "l_orderkey": 2593i32, "l_partkey": 4i32, "l_suppkey": 5i32, "l_linenumber": 5i32, "l_quantity": 3.0d, "l_extendedprice": 2712.0d, "l_discount": 0.03d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-12-16", "l_commitdate": "1993-11-01", "l_receiptdate": "1993-12-29", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "the furiously " }, { "l_orderkey": 2790i32, "l_partkey": 4i32, "l_suppkey": 1i32, "l_linenumber": 7i32, "l_quantity": 32.0d, "l_extendedprice": 28928.0d, "l_discount": 0.08d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-09-25", "l_commitdate": "1994-10-26", "l_receiptdate": "1994-10-01", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "ully pending" }, { "l_orderkey": 2882i32, "l_partkey": 4i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 14.0d, "l_extendedprice": 12656.0d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-28", "l_commitdate": "1995-11-11", "l_receiptdate": "1995-10-18", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "kly. even requests w" }, { "l_orderkey": 2885i32, "l_partkey": 4i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 6.0d, "l_extendedprice": 5424.0d, "l_discount": 0.1d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-01-05", "l_commitdate": "1992-12-12", "l_receiptdate": "1993-01-19", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "ctions solve. slyly regular requests n" }, { "l_orderkey": 2976i32, "l_partkey": 4i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 24.0d, "l_extendedprice": 21696.0d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-03-19", "l_commitdate": "1994-01-26", "l_receiptdate": "1994-04-18", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "ronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pinto beans. slyly bolronic pi" }, { "l_orderkey": 3522i32, "l_partkey": 4i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 6.0d, "l_extendedprice": 5424.0d, "l_discount": 0.08d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-01-21", "l_commitdate": "1994-12-09", "l_receiptdate": "1995-01-23", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "tes snooze " }, { "l_orderkey": 4005i32, "l_partkey": 4i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 26.0d, "l_extendedprice": 23504.0d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-01", "l_commitdate": "1997-02-03", "l_receiptdate": "1996-12-15", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": " to the quic" }, { "l_orderkey": 4099i32, "l_partkey": 4i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 29.0d, "l_extendedprice": 26216.0d, "l_discount": 0.09d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-11-21", "l_commitdate": "1992-11-04", "l_receiptdate": "1992-11-30", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": " slowly final warthogs sleep blithely. q" }, { "l_orderkey": 4196i32, "l_partkey": 4i32, "l_suppkey": 1i32, "l_linenumber": 7i32, "l_quantity": 3.0d, "l_extendedprice": 2712.0d, "l_discount": 0.0d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-05", "l_commitdate": "1998-07-28", "l_receiptdate": "1998-08-15", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "y regular packages haggle furiously alongs" }, { "l_orderkey": 4292i32, "l_partkey": 4i32, "l_suppkey": 1i32, "l_linenumber": 6i32, "l_quantity": 47.0d, "l_extendedprice": 42488.0d, "l_discount": 0.05d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-05-02", "l_commitdate": "1992-03-21", "l_receiptdate": "1992-05-27", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "y packages; even ideas boost" }, { "l_orderkey": 4736i32, "l_partkey": 4i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 43.0d, "l_extendedprice": 38872.0d, "l_discount": 0.06d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-02-05", "l_commitdate": "1995-12-21", "l_receiptdate": "1996-02-06", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "quests. carefully " }, { "l_orderkey": 5349i32, "l_partkey": 4i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 6.0d, "l_extendedprice": 5424.0d, "l_discount": 0.1d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-30", "l_commitdate": "1996-10-08", "l_receiptdate": "1997-01-01", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "inal deposits affix carefully" }, { "l_orderkey": 5411i32, "l_partkey": 4i32, "l_suppkey": 5i32, "l_linenumber": 5i32, "l_quantity": 19.0d, "l_extendedprice": 17176.0d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-25", "l_commitdate": "1997-07-30", "l_receiptdate": "1997-06-19", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "ial accounts according to the f" }, { "l_orderkey": 5668i32, "l_partkey": 4i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 15.0d, "l_extendedprice": 13560.0d, "l_discount": 0.03d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-04-06", "l_commitdate": "1995-05-12", "l_receiptdate": "1995-04-17", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": " the express, pending requests. bo" }, { "l_orderkey": 5856i32, "l_partkey": 4i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 1.0d, "l_extendedprice": 904.0d, "l_discount": 0.03d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-12-29", "l_commitdate": "1995-01-07", "l_receiptdate": "1995-01-10", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "tly. special deposits wake blithely even" } ] }
+{ "partkey": 5i32, "lines": [ { "l_orderkey": 3i32, "l_partkey": 5i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 45.0d, "l_extendedprice": 40725.0d, "l_discount": 0.06d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-02-02", "l_commitdate": "1994-01-04", "l_receiptdate": "1994-02-23", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "ongside of the furiously brave acco" }, { "l_orderkey": 228i32, "l_partkey": 5i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 3.0d, "l_extendedprice": 2715.0d, "l_discount": 0.1d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-05-20", "l_commitdate": "1993-04-08", "l_receiptdate": "1993-05-26", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "ckages. sly" }, { "l_orderkey": 320i32, "l_partkey": 5i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 30.0d, "l_extendedprice": 27150.0d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-04", "l_commitdate": "1998-01-21", "l_receiptdate": "1997-12-13", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": " ironic, final accounts wake quick de" }, { "l_orderkey": 354i32, "l_partkey": 5i32, "l_suppkey": 10i32, "l_linenumber": 7i32, "l_quantity": 14.0d, "l_extendedprice": 12670.0d, "l_discount": 0.01d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-06", "l_commitdate": "1996-06-08", "l_receiptdate": "1996-07-10", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "t thinly above the ironic, " }, { "l_orderkey": 548i32, "l_partkey": 5i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 6.0d, "l_extendedprice": 5430.0d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-01-18", "l_commitdate": "1994-12-08", "l_receiptdate": "1995-02-10", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "sits wake furiously regular" }, { "l_orderkey": 645i32, "l_partkey": 5i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 43.0d, "l_extendedprice": 38915.0d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-02-12", "l_commitdate": "1995-02-27", "l_receiptdate": "1995-03-06", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": " furiously accounts. slyly" }, { "l_orderkey": 675i32, "l_partkey": 5i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 46.0d, "l_extendedprice": 41630.0d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-18", "l_commitdate": "1997-10-14", "l_receiptdate": "1997-10-01", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": " deposits along the express foxes " }, { "l_orderkey": 966i32, "l_partkey": 5i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 20.0d, "l_extendedprice": 18100.0d, "l_discount": 0.04d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-19", "l_commitdate": "1998-07-15", "l_receiptdate": "1998-07-27", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "pecial ins" }, { "l_orderkey": 993i32, "l_partkey": 5i32, "l_suppkey": 2i32, "l_linenumber": 7i32, "l_quantity": 15.0d, "l_extendedprice": 13575.0d, "l_discount": 0.09d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-27", "l_commitdate": "1995-10-21", "l_receiptdate": "1995-10-17", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "sits. pending pinto beans haggle? ca" }, { "l_orderkey": 1058i32, "l_partkey": 5i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 25.0d, "l_extendedprice": 22625.0d, "l_discount": 0.09d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-05-27", "l_commitdate": "1993-06-10", "l_receiptdate": "1993-06-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": " the final requests believe carefully " }, { "l_orderkey": 1155i32, "l_partkey": 5i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 49.0d, "l_extendedprice": 44345.0d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-07", "l_commitdate": "1997-12-30", "l_receiptdate": "1997-12-08", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "ccounts are alongside of t" }, { "l_orderkey": 1574i32, "l_partkey": 5i32, "l_suppkey": 2i32, "l_linenumber": 6i32, "l_quantity": 42.0d, "l_extendedprice": 38010.0d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-19", "l_commitdate": "1997-01-13", "l_receiptdate": "1996-12-28", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "o beans according t" }, { "l_orderkey": 1633i32, "l_partkey": 5i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 15.0d, "l_extendedprice": 13575.0d, "l_discount": 0.0d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-13", "l_commitdate": "1995-11-13", "l_receiptdate": "1996-01-04", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "ges wake fluffil" }, { "l_orderkey": 1637i32, "l_partkey": 5i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 25.0d, "l_extendedprice": 22625.0d, "l_discount": 0.05d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-06-07", "l_commitdate": "1995-03-26", "l_receiptdate": "1995-06-08", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": " haggle carefully silent accou" }, { "l_orderkey": 1732i32, "l_partkey": 5i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 50.0d, "l_extendedprice": 45250.0d, "l_discount": 0.02d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-12-05", "l_commitdate": "1994-01-23", "l_receiptdate": "1993-12-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "fily final asymptotes according " }, { "l_orderkey": 1829i32, "l_partkey": 5i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 11.0d, "l_extendedprice": 9955.0d, "l_discount": 0.04d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-05-18", "l_commitdate": "1994-06-13", "l_receiptdate": "1994-06-07", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "ding orbits" }, { "l_orderkey": 2178i32, "l_partkey": 5i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 40.0d, "l_extendedprice": 36200.0d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-17", "l_commitdate": "1997-02-09", "l_receiptdate": "1997-04-15", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "foxes are slowly regularly specia" }, { "l_orderkey": 2241i32, "l_partkey": 5i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 25.0d, "l_extendedprice": 22625.0d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-08-11", "l_commitdate": "1993-07-23", "l_receiptdate": "1993-09-01", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": " final deposits use fluffily. even f" }, { "l_orderkey": 2375i32, "l_partkey": 5i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 5.0d, "l_extendedprice": 4525.0d, "l_discount": 0.01d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-31", "l_commitdate": "1997-01-25", "l_receiptdate": "1997-02-22", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "final packages cajole according to the furi" }, { "l_orderkey": 2725i32, "l_partkey": 5i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 41.0d, "l_extendedprice": 37105.0d, "l_discount": 0.01d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-07-05", "l_commitdate": "1994-06-29", "l_receiptdate": "1994-08-02", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "ns sleep furiously c" }, { "l_orderkey": 2819i32, "l_partkey": 5i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 28.0d, "l_extendedprice": 25340.0d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-05-09", "l_commitdate": "1994-07-02", "l_receiptdate": "1994-05-15", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "ckages sublate carefully closely regular " }, { "l_orderkey": 3076i32, "l_partkey": 5i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 31.0d, "l_extendedprice": 28055.0d, "l_discount": 0.06d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-08-10", "l_commitdate": "1993-09-17", "l_receiptdate": "1993-08-17", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "regular depos" }, { "l_orderkey": 3328i32, "l_partkey": 5i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 23.0d, "l_extendedprice": 20815.0d, "l_discount": 0.01d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-01-12", "l_commitdate": "1993-02-07", "l_receiptdate": "1993-01-30", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "y. careful" }, { "l_orderkey": 3555i32, "l_partkey": 5i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 19.0d, "l_extendedprice": 17195.0d, "l_discount": 0.0d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-08", "l_commitdate": "1996-09-14", "l_receiptdate": "1996-10-01", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "leep special theodolit" }, { "l_orderkey": 3649i32, "l_partkey": 5i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 25.0d, "l_extendedprice": 22625.0d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-10-27", "l_commitdate": "1994-08-23", "l_receiptdate": "1994-11-05", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "special re" }, { "l_orderkey": 3680i32, "l_partkey": 5i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 41.0d, "l_extendedprice": 37105.0d, "l_discount": 0.0d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-01-06", "l_commitdate": "1993-03-02", "l_receiptdate": "1993-01-08", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "iously ironic platelets in" }, { "l_orderkey": 3877i32, "l_partkey": 5i32, "l_suppkey": 6i32, "l_linenumber": 5i32, "l_quantity": 41.0d, "l_extendedprice": 37105.0d, "l_discount": 0.03d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-06-30", "l_commitdate": "1993-07-20", "l_receiptdate": "1993-07-01", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "integrate against the expres" }, { "l_orderkey": 3970i32, "l_partkey": 5i32, "l_suppkey": 8i32, "l_linenumber": 7i32, "l_quantity": 46.0d, "l_extendedprice": 41630.0d, "l_discount": 0.08d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-05-02", "l_commitdate": "1992-05-12", "l_receiptdate": "1992-05-10", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "ix slyly. quickly silen" }, { "l_orderkey": 4229i32, "l_partkey": 5i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 34.0d, "l_extendedprice": 30770.0d, "l_discount": 0.07d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-26", "l_commitdate": "1998-04-13", "l_receiptdate": "1998-06-08", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "thely final accounts use even packa" }, { "l_orderkey": 5283i32, "l_partkey": 5i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 20.0d, "l_extendedprice": 18100.0d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-09-16", "l_commitdate": "1994-08-03", "l_receiptdate": "1994-10-15", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "al deposits? blithely even pinto beans" }, { "l_orderkey": 5665i32, "l_partkey": 5i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 14.0d, "l_extendedprice": 12670.0d, "l_discount": 0.02d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-06-29", "l_commitdate": "1993-09-16", "l_receiptdate": "1993-07-16", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "- special pinto beans sleep quickly blithel" }, { "l_orderkey": 5959i32, "l_partkey": 5i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 4.0d, "l_extendedprice": 3620.0d, "l_discount": 0.04d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-06-14", "l_commitdate": "1992-07-05", "l_receiptdate": "1992-07-01", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "gular requests ar" } ] }
+{ "partkey": 6i32, "lines": [ { "l_orderkey": 260i32, "l_partkey": 6i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 29.0d, "l_extendedprice": 26274.0d, "l_discount": 0.1d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-15", "l_commitdate": "1997-01-14", "l_receiptdate": "1997-04-13", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "fluffily even asymptotes. express wa" }, { "l_orderkey": 290i32, "l_partkey": 6i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 35.0d, "l_extendedprice": 31710.0d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-04-01", "l_commitdate": "1994-02-05", "l_receiptdate": "1994-04-27", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "ove the final foxes detect slyly fluffily" }, { "l_orderkey": 768i32, "l_partkey": 6i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 30.0d, "l_extendedprice": 27180.0d, "l_discount": 0.06d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-22", "l_commitdate": "1996-11-03", "l_receiptdate": "1996-10-13", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": " furiously fluffy pinto beans haggle along" }, { "l_orderkey": 801i32, "l_partkey": 6i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 13.0d, "l_extendedprice": 11778.0d, "l_discount": 0.1d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-04-25", "l_commitdate": "1992-04-24", "l_receiptdate": "1992-05-16", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "s are fluffily stealthily expres" }, { "l_orderkey": 1124i32, "l_partkey": 6i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 13.0d, "l_extendedprice": 11778.0d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-09-05", "l_commitdate": "1998-10-03", "l_receiptdate": "1998-09-30", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "t the slyly " }, { "l_orderkey": 1220i32, "l_partkey": 6i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 36.0d, "l_extendedprice": 32616.0d, "l_discount": 0.07d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-12", "l_commitdate": "1996-10-03", "l_receiptdate": "1996-12-15", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "unusual, silent pinto beans aga" }, { "l_orderkey": 1284i32, "l_partkey": 6i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 4.0d, "l_extendedprice": 3624.0d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-02-29", "l_commitdate": "1996-02-11", "l_receiptdate": "1996-03-01", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": " regular asymptotes. " }, { "l_orderkey": 1542i32, "l_partkey": 6i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 18.0d, "l_extendedprice": 16308.0d, "l_discount": 0.05d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-10-17", "l_commitdate": "1993-11-15", "l_receiptdate": "1993-10-26", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "pending instr" }, { "l_orderkey": 1638i32, "l_partkey": 6i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 46.0d, "l_extendedprice": 41676.0d, "l_discount": 0.03d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-10-16", "l_commitdate": "1997-10-28", "l_receiptdate": "1997-11-09", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "otes haggle before the slyly bold instructi" }, { "l_orderkey": 1827i32, "l_partkey": 6i32, "l_suppkey": 7i32, "l_linenumber": 7i32, "l_quantity": 38.0d, "l_extendedprice": 34428.0d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-17", "l_commitdate": "1996-08-29", "l_receiptdate": "1996-11-07", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": " blithely. express, bo" }, { "l_orderkey": 2049i32, "l_partkey": 6i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 39.0d, "l_extendedprice": 35334.0d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-17", "l_commitdate": "1996-01-21", "l_receiptdate": "1996-02-03", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "the even pinto beans " }, { "l_orderkey": 2054i32, "l_partkey": 6i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 40.0d, "l_extendedprice": 36240.0d, "l_discount": 0.08d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-06-23", "l_commitdate": "1992-08-09", "l_receiptdate": "1992-07-04", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "n pinto beans. ironic courts are iro" }, { "l_orderkey": 2179i32, "l_partkey": 6i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 24.0d, "l_extendedprice": 21744.0d, "l_discount": 0.04d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-26", "l_commitdate": "1996-11-05", "l_receiptdate": "1996-11-16", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": " cajole carefully. " }, { "l_orderkey": 2276i32, "l_partkey": 6i32, "l_suppkey": 9i32, "l_linenumber": 6i32, "l_quantity": 4.0d, "l_extendedprice": 3624.0d, "l_discount": 0.1d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-05", "l_commitdate": "1996-06-30", "l_receiptdate": "1996-08-04", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "s. deposits " }, { "l_orderkey": 2370i32, "l_partkey": 6i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 21.0d, "l_extendedprice": 19026.0d, "l_discount": 0.04d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-02-01", "l_commitdate": "1994-02-19", "l_receiptdate": "1994-02-09", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "ecial dependencies must have to " }, { "l_orderkey": 2689i32, "l_partkey": 6i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 45.0d, "l_extendedprice": 40770.0d, "l_discount": 0.02d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-04-29", "l_commitdate": "1992-06-22", "l_receiptdate": "1992-04-30", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "e quickly. carefully silent" }, { "l_orderkey": 3043i32, "l_partkey": 6i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 15.0d, "l_extendedprice": 13590.0d, "l_discount": 0.03d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-05-27", "l_commitdate": "1992-06-03", "l_receiptdate": "1992-06-09", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "usly furiously" }, { "l_orderkey": 3137i32, "l_partkey": 6i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 4.0d, "l_extendedprice": 3624.0d, "l_discount": 0.06d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-01", "l_commitdate": "1995-09-11", "l_receiptdate": "1995-10-30", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "posits wake. silent excuses boost about" }, { "l_orderkey": 3329i32, "l_partkey": 6i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 9.0d, "l_extendedprice": 8154.0d, "l_discount": 0.0d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-24", "l_commitdate": "1995-08-02", "l_receiptdate": "1995-08-01", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "lly final depo" }, { "l_orderkey": 3426i32, "l_partkey": 6i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 9.0d, "l_extendedprice": 8154.0d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-24", "l_commitdate": "1997-01-14", "l_receiptdate": "1997-01-13", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "pecial theodolites haggle fluf" }, { "l_orderkey": 4005i32, "l_partkey": 6i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 14.0d, "l_extendedprice": 12684.0d, "l_discount": 0.09d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-27", "l_commitdate": "1997-01-09", "l_receiptdate": "1996-12-25", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "ld requests. slyly final instructi" }, { "l_orderkey": 4036i32, "l_partkey": 6i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 46.0d, "l_extendedprice": 41676.0d, "l_discount": 0.09d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-21", "l_commitdate": "1997-05-29", "l_receiptdate": "1997-07-18", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "usly across the even th" }, { "l_orderkey": 4195i32, "l_partkey": 6i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 14.0d, "l_extendedprice": 12684.0d, "l_discount": 0.09d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-09-06", "l_commitdate": "1993-07-21", "l_receiptdate": "1993-09-18", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "ironic packages. carefully express" }, { "l_orderkey": 4387i32, "l_partkey": 6i32, "l_suppkey": 3i32, "l_linenumber": 6i32, "l_quantity": 40.0d, "l_extendedprice": 36240.0d, "l_discount": 0.02d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-29", "l_commitdate": "1995-12-10", "l_receiptdate": "1995-12-20", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "deas according to the blithely regular fox" }, { "l_orderkey": 4483i32, "l_partkey": 6i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 32.0d, "l_extendedprice": 28992.0d, "l_discount": 0.07d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-04-05", "l_commitdate": "1992-05-25", "l_receiptdate": "1992-04-08", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "ests haggle. slyl" }, { "l_orderkey": 4485i32, "l_partkey": 6i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 47.0d, "l_extendedprice": 42582.0d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-03-11", "l_commitdate": "1995-01-11", "l_receiptdate": "1995-03-21", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "luffily pending acc" }, { "l_orderkey": 4612i32, "l_partkey": 6i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 20.0d, "l_extendedprice": 18120.0d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-09-24", "l_commitdate": "1993-12-18", "l_receiptdate": "1993-10-22", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "beans sleep blithely iro" }, { "l_orderkey": 4676i32, "l_partkey": 6i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 33.0d, "l_extendedprice": 29898.0d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-29", "l_commitdate": "1995-10-01", "l_receiptdate": "1996-01-18", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "yly express " }, { "l_orderkey": 4870i32, "l_partkey": 6i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 4.0d, "l_extendedprice": 3624.0d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-10-23", "l_commitdate": "1994-09-16", "l_receiptdate": "1994-11-04", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "its wake quickly. slyly quick" }, { "l_orderkey": 5124i32, "l_partkey": 6i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 41.0d, "l_extendedprice": 37146.0d, "l_discount": 0.02d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-05", "l_commitdate": "1997-06-29", "l_receiptdate": "1997-07-23", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "wake across the" }, { "l_orderkey": 5125i32, "l_partkey": 6i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 38.0d, "l_extendedprice": 34428.0d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-20", "l_commitdate": "1998-04-14", "l_receiptdate": "1998-03-22", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "ily even deposits w" }, { "l_orderkey": 5223i32, "l_partkey": 6i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 19.0d, "l_extendedprice": 17214.0d, "l_discount": 0.04d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-10-28", "l_commitdate": "1994-08-26", "l_receiptdate": "1994-10-31", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "ntly. furiously even excuses a" }, { "l_orderkey": 5760i32, "l_partkey": 6i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 24.0d, "l_extendedprice": 21744.0d, "l_discount": 0.04d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-07-15", "l_commitdate": "1994-07-04", "l_receiptdate": "1994-08-08", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "s. bravely ironic accounts among" }, { "l_orderkey": 5957i32, "l_partkey": 6i32, "l_suppkey": 1i32, "l_linenumber": 6i32, "l_quantity": 41.0d, "l_extendedprice": 37146.0d, "l_discount": 0.1d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-03-25", "l_commitdate": "1994-02-20", "l_receiptdate": "1994-03-31", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "es across the regular requests maint" } ] }
+{ "partkey": 7i32, "lines": [ { "l_orderkey": 579i32, "l_partkey": 7i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 41.0d, "l_extendedprice": 37187.0d, "l_discount": 0.04d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-28", "l_commitdate": "1998-05-01", "l_receiptdate": "1998-06-04", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "bold, express requests sublate slyly. blith" }, { "l_orderkey": 771i32, "l_partkey": 7i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 12.0d, "l_extendedprice": 10884.0d, "l_discount": 0.1d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-18", "l_commitdate": "1995-08-02", "l_receiptdate": "1995-08-07", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "carefully. pending in" }, { "l_orderkey": 771i32, "l_partkey": 7i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 14.0d, "l_extendedprice": 12698.0d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-31", "l_commitdate": "1995-08-13", "l_receiptdate": "1995-08-07", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "r, final packages are slyly iro" }, { "l_orderkey": 834i32, "l_partkey": 7i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 11.0d, "l_extendedprice": 9977.0d, "l_discount": 0.03d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-09-18", "l_commitdate": "1994-08-03", "l_receiptdate": "1994-10-02", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "inst the regular packa" }, { "l_orderkey": 1281i32, "l_partkey": 7i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 37.0d, "l_extendedprice": 33559.0d, "l_discount": 0.08d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-03-19", "l_commitdate": "1995-02-02", "l_receiptdate": "1995-03-27", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "ounts detect" }, { "l_orderkey": 2080i32, "l_partkey": 7i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 5.0d, "l_extendedprice": 4535.0d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-08-26", "l_commitdate": "1993-08-07", "l_receiptdate": "1993-09-02", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "refully unusual theo" }, { "l_orderkey": 2150i32, "l_partkey": 7i32, "l_suppkey": 10i32, "l_linenumber": 6i32, "l_quantity": 12.0d, "l_extendedprice": 10884.0d, "l_discount": 0.09d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-08-27", "l_commitdate": "1994-08-22", "l_receiptdate": "1994-09-18", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "press platelets haggle until the slyly fi" }, { "l_orderkey": 2182i32, "l_partkey": 7i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 12.0d, "l_extendedprice": 10884.0d, "l_discount": 0.04d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-05-08", "l_commitdate": "1994-06-02", "l_receiptdate": "1994-05-09", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "ments are fu" }, { "l_orderkey": 2208i32, "l_partkey": 7i32, "l_suppkey": 2i32, "l_linenumber": 7i32, "l_quantity": 45.0d, "l_extendedprice": 40815.0d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-05-05", "l_commitdate": "1995-06-10", "l_receiptdate": "1995-05-11", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "e fluffily regular theodolites caj" }, { "l_orderkey": 2598i32, "l_partkey": 7i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 12.0d, "l_extendedprice": 10884.0d, "l_discount": 0.0d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-17", "l_commitdate": "1996-04-12", "l_receiptdate": "1996-06-24", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "express packages nag sly" }, { "l_orderkey": 2658i32, "l_partkey": 7i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 45.0d, "l_extendedprice": 40815.0d, "l_discount": 0.03d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-02", "l_commitdate": "1995-11-08", "l_receiptdate": "1995-11-29", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "e special requests. quickly ex" }, { "l_orderkey": 2659i32, "l_partkey": 7i32, "l_suppkey": 4i32, "l_linenumber": 5i32, "l_quantity": 9.0d, "l_extendedprice": 8163.0d, "l_discount": 0.08d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-02-07", "l_commitdate": "1994-03-17", "l_receiptdate": "1994-03-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "ly final packages sleep ac" }, { "l_orderkey": 2752i32, "l_partkey": 7i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 29.0d, "l_extendedprice": 26303.0d, "l_discount": 0.02d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-01-22", "l_commitdate": "1994-01-08", "l_receiptdate": "1994-01-28", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "gly blithely re" }, { "l_orderkey": 3140i32, "l_partkey": 7i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 21.0d, "l_extendedprice": 19047.0d, "l_discount": 0.08d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-04-12", "l_commitdate": "1992-05-31", "l_receiptdate": "1992-04-21", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": " furiously sly excuses according to the" }, { "l_orderkey": 3204i32, "l_partkey": 7i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 39.0d, "l_extendedprice": 35373.0d, "l_discount": 0.1d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-02-11", "l_commitdate": "1993-03-19", "l_receiptdate": "1993-02-28", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "sits sleep theodolites. slyly bo" }, { "l_orderkey": 4166i32, "l_partkey": 7i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 17.0d, "l_extendedprice": 15419.0d, "l_discount": 0.02d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-06-29", "l_commitdate": "1993-05-15", "l_receiptdate": "1993-07-24", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "ackages. re" }, { "l_orderkey": 4614i32, "l_partkey": 7i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 19.0d, "l_extendedprice": 17233.0d, "l_discount": 0.09d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-17", "l_commitdate": "1996-06-21", "l_receiptdate": "1996-06-08", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "ix. carefully regular " }, { "l_orderkey": 5318i32, "l_partkey": 7i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 37.0d, "l_extendedprice": 33559.0d, "l_discount": 0.07d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-07-09", "l_commitdate": "1993-06-22", "l_receiptdate": "1993-07-21", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "ickly final deposi" }, { "l_orderkey": 5351i32, "l_partkey": 7i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 36.0d, "l_extendedprice": 32652.0d, "l_discount": 0.06d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-27", "l_commitdate": "1998-07-06", "l_receiptdate": "1998-08-25", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "ss the ironic, regular asymptotes cajole " }, { "l_orderkey": 5606i32, "l_partkey": 7i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 25.0d, "l_extendedprice": 22675.0d, "l_discount": 0.06d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-25", "l_commitdate": "1997-01-12", "l_receiptdate": "1997-01-11", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "breach about the furiously bold " }, { "l_orderkey": 5670i32, "l_partkey": 7i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 24.0d, "l_extendedprice": 21768.0d, "l_discount": 0.09d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-07-17", "l_commitdate": "1993-07-01", "l_receiptdate": "1993-08-03", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "press, express requests haggle" }, { "l_orderkey": 5794i32, "l_partkey": 7i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 15.0d, "l_extendedprice": 13605.0d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-06-25", "l_commitdate": "1993-06-27", "l_receiptdate": "1993-07-09", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "blithely regular ideas. final foxes haggle " } ] }
+{ "partkey": 8i32, "lines": [ { "l_orderkey": 68i32, "l_partkey": 8i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 3.0d, "l_extendedprice": 2724.0d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-04", "l_commitdate": "1998-06-05", "l_receiptdate": "1998-07-21", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "fully special instructions cajole. furious" }, { "l_orderkey": 225i32, "l_partkey": 8i32, "l_suppkey": 5i32, "l_linenumber": 5i32, "l_quantity": 31.0d, "l_extendedprice": 28148.0d, "l_discount": 0.04d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-06-21", "l_commitdate": "1995-07-24", "l_receiptdate": "1995-07-04", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "special platelets. quickly r" }, { "l_orderkey": 230i32, "l_partkey": 8i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 1.0d, "l_extendedprice": 908.0d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-01-22", "l_commitdate": "1994-01-03", "l_receiptdate": "1994-02-05", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "blithely unusual dolphins. bold, ex" }, { "l_orderkey": 1060i32, "l_partkey": 8i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 26.0d, "l_extendedprice": 23608.0d, "l_discount": 0.06d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-04-12", "l_commitdate": "1993-04-01", "l_receiptdate": "1993-04-20", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "counts; even deposits are carefull" }, { "l_orderkey": 1222i32, "l_partkey": 8i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 26.0d, "l_extendedprice": 23608.0d, "l_discount": 0.02d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-02-13", "l_commitdate": "1993-03-20", "l_receiptdate": "1993-02-22", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": ", even accounts are ironic" }, { "l_orderkey": 1283i32, "l_partkey": 8i32, "l_suppkey": 5i32, "l_linenumber": 6i32, "l_quantity": 30.0d, "l_extendedprice": 27240.0d, "l_discount": 0.06d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-22", "l_commitdate": "1996-11-22", "l_receiptdate": "1996-12-15", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "t the fluffily" }, { "l_orderkey": 1472i32, "l_partkey": 8i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 36.0d, "l_extendedprice": 32688.0d, "l_discount": 0.04d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-06", "l_commitdate": "1996-11-13", "l_receiptdate": "1996-11-12", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "riously silent deposits to the pending d" }, { "l_orderkey": 1540i32, "l_partkey": 8i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 25.0d, "l_extendedprice": 22700.0d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-11-15", "l_commitdate": "1992-10-24", "l_receiptdate": "1992-12-14", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "ironic deposits amo" }, { "l_orderkey": 1760i32, "l_partkey": 8i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 3.0d, "l_extendedprice": 2724.0d, "l_discount": 0.0d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-18", "l_commitdate": "1996-07-01", "l_receiptdate": "1996-08-01", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "lyly bold dolphins haggle carefully. sl" }, { "l_orderkey": 1762i32, "l_partkey": 8i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 49.0d, "l_extendedprice": 44492.0d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-10-20", "l_commitdate": "1994-11-02", "l_receiptdate": "1994-11-10", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": " packages sleep fluffily pen" }, { "l_orderkey": 1828i32, "l_partkey": 8i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 45.0d, "l_extendedprice": 40860.0d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-05-15", "l_commitdate": "1994-05-29", "l_receiptdate": "1994-05-28", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": " accounts run slyly " }, { "l_orderkey": 2048i32, "l_partkey": 8i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 5.0d, "l_extendedprice": 4540.0d, "l_discount": 0.04d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-01-18", "l_commitdate": "1994-02-01", "l_receiptdate": "1994-01-29", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "affix carefully against " }, { "l_orderkey": 2277i32, "l_partkey": 8i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 2.0d, "l_extendedprice": 1816.0d, "l_discount": 0.1d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-02-01", "l_commitdate": "1995-02-04", "l_receiptdate": "1995-03-02", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "endencies sleep idly pending p" }, { "l_orderkey": 3777i32, "l_partkey": 8i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 10.0d, "l_extendedprice": 9080.0d, "l_discount": 0.03d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-05-22", "l_commitdate": "1994-05-29", "l_receiptdate": "1994-06-13", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "le. ironic depths a" }, { "l_orderkey": 4291i32, "l_partkey": 8i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 25.0d, "l_extendedprice": 22700.0d, "l_discount": 0.09d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-02-14", "l_commitdate": "1994-02-08", "l_receiptdate": "1994-03-15", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "uctions. furiously regular ins" }, { "l_orderkey": 4322i32, "l_partkey": 8i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 12.0d, "l_extendedprice": 10896.0d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-29", "l_commitdate": "1998-06-05", "l_receiptdate": "1998-04-16", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "e blithely against the slyly unusu" }, { "l_orderkey": 4420i32, "l_partkey": 8i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 7.0d, "l_extendedprice": 6356.0d, "l_discount": 0.07d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-08-30", "l_commitdate": "1994-09-03", "l_receiptdate": "1994-09-25", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": " regular instructions sleep around" }, { "l_orderkey": 4613i32, "l_partkey": 8i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 36.0d, "l_extendedprice": 32688.0d, "l_discount": 0.04d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-22", "l_commitdate": "1998-05-05", "l_receiptdate": "1998-05-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "gainst the furiously ironic" }, { "l_orderkey": 4614i32, "l_partkey": 8i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 36.0d, "l_extendedprice": 32688.0d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-05", "l_commitdate": "1996-06-26", "l_receiptdate": "1996-07-07", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "onic foxes affix furi" }, { "l_orderkey": 5057i32, "l_partkey": 8i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 45.0d, "l_extendedprice": 40860.0d, "l_discount": 0.08d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-20", "l_commitdate": "1997-10-02", "l_receiptdate": "1997-10-20", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": " asymptotes wake slyl" }, { "l_orderkey": 5478i32, "l_partkey": 8i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 39.0d, "l_extendedprice": 35412.0d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-19", "l_commitdate": "1996-06-25", "l_receiptdate": "1996-09-08", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "s. furiously " }, { "l_orderkey": 5600i32, "l_partkey": 8i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 19.0d, "l_extendedprice": 17252.0d, "l_discount": 0.0d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-10", "l_commitdate": "1997-03-24", "l_receiptdate": "1997-04-16", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "dencies. carefully p" }, { "l_orderkey": 5635i32, "l_partkey": 8i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 40.0d, "l_extendedprice": 36320.0d, "l_discount": 0.03d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-09-25", "l_commitdate": "1992-11-05", "l_receiptdate": "1992-10-11", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "pending foxes. regular packages" }, { "l_orderkey": 5894i32, "l_partkey": 8i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 23.0d, "l_extendedprice": 20884.0d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-09-05", "l_commitdate": "1994-10-27", "l_receiptdate": "1994-09-13", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": " furiously even deposits haggle alw" } ] }
+{ "partkey": 9i32, "lines": [ { "l_orderkey": 293i32, "l_partkey": 9i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 14.0d, "l_extendedprice": 12726.0d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-10-19", "l_commitdate": "1992-12-23", "l_receiptdate": "1992-11-10", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "es. packages above the" }, { "l_orderkey": 419i32, "l_partkey": 9i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 15.0d, "l_extendedprice": 13635.0d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-09", "l_commitdate": "1996-12-22", "l_receiptdate": "1997-01-25", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "of the careful, thin theodolites. quickly s" }, { "l_orderkey": 903i32, "l_partkey": 9i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 35.0d, "l_extendedprice": 31815.0d, "l_discount": 0.06d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-18", "l_commitdate": "1995-08-21", "l_receiptdate": "1995-10-12", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "rets wake fin" }, { "l_orderkey": 903i32, "l_partkey": 9i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 33.0d, "l_extendedprice": 29997.0d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-24", "l_commitdate": "1995-09-01", "l_receiptdate": "1995-10-12", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "ely ironic packages wake blithely" }, { "l_orderkey": 1152i32, "l_partkey": 9i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 23.0d, "l_extendedprice": 20907.0d, "l_discount": 0.06d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-10-14", "l_commitdate": "1994-10-22", "l_receiptdate": "1994-10-21", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "equests alongside of the unusual " }, { "l_orderkey": 1568i32, "l_partkey": 9i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 46.0d, "l_extendedprice": 41814.0d, "l_discount": 0.04d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-06", "l_commitdate": "1997-04-08", "l_receiptdate": "1997-04-23", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "g the blithely even acco" }, { "l_orderkey": 1792i32, "l_partkey": 9i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 5.0d, "l_extendedprice": 4545.0d, "l_discount": 0.04d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-02-13", "l_commitdate": "1994-01-03", "l_receiptdate": "1994-02-28", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "ely regular accounts are slyly. pending, bo" }, { "l_orderkey": 1792i32, "l_partkey": 9i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 8.0d, "l_extendedprice": 7272.0d, "l_discount": 0.01d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-02-21", "l_commitdate": "1994-01-26", "l_receiptdate": "1994-02-27", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "nts. fluffily special instructions integr" }, { "l_orderkey": 1955i32, "l_partkey": 9i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 16.0d, "l_extendedprice": 14544.0d, "l_discount": 0.03d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-04-30", "l_commitdate": "1992-06-23", "l_receiptdate": "1992-05-23", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "odolites eat s" }, { "l_orderkey": 2055i32, "l_partkey": 9i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 15.0d, "l_extendedprice": 13635.0d, "l_discount": 0.06d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-10-30", "l_commitdate": "1993-11-21", "l_receiptdate": "1993-11-22", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "gular foxes. b" }, { "l_orderkey": 2693i32, "l_partkey": 9i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 26.0d, "l_extendedprice": 23634.0d, "l_discount": 0.04d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-14", "l_commitdate": "1996-10-07", "l_receiptdate": "1996-10-03", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "cajole alo" }, { "l_orderkey": 2976i32, "l_partkey": 9i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 32.0d, "l_extendedprice": 29088.0d, "l_discount": 0.06d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-01-26", "l_commitdate": "1994-02-13", "l_receiptdate": "1994-02-10", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "nding, ironic deposits sleep f" }, { "l_orderkey": 2979i32, "l_partkey": 9i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 8.0d, "l_extendedprice": 7272.0d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-18", "l_commitdate": "1996-05-21", "l_receiptdate": "1996-07-06", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "st blithely; blithely regular gifts dazz" }, { "l_orderkey": 3075i32, "l_partkey": 9i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 39.0d, "l_extendedprice": 35451.0d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-06-10", "l_commitdate": "1994-06-21", "l_receiptdate": "1994-06-20", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "ing deposits nag " }, { "l_orderkey": 3233i32, "l_partkey": 9i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 25.0d, "l_extendedprice": 22725.0d, "l_discount": 0.04d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-11-24", "l_commitdate": "1995-01-07", "l_receiptdate": "1994-12-11", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "oss the pl" }, { "l_orderkey": 3970i32, "l_partkey": 9i32, "l_suppkey": 6i32, "l_linenumber": 6i32, "l_quantity": 46.0d, "l_extendedprice": 41814.0d, "l_discount": 0.07d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-04-29", "l_commitdate": "1992-05-14", "l_receiptdate": "1992-05-24", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "yly ironic" }, { "l_orderkey": 4096i32, "l_partkey": 9i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 21.0d, "l_extendedprice": 19089.0d, "l_discount": 0.08d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-08-24", "l_commitdate": "1992-09-04", "l_receiptdate": "1992-09-11", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "tes mold flu" }, { "l_orderkey": 4196i32, "l_partkey": 9i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 31.0d, "l_extendedprice": 28179.0d, "l_discount": 0.09d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-12", "l_commitdate": "1998-07-28", "l_receiptdate": "1998-07-11", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "ut the blithely ironic inst" }, { "l_orderkey": 4199i32, "l_partkey": 9i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 18.0d, "l_extendedprice": 16362.0d, "l_discount": 0.0d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-06-01", "l_commitdate": "1992-03-30", "l_receiptdate": "1992-06-28", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "pending, regular accounts. carefully" }, { "l_orderkey": 4416i32, "l_partkey": 9i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 45.0d, "l_extendedprice": 40905.0d, "l_discount": 0.09d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-10-16", "l_commitdate": "1992-09-09", "l_receiptdate": "1992-10-28", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "the final pinto beans. special frets " }, { "l_orderkey": 4483i32, "l_partkey": 9i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 50.0d, "l_extendedprice": 45450.0d, "l_discount": 0.0d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-06-10", "l_commitdate": "1992-04-18", "l_receiptdate": "1992-06-17", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "ackages. furiously ironi" }, { "l_orderkey": 4545i32, "l_partkey": 9i32, "l_suppkey": 2i32, "l_linenumber": 7i32, "l_quantity": 36.0d, "l_extendedprice": 32724.0d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-01-28", "l_commitdate": "1993-03-30", "l_receiptdate": "1993-02-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "sublate slyly. furiously ironic accounts b" }, { "l_orderkey": 4771i32, "l_partkey": 9i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 21.0d, "l_extendedprice": 19089.0d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-12-20", "l_commitdate": "1993-01-22", "l_receiptdate": "1992-12-26", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": " carefully re" }, { "l_orderkey": 4805i32, "l_partkey": 9i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 42.0d, "l_extendedprice": 38178.0d, "l_discount": 0.03d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-08-17", "l_commitdate": "1992-07-03", "l_receiptdate": "1992-09-14", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "the regular, fina" }, { "l_orderkey": 5221i32, "l_partkey": 9i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 34.0d, "l_extendedprice": 30906.0d, "l_discount": 0.01d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-11", "l_commitdate": "1995-07-17", "l_receiptdate": "1995-10-10", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "eans. furio" }, { "l_orderkey": 5414i32, "l_partkey": 9i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 19.0d, "l_extendedprice": 17271.0d, "l_discount": 0.01d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-04-06", "l_commitdate": "1993-05-12", "l_receiptdate": "1993-05-02", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "ffily silent theodolites na" }, { "l_orderkey": 5511i32, "l_partkey": 9i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 23.0d, "l_extendedprice": 20907.0d, "l_discount": 0.1d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-03-11", "l_commitdate": "1995-01-21", "l_receiptdate": "1995-03-27", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "ing dugouts " }, { "l_orderkey": 5536i32, "l_partkey": 9i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 30.0d, "l_extendedprice": 27270.0d, "l_discount": 0.05d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-15", "l_commitdate": "1998-05-23", "l_receiptdate": "1998-05-03", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "arefully regular theodolites according" }, { "l_orderkey": 5859i32, "l_partkey": 9i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 17.0d, "l_extendedprice": 15453.0d, "l_discount": 0.03d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-15", "l_commitdate": "1997-06-30", "l_receiptdate": "1997-05-26", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "ly ironic requests. quickly unusual pin" } ] }
+{ "partkey": 10i32, "lines": [ { "l_orderkey": 196i32, "l_partkey": 10i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 15.0d, "l_extendedprice": 13650.15d, "l_discount": 0.03d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-07-05", "l_commitdate": "1993-05-08", "l_receiptdate": "1993-07-06", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "s accounts. furio" }, { "l_orderkey": 230i32, "l_partkey": 10i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 44.0d, "l_extendedprice": 40040.44d, "l_discount": 0.08d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-02-09", "l_commitdate": "1994-01-18", "l_receiptdate": "1994-03-11", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "deposits integrate slyly sile" }, { "l_orderkey": 449i32, "l_partkey": 10i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 3.0d, "l_extendedprice": 2730.03d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-28", "l_commitdate": "1995-09-11", "l_receiptdate": "1995-08-01", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": " bold deposits. express theodolites haggle" }, { "l_orderkey": 519i32, "l_partkey": 10i32, "l_suppkey": 5i32, "l_linenumber": 5i32, "l_quantity": 13.0d, "l_extendedprice": 11830.13d, "l_discount": 0.06d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-02-06", "l_commitdate": "1997-12-02", "l_receiptdate": "1998-03-03", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "c accounts wake along the ironic so" }, { "l_orderkey": 994i32, "l_partkey": 10i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 11.0d, "l_extendedprice": 10010.11d, "l_discount": 0.01d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-05-03", "l_commitdate": "1994-06-10", "l_receiptdate": "1994-05-22", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "ular accounts sleep " }, { "l_orderkey": 998i32, "l_partkey": 10i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 22.0d, "l_extendedprice": 20020.22d, "l_discount": 0.04d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-12-03", "l_commitdate": "1995-02-17", "l_receiptdate": "1994-12-19", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "lites. qui" }, { "l_orderkey": 1382i32, "l_partkey": 10i32, "l_suppkey": 5i32, "l_linenumber": 6i32, "l_quantity": 38.0d, "l_extendedprice": 34580.38d, "l_discount": 0.07d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-11-17", "l_commitdate": "1993-09-28", "l_receiptdate": "1993-11-20", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "ake pending pinto beans. s" }, { "l_orderkey": 1668i32, "l_partkey": 10i32, "l_suppkey": 3i32, "l_linenumber": 6i32, "l_quantity": 38.0d, "l_extendedprice": 34580.38d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-26", "l_commitdate": "1997-09-17", "l_receiptdate": "1997-09-05", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "ep slyly across the furi" }, { "l_orderkey": 1730i32, "l_partkey": 10i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 40.0d, "l_extendedprice": 36400.4d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-10-02", "l_commitdate": "1998-10-06", "l_receiptdate": "1998-10-03", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "ven dinos slee" }, { "l_orderkey": 1796i32, "l_partkey": 10i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 28.0d, "l_extendedprice": 25480.28d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-12-01", "l_commitdate": "1993-01-01", "l_receiptdate": "1992-12-24", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "y quickly ironic accounts." }, { "l_orderkey": 1922i32, "l_partkey": 10i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 13.0d, "l_extendedprice": 11830.13d, "l_discount": 0.05d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-24", "l_commitdate": "1996-09-21", "l_receiptdate": "1996-11-15", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "quests. furiously" }, { "l_orderkey": 1989i32, "l_partkey": 10i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 47.0d, "l_extendedprice": 42770.47d, "l_discount": 0.1d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-06-21", "l_commitdate": "1994-05-27", "l_receiptdate": "1994-06-22", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "final deposits s" }, { "l_orderkey": 2881i32, "l_partkey": 10i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 1.0d, "l_extendedprice": 910.01d, "l_discount": 0.09d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-05-13", "l_commitdate": "1992-07-21", "l_receiptdate": "1992-05-18", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "final theodolites. quickly" }, { "l_orderkey": 2946i32, "l_partkey": 10i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 25.0d, "l_extendedprice": 22750.25d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-06", "l_commitdate": "1996-04-23", "l_receiptdate": "1996-05-16", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "ic deposits. furiously" }, { "l_orderkey": 2947i32, "l_partkey": 10i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 37.0d, "l_extendedprice": 33670.37d, "l_discount": 0.09d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-09", "l_commitdate": "1995-07-05", "l_receiptdate": "1995-08-20", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "e accounts: expres" }, { "l_orderkey": 2976i32, "l_partkey": 10i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 35.0d, "l_extendedprice": 31850.35d, "l_discount": 0.1d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-12-19", "l_commitdate": "1994-02-14", "l_receiptdate": "1994-01-11", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "boost slyly about the regular, regular re" }, { "l_orderkey": 2980i32, "l_partkey": 10i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 48.0d, "l_extendedprice": 43680.48d, "l_discount": 0.04d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-25", "l_commitdate": "1996-12-09", "l_receiptdate": "1996-10-12", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "totes. regular pinto " }, { "l_orderkey": 3138i32, "l_partkey": 10i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 12.0d, "l_extendedprice": 10920.12d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-03-04", "l_commitdate": "1994-04-11", "l_receiptdate": "1994-03-21", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": ". bold pinto beans haggl" }, { "l_orderkey": 3141i32, "l_partkey": 10i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 37.0d, "l_extendedprice": 33670.37d, "l_discount": 0.1d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-24", "l_commitdate": "1995-12-16", "l_receiptdate": "1996-01-27", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "press pinto beans. bold accounts boost b" }, { "l_orderkey": 3363i32, "l_partkey": 10i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 42.0d, "l_extendedprice": 38220.42d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-09", "l_commitdate": "1995-11-25", "l_receiptdate": "1995-11-15", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": " blithely final ideas nag after" }, { "l_orderkey": 3558i32, "l_partkey": 10i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 28.0d, "l_extendedprice": 25480.28d, "l_discount": 0.02d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-02", "l_commitdate": "1996-04-18", "l_receiptdate": "1996-06-24", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "l deposits " }, { "l_orderkey": 3941i32, "l_partkey": 10i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 2.0d, "l_extendedprice": 1820.02d, "l_discount": 0.01d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-04", "l_commitdate": "1996-10-01", "l_receiptdate": "1996-12-25", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "es wake after the" }, { "l_orderkey": 4102i32, "l_partkey": 10i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 17.0d, "l_extendedprice": 15470.17d, "l_discount": 0.02d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-03", "l_commitdate": "1996-05-06", "l_receiptdate": "1996-07-02", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "ly silent theodolites sleep unusual exc" }, { "l_orderkey": 4161i32, "l_partkey": 10i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 45.0d, "l_extendedprice": 40950.45d, "l_discount": 0.02d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-10-22", "l_commitdate": "1993-10-17", "l_receiptdate": "1993-10-30", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "about the ironic packages cajole blithe" }, { "l_orderkey": 4807i32, "l_partkey": 10i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 41.0d, "l_extendedprice": 37310.41d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-02", "l_commitdate": "1997-03-31", "l_receiptdate": "1997-05-15", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": " fluffily re" }, { "l_orderkey": 4839i32, "l_partkey": 10i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 25.0d, "l_extendedprice": 22750.25d, "l_discount": 0.02d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-05-20", "l_commitdate": "1994-07-08", "l_receiptdate": "1994-05-30", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "regular packages ab" }, { "l_orderkey": 4935i32, "l_partkey": 10i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 14.0d, "l_extendedprice": 12740.14d, "l_discount": 0.08d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-05-30", "l_commitdate": "1993-07-25", "l_receiptdate": "1993-05-31", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "slowly. blith" }, { "l_orderkey": 4999i32, "l_partkey": 10i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 44.0d, "l_extendedprice": 40040.44d, "l_discount": 0.03d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-08-01", "l_commitdate": "1993-08-04", "l_receiptdate": "1993-08-17", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "ependencies. slowly regu" }, { "l_orderkey": 5378i32, "l_partkey": 10i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 18.0d, "l_extendedprice": 16380.18d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-11-25", "l_commitdate": "1992-12-21", "l_receiptdate": "1992-12-10", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "onic accounts was bold, " }, { "l_orderkey": 5507i32, "l_partkey": 10i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 23.0d, "l_extendedprice": 20930.23d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-09-04", "l_commitdate": "1998-07-04", "l_receiptdate": "1998-09-18", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "ously slow packages poach whithout the" }, { "l_orderkey": 5632i32, "l_partkey": 10i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 48.0d, "l_extendedprice": 43680.48d, "l_discount": 0.06d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-08", "l_commitdate": "1996-03-24", "l_receiptdate": "1996-06-04", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "unts. decoys u" } ] }
+{ "partkey": 11i32, "lines": [ { "l_orderkey": 103i32, "l_partkey": 11i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 37.0d, "l_extendedprice": 33707.37d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-17", "l_commitdate": "1996-07-27", "l_receiptdate": "1996-09-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "ies. quickly ironic requests use blithely" }, { "l_orderkey": 198i32, "l_partkey": 11i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 35.0d, "l_extendedprice": 31885.35d, "l_discount": 0.08d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-02-27", "l_commitdate": "1998-03-23", "l_receiptdate": "1998-03-14", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "ests nod quickly furiously sly pinto be" }, { "l_orderkey": 773i32, "l_partkey": 11i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 31.0d, "l_extendedprice": 28241.31d, "l_discount": 0.02d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-12-30", "l_commitdate": "1993-11-02", "l_receiptdate": "1994-01-01", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "e slyly unusual deposit" }, { "l_orderkey": 928i32, "l_partkey": 11i32, "l_suppkey": 5i32, "l_linenumber": 7i32, "l_quantity": 11.0d, "l_extendedprice": 10021.11d, "l_discount": 0.0d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-04-29", "l_commitdate": "1995-04-16", "l_receiptdate": "1995-04-30", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "longside of" }, { "l_orderkey": 998i32, "l_partkey": 11i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 6.0d, "l_extendedprice": 5466.06d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-03-20", "l_commitdate": "1994-12-27", "l_receiptdate": "1995-04-13", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "refully accounts. carefully express ac" }, { "l_orderkey": 1509i32, "l_partkey": 11i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 46.0d, "l_extendedprice": 41906.46d, "l_discount": 0.08d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-10-15", "l_commitdate": "1993-10-04", "l_receiptdate": "1993-11-01", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "uriously regula" }, { "l_orderkey": 2054i32, "l_partkey": 11i32, "l_suppkey": 1i32, "l_linenumber": 7i32, "l_quantity": 4.0d, "l_extendedprice": 3644.04d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-08-12", "l_commitdate": "1992-08-31", "l_receiptdate": "1992-08-15", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "lyly careful requests wake fl" }, { "l_orderkey": 2147i32, "l_partkey": 11i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 11.0d, "l_extendedprice": 10021.11d, "l_discount": 0.06d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-09-27", "l_commitdate": "1992-11-16", "l_receiptdate": "1992-10-16", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": " the fluffily" }, { "l_orderkey": 2466i32, "l_partkey": 11i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 29.0d, "l_extendedprice": 26419.29d, "l_discount": 0.04d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-04-01", "l_commitdate": "1994-04-20", "l_receiptdate": "1994-04-23", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "es boost fluffily ab" }, { "l_orderkey": 2469i32, "l_partkey": 11i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 48.0d, "l_extendedprice": 43728.48d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-11", "l_commitdate": "1997-01-03", "l_receiptdate": "1997-01-15", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "riously even theodolites u" }, { "l_orderkey": 2979i32, "l_partkey": 11i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 47.0d, "l_extendedprice": 42817.47d, "l_discount": 0.05d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-25", "l_commitdate": "1996-05-13", "l_receiptdate": "1996-04-04", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "iously unusual dependencies wake across" }, { "l_orderkey": 3237i32, "l_partkey": 11i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 11.0d, "l_extendedprice": 10021.11d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-08-03", "l_commitdate": "1992-07-31", "l_receiptdate": "1992-08-13", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "es. permanently express platelets besid" }, { "l_orderkey": 3460i32, "l_partkey": 11i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 40.0d, "l_extendedprice": 36440.4d, "l_discount": 0.1d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-28", "l_commitdate": "1995-12-14", "l_receiptdate": "1996-01-02", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "odolites are slyly bold deposits" }, { "l_orderkey": 3584i32, "l_partkey": 11i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 4.0d, "l_extendedprice": 3644.04d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-16", "l_commitdate": "1997-10-31", "l_receiptdate": "1997-08-28", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "nal packag" }, { "l_orderkey": 3872i32, "l_partkey": 11i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 41.0d, "l_extendedprice": 37351.41d, "l_discount": 0.07d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-23", "l_commitdate": "1996-11-12", "l_receiptdate": "1996-12-03", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "ly regular epitaphs boost" }, { "l_orderkey": 4192i32, "l_partkey": 11i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 36.0d, "l_extendedprice": 32796.36d, "l_discount": 0.06d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-25", "l_commitdate": "1998-05-26", "l_receiptdate": "1998-05-03", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "eodolites sleep" }, { "l_orderkey": 4263i32, "l_partkey": 11i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 38.0d, "l_extendedprice": 34618.38d, "l_discount": 0.01d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-10", "l_commitdate": "1998-05-08", "l_receiptdate": "1998-07-17", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "rding to the dep" }, { "l_orderkey": 4389i32, "l_partkey": 11i32, "l_suppkey": 5i32, "l_linenumber": 5i32, "l_quantity": 22.0d, "l_extendedprice": 20042.22d, "l_discount": 0.08d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-07-05", "l_commitdate": "1994-06-12", "l_receiptdate": "1994-07-12", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "lly silent de" }, { "l_orderkey": 4551i32, "l_partkey": 11i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 6.0d, "l_extendedprice": 5466.06d, "l_discount": 0.08d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-18", "l_commitdate": "1996-04-23", "l_receiptdate": "1996-06-13", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "fily silent fo" }, { "l_orderkey": 4800i32, "l_partkey": 11i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 21.0d, "l_extendedprice": 19131.21d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-02-14", "l_commitdate": "1992-03-15", "l_receiptdate": "1992-02-26", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "ithely according to " }, { "l_orderkey": 4866i32, "l_partkey": 11i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 9.0d, "l_extendedprice": 8199.09d, "l_discount": 0.01d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-30", "l_commitdate": "1997-09-18", "l_receiptdate": "1997-09-24", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "ven dependencies x-ray. quic" }, { "l_orderkey": 4934i32, "l_partkey": 11i32, "l_suppkey": 5i32, "l_linenumber": 7i32, "l_quantity": 2.0d, "l_extendedprice": 1822.02d, "l_discount": 0.1d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-05", "l_commitdate": "1997-03-26", "l_receiptdate": "1997-06-09", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "ongside of the brave, regula" }, { "l_orderkey": 4935i32, "l_partkey": 11i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 24.0d, "l_extendedprice": 21864.24d, "l_discount": 0.06d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-05-29", "l_commitdate": "1993-08-17", "l_receiptdate": "1993-06-22", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "ly quickly s" }, { "l_orderkey": 5187i32, "l_partkey": 11i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 49.0d, "l_extendedprice": 44639.49d, "l_discount": 0.04d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-10-20", "l_commitdate": "1997-10-12", "l_receiptdate": "1997-10-26", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "l, regular platelets instead of the foxes w" }, { "l_orderkey": 5573i32, "l_partkey": 11i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 46.0d, "l_extendedprice": 41906.46d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-04", "l_commitdate": "1996-10-02", "l_receiptdate": "1996-11-15", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "s haggle qu" }, { "l_orderkey": 5633i32, "l_partkey": 11i32, "l_suppkey": 5i32, "l_linenumber": 7i32, "l_quantity": 39.0d, "l_extendedprice": 35529.39d, "l_discount": 0.02d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-12", "l_commitdate": "1998-07-03", "l_receiptdate": "1998-07-13", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "ding ideas cajole furiously after" }, { "l_orderkey": 5698i32, "l_partkey": 11i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 30.0d, "l_extendedprice": 27330.3d, "l_discount": 0.01d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-05-26", "l_commitdate": "1994-08-16", "l_receiptdate": "1994-06-19", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "its. quickly regular foxes aro" }, { "l_orderkey": 5858i32, "l_partkey": 11i32, "l_suppkey": 5i32, "l_linenumber": 7i32, "l_quantity": 50.0d, "l_extendedprice": 45550.5d, "l_discount": 0.06d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-07-20", "l_commitdate": "1992-10-07", "l_receiptdate": "1992-07-25", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "r the ironic ex" } ] }
+{ "partkey": 12i32, "lines": [ { "l_orderkey": 32i32, "l_partkey": 12i32, "l_suppkey": 6i32, "l_linenumber": 6i32, "l_quantity": 6.0d, "l_extendedprice": 5472.06d, "l_discount": 0.04d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-21", "l_commitdate": "1995-09-23", "l_receiptdate": "1995-07-25", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": " gifts cajole carefully." }, { "l_orderkey": 130i32, "l_partkey": 12i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 18.0d, "l_extendedprice": 16416.18d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-07-04", "l_commitdate": "1992-06-14", "l_receiptdate": "1992-07-29", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": " slyly ironic decoys abou" }, { "l_orderkey": 322i32, "l_partkey": 12i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 35.0d, "l_extendedprice": 31920.35d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-07-17", "l_commitdate": "1992-05-03", "l_receiptdate": "1992-08-14", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "egular accounts cajole carefully. even d" }, { "l_orderkey": 359i32, "l_partkey": 12i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 18.0d, "l_extendedprice": 16416.18d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-01-27", "l_commitdate": "1995-03-18", "l_receiptdate": "1995-01-31", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "unusual warthogs. ironically sp" }, { "l_orderkey": 807i32, "l_partkey": 12i32, "l_suppkey": 2i32, "l_linenumber": 6i32, "l_quantity": 11.0d, "l_extendedprice": 10032.11d, "l_discount": 0.02d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-03-25", "l_commitdate": "1994-01-26", "l_receiptdate": "1994-04-14", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "unts above the slyly final ex" }, { "l_orderkey": 928i32, "l_partkey": 12i32, "l_suppkey": 3i32, "l_linenumber": 5i32, "l_quantity": 38.0d, "l_extendedprice": 34656.38d, "l_discount": 0.02d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "F", "l_shipdate": "1995-06-08", "l_commitdate": "1995-04-15", "l_receiptdate": "1995-06-30", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "xpress grouc" }, { "l_orderkey": 1123i32, "l_partkey": 12i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 10.0d, "l_extendedprice": 9120.1d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-12", "l_commitdate": "1996-10-04", "l_receiptdate": "1996-11-30", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "ckages are above the depths. slyly ir" }, { "l_orderkey": 1156i32, "l_partkey": 12i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 29.0d, "l_extendedprice": 26448.29d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-24", "l_commitdate": "1996-12-26", "l_receiptdate": "1997-02-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "ts sleep sly" }, { "l_orderkey": 1345i32, "l_partkey": 12i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 37.0d, "l_extendedprice": 33744.37d, "l_discount": 0.1d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-11-27", "l_commitdate": "1992-12-11", "l_receiptdate": "1992-12-07", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "e slyly express requests. ironic accounts c" }, { "l_orderkey": 1763i32, "l_partkey": 12i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 22.0d, "l_extendedprice": 20064.22d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-17", "l_commitdate": "1997-01-15", "l_receiptdate": "1997-02-03", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "ld. fluffily final ideas boos" }, { "l_orderkey": 1797i32, "l_partkey": 12i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 21.0d, "l_extendedprice": 19152.21d, "l_discount": 0.02d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-05", "l_commitdate": "1996-08-05", "l_receiptdate": "1996-08-06", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "ns. regular, regular deposit" }, { "l_orderkey": 2274i32, "l_partkey": 12i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 18.0d, "l_extendedprice": 16416.18d, "l_discount": 0.04d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-09-06", "l_commitdate": "1993-12-03", "l_receiptdate": "1993-09-22", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "usly final re" }, { "l_orderkey": 2311i32, "l_partkey": 12i32, "l_suppkey": 9i32, "l_linenumber": 6i32, "l_quantity": 32.0d, "l_extendedprice": 29184.32d, "l_discount": 0.01d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-19", "l_commitdate": "1995-06-26", "l_receiptdate": "1995-07-26", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "sts along the slyly" }, { "l_orderkey": 2435i32, "l_partkey": 12i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 24.0d, "l_extendedprice": 21888.24d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-03-14", "l_commitdate": "1993-05-20", "l_receiptdate": "1993-03-26", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "s. carefully regular d" }, { "l_orderkey": 2497i32, "l_partkey": 12i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 34.0d, "l_extendedprice": 31008.34d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-09-02", "l_commitdate": "1992-10-19", "l_receiptdate": "1992-09-12", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "ronic accounts. p" }, { "l_orderkey": 3204i32, "l_partkey": 12i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 10.0d, "l_extendedprice": 9120.1d, "l_discount": 0.1d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-01-27", "l_commitdate": "1993-03-08", "l_receiptdate": "1993-01-29", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "counts. bold " }, { "l_orderkey": 3239i32, "l_partkey": 12i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 31.0d, "l_extendedprice": 28272.31d, "l_discount": 0.1d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-14", "l_commitdate": "1998-03-24", "l_receiptdate": "1998-04-17", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "foxes. pendin" }, { "l_orderkey": 3715i32, "l_partkey": 12i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 37.0d, "l_extendedprice": 33744.37d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-03", "l_commitdate": "1996-04-30", "l_receiptdate": "1996-05-17", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "ut the carefully expr" }, { "l_orderkey": 4038i32, "l_partkey": 12i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 37.0d, "l_extendedprice": 33744.37d, "l_discount": 0.04d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-17", "l_commitdate": "1996-03-19", "l_receiptdate": "1996-04-07", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": " packages " }, { "l_orderkey": 4771i32, "l_partkey": 12i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 5.0d, "l_extendedprice": 4560.05d, "l_discount": 0.06d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-01-07", "l_commitdate": "1993-01-19", "l_receiptdate": "1993-01-26", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "ar, quiet accounts nag furiously express id" }, { "l_orderkey": 5636i32, "l_partkey": 12i32, "l_suppkey": 3i32, "l_linenumber": 6i32, "l_quantity": 33.0d, "l_extendedprice": 30096.33d, "l_discount": 0.06d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-03-09", "l_commitdate": "1995-04-05", "l_receiptdate": "1995-03-23", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "ding to the " }, { "l_orderkey": 5729i32, "l_partkey": 12i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 50.0d, "l_extendedprice": 45600.5d, "l_discount": 0.0d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-12-09", "l_commitdate": "1994-12-31", "l_receiptdate": "1994-12-24", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "ly special sentiments. car" }, { "l_orderkey": 5762i32, "l_partkey": 12i32, "l_suppkey": 6i32, "l_linenumber": 6i32, "l_quantity": 12.0d, "l_extendedprice": 10944.12d, "l_discount": 0.0d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-18", "l_commitdate": "1997-04-27", "l_receiptdate": "1997-05-11", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "ages are abo" }, { "l_orderkey": 5920i32, "l_partkey": 12i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 28.0d, "l_extendedprice": 25536.28d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-12-17", "l_commitdate": "1995-02-13", "l_receiptdate": "1994-12-31", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "le slyly slyly even deposits. f" } ] }
+{ "partkey": 13i32, "lines": [ { "l_orderkey": 37i32, "l_partkey": 13i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 43.0d, "l_extendedprice": 39259.43d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-07-10", "l_commitdate": "1992-07-06", "l_receiptdate": "1992-08-02", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "iously ste" }, { "l_orderkey": 322i32, "l_partkey": 13i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 20.0d, "l_extendedprice": 18260.2d, "l_discount": 0.04d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-04-26", "l_commitdate": "1992-05-04", "l_receiptdate": "1992-05-22", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "ckly toward " }, { "l_orderkey": 514i32, "l_partkey": 13i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 6.0d, "l_extendedprice": 5478.06d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-30", "l_commitdate": "1996-06-04", "l_receiptdate": "1996-06-28", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "as haggle blithely; quickly s" }, { "l_orderkey": 579i32, "l_partkey": 13i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 28.0d, "l_extendedprice": 25564.28d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-10", "l_commitdate": "1998-05-24", "l_receiptdate": "1998-07-19", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "ic ideas until th" }, { "l_orderkey": 643i32, "l_partkey": 13i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 28.0d, "l_extendedprice": 25564.28d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-04-13", "l_commitdate": "1995-05-12", "l_receiptdate": "1995-04-14", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "ly regular requests nag sly" }, { "l_orderkey": 933i32, "l_partkey": 13i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 27.0d, "l_extendedprice": 24651.27d, "l_discount": 0.02d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-10-03", "l_commitdate": "1992-10-02", "l_receiptdate": "1992-10-26", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "ests. express" }, { "l_orderkey": 935i32, "l_partkey": 13i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 8.0d, "l_extendedprice": 7304.08d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-12", "l_commitdate": "1997-11-02", "l_receiptdate": "1998-02-05", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "cept the quickly regular p" }, { "l_orderkey": 1379i32, "l_partkey": 13i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 24.0d, "l_extendedprice": 21912.24d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-06", "l_commitdate": "1998-07-09", "l_receiptdate": "1998-07-29", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "ages cajole carefully idly express re" }, { "l_orderkey": 1537i32, "l_partkey": 13i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 44.0d, "l_extendedprice": 40172.44d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-04-01", "l_commitdate": "1992-03-31", "l_receiptdate": "1992-04-21", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "lar courts." }, { "l_orderkey": 1634i32, "l_partkey": 13i32, "l_suppkey": 7i32, "l_linenumber": 7i32, "l_quantity": 35.0d, "l_extendedprice": 31955.35d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-25", "l_commitdate": "1996-11-25", "l_receiptdate": "1996-12-12", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "cies. regular, special de" }, { "l_orderkey": 1828i32, "l_partkey": 13i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 40.0d, "l_extendedprice": 36520.4d, "l_discount": 0.08d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-05-05", "l_commitdate": "1994-07-02", "l_receiptdate": "1994-05-19", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "s use above the quietly fin" }, { "l_orderkey": 2081i32, "l_partkey": 13i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 32.0d, "l_extendedprice": 29216.32d, "l_discount": 0.09d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-05", "l_commitdate": "1997-09-26", "l_receiptdate": "1997-10-03", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "e. final, regular dependencies sleep slyly!" }, { "l_orderkey": 2432i32, "l_partkey": 13i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 14.0d, "l_extendedprice": 12782.14d, "l_discount": 0.0d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-18", "l_commitdate": "1996-09-04", "l_receiptdate": "1996-08-27", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "riously regular packages. p" }, { "l_orderkey": 2438i32, "l_partkey": 13i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 31.0d, "l_extendedprice": 28303.31d, "l_discount": 0.08d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-10-16", "l_commitdate": "1993-08-31", "l_receiptdate": "1993-11-10", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "t. slyly ironic sh" }, { "l_orderkey": 2723i32, "l_partkey": 13i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 47.0d, "l_extendedprice": 42911.47d, "l_discount": 0.09d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-05", "l_commitdate": "1995-11-19", "l_receiptdate": "1995-12-11", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "furiously r" }, { "l_orderkey": 2753i32, "l_partkey": 13i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 6.0d, "l_extendedprice": 5478.06d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-12-30", "l_commitdate": "1994-01-28", "l_receiptdate": "1994-01-29", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "s accounts" }, { "l_orderkey": 3239i32, "l_partkey": 13i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 13.0d, "l_extendedprice": 11869.13d, "l_discount": 0.01d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-02-10", "l_commitdate": "1998-02-19", "l_receiptdate": "1998-02-25", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "r deposits solve fluf" }, { "l_orderkey": 3397i32, "l_partkey": 13i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 11.0d, "l_extendedprice": 10043.11d, "l_discount": 0.0d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-07-29", "l_commitdate": "1994-09-18", "l_receiptdate": "1994-08-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "iously careful packages. s" }, { "l_orderkey": 3648i32, "l_partkey": 13i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 16.0d, "l_extendedprice": 14608.16d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-07-27", "l_commitdate": "1993-08-26", "l_receiptdate": "1993-08-24", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "uriously stealthy deposits haggle furi" }, { "l_orderkey": 4674i32, "l_partkey": 13i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 21.0d, "l_extendedprice": 19173.21d, "l_discount": 0.02d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-05-08", "l_commitdate": "1994-07-02", "l_receiptdate": "1994-06-04", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "ent accounts sublate deposits. instruc" }, { "l_orderkey": 4965i32, "l_partkey": 13i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 25.0d, "l_extendedprice": 22825.25d, "l_discount": 0.1d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-02-05", "l_commitdate": "1993-12-15", "l_receiptdate": "1994-02-24", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "wake at the carefully speci" }, { "l_orderkey": 5313i32, "l_partkey": 13i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 17.0d, "l_extendedprice": 15521.17d, "l_discount": 0.0d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-02", "l_commitdate": "1997-08-20", "l_receiptdate": "1997-09-07", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "uests wake" }, { "l_orderkey": 5445i32, "l_partkey": 13i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 14.0d, "l_extendedprice": 12782.14d, "l_discount": 0.0d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-11-19", "l_commitdate": "1993-10-18", "l_receiptdate": "1993-12-07", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": " requests. bravely i" }, { "l_orderkey": 5763i32, "l_partkey": 13i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 25.0d, "l_extendedprice": 22825.25d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-10-04", "l_commitdate": "1998-08-16", "l_receiptdate": "1998-10-09", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "inal theodolites. even re" }, { "l_orderkey": 5831i32, "l_partkey": 13i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 46.0d, "l_extendedprice": 41998.46d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-24", "l_commitdate": "1997-01-18", "l_receiptdate": "1997-03-02", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "ly final pa" }, { "l_orderkey": 5953i32, "l_partkey": 13i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 34.0d, "l_extendedprice": 31042.34d, "l_discount": 0.03d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-05-04", "l_commitdate": "1992-06-12", "l_receiptdate": "1992-06-02", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "hockey players use furiously against th" } ] }
+{ "partkey": 14i32, "lines": [ { "l_orderkey": 453i32, "l_partkey": 14i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 38.0d, "l_extendedprice": 34732.38d, "l_discount": 0.1d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-10", "l_commitdate": "1997-07-24", "l_receiptdate": "1997-09-07", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "sts cajole. furiously un" }, { "l_orderkey": 899i32, "l_partkey": 14i32, "l_suppkey": 1i32, "l_linenumber": 7i32, "l_quantity": 11.0d, "l_extendedprice": 10054.11d, "l_discount": 0.02d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-03", "l_commitdate": "1998-06-15", "l_receiptdate": "1998-06-20", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "t the ironic" }, { "l_orderkey": 1510i32, "l_partkey": 14i32, "l_suppkey": 5i32, "l_linenumber": 6i32, "l_quantity": 3.0d, "l_extendedprice": 2742.03d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-31", "l_commitdate": "1996-12-03", "l_receiptdate": "1996-11-13", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "along the slyly regular pin" }, { "l_orderkey": 1858i32, "l_partkey": 14i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 33.0d, "l_extendedprice": 30162.33d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-28", "l_commitdate": "1998-02-03", "l_receiptdate": "1998-01-13", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "tect along the slyly final" }, { "l_orderkey": 1953i32, "l_partkey": 14i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 35.0d, "l_extendedprice": 31990.35d, "l_discount": 0.06d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-02-03", "l_commitdate": "1994-02-25", "l_receiptdate": "1994-02-14", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "among the fur" }, { "l_orderkey": 2020i32, "l_partkey": 14i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 30.0d, "l_extendedprice": 27420.3d, "l_discount": 0.07d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-09-08", "l_commitdate": "1993-08-11", "l_receiptdate": "1993-09-29", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "ly about the blithely ironic foxes. bold" }, { "l_orderkey": 2279i32, "l_partkey": 14i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 12.0d, "l_extendedprice": 10968.12d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-05-10", "l_commitdate": "1993-03-25", "l_receiptdate": "1993-06-02", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "lets across the excuses nag quickl" }, { "l_orderkey": 2368i32, "l_partkey": 14i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 32.0d, "l_extendedprice": 29248.32d, "l_discount": 0.03d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-09-23", "l_commitdate": "1993-10-07", "l_receiptdate": "1993-09-27", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "gular courts use blithely around the" }, { "l_orderkey": 2466i32, "l_partkey": 14i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 29.0d, "l_extendedprice": 26506.29d, "l_discount": 0.1d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-06-11", "l_commitdate": "1994-04-27", "l_receiptdate": "1994-07-10", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "ckages. bold requests nag carefully." }, { "l_orderkey": 2981i32, "l_partkey": 14i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 17.0d, "l_extendedprice": 15538.17d, "l_discount": 0.03d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-10-17", "l_commitdate": "1998-10-02", "l_receiptdate": "1998-10-21", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": ", unusual packages x-ray. furious" }, { "l_orderkey": 3042i32, "l_partkey": 14i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 34.0d, "l_extendedprice": 31076.34d, "l_discount": 0.04d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-12-11", "l_commitdate": "1995-02-03", "l_receiptdate": "1994-12-21", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "can wake after the enticingly stealthy i" }, { "l_orderkey": 3047i32, "l_partkey": 14i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 23.0d, "l_extendedprice": 21022.23d, "l_discount": 0.0d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-20", "l_commitdate": "1997-06-14", "l_receiptdate": "1997-05-28", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": " slyly ironi" }, { "l_orderkey": 3232i32, "l_partkey": 14i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 22.0d, "l_extendedprice": 20108.22d, "l_discount": 0.1d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-11-30", "l_commitdate": "1992-12-09", "l_receiptdate": "1992-12-04", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "thely. furio" }, { "l_orderkey": 3399i32, "l_partkey": 14i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 21.0d, "l_extendedprice": 19194.21d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-03-12", "l_commitdate": "1995-05-18", "l_receiptdate": "1995-03-28", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "se final courts. exc" }, { "l_orderkey": 3425i32, "l_partkey": 14i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 8.0d, "l_extendedprice": 7312.08d, "l_discount": 0.06d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-22", "l_commitdate": "1996-06-07", "l_receiptdate": "1996-07-26", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "iously regular theodolites wake. s" }, { "l_orderkey": 3426i32, "l_partkey": 14i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 19.0d, "l_extendedprice": 17366.19d, "l_discount": 0.1d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-02", "l_commitdate": "1997-01-13", "l_receiptdate": "1996-11-15", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "slyly special packages oug" }, { "l_orderkey": 3751i32, "l_partkey": 14i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 39.0d, "l_extendedprice": 35646.39d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-08-16", "l_commitdate": "1994-07-11", "l_receiptdate": "1994-09-12", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "refully according to the iro" }, { "l_orderkey": 3781i32, "l_partkey": 14i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 48.0d, "l_extendedprice": 43872.48d, "l_discount": 0.02d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-22", "l_commitdate": "1996-08-13", "l_receiptdate": "1996-09-15", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "equests may cajole careful" }, { "l_orderkey": 4322i32, "l_partkey": 14i32, "l_suppkey": 4i32, "l_linenumber": 7i32, "l_quantity": 34.0d, "l_extendedprice": 31076.34d, "l_discount": 0.05d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-27", "l_commitdate": "1998-04-12", "l_receiptdate": "1998-06-16", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "ounts haggle fluffily ideas. pend" }, { "l_orderkey": 4548i32, "l_partkey": 14i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 21.0d, "l_extendedprice": 19194.21d, "l_discount": 0.1d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-11", "l_commitdate": "1996-09-04", "l_receiptdate": "1996-07-30", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "pecial theodoli" }, { "l_orderkey": 4929i32, "l_partkey": 14i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 20.0d, "l_extendedprice": 18280.2d, "l_discount": 0.0d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-12", "l_commitdate": "1996-05-23", "l_receiptdate": "1996-03-20", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": " final pinto beans detect. final," }, { "l_orderkey": 5028i32, "l_partkey": 14i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 15.0d, "l_extendedprice": 13710.15d, "l_discount": 0.07d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-07-17", "l_commitdate": "1992-07-16", "l_receiptdate": "1992-08-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "es are quickly final pains. furiously pend" }, { "l_orderkey": 5253i32, "l_partkey": 14i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 9.0d, "l_extendedprice": 8226.09d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "F", "l_shipdate": "1995-06-08", "l_commitdate": "1995-05-12", "l_receiptdate": "1995-06-23", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "lyly express deposits use furiou" }, { "l_orderkey": 5731i32, "l_partkey": 14i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 6.0d, "l_extendedprice": 5484.06d, "l_discount": 0.03d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-07", "l_commitdate": "1997-06-20", "l_receiptdate": "1997-09-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "rs. quickly regular theo" }, { "l_orderkey": 5792i32, "l_partkey": 14i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 14.0d, "l_extendedprice": 12796.14d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-07-28", "l_commitdate": "1993-06-17", "l_receiptdate": "1993-08-27", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "olites print carefully" } ] }
+{ "partkey": 15i32, "lines": [ { "l_orderkey": 160i32, "l_partkey": 15i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 36.0d, "l_extendedprice": 32940.36d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-11", "l_commitdate": "1997-03-11", "l_receiptdate": "1997-03-20", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "old, ironic deposits are quickly abov" }, { "l_orderkey": 774i32, "l_partkey": 15i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 8.0d, "l_extendedprice": 7320.08d, "l_discount": 0.0d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-24", "l_commitdate": "1996-01-15", "l_receiptdate": "1996-02-13", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "ully ironic requests c" }, { "l_orderkey": 1474i32, "l_partkey": 15i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 5.0d, "l_extendedprice": 4575.05d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-04-22", "l_commitdate": "1995-02-20", "l_receiptdate": "1995-05-06", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "ully final a" }, { "l_orderkey": 2151i32, "l_partkey": 15i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 29.0d, "l_extendedprice": 26535.29d, "l_discount": 0.0d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-04", "l_commitdate": "1996-12-27", "l_receiptdate": "1997-03-21", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": " bold packages acro" }, { "l_orderkey": 2309i32, "l_partkey": 15i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 5.0d, "l_extendedprice": 4575.05d, "l_discount": 0.01d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-10", "l_commitdate": "1995-10-29", "l_receiptdate": "1996-01-06", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "s. requests wake blithely specia" }, { "l_orderkey": 2563i32, "l_partkey": 15i32, "l_suppkey": 6i32, "l_linenumber": 5i32, "l_quantity": 42.0d, "l_extendedprice": 38430.42d, "l_discount": 0.06d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-02-21", "l_commitdate": "1994-02-14", "l_receiptdate": "1994-03-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "ymptotes nag furiously slyly even inst" }, { "l_orderkey": 2688i32, "l_partkey": 15i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 46.0d, "l_extendedprice": 42090.46d, "l_discount": 0.01d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-05-24", "l_commitdate": "1992-04-01", "l_receiptdate": "1992-05-26", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "elets. regular reque" }, { "l_orderkey": 2913i32, "l_partkey": 15i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 13.0d, "l_extendedprice": 11895.13d, "l_discount": 0.03d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-10-02", "l_commitdate": "1997-08-20", "l_receiptdate": "1997-10-26", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "inos are carefully alongside of the bol" }, { "l_orderkey": 3109i32, "l_partkey": 15i32, "l_suppkey": 9i32, "l_linenumber": 6i32, "l_quantity": 10.0d, "l_extendedprice": 9150.1d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-10-26", "l_commitdate": "1993-10-03", "l_receiptdate": "1993-11-09", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "sits haggle carefully. regular, unusual ac" }, { "l_orderkey": 3843i32, "l_partkey": 15i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 7.0d, "l_extendedprice": 6405.07d, "l_discount": 0.1d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-13", "l_commitdate": "1997-02-21", "l_receiptdate": "1997-02-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "slyly even instructions. furiously eve" }, { "l_orderkey": 3846i32, "l_partkey": 15i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 49.0d, "l_extendedprice": 44835.49d, "l_discount": 0.08d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-02-14", "l_commitdate": "1998-03-22", "l_receiptdate": "1998-02-17", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "efully even packages against the blithe" }, { "l_orderkey": 4005i32, "l_partkey": 15i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 49.0d, "l_extendedprice": 44835.49d, "l_discount": 0.09d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-31", "l_commitdate": "1996-12-24", "l_receiptdate": "1997-03-02", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "tions sleep across the silent d" }, { "l_orderkey": 4065i32, "l_partkey": 15i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 46.0d, "l_extendedprice": 42090.46d, "l_discount": 0.03d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-06-29", "l_commitdate": "1994-08-01", "l_receiptdate": "1994-07-03", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": ", regular requests may mold above the " }, { "l_orderkey": 4132i32, "l_partkey": 15i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 23.0d, "l_extendedprice": 21045.23d, "l_discount": 0.07d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-06-27", "l_commitdate": "1995-07-27", "l_receiptdate": "1995-07-13", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "d deposits. fluffily even requests haggle b" }, { "l_orderkey": 4354i32, "l_partkey": 15i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 30.0d, "l_extendedprice": 27450.3d, "l_discount": 0.08d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-01-27", "l_commitdate": "1994-11-24", "l_receiptdate": "1995-02-25", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "around the ir" }, { "l_orderkey": 4450i32, "l_partkey": 15i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 9.0d, "l_extendedprice": 8235.09d, "l_discount": 0.03d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-13", "l_commitdate": "1997-08-16", "l_receiptdate": "1997-08-15", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "gular requests cajole carefully. regular c" }, { "l_orderkey": 4832i32, "l_partkey": 15i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 23.0d, "l_extendedprice": 21045.23d, "l_discount": 0.03d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-05", "l_commitdate": "1998-01-05", "l_receiptdate": "1997-12-10", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "y express depo" }, { "l_orderkey": 5472i32, "l_partkey": 15i32, "l_suppkey": 5i32, "l_linenumber": 7i32, "l_quantity": 1.0d, "l_extendedprice": 915.01d, "l_discount": 0.03d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-04-14", "l_commitdate": "1993-06-28", "l_receiptdate": "1993-04-16", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "s use furiou" }, { "l_orderkey": 5473i32, "l_partkey": 15i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 33.0d, "l_extendedprice": 30195.33d, "l_discount": 0.09d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-05-18", "l_commitdate": "1992-06-10", "l_receiptdate": "1992-06-13", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "efully above the even, " }, { "l_orderkey": 5895i32, "l_partkey": 15i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 38.0d, "l_extendedprice": 34770.38d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-05", "l_commitdate": "1997-03-06", "l_receiptdate": "1997-05-03", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "ts are furiously. regular, final excuses " }, { "l_orderkey": 5957i32, "l_partkey": 15i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 37.0d, "l_extendedprice": 33855.37d, "l_discount": 0.07d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-04-18", "l_commitdate": "1994-02-19", "l_receiptdate": "1994-05-11", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": " ideas use ruthlessly." } ] }
+{ "partkey": 16i32, "lines": [ { "l_orderkey": 1i32, "l_partkey": 16i32, "l_suppkey": 3i32, "l_linenumber": 6i32, "l_quantity": 32.0d, "l_extendedprice": 29312.32d, "l_discount": 0.07d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-30", "l_commitdate": "1996-02-07", "l_receiptdate": "1996-02-03", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "arefully slyly ex" }, { "l_orderkey": 198i32, "l_partkey": 16i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 20.0d, "l_extendedprice": 18320.2d, "l_discount": 0.03d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-15", "l_commitdate": "1998-03-31", "l_receiptdate": "1998-01-25", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "carefully final escapades a" }, { "l_orderkey": 295i32, "l_partkey": 16i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 8.0d, "l_extendedprice": 7328.08d, "l_discount": 0.1d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-01-13", "l_commitdate": "1994-11-17", "l_receiptdate": "1995-01-25", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": " final instructions h" }, { "l_orderkey": 420i32, "l_partkey": 16i32, "l_suppkey": 7i32, "l_linenumber": 7i32, "l_quantity": 39.0d, "l_extendedprice": 35724.39d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-09", "l_commitdate": "1995-12-16", "l_receiptdate": "1995-12-31", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "s. ironic waters about the car" }, { "l_orderkey": 1315i32, "l_partkey": 16i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 15.0d, "l_extendedprice": 13740.15d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-12", "l_commitdate": "1998-06-10", "l_receiptdate": "1998-08-07", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": ". foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes integrate carefully special. foxes " }, { "l_orderkey": 1346i32, "l_partkey": 16i32, "l_suppkey": 6i32, "l_linenumber": 6i32, "l_quantity": 45.0d, "l_extendedprice": 41220.45d, "l_discount": 0.02d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-09-11", "l_commitdate": "1992-08-06", "l_receiptdate": "1992-09-12", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "press deposits." }, { "l_orderkey": 1696i32, "l_partkey": 16i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 8.0d, "l_extendedprice": 7328.08d, "l_discount": 0.04d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-28", "l_commitdate": "1998-02-07", "l_receiptdate": "1998-05-10", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "the blithely" }, { "l_orderkey": 1861i32, "l_partkey": 16i32, "l_suppkey": 3i32, "l_linenumber": 5i32, "l_quantity": 2.0d, "l_extendedprice": 1832.02d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-04-26", "l_commitdate": "1994-03-15", "l_receiptdate": "1994-05-15", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "e final, regular requests. carefully " }, { "l_orderkey": 1987i32, "l_partkey": 16i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 7.0d, "l_extendedprice": 6412.07d, "l_discount": 0.03d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-07-30", "l_commitdate": "1994-07-06", "l_receiptdate": "1994-08-29", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": " regular a" }, { "l_orderkey": 2178i32, "l_partkey": 16i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 27.0d, "l_extendedprice": 24732.27d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-26", "l_commitdate": "1997-02-19", "l_receiptdate": "1997-03-25", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": " across the ironic reques" }, { "l_orderkey": 2180i32, "l_partkey": 16i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 31.0d, "l_extendedprice": 28396.31d, "l_discount": 0.06d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-20", "l_commitdate": "1996-11-21", "l_receiptdate": "1996-11-06", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "n requests are furiously at the quickly" }, { "l_orderkey": 2789i32, "l_partkey": 16i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 47.0d, "l_extendedprice": 43052.47d, "l_discount": 0.02d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-29", "l_commitdate": "1998-05-05", "l_receiptdate": "1998-04-07", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "usly busy packages wake against the unusual" }, { "l_orderkey": 3040i32, "l_partkey": 16i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 18.0d, "l_extendedprice": 16488.18d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-06-25", "l_commitdate": "1993-07-06", "l_receiptdate": "1993-07-19", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "ly thin accou" }, { "l_orderkey": 3365i32, "l_partkey": 16i32, "l_suppkey": 3i32, "l_linenumber": 5i32, "l_quantity": 2.0d, "l_extendedprice": 1832.02d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-02-04", "l_commitdate": "1994-12-30", "l_receiptdate": "1995-03-06", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "es cajole fluffily pe" }, { "l_orderkey": 3458i32, "l_partkey": 16i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 16.0d, "l_extendedprice": 14656.16d, "l_discount": 0.09d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-03-01", "l_commitdate": "1995-02-25", "l_receiptdate": "1995-03-06", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "s grow carefully. express, final grouc" }, { "l_orderkey": 3717i32, "l_partkey": 16i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 7.0d, "l_extendedprice": 6412.07d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-09-08", "l_commitdate": "1998-07-18", "l_receiptdate": "1998-09-10", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": " after the packa" }, { "l_orderkey": 3781i32, "l_partkey": 16i32, "l_suppkey": 6i32, "l_linenumber": 5i32, "l_quantity": 23.0d, "l_extendedprice": 21068.23d, "l_discount": 0.09d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-05", "l_commitdate": "1996-08-18", "l_receiptdate": "1996-09-27", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "pendencies are b" }, { "l_orderkey": 4771i32, "l_partkey": 16i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 21.0d, "l_extendedprice": 19236.21d, "l_discount": 0.09d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-01-19", "l_commitdate": "1993-02-10", "l_receiptdate": "1993-02-01", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "fluffily pendi" }, { "l_orderkey": 4806i32, "l_partkey": 16i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 26.0d, "l_extendedprice": 23816.26d, "l_discount": 0.1d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-05-28", "l_commitdate": "1993-06-07", "l_receiptdate": "1993-05-29", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": " bold pearls sublate blithely. quickly pe" }, { "l_orderkey": 4966i32, "l_partkey": 16i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 26.0d, "l_extendedprice": 23816.26d, "l_discount": 0.08d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-14", "l_commitdate": "1996-11-29", "l_receiptdate": "1996-12-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "nt pearls haggle carefully slyly even " }, { "l_orderkey": 5184i32, "l_partkey": 16i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 47.0d, "l_extendedprice": 43052.47d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-11-02", "l_commitdate": "1998-08-19", "l_receiptdate": "1998-11-07", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "se. carefully express pinto beans x" }, { "l_orderkey": 5189i32, "l_partkey": 16i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 38.0d, "l_extendedprice": 34808.38d, "l_discount": 0.06d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-03-26", "l_commitdate": "1994-01-28", "l_receiptdate": "1994-04-20", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "ideas. idle, final deposits de" }, { "l_orderkey": 5217i32, "l_partkey": 16i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 23.0d, "l_extendedprice": 21068.23d, "l_discount": 0.06d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-18", "l_commitdate": "1995-12-24", "l_receiptdate": "1996-02-10", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "ven ideas. requests amo" }, { "l_orderkey": 5286i32, "l_partkey": 16i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 3.0d, "l_extendedprice": 2748.03d, "l_discount": 0.06d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-04", "l_commitdate": "1997-11-06", "l_receiptdate": "1997-12-09", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "re fluffily" }, { "l_orderkey": 5415i32, "l_partkey": 16i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 43.0d, "l_extendedprice": 39388.43d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-11-17", "l_commitdate": "1992-09-14", "l_receiptdate": "1992-12-14", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "yly blithely stealthy deposits. carefu" }, { "l_orderkey": 5442i32, "l_partkey": 16i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 25.0d, "l_extendedprice": 22900.25d, "l_discount": 0.04d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-29", "l_commitdate": "1998-02-13", "l_receiptdate": "1998-04-13", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "ake furiously. slyly express th" }, { "l_orderkey": 5510i32, "l_partkey": 16i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 8.0d, "l_extendedprice": 7328.08d, "l_discount": 0.01d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-03-16", "l_commitdate": "1993-03-29", "l_receiptdate": "1993-03-24", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "n packages boost sly" }, { "l_orderkey": 5697i32, "l_partkey": 16i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 43.0d, "l_extendedprice": 39388.43d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-12-08", "l_commitdate": "1992-12-03", "l_receiptdate": "1992-12-17", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "blithely reg" }, { "l_orderkey": 5858i32, "l_partkey": 16i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 36.0d, "l_extendedprice": 32976.36d, "l_discount": 0.0d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-09-25", "l_commitdate": "1992-08-16", "l_receiptdate": "1992-10-11", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "osits wake quickly quickly sile" } ] }
+{ "partkey": 17i32, "lines": [ { "l_orderkey": 289i32, "l_partkey": 17i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 44.0d, "l_extendedprice": 40348.44d, "l_discount": 0.1d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-05", "l_commitdate": "1997-04-20", "l_receiptdate": "1997-07-02", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "ly ironic foxes. asymptotes " }, { "l_orderkey": 611i32, "l_partkey": 17i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 39.0d, "l_extendedprice": 35763.39d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-05-06", "l_commitdate": "1993-04-09", "l_receiptdate": "1993-05-22", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "nto beans " }, { "l_orderkey": 647i32, "l_partkey": 17i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 41.0d, "l_extendedprice": 37597.41d, "l_discount": 0.08d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-11-19", "l_commitdate": "1997-09-24", "l_receiptdate": "1997-12-15", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "r instructions. quickly unusu" }, { "l_orderkey": 774i32, "l_partkey": 17i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 3.0d, "l_extendedprice": 2751.03d, "l_discount": 0.1d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-02-13", "l_commitdate": "1996-01-14", "l_receiptdate": "1996-03-04", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": " slyly even courts nag blith" }, { "l_orderkey": 931i32, "l_partkey": 17i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 10.0d, "l_extendedprice": 9170.1d, "l_discount": 0.05d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-03-01", "l_commitdate": "1993-01-09", "l_receiptdate": "1993-03-07", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "ajole quickly. slyly sil" }, { "l_orderkey": 967i32, "l_partkey": 17i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 41.0d, "l_extendedprice": 37597.41d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-07-23", "l_commitdate": "1992-08-07", "l_receiptdate": "1992-08-13", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "efully special ide" }, { "l_orderkey": 1411i32, "l_partkey": 17i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 9.0d, "l_extendedprice": 8253.09d, "l_discount": 0.06d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-03-08", "l_commitdate": "1995-03-04", "l_receiptdate": "1995-03-11", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "accounts. furiou" }, { "l_orderkey": 1825i32, "l_partkey": 17i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 7.0d, "l_extendedprice": 6419.07d, "l_discount": 0.04d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-01-02", "l_commitdate": "1994-01-30", "l_receiptdate": "1994-01-30", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "fully ironic requests. requests cajole ex" }, { "l_orderkey": 1958i32, "l_partkey": 17i32, "l_suppkey": 4i32, "l_linenumber": 6i32, "l_quantity": 44.0d, "l_extendedprice": 40348.44d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-17", "l_commitdate": "1995-11-30", "l_receiptdate": "1996-01-15", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "c theodolites after the unusual deposit" }, { "l_orderkey": 2400i32, "l_partkey": 17i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 23.0d, "l_extendedprice": 21091.23d, "l_discount": 0.09d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-10-04", "l_commitdate": "1998-10-04", "l_receiptdate": "1998-10-31", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "ages lose carefully around the regula" }, { "l_orderkey": 2405i32, "l_partkey": 17i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 49.0d, "l_extendedprice": 44933.49d, "l_discount": 0.0d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-24", "l_commitdate": "1997-03-23", "l_receiptdate": "1997-01-01", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "cial requests. ironic, regu" }, { "l_orderkey": 2437i32, "l_partkey": 17i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 29.0d, "l_extendedprice": 26593.29d, "l_discount": 0.02d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-05-12", "l_commitdate": "1993-06-10", "l_receiptdate": "1993-05-25", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "ress dolphins. furiously fin" }, { "l_orderkey": 2565i32, "l_partkey": 17i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 25.0d, "l_extendedprice": 22925.25d, "l_discount": 0.1d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-27", "l_commitdate": "1998-05-20", "l_receiptdate": "1998-07-13", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": ", express accounts. final id" }, { "l_orderkey": 2692i32, "l_partkey": 17i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 3.0d, "l_extendedprice": 2751.03d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-02-25", "l_commitdate": "1998-01-29", "l_receiptdate": "1998-03-27", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "equests. bold, even foxes haggle slyl" }, { "l_orderkey": 2720i32, "l_partkey": 17i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 42.0d, "l_extendedprice": 38514.42d, "l_discount": 0.09d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-07-25", "l_commitdate": "1993-07-23", "l_receiptdate": "1993-08-23", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "fter the inst" }, { "l_orderkey": 2944i32, "l_partkey": 17i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 23.0d, "l_extendedprice": 21091.23d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-12", "l_commitdate": "1997-12-03", "l_receiptdate": "1998-01-17", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": " excuses? regular platelets e" }, { "l_orderkey": 3079i32, "l_partkey": 17i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 40.0d, "l_extendedprice": 36680.4d, "l_discount": 0.02d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-26", "l_commitdate": "1997-12-11", "l_receiptdate": "1997-10-09", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "ide of the pending, special deposi" }, { "l_orderkey": 3621i32, "l_partkey": 17i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 29.0d, "l_extendedprice": 26593.29d, "l_discount": 0.02d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-08-03", "l_commitdate": "1993-07-08", "l_receiptdate": "1993-08-10", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "al requests. fl" }, { "l_orderkey": 3872i32, "l_partkey": 17i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 38.0d, "l_extendedprice": 34846.38d, "l_discount": 0.04d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-18", "l_commitdate": "1996-12-03", "l_receiptdate": "1996-11-15", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "iously against the ironic, unusual a" }, { "l_orderkey": 3943i32, "l_partkey": 17i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 32.0d, "l_extendedprice": 29344.32d, "l_discount": 0.0d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-22", "l_commitdate": "1996-12-17", "l_receiptdate": "1996-11-04", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": " unusual ideas into the furiously even pack" }, { "l_orderkey": 4005i32, "l_partkey": 17i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 28.0d, "l_extendedprice": 25676.28d, "l_discount": 0.02d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-11", "l_commitdate": "1997-01-24", "l_receiptdate": "1996-12-17", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "ly carefully ironic deposits. slyly" }, { "l_orderkey": 4262i32, "l_partkey": 17i32, "l_suppkey": 7i32, "l_linenumber": 6i32, "l_quantity": 26.0d, "l_extendedprice": 23842.26d, "l_discount": 0.03d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-29", "l_commitdate": "1996-09-25", "l_receiptdate": "1996-08-31", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "s boost slyly along the bold, iro" }, { "l_orderkey": 4355i32, "l_partkey": 17i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 4.0d, "l_extendedprice": 3668.04d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-25", "l_commitdate": "1997-01-29", "l_receiptdate": "1997-03-17", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "slyly blithely regular packag" }, { "l_orderkey": 4673i32, "l_partkey": 17i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 8.0d, "l_extendedprice": 7336.08d, "l_discount": 0.08d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-12", "l_commitdate": "1996-10-05", "l_receiptdate": "1996-11-04", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "lithely final re" }, { "l_orderkey": 4997i32, "l_partkey": 17i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 5.0d, "l_extendedprice": 4585.05d, "l_discount": 0.02d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-16", "l_commitdate": "1998-06-05", "l_receiptdate": "1998-06-07", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "cuses are furiously unusual asymptotes" }, { "l_orderkey": 5159i32, "l_partkey": 17i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 46.0d, "l_extendedprice": 42182.46d, "l_discount": 0.01d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-15", "l_commitdate": "1996-12-07", "l_receiptdate": "1996-12-30", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "s kindle slyly carefully regular" }, { "l_orderkey": 5189i32, "l_partkey": 17i32, "l_suppkey": 8i32, "l_linenumber": 6i32, "l_quantity": 41.0d, "l_extendedprice": 37597.41d, "l_discount": 0.02d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-12-12", "l_commitdate": "1994-02-05", "l_receiptdate": "1994-01-09", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "ial theodolites cajole slyly. slyly unus" }, { "l_orderkey": 5313i32, "l_partkey": 17i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 34.0d, "l_extendedprice": 31178.34d, "l_discount": 0.1d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-07", "l_commitdate": "1997-08-12", "l_receiptdate": "1997-08-24", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "ccording to the blithely final account" }, { "l_orderkey": 5348i32, "l_partkey": 17i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 16.0d, "l_extendedprice": 14672.16d, "l_discount": 0.06d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-02-28", "l_commitdate": "1997-12-25", "l_receiptdate": "1998-03-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "uriously thin pinto beans " }, { "l_orderkey": 5827i32, "l_partkey": 17i32, "l_suppkey": 4i32, "l_linenumber": 6i32, "l_quantity": 14.0d, "l_extendedprice": 12838.14d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-31", "l_commitdate": "1998-09-06", "l_receiptdate": "1998-09-13", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "rges. fluffily pending " }, { "l_orderkey": 5924i32, "l_partkey": 17i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 24.0d, "l_extendedprice": 22008.24d, "l_discount": 0.09d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-12", "l_commitdate": "1995-12-13", "l_receiptdate": "1996-01-25", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": " use carefully. special, e" } ] }
+{ "partkey": 18i32, "lines": [ { "l_orderkey": 164i32, "l_partkey": 18i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 32.0d, "l_extendedprice": 29376.32d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-12-21", "l_commitdate": "1992-12-23", "l_receiptdate": "1992-12-28", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "ts wake again" }, { "l_orderkey": 197i32, "l_partkey": 18i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 25.0d, "l_extendedprice": 22950.25d, "l_discount": 0.04d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "F", "l_shipdate": "1995-06-13", "l_commitdate": "1995-05-23", "l_receiptdate": "1995-06-24", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "s-- quickly final accounts" }, { "l_orderkey": 768i32, "l_partkey": 18i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 2.0d, "l_extendedprice": 1836.02d, "l_discount": 0.0d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-13", "l_commitdate": "1996-10-03", "l_receiptdate": "1996-11-25", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "ular courts. slyly dogged accou" }, { "l_orderkey": 901i32, "l_partkey": 18i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 11.0d, "l_extendedprice": 10098.11d, "l_discount": 0.0d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-11-13", "l_commitdate": "1998-10-19", "l_receiptdate": "1998-11-14", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "ourts among the quickly expre" }, { "l_orderkey": 930i32, "l_partkey": 18i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 47.0d, "l_extendedprice": 43146.47d, "l_discount": 0.08d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-03-20", "l_commitdate": "1995-02-04", "l_receiptdate": "1995-04-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "ackages. fluffily e" }, { "l_orderkey": 965i32, "l_partkey": 18i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 23.0d, "l_extendedprice": 21114.23d, "l_discount": 0.06d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-12", "l_commitdate": "1995-07-08", "l_receiptdate": "1995-08-11", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "ld kindle carefully across th" }, { "l_orderkey": 1537i32, "l_partkey": 18i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 17.0d, "l_extendedprice": 15606.17d, "l_discount": 0.01d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-04-12", "l_commitdate": "1992-04-19", "l_receiptdate": "1992-04-13", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "he regular pack" }, { "l_orderkey": 1920i32, "l_partkey": 18i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 6.0d, "l_extendedprice": 5508.06d, "l_discount": 0.01d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-10-01", "l_commitdate": "1998-08-20", "l_receiptdate": "1998-10-24", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "l ideas boost slyly pl" }, { "l_orderkey": 1924i32, "l_partkey": 18i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 47.0d, "l_extendedprice": 43146.47d, "l_discount": 0.02d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-24", "l_commitdate": "1996-10-18", "l_receiptdate": "1996-12-13", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "silent requests cajole blithely final pack" }, { "l_orderkey": 1955i32, "l_partkey": 18i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 2.0d, "l_extendedprice": 1836.02d, "l_discount": 0.03d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-07-06", "l_commitdate": "1992-07-06", "l_receiptdate": "1992-08-01", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "ickly aroun" }, { "l_orderkey": 2150i32, "l_partkey": 18i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 29.0d, "l_extendedprice": 26622.29d, "l_discount": 0.04d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-09-02", "l_commitdate": "1994-08-04", "l_receiptdate": "1994-10-02", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "y ironic theodolites. foxes ca" }, { "l_orderkey": 2151i32, "l_partkey": 18i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 28.0d, "l_extendedprice": 25704.28d, "l_discount": 0.1d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-11", "l_commitdate": "1996-12-26", "l_receiptdate": "1996-12-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "y special packages. carefully ironic instru" }, { "l_orderkey": 2246i32, "l_partkey": 18i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 11.0d, "l_extendedprice": 10098.11d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-21", "l_commitdate": "1996-07-24", "l_receiptdate": "1996-07-18", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "quests alongside o" }, { "l_orderkey": 2404i32, "l_partkey": 18i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 41.0d, "l_extendedprice": 37638.41d, "l_discount": 0.02d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-12", "l_commitdate": "1997-05-03", "l_receiptdate": "1997-07-12", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": " dolphins are" }, { "l_orderkey": 2658i32, "l_partkey": 18i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 13.0d, "l_extendedprice": 11934.13d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-24", "l_commitdate": "1995-12-12", "l_receiptdate": "1995-11-14", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "s kindle blithely regular accounts." }, { "l_orderkey": 2688i32, "l_partkey": 18i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 45.0d, "l_extendedprice": 41310.45d, "l_discount": 0.08d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-05-21", "l_commitdate": "1992-04-14", "l_receiptdate": "1992-05-28", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "sits run carefully" }, { "l_orderkey": 2818i32, "l_partkey": 18i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 42.0d, "l_extendedprice": 38556.42d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-02-12", "l_commitdate": "1995-02-19", "l_receiptdate": "1995-03-13", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "ar accounts wake carefully a" }, { "l_orderkey": 2854i32, "l_partkey": 18i32, "l_suppkey": 2i32, "l_linenumber": 6i32, "l_quantity": 13.0d, "l_extendedprice": 11934.13d, "l_discount": 0.04d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-09-15", "l_commitdate": "1994-08-18", "l_receiptdate": "1994-09-19", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": " excuses wak" }, { "l_orderkey": 2880i32, "l_partkey": 18i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 46.0d, "l_extendedprice": 42228.46d, "l_discount": 0.02d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-04-21", "l_commitdate": "1992-06-05", "l_receiptdate": "1992-05-16", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "eep quickly according to t" }, { "l_orderkey": 3015i32, "l_partkey": 18i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 17.0d, "l_extendedprice": 15606.17d, "l_discount": 0.03d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-10-16", "l_commitdate": "1992-11-20", "l_receiptdate": "1992-10-28", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "s above the fluffily final t" }, { "l_orderkey": 3040i32, "l_partkey": 18i32, "l_suppkey": 5i32, "l_linenumber": 6i32, "l_quantity": 10.0d, "l_extendedprice": 9180.1d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-05-16", "l_commitdate": "1993-06-24", "l_receiptdate": "1993-06-11", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "ely regular foxes haggle dari" }, { "l_orderkey": 3109i32, "l_partkey": 18i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 32.0d, "l_extendedprice": 29376.32d, "l_discount": 0.08d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-09-05", "l_commitdate": "1993-10-06", "l_receiptdate": "1993-09-18", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "ecial orbits are furiou" }, { "l_orderkey": 3175i32, "l_partkey": 18i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 47.0d, "l_extendedprice": 43146.47d, "l_discount": 0.08d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-08-08", "l_commitdate": "1994-09-10", "l_receiptdate": "1994-08-21", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": " final requests x-r" }, { "l_orderkey": 3584i32, "l_partkey": 18i32, "l_suppkey": 5i32, "l_linenumber": 5i32, "l_quantity": 39.0d, "l_extendedprice": 35802.39d, "l_discount": 0.09d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-20", "l_commitdate": "1997-10-31", "l_receiptdate": "1997-10-06", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "eposits. carefu" }, { "l_orderkey": 3777i32, "l_partkey": 18i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 35.0d, "l_extendedprice": 32130.35d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-05-25", "l_commitdate": "1994-05-26", "l_receiptdate": "1994-06-13", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "s. carefully express asymptotes accordi" }, { "l_orderkey": 4071i32, "l_partkey": 18i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 47.0d, "l_extendedprice": 43146.47d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-04", "l_commitdate": "1996-12-09", "l_receiptdate": "1996-11-16", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "ts cajole furiously along the" }, { "l_orderkey": 4263i32, "l_partkey": 18i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 9.0d, "l_extendedprice": 8262.09d, "l_discount": 0.08d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-04", "l_commitdate": "1998-04-29", "l_receiptdate": "1998-05-04", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "structions cajole quic" }, { "l_orderkey": 4833i32, "l_partkey": 18i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 26.0d, "l_extendedprice": 23868.26d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-13", "l_commitdate": "1996-07-12", "l_receiptdate": "1996-05-31", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "s packages. even gif" }, { "l_orderkey": 4960i32, "l_partkey": 18i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 36.0d, "l_extendedprice": 33048.36d, "l_discount": 0.01d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-03-06", "l_commitdate": "1995-05-04", "l_receiptdate": "1995-04-05", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "c, unusual accou" }, { "l_orderkey": 5186i32, "l_partkey": 18i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 28.0d, "l_extendedprice": 25704.28d, "l_discount": 0.09d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-05", "l_commitdate": "1996-10-27", "l_receiptdate": "1996-10-19", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "al decoys. blit" }, { "l_orderkey": 5699i32, "l_partkey": 18i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 48.0d, "l_extendedprice": 44064.48d, "l_discount": 0.1d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-11-23", "l_commitdate": "1992-10-20", "l_receiptdate": "1992-11-29", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "s. carefully regul" }, { "l_orderkey": 5829i32, "l_partkey": 18i32, "l_suppkey": 5i32, "l_linenumber": 6i32, "l_quantity": 17.0d, "l_extendedprice": 15606.17d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-10", "l_commitdate": "1997-03-29", "l_receiptdate": "1997-04-22", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "after the furiously ironic ideas no" } ] }
+{ "partkey": 19i32, "lines": [ { "l_orderkey": 69i32, "l_partkey": 19i32, "l_suppkey": 3i32, "l_linenumber": 6i32, "l_quantity": 23.0d, "l_extendedprice": 21137.23d, "l_discount": 0.05d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-10-03", "l_commitdate": "1994-08-06", "l_receiptdate": "1994-10-24", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "nding accounts ca" }, { "l_orderkey": 164i32, "l_partkey": 19i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 24.0d, "l_extendedprice": 22056.24d, "l_discount": 0.05d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-12-22", "l_commitdate": "1992-11-27", "l_receiptdate": "1993-01-06", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "side of the slyly unusual theodolites. f" }, { "l_orderkey": 230i32, "l_partkey": 19i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 8.0d, "l_extendedprice": 7352.08d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-11-03", "l_commitdate": "1994-01-20", "l_receiptdate": "1993-11-11", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "g the instructions. fluffil" }, { "l_orderkey": 325i32, "l_partkey": 19i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 35.0d, "l_extendedprice": 32165.35d, "l_discount": 0.07d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-12-06", "l_commitdate": "1994-01-03", "l_receiptdate": "1993-12-26", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "packages wa" }, { "l_orderkey": 418i32, "l_partkey": 19i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 31.0d, "l_extendedprice": 28489.31d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "F", "l_shipdate": "1995-06-05", "l_commitdate": "1995-06-18", "l_receiptdate": "1995-06-26", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "final theodolites. fluffil" }, { "l_orderkey": 481i32, "l_partkey": 19i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 17.0d, "l_extendedprice": 15623.17d, "l_discount": 0.07d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-10-21", "l_commitdate": "1992-12-09", "l_receiptdate": "1992-11-19", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": ". quickly final accounts among the " }, { "l_orderkey": 999i32, "l_partkey": 19i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 3.0d, "l_extendedprice": 2757.03d, "l_discount": 0.03d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-09-17", "l_commitdate": "1993-10-22", "l_receiptdate": "1993-10-13", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "nic, pending ideas. bl" }, { "l_orderkey": 1634i32, "l_partkey": 19i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 21.0d, "l_extendedprice": 19299.21d, "l_discount": 0.06d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-16", "l_commitdate": "1996-10-21", "l_receiptdate": "1996-11-27", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "y along the excuses." }, { "l_orderkey": 1636i32, "l_partkey": 19i32, "l_suppkey": 6i32, "l_linenumber": 5i32, "l_quantity": 22.0d, "l_extendedprice": 20218.22d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-22", "l_commitdate": "1997-08-18", "l_receiptdate": "1997-08-03", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "ular, regu" }, { "l_orderkey": 1888i32, "l_partkey": 19i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 9.0d, "l_extendedprice": 8271.09d, "l_discount": 0.01d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-02-09", "l_commitdate": "1994-01-22", "l_receiptdate": "1994-02-19", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": " packages are blithely. carefu" }, { "l_orderkey": 2023i32, "l_partkey": 19i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 25.0d, "l_extendedprice": 22975.25d, "l_discount": 0.1d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-07-19", "l_commitdate": "1992-07-07", "l_receiptdate": "1992-08-15", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": " wake furiously among the slyly final" }, { "l_orderkey": 2149i32, "l_partkey": 19i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 12.0d, "l_extendedprice": 11028.12d, "l_discount": 0.05d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-06-01", "l_commitdate": "1993-05-06", "l_receiptdate": "1993-06-11", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "riously bl" }, { "l_orderkey": 2304i32, "l_partkey": 19i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 48.0d, "l_extendedprice": 44112.48d, "l_discount": 0.0d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-02-12", "l_commitdate": "1994-02-16", "l_receiptdate": "1994-03-10", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": " deposits cajole blithely e" }, { "l_orderkey": 2437i32, "l_partkey": 19i32, "l_suppkey": 3i32, "l_linenumber": 6i32, "l_quantity": 10.0d, "l_extendedprice": 9190.1d, "l_discount": 0.1d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-05-20", "l_commitdate": "1993-06-23", "l_receiptdate": "1993-05-22", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "unts. even, ironic pl" }, { "l_orderkey": 2503i32, "l_partkey": 19i32, "l_suppkey": 6i32, "l_linenumber": 7i32, "l_quantity": 17.0d, "l_extendedprice": 15623.17d, "l_discount": 0.09d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-09-04", "l_commitdate": "1993-07-31", "l_receiptdate": "1993-09-23", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "c accounts haggle blithel" }, { "l_orderkey": 2694i32, "l_partkey": 19i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 15.0d, "l_extendedprice": 13785.15d, "l_discount": 0.08d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-30", "l_commitdate": "1996-05-01", "l_receiptdate": "1996-07-25", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "e blithely even platelets. special wa" }, { "l_orderkey": 2695i32, "l_partkey": 19i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 44.0d, "l_extendedprice": 40436.44d, "l_discount": 0.09d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-05", "l_commitdate": "1996-10-10", "l_receiptdate": "1996-11-01", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "ts. busy platelets boost" }, { "l_orderkey": 3044i32, "l_partkey": 19i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 47.0d, "l_extendedprice": 43193.47d, "l_discount": 0.09d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-24", "l_commitdate": "1996-06-22", "l_receiptdate": "1996-05-30", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "ly around the car" }, { "l_orderkey": 3207i32, "l_partkey": 19i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 32.0d, "l_extendedprice": 29408.32d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-17", "l_commitdate": "1998-04-26", "l_receiptdate": "1998-07-07", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "y across the slyly express foxes. bl" }, { "l_orderkey": 3425i32, "l_partkey": 19i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 37.0d, "l_extendedprice": 34003.37d, "l_discount": 0.04d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-10", "l_commitdate": "1996-05-10", "l_receiptdate": "1996-08-02", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "ngside of the furiously thin dol" }, { "l_orderkey": 3585i32, "l_partkey": 19i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 40.0d, "l_extendedprice": 36760.4d, "l_discount": 0.03d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-01-22", "l_commitdate": "1995-01-17", "l_receiptdate": "1995-02-07", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "elets affix. even asymptotes play care" }, { "l_orderkey": 3651i32, "l_partkey": 19i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 20.0d, "l_extendedprice": 18380.2d, "l_discount": 0.01d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-10", "l_commitdate": "1998-06-06", "l_receiptdate": "1998-06-23", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "tect quickly among the r" }, { "l_orderkey": 3719i32, "l_partkey": 19i32, "l_suppkey": 10i32, "l_linenumber": 7i32, "l_quantity": 16.0d, "l_extendedprice": 14704.16d, "l_discount": 0.1d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-02", "l_commitdate": "1997-03-18", "l_receiptdate": "1997-03-28", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": " express asymptotes. ir" }, { "l_orderkey": 3874i32, "l_partkey": 19i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 48.0d, "l_extendedprice": 44112.48d, "l_discount": 0.06d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-06-13", "l_commitdate": "1993-07-20", "l_receiptdate": "1993-06-20", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": " ideas throughout " }, { "l_orderkey": 4263i32, "l_partkey": 19i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 20.0d, "l_extendedprice": 18380.2d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-09", "l_commitdate": "1998-04-30", "l_receiptdate": "1998-05-04", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "uietly regular deposits. sly deposits w" }, { "l_orderkey": 4962i32, "l_partkey": 19i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 46.0d, "l_extendedprice": 42274.46d, "l_discount": 0.01d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-08-23", "l_commitdate": "1993-09-04", "l_receiptdate": "1993-08-27", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": " pinto beans grow about the sl" }, { "l_orderkey": 5127i32, "l_partkey": 19i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 33.0d, "l_extendedprice": 30327.33d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-25", "l_commitdate": "1997-03-02", "l_receiptdate": "1997-04-04", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": " bold deposits use carefully a" }, { "l_orderkey": 5344i32, "l_partkey": 19i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 6.0d, "l_extendedprice": 5514.06d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-04", "l_commitdate": "1998-09-03", "l_receiptdate": "1998-08-11", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "ithely about the pending plate" }, { "l_orderkey": 5538i32, "l_partkey": 19i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 38.0d, "l_extendedprice": 34922.38d, "l_discount": 0.03d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-03-17", "l_commitdate": "1994-02-11", "l_receiptdate": "1994-04-10", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "ular pinto beans. silent ideas above " } ] }
+{ "partkey": 20i32, "lines": [ { "l_orderkey": 3i32, "l_partkey": 20i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 49.0d, "l_extendedprice": 45080.98d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-11-09", "l_commitdate": "1993-12-20", "l_receiptdate": "1993-11-24", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": " unusual accounts. eve" }, { "l_orderkey": 326i32, "l_partkey": 20i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 38.0d, "l_extendedprice": 34960.76d, "l_discount": 0.02d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-12", "l_commitdate": "1995-08-23", "l_receiptdate": "1995-09-14", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "es sleep slyly. carefully regular inst" }, { "l_orderkey": 865i32, "l_partkey": 20i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 3.0d, "l_extendedprice": 2760.06d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-07-17", "l_commitdate": "1993-07-14", "l_receiptdate": "1993-08-01", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "fully regular the" }, { "l_orderkey": 1120i32, "l_partkey": 20i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 49.0d, "l_extendedprice": 45080.98d, "l_discount": 0.01d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-03", "l_commitdate": "1998-02-02", "l_receiptdate": "1998-01-09", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "heodolites. quick re" }, { "l_orderkey": 1127i32, "l_partkey": 20i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 29.0d, "l_extendedprice": 26680.58d, "l_discount": 0.09d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-20", "l_commitdate": "1995-11-21", "l_receiptdate": "1995-10-11", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "y. blithely r" }, { "l_orderkey": 1444i32, "l_partkey": 20i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 35.0d, "l_extendedprice": 32200.7d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-02-25", "l_commitdate": "1995-03-05", "l_receiptdate": "1995-03-24", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "aggle furiou" }, { "l_orderkey": 1504i32, "l_partkey": 20i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 7.0d, "l_extendedprice": 6440.14d, "l_discount": 0.02d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-11-20", "l_commitdate": "1992-11-23", "l_receiptdate": "1992-12-13", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "y final packa" }, { "l_orderkey": 1509i32, "l_partkey": 20i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 11.0d, "l_extendedprice": 10120.22d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-11-04", "l_commitdate": "1993-10-03", "l_receiptdate": "1993-11-14", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "ily ironic packages nod carefully." }, { "l_orderkey": 1985i32, "l_partkey": 20i32, "l_suppkey": 7i32, "l_linenumber": 6i32, "l_quantity": 2.0d, "l_extendedprice": 1840.04d, "l_discount": 0.02d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-11-25", "l_commitdate": "1994-10-09", "l_receiptdate": "1994-12-25", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": " silent inst" }, { "l_orderkey": 2023i32, "l_partkey": 20i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 22.0d, "l_extendedprice": 20240.44d, "l_discount": 0.04d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-06-15", "l_commitdate": "1992-07-13", "l_receiptdate": "1992-06-21", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "ronic attainments. " }, { "l_orderkey": 2273i32, "l_partkey": 20i32, "l_suppkey": 1i32, "l_linenumber": 7i32, "l_quantity": 7.0d, "l_extendedprice": 6440.14d, "l_discount": 0.05d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-19", "l_commitdate": "1997-01-22", "l_receiptdate": "1997-02-21", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "ts. furiou" }, { "l_orderkey": 2372i32, "l_partkey": 20i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 5.0d, "l_extendedprice": 4600.1d, "l_discount": 0.02d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-02-08", "l_commitdate": "1998-01-18", "l_receiptdate": "1998-03-02", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "ets against the " }, { "l_orderkey": 2625i32, "l_partkey": 20i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 42.0d, "l_extendedprice": 38640.84d, "l_discount": 0.02d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-10-18", "l_commitdate": "1992-11-17", "l_receiptdate": "1992-10-23", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": " even accounts haggle furiously" }, { "l_orderkey": 2694i32, "l_partkey": 20i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 12.0d, "l_extendedprice": 11040.24d, "l_discount": 0.0d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-04-24", "l_commitdate": "1996-04-22", "l_receiptdate": "1996-05-14", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "foxes atop the hockey pla" }, { "l_orderkey": 3202i32, "l_partkey": 20i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 22.0d, "l_extendedprice": 20240.44d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-02-16", "l_commitdate": "1993-02-16", "l_receiptdate": "1993-03-16", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "the express packages. fu" }, { "l_orderkey": 3330i32, "l_partkey": 20i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 49.0d, "l_extendedprice": 45080.98d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-03-02", "l_commitdate": "1995-03-03", "l_receiptdate": "1995-03-16", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "haggle carefully alongside of the bold r" }, { "l_orderkey": 3778i32, "l_partkey": 20i32, "l_suppkey": 7i32, "l_linenumber": 6i32, "l_quantity": 26.0d, "l_extendedprice": 23920.52d, "l_discount": 0.0d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-09-24", "l_commitdate": "1993-07-06", "l_receiptdate": "1993-10-22", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": " against the fluffily" }, { "l_orderkey": 3910i32, "l_partkey": 20i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 6.0d, "l_extendedprice": 5520.12d, "l_discount": 0.04d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-08", "l_commitdate": "1996-10-30", "l_receiptdate": "1996-12-31", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "ly sly platelets are fluffily slyly si" }, { "l_orderkey": 4193i32, "l_partkey": 20i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 50.0d, "l_extendedprice": 46001.0d, "l_discount": 0.01d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-04-28", "l_commitdate": "1994-03-23", "l_receiptdate": "1994-05-09", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": " beans. regular accounts cajole. de" }, { "l_orderkey": 4386i32, "l_partkey": 20i32, "l_suppkey": 4i32, "l_linenumber": 7i32, "l_quantity": 16.0d, "l_extendedprice": 14720.32d, "l_discount": 0.07d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-05", "l_commitdate": "1998-03-17", "l_receiptdate": "1998-06-03", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "e furiously final pint" }, { "l_orderkey": 4773i32, "l_partkey": 20i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 49.0d, "l_extendedprice": 45080.98d, "l_discount": 0.09d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-12", "l_commitdate": "1996-02-17", "l_receiptdate": "1996-02-05", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "ly pending theodolites cajole caref" }, { "l_orderkey": 5254i32, "l_partkey": 20i32, "l_suppkey": 7i32, "l_linenumber": 7i32, "l_quantity": 9.0d, "l_extendedprice": 8280.18d, "l_discount": 0.09d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-07-29", "l_commitdate": "1992-10-15", "l_receiptdate": "1992-08-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": " wake blithely fluff" }, { "l_orderkey": 5348i32, "l_partkey": 20i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 7.0d, "l_extendedprice": 6440.14d, "l_discount": 0.04d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-29", "l_commitdate": "1997-12-20", "l_receiptdate": "1998-02-10", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "even foxes. epitap" }, { "l_orderkey": 5444i32, "l_partkey": 20i32, "l_suppkey": 7i32, "l_linenumber": 6i32, "l_quantity": 21.0d, "l_extendedprice": 19320.42d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-03-30", "l_commitdate": "1995-05-01", "l_receiptdate": "1995-03-31", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "furiously even theodolites." }, { "l_orderkey": 5476i32, "l_partkey": 20i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 17.0d, "l_extendedprice": 15640.34d, "l_discount": 0.1d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-02-02", "l_commitdate": "1998-01-28", "l_receiptdate": "1998-02-14", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "ng dependencies until the f" }, { "l_orderkey": 5510i32, "l_partkey": 20i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 46.0d, "l_extendedprice": 42320.92d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-03-12", "l_commitdate": "1993-02-09", "l_receiptdate": "1993-03-19", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "silent packages cajole doggedly regular " }, { "l_orderkey": 5956i32, "l_partkey": 20i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 40.0d, "l_extendedprice": 36800.8d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-11", "l_commitdate": "1998-07-19", "l_receiptdate": "1998-06-21", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "final theodolites sleep carefully ironic c" } ] }
+{ "partkey": 21i32, "lines": [ { "l_orderkey": 39i32, "l_partkey": 21i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 32.0d, "l_extendedprice": 29472.64d, "l_discount": 0.07d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-02", "l_commitdate": "1996-12-19", "l_receiptdate": "1996-10-14", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "heodolites sleep silently pending foxes. ac" }, { "l_orderkey": 67i32, "l_partkey": 21i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 12.0d, "l_extendedprice": 11052.24d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-27", "l_commitdate": "1997-02-21", "l_receiptdate": "1997-02-22", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": " even packages cajole" }, { "l_orderkey": 160i32, "l_partkey": 21i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 34.0d, "l_extendedprice": 31314.68d, "l_discount": 0.01d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-31", "l_commitdate": "1997-03-13", "l_receiptdate": "1997-02-14", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "st sleep even gifts. dependencies along" }, { "l_orderkey": 481i32, "l_partkey": 21i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 19.0d, "l_extendedprice": 17499.38d, "l_discount": 0.08d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-01-09", "l_commitdate": "1992-11-27", "l_receiptdate": "1993-01-14", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "p blithely after t" }, { "l_orderkey": 549i32, "l_partkey": 21i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 18.0d, "l_extendedprice": 16578.36d, "l_discount": 0.09d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-07-31", "l_commitdate": "1992-09-11", "l_receiptdate": "1992-08-08", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "ely regular accounts above the " }, { "l_orderkey": 1024i32, "l_partkey": 21i32, "l_suppkey": 4i32, "l_linenumber": 5i32, "l_quantity": 49.0d, "l_extendedprice": 45129.98d, "l_discount": 0.02d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-02-27", "l_commitdate": "1998-03-10", "l_receiptdate": "1998-03-27", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": " carefully bold " }, { "l_orderkey": 1287i32, "l_partkey": 21i32, "l_suppkey": 10i32, "l_linenumber": 6i32, "l_quantity": 26.0d, "l_extendedprice": 23946.52d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-10-03", "l_commitdate": "1994-09-27", "l_receiptdate": "1994-10-30", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "egular foxes. theodolites nag along t" }, { "l_orderkey": 1604i32, "l_partkey": 21i32, "l_suppkey": 4i32, "l_linenumber": 5i32, "l_quantity": 23.0d, "l_extendedprice": 21183.46d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-10-11", "l_commitdate": "1993-08-30", "l_receiptdate": "1993-10-18", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "en requests. blithely fin" }, { "l_orderkey": 1667i32, "l_partkey": 21i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 6.0d, "l_extendedprice": 5526.12d, "l_discount": 0.04d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-07", "l_commitdate": "1997-11-16", "l_receiptdate": "1998-01-02", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "riously busy requests. blithely final a" }, { "l_orderkey": 1698i32, "l_partkey": 21i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 22.0d, "l_extendedprice": 20262.44d, "l_discount": 0.03d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-07", "l_commitdate": "1997-05-28", "l_receiptdate": "1997-08-24", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "oward the furiously iro" }, { "l_orderkey": 1827i32, "l_partkey": 21i32, "l_suppkey": 2i32, "l_linenumber": 6i32, "l_quantity": 7.0d, "l_extendedprice": 6447.14d, "l_discount": 0.1d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-28", "l_commitdate": "1996-08-07", "l_receiptdate": "1996-08-31", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "egular foxes" }, { "l_orderkey": 1921i32, "l_partkey": 21i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 9.0d, "l_extendedprice": 8289.18d, "l_discount": 0.08d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-02-01", "l_commitdate": "1994-03-20", "l_receiptdate": "1994-03-01", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "to beans. even excuses integrate specia" }, { "l_orderkey": 1985i32, "l_partkey": 21i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 50.0d, "l_extendedprice": 46051.0d, "l_discount": 0.04d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-09-30", "l_commitdate": "1994-10-18", "l_receiptdate": "1994-10-12", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "ate carefully. carefully" }, { "l_orderkey": 2468i32, "l_partkey": 21i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 43.0d, "l_extendedprice": 39603.86d, "l_discount": 0.0d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-17", "l_commitdate": "1997-08-21", "l_receiptdate": "1997-08-30", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "uriously eve" }, { "l_orderkey": 2530i32, "l_partkey": 21i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 9.0d, "l_extendedprice": 8289.18d, "l_discount": 0.09d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-05-10", "l_commitdate": "1994-04-30", "l_receiptdate": "1994-05-24", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "lyly ironic" }, { "l_orderkey": 2917i32, "l_partkey": 21i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 20.0d, "l_extendedprice": 18420.4d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-31", "l_commitdate": "1998-01-22", "l_receiptdate": "1998-01-12", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "slyly even ideas wa" }, { "l_orderkey": 2949i32, "l_partkey": 21i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 4.0d, "l_extendedprice": 3684.08d, "l_discount": 0.06d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-06-07", "l_commitdate": "1994-06-17", "l_receiptdate": "1994-07-04", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "gular pinto beans wake alongside of the reg" }, { "l_orderkey": 3303i32, "l_partkey": 21i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 15.0d, "l_extendedprice": 13815.3d, "l_discount": 0.04d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-29", "l_commitdate": "1998-01-22", "l_receiptdate": "1998-02-21", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": " detect sly" }, { "l_orderkey": 3331i32, "l_partkey": 21i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 38.0d, "l_extendedprice": 34998.76d, "l_discount": 0.06d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-07-24", "l_commitdate": "1993-06-22", "l_receiptdate": "1993-08-23", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "ymptotes haggle across the ca" }, { "l_orderkey": 3718i32, "l_partkey": 21i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 40.0d, "l_extendedprice": 36840.8d, "l_discount": 0.01d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-20", "l_commitdate": "1996-12-17", "l_receiptdate": "1996-12-03", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "out the express deposits" }, { "l_orderkey": 3841i32, "l_partkey": 21i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 31.0d, "l_extendedprice": 28551.62d, "l_discount": 0.09d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-01-24", "l_commitdate": "1994-11-25", "l_receiptdate": "1995-02-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "n theodolites shall promise carefully. qui" }, { "l_orderkey": 4064i32, "l_partkey": 21i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 12.0d, "l_extendedprice": 11052.24d, "l_discount": 0.08d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-08", "l_commitdate": "1996-12-18", "l_receiptdate": "1997-03-06", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "ding to the requests" }, { "l_orderkey": 4327i32, "l_partkey": 21i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 8.0d, "l_extendedprice": 7368.16d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "F", "l_shipdate": "1995-05-26", "l_commitdate": "1995-05-28", "l_receiptdate": "1995-06-19", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "eodolites cajole; unusual Tiresias" }, { "l_orderkey": 4581i32, "l_partkey": 21i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 46.0d, "l_extendedprice": 42366.92d, "l_discount": 0.04d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-09-09", "l_commitdate": "1992-11-27", "l_receiptdate": "1992-09-26", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "nag toward the carefully final accounts. " }, { "l_orderkey": 4642i32, "l_partkey": 21i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 10.0d, "l_extendedprice": 9210.2d, "l_discount": 0.04d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-04-16", "l_commitdate": "1995-04-28", "l_receiptdate": "1995-04-24", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "urts. even deposits nag beneath " }, { "l_orderkey": 5573i32, "l_partkey": 21i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 32.0d, "l_extendedprice": 29472.64d, "l_discount": 0.05d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-30", "l_commitdate": "1996-10-25", "l_receiptdate": "1996-10-15", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "egular depths haggl" } ] }
+{ "partkey": 22i32, "lines": [ { "l_orderkey": 67i32, "l_partkey": 22i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 4.0d, "l_extendedprice": 3688.08d, "l_discount": 0.09d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-17", "l_commitdate": "1997-01-31", "l_receiptdate": "1997-04-20", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": " cajole thinly expres" }, { "l_orderkey": 901i32, "l_partkey": 22i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 36.0d, "l_extendedprice": 33192.72d, "l_discount": 0.01d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-11", "l_commitdate": "1998-10-09", "l_receiptdate": "1998-08-27", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": ". accounts are care" }, { "l_orderkey": 966i32, "l_partkey": 22i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 42.0d, "l_extendedprice": 38724.84d, "l_discount": 0.06d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-15", "l_commitdate": "1998-06-08", "l_receiptdate": "1998-07-05", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "sly ironic asymptotes hagg" }, { "l_orderkey": 1090i32, "l_partkey": 22i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 5.0d, "l_extendedprice": 4610.1d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-02-19", "l_commitdate": "1997-12-25", "l_receiptdate": "1998-02-24", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "s above the " }, { "l_orderkey": 1285i32, "l_partkey": 22i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 12.0d, "l_extendedprice": 11064.24d, "l_discount": 0.0d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-06-21", "l_commitdate": "1992-08-16", "l_receiptdate": "1992-07-12", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "ss foxes. blithe theodolites cajole slyly" }, { "l_orderkey": 1348i32, "l_partkey": 22i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 41.0d, "l_extendedprice": 37802.82d, "l_discount": 0.07d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-02", "l_commitdate": "1998-05-26", "l_receiptdate": "1998-05-09", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "kages. platelets about the ca" }, { "l_orderkey": 1447i32, "l_partkey": 22i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 8.0d, "l_extendedprice": 7376.16d, "l_discount": 0.09d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-11-20", "l_commitdate": "1993-01-12", "l_receiptdate": "1992-12-14", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "ost carefully " }, { "l_orderkey": 1510i32, "l_partkey": 22i32, "l_suppkey": 1i32, "l_linenumber": 7i32, "l_quantity": 50.0d, "l_extendedprice": 46101.0d, "l_discount": 0.04d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-01", "l_commitdate": "1996-10-17", "l_receiptdate": "1996-11-28", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "even packages. carefully regular fo" }, { "l_orderkey": 1637i32, "l_partkey": 22i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 10.0d, "l_extendedprice": 9220.2d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-02-21", "l_commitdate": "1995-03-17", "l_receiptdate": "1995-03-11", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "uriously? blithely even sauternes wake. " }, { "l_orderkey": 1667i32, "l_partkey": 22i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 29.0d, "l_extendedprice": 26738.58d, "l_discount": 0.06d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-10-15", "l_commitdate": "1997-11-09", "l_receiptdate": "1997-11-11", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "l accounts. furiously final courts h" }, { "l_orderkey": 2566i32, "l_partkey": 22i32, "l_suppkey": 3i32, "l_linenumber": 5i32, "l_quantity": 9.0d, "l_extendedprice": 8298.18d, "l_discount": 0.04d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-12-14", "l_commitdate": "1992-12-28", "l_receiptdate": "1992-12-16", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "blithely bold accounts? quickl" }, { "l_orderkey": 2626i32, "l_partkey": 22i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 45.0d, "l_extendedprice": 41490.9d, "l_discount": 0.09d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-22", "l_commitdate": "1995-11-01", "l_receiptdate": "1995-11-23", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "deposits wake blithely according to " }, { "l_orderkey": 2757i32, "l_partkey": 22i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 12.0d, "l_extendedprice": 11064.24d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-01", "l_commitdate": "1995-09-04", "l_receiptdate": "1995-08-08", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": " regular, eve" }, { "l_orderkey": 2913i32, "l_partkey": 22i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 22.0d, "l_extendedprice": 20284.44d, "l_discount": 0.1d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-18", "l_commitdate": "1997-08-11", "l_receiptdate": "1997-10-02", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "riously pending realms. blithely even pac" }, { "l_orderkey": 3073i32, "l_partkey": 22i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 47.0d, "l_extendedprice": 43334.94d, "l_discount": 0.09d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-03-26", "l_commitdate": "1994-02-12", "l_receiptdate": "1994-04-21", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "eposits. fluffily" }, { "l_orderkey": 3362i32, "l_partkey": 22i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 14.0d, "l_extendedprice": 12908.28d, "l_discount": 0.06d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-01", "l_commitdate": "1995-09-06", "l_receiptdate": "1995-08-22", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "even Tires" }, { "l_orderkey": 3492i32, "l_partkey": 22i32, "l_suppkey": 7i32, "l_linenumber": 6i32, "l_quantity": 47.0d, "l_extendedprice": 43334.94d, "l_discount": 0.04d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-12-12", "l_commitdate": "1995-01-18", "l_receiptdate": "1994-12-26", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "ronic instructions u" }, { "l_orderkey": 3553i32, "l_partkey": 22i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 18.0d, "l_extendedprice": 16596.36d, "l_discount": 0.04d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-07-03", "l_commitdate": "1994-06-30", "l_receiptdate": "1994-07-07", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": ". quickly ironic" }, { "l_orderkey": 3719i32, "l_partkey": 22i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 35.0d, "l_extendedprice": 32270.7d, "l_discount": 0.06d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-11", "l_commitdate": "1997-04-03", "l_receiptdate": "1997-06-15", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "ly foxes. pending braids haggle furio" }, { "l_orderkey": 3970i32, "l_partkey": 22i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 34.0d, "l_extendedprice": 31348.68d, "l_discount": 0.05d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-06-25", "l_commitdate": "1992-05-23", "l_receiptdate": "1992-07-12", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "y final gifts are. carefully pe" }, { "l_orderkey": 3974i32, "l_partkey": 22i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 47.0d, "l_extendedprice": 43334.94d, "l_discount": 0.1d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-03", "l_commitdate": "1996-05-08", "l_receiptdate": "1996-06-28", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "dencies above the re" }, { "l_orderkey": 4418i32, "l_partkey": 22i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 14.0d, "l_extendedprice": 12908.28d, "l_discount": 0.03d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-05-20", "l_commitdate": "1993-06-18", "l_receiptdate": "1993-06-05", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": " blithely regular requests. blith" }, { "l_orderkey": 4551i32, "l_partkey": 22i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 22.0d, "l_extendedprice": 20284.44d, "l_discount": 0.08d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-12", "l_commitdate": "1996-03-17", "l_receiptdate": "1996-05-29", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "ly ironic reques" }, { "l_orderkey": 4678i32, "l_partkey": 22i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 23.0d, "l_extendedprice": 21206.46d, "l_discount": 0.06d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-09-03", "l_commitdate": "1998-09-20", "l_receiptdate": "1998-09-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "ily sly deposi" }, { "l_orderkey": 4803i32, "l_partkey": 22i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 24.0d, "l_extendedprice": 22128.48d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-02-24", "l_commitdate": "1996-04-02", "l_receiptdate": "1996-02-28", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "t blithely slyly special decoys. " }, { "l_orderkey": 4997i32, "l_partkey": 22i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 46.0d, "l_extendedprice": 42412.92d, "l_discount": 0.0d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-28", "l_commitdate": "1998-06-04", "l_receiptdate": "1998-05-08", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "ecial courts are carefully" }, { "l_orderkey": 5090i32, "l_partkey": 22i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 22.0d, "l_extendedprice": 20284.44d, "l_discount": 0.07d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-10", "l_commitdate": "1997-05-25", "l_receiptdate": "1997-05-24", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "ets integrate ironic, regul" }, { "l_orderkey": 5572i32, "l_partkey": 22i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 24.0d, "l_extendedprice": 22128.48d, "l_discount": 0.08d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-10-30", "l_commitdate": "1994-10-02", "l_receiptdate": "1994-11-27", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "ests cajole. evenly ironic exc" } ] }
+{ "partkey": 23i32, "lines": [ { "l_orderkey": 37i32, "l_partkey": 23i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 40.0d, "l_extendedprice": 36920.8d, "l_discount": 0.09d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-07-21", "l_commitdate": "1992-08-01", "l_receiptdate": "1992-08-15", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "luffily regular requests. slyly final acco" }, { "l_orderkey": 512i32, "l_partkey": 23i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 37.0d, "l_extendedprice": 34151.74d, "l_discount": 0.01d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-06-20", "l_commitdate": "1995-07-05", "l_receiptdate": "1995-07-16", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "nic depths cajole? blithely b" }, { "l_orderkey": 708i32, "l_partkey": 23i32, "l_suppkey": 6i32, "l_linenumber": 6i32, "l_quantity": 7.0d, "l_extendedprice": 6461.14d, "l_discount": 0.1d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-16", "l_commitdate": "1998-08-15", "l_receiptdate": "1998-09-10", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "lly express ac" }, { "l_orderkey": 1025i32, "l_partkey": 23i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 25.0d, "l_extendedprice": 23075.5d, "l_discount": 0.06d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-05-29", "l_commitdate": "1995-06-21", "l_receiptdate": "1995-06-13", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "xpress foxes. furiousl" }, { "l_orderkey": 1282i32, "l_partkey": 23i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 14.0d, "l_extendedprice": 12922.28d, "l_discount": 0.04d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-06-29", "l_commitdate": "1992-04-05", "l_receiptdate": "1992-07-21", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "ecial deposit" }, { "l_orderkey": 1382i32, "l_partkey": 23i32, "l_suppkey": 4i32, "l_linenumber": 7i32, "l_quantity": 5.0d, "l_extendedprice": 4615.1d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-10-02", "l_commitdate": "1993-09-29", "l_receiptdate": "1993-10-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "ter the carefully final excuses. blit" }, { "l_orderkey": 1412i32, "l_partkey": 23i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 2.0d, "l_extendedprice": 1846.04d, "l_discount": 0.1d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-04-01", "l_commitdate": "1993-05-03", "l_receiptdate": "1993-04-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "s among the requests are a" }, { "l_orderkey": 1767i32, "l_partkey": 23i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 50.0d, "l_extendedprice": 46151.0d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-05-29", "l_commitdate": "1995-04-14", "l_receiptdate": "1995-06-15", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "y unusual foxe" }, { "l_orderkey": 1856i32, "l_partkey": 23i32, "l_suppkey": 6i32, "l_linenumber": 6i32, "l_quantity": 36.0d, "l_extendedprice": 33228.72d, "l_discount": 0.03d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-06-19", "l_commitdate": "1992-05-12", "l_receiptdate": "1992-06-28", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "ly even foxes kindle blithely even realm" }, { "l_orderkey": 2209i32, "l_partkey": 23i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 40.0d, "l_extendedprice": 36920.8d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-11-01", "l_commitdate": "1992-09-25", "l_receiptdate": "1992-11-08", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "ully special sheaves serve" }, { "l_orderkey": 2496i32, "l_partkey": 23i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 39.0d, "l_extendedprice": 35997.78d, "l_discount": 0.03d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-03-23", "l_commitdate": "1994-02-18", "l_receiptdate": "1994-04-10", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "arefully special dependencies abo" }, { "l_orderkey": 2566i32, "l_partkey": 23i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 18.0d, "l_extendedprice": 16614.36d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-11-16", "l_commitdate": "1992-12-24", "l_receiptdate": "1992-12-16", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": " braids according t" }, { "l_orderkey": 2598i32, "l_partkey": 23i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 19.0d, "l_extendedprice": 17537.38d, "l_discount": 0.02d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-04-09", "l_commitdate": "1996-05-30", "l_receiptdate": "1996-04-17", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "nic packages. even accounts" }, { "l_orderkey": 2758i32, "l_partkey": 23i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 17.0d, "l_extendedprice": 15691.34d, "l_discount": 0.1d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-09-25", "l_commitdate": "1998-10-03", "l_receiptdate": "1998-10-25", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": " accounts! qui" }, { "l_orderkey": 2759i32, "l_partkey": 23i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 31.0d, "l_extendedprice": 28613.62d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-01-11", "l_commitdate": "1994-01-15", "l_receiptdate": "1994-01-23", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "ithely aft" }, { "l_orderkey": 2786i32, "l_partkey": 23i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 24.0d, "l_extendedprice": 22152.48d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-04-04", "l_commitdate": "1992-06-09", "l_receiptdate": "1992-05-02", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "ans. slyly unusual platelets detect. unus" }, { "l_orderkey": 2789i32, "l_partkey": 23i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 41.0d, "l_extendedprice": 37843.82d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-20", "l_commitdate": "1998-05-15", "l_receiptdate": "1998-03-21", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "d packages-- fluffily specia" }, { "l_orderkey": 4609i32, "l_partkey": 23i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 46.0d, "l_extendedprice": 42458.92d, "l_discount": 0.05d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-11", "l_commitdate": "1997-01-16", "l_receiptdate": "1997-03-07", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "r foxes. fluffily ironic ideas ha" }, { "l_orderkey": 4640i32, "l_partkey": 23i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 36.0d, "l_extendedprice": 33228.72d, "l_discount": 0.06d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-03", "l_commitdate": "1996-03-09", "l_receiptdate": "1996-01-11", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "iously furious accounts boost. carefully" }, { "l_orderkey": 4834i32, "l_partkey": 23i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 34.0d, "l_extendedprice": 31382.68d, "l_discount": 0.03d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-09", "l_commitdate": "1996-11-26", "l_receiptdate": "1996-12-10", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "ounts haggle bo" }, { "l_orderkey": 4896i32, "l_partkey": 23i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 5.0d, "l_extendedprice": 4615.1d, "l_discount": 0.08d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-12-02", "l_commitdate": "1992-11-11", "l_receiptdate": "1992-12-19", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "eposits hang carefully. sly" }, { "l_orderkey": 5347i32, "l_partkey": 23i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 34.0d, "l_extendedprice": 31382.68d, "l_discount": 0.06d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-05-18", "l_commitdate": "1995-04-04", "l_receiptdate": "1995-06-02", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": " pending deposits. fluffily regular senti" }, { "l_orderkey": 5987i32, "l_partkey": 23i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 1.0d, "l_extendedprice": 923.02d, "l_discount": 0.01d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-13", "l_commitdate": "1996-10-29", "l_receiptdate": "1996-09-21", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "refully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully final excuses haggle furiously agrefully f" } ] }
+{ "partkey": 24i32, "lines": [ { "l_orderkey": 259i32, "l_partkey": 24i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 42.0d, "l_extendedprice": 38808.84d, "l_discount": 0.09d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-10-20", "l_commitdate": "1993-11-18", "l_receiptdate": "1993-11-12", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "the slyly ironic pinto beans. fi" }, { "l_orderkey": 263i32, "l_partkey": 24i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 22.0d, "l_extendedprice": 20328.44d, "l_discount": 0.06d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-08-24", "l_commitdate": "1994-06-20", "l_receiptdate": "1994-09-09", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "efully express fo" }, { "l_orderkey": 517i32, "l_partkey": 24i32, "l_suppkey": 3i32, "l_linenumber": 5i32, "l_quantity": 23.0d, "l_extendedprice": 21252.46d, "l_discount": 0.0d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-19", "l_commitdate": "1997-05-07", "l_receiptdate": "1997-05-12", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": " kindle. furiously bold requests mus" }, { "l_orderkey": 549i32, "l_partkey": 24i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 38.0d, "l_extendedprice": 35112.76d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-08-23", "l_commitdate": "1992-08-12", "l_receiptdate": "1992-08-25", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "eposits. carefully regular depos" }, { "l_orderkey": 551i32, "l_partkey": 24i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 8.0d, "l_extendedprice": 7392.16d, "l_discount": 0.08d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-29", "l_commitdate": "1995-07-18", "l_receiptdate": "1995-08-02", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": " wake quickly slyly pending platel" }, { "l_orderkey": 677i32, "l_partkey": 24i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 46.0d, "l_extendedprice": 42504.92d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-12-02", "l_commitdate": "1994-02-12", "l_receiptdate": "1993-12-06", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "ng theodolites. furiously unusual theodo" }, { "l_orderkey": 995i32, "l_partkey": 24i32, "l_suppkey": 5i32, "l_linenumber": 5i32, "l_quantity": 18.0d, "l_extendedprice": 16632.36d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-03", "l_commitdate": "1995-07-29", "l_receiptdate": "1995-07-22", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": " even accounts unwind c" }, { "l_orderkey": 1572i32, "l_partkey": 24i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 41.0d, "l_extendedprice": 37884.82d, "l_discount": 0.02d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-16", "l_commitdate": "1996-04-09", "l_receiptdate": "1996-05-28", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": ". pinto beans alongside" }, { "l_orderkey": 1733i32, "l_partkey": 24i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 16.0d, "l_extendedprice": 14784.32d, "l_discount": 0.0d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-28", "l_commitdate": "1996-07-25", "l_receiptdate": "1996-09-27", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "slyly express deposits sleep abo" }, { "l_orderkey": 1761i32, "l_partkey": 24i32, "l_suppkey": 7i32, "l_linenumber": 6i32, "l_quantity": 12.0d, "l_extendedprice": 11088.24d, "l_discount": 0.01d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-04-16", "l_commitdate": "1994-03-08", "l_receiptdate": "1994-04-21", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": " sleep furiously. deposits are acco" }, { "l_orderkey": 1861i32, "l_partkey": 24i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 23.0d, "l_extendedprice": 21252.46d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-04-09", "l_commitdate": "1994-03-04", "l_receiptdate": "1994-04-11", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "in packages sleep silent dolphins; sly" }, { "l_orderkey": 2083i32, "l_partkey": 24i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 37.0d, "l_extendedprice": 34188.74d, "l_discount": 0.07d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-09-07", "l_commitdate": "1993-09-30", "l_receiptdate": "1993-09-18", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "ng the special foxes wake packages. f" }, { "l_orderkey": 2369i32, "l_partkey": 24i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 30.0d, "l_extendedprice": 27720.6d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-23", "l_commitdate": "1997-02-12", "l_receiptdate": "1997-05-21", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "pecial deposits sleep. blithely unusual w" }, { "l_orderkey": 2496i32, "l_partkey": 24i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 30.0d, "l_extendedprice": 27720.6d, "l_discount": 0.04d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-01-27", "l_commitdate": "1994-03-11", "l_receiptdate": "1994-01-31", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "ake. ironic foxes cajole quickly. fu" }, { "l_orderkey": 2595i32, "l_partkey": 24i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 19.0d, "l_extendedprice": 17556.38d, "l_discount": 0.01d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-23", "l_commitdate": "1996-03-02", "l_receiptdate": "1996-01-17", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "ns are neve" }, { "l_orderkey": 2752i32, "l_partkey": 24i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 40.0d, "l_extendedprice": 36960.8d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-01-24", "l_commitdate": "1994-01-18", "l_receiptdate": "1994-02-22", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "into beans are after the sly" }, { "l_orderkey": 2755i32, "l_partkey": 24i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 11.0d, "l_extendedprice": 10164.22d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-04-12", "l_commitdate": "1992-05-07", "l_receiptdate": "1992-04-21", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "egular excuses sleep carefully." }, { "l_orderkey": 3008i32, "l_partkey": 24i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 40.0d, "l_extendedprice": 36960.8d, "l_discount": 0.01d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-18", "l_commitdate": "1996-01-06", "l_receiptdate": "1996-01-11", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "esias. theodolites detect blithely " }, { "l_orderkey": 3010i32, "l_partkey": 24i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 28.0d, "l_extendedprice": 25872.56d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-05", "l_commitdate": "1996-03-28", "l_receiptdate": "1996-04-03", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "ake carefully carefully even request" }, { "l_orderkey": 3079i32, "l_partkey": 24i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 2.0d, "l_extendedprice": 1848.04d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-05", "l_commitdate": "1997-11-17", "l_receiptdate": "1998-01-28", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "ly busy requests believ" }, { "l_orderkey": 3584i32, "l_partkey": 24i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 6.0d, "l_extendedprice": 5544.12d, "l_discount": 0.03d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-10-28", "l_commitdate": "1997-11-09", "l_receiptdate": "1997-11-24", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "deposits across the" }, { "l_orderkey": 3623i32, "l_partkey": 24i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 21.0d, "l_extendedprice": 19404.42d, "l_discount": 0.02d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-19", "l_commitdate": "1997-03-18", "l_receiptdate": "1997-01-24", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "ress ideas are furio" }, { "l_orderkey": 3845i32, "l_partkey": 24i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 16.0d, "l_extendedprice": 14784.32d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-08-08", "l_commitdate": "1992-06-08", "l_receiptdate": "1992-08-26", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "ely bold ideas use. ex" }, { "l_orderkey": 4006i32, "l_partkey": 24i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 15.0d, "l_extendedprice": 13860.3d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-02-23", "l_commitdate": "1995-04-02", "l_receiptdate": "1995-02-25", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "n deposits cajole slyl" }, { "l_orderkey": 4133i32, "l_partkey": 24i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 35.0d, "l_extendedprice": 32340.7d, "l_discount": 0.02d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-11-25", "l_commitdate": "1992-09-15", "l_receiptdate": "1992-12-25", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "g above the quickly bold packages. ev" }, { "l_orderkey": 4166i32, "l_partkey": 24i32, "l_suppkey": 5i32, "l_linenumber": 7i32, "l_quantity": 26.0d, "l_extendedprice": 24024.52d, "l_discount": 0.09d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-03-17", "l_commitdate": "1993-05-09", "l_receiptdate": "1993-03-25", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "lar dependencies. s" }, { "l_orderkey": 4192i32, "l_partkey": 24i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 32.0d, "l_extendedprice": 29568.64d, "l_discount": 0.09d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-23", "l_commitdate": "1998-06-25", "l_receiptdate": "1998-07-17", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "ounts are fluffily slyly bold req" }, { "l_orderkey": 4224i32, "l_partkey": 24i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 4.0d, "l_extendedprice": 3696.08d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-07", "l_commitdate": "1997-09-05", "l_receiptdate": "1997-09-25", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": " even dinos. carefull" }, { "l_orderkey": 4260i32, "l_partkey": 24i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 21.0d, "l_extendedprice": 19404.42d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-08-06", "l_commitdate": "1992-06-18", "l_receiptdate": "1992-08-22", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "al, pending accounts must" }, { "l_orderkey": 4261i32, "l_partkey": 24i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 28.0d, "l_extendedprice": 25872.56d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-10-08", "l_commitdate": "1992-12-23", "l_receiptdate": "1992-10-11", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "packages. fluffily i" }, { "l_orderkey": 4481i32, "l_partkey": 24i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 50.0d, "l_extendedprice": 46201.0d, "l_discount": 0.02d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-22", "l_commitdate": "1996-05-13", "l_receiptdate": "1996-08-14", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "ar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages. regulaar packages." }, { "l_orderkey": 5061i32, "l_partkey": 24i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 26.0d, "l_extendedprice": 24024.52d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-11-07", "l_commitdate": "1993-09-13", "l_receiptdate": "1993-11-13", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": " cajole slyly. carefully spe" }, { "l_orderkey": 5126i32, "l_partkey": 24i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 33.0d, "l_extendedprice": 30492.66d, "l_discount": 0.02d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-02-04", "l_commitdate": "1992-12-23", "l_receiptdate": "1993-02-14", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "ipliers promise furiously whithout the " }, { "l_orderkey": 5510i32, "l_partkey": 24i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 29.0d, "l_extendedprice": 26796.58d, "l_discount": 0.09d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-02-28", "l_commitdate": "1993-03-28", "l_receiptdate": "1993-03-12", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "lithely fluffily ironic req" }, { "l_orderkey": 5572i32, "l_partkey": 24i32, "l_suppkey": 3i32, "l_linenumber": 5i32, "l_quantity": 34.0d, "l_extendedprice": 31416.68d, "l_discount": 0.1d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-10-22", "l_commitdate": "1994-08-16", "l_receiptdate": "1994-11-08", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "asymptotes integrate. s" } ] }
+{ "partkey": 25i32, "lines": [ { "l_orderkey": 1i32, "l_partkey": 25i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 24.0d, "l_extendedprice": 22200.48d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-30", "l_commitdate": "1996-03-14", "l_receiptdate": "1996-04-01", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": " pending foxes. slyly re" }, { "l_orderkey": 516i32, "l_partkey": 25i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 11.0d, "l_extendedprice": 10175.22d, "l_discount": 0.01d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-02", "l_commitdate": "1998-05-23", "l_receiptdate": "1998-05-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "ongside of the blithely final reque" }, { "l_orderkey": 768i32, "l_partkey": 25i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 37.0d, "l_extendedprice": 34225.74d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-02", "l_commitdate": "1996-09-23", "l_receiptdate": "1996-10-14", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "ending requests across the quickly" }, { "l_orderkey": 868i32, "l_partkey": 25i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 27.0d, "l_extendedprice": 24975.54d, "l_discount": 0.04d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-08-01", "l_commitdate": "1992-08-25", "l_receiptdate": "1992-08-12", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "oss the fluffily unusual pinto " }, { "l_orderkey": 1441i32, "l_partkey": 25i32, "l_suppkey": 4i32, "l_linenumber": 6i32, "l_quantity": 15.0d, "l_extendedprice": 13875.3d, "l_discount": 0.09d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-21", "l_commitdate": "1997-05-06", "l_receiptdate": "1997-06-04", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": " dependencies-- cour" }, { "l_orderkey": 1508i32, "l_partkey": 25i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 20.0d, "l_extendedprice": 18500.4d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-17", "l_commitdate": "1998-06-11", "l_receiptdate": "1998-05-17", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "nic platelets. carefully final fra" }, { "l_orderkey": 1540i32, "l_partkey": 25i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 6.0d, "l_extendedprice": 5550.12d, "l_discount": 0.09d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-08-28", "l_commitdate": "1992-09-17", "l_receiptdate": "1992-09-14", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "ing to the slyly express asymptote" }, { "l_orderkey": 1763i32, "l_partkey": 25i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 16.0d, "l_extendedprice": 14800.32d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-12", "l_commitdate": "1996-12-04", "l_receiptdate": "1996-12-25", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "ously pending asymptotes a" }, { "l_orderkey": 1767i32, "l_partkey": 25i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 32.0d, "l_extendedprice": 29600.64d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-05-22", "l_commitdate": "1995-05-14", "l_receiptdate": "1995-05-23", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "to the bravely ironic requests i" }, { "l_orderkey": 1793i32, "l_partkey": 25i32, "l_suppkey": 6i32, "l_linenumber": 5i32, "l_quantity": 42.0d, "l_extendedprice": 38850.84d, "l_discount": 0.03d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-10-13", "l_commitdate": "1992-10-02", "l_receiptdate": "1992-11-06", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "uctions sleep carefully special, fl" }, { "l_orderkey": 1830i32, "l_partkey": 25i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 9.0d, "l_extendedprice": 8325.18d, "l_discount": 0.05d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-03-09", "l_commitdate": "1995-05-24", "l_receiptdate": "1995-03-14", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "st furiously among " }, { "l_orderkey": 2051i32, "l_partkey": 25i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 43.0d, "l_extendedprice": 39775.86d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-04-22", "l_commitdate": "1996-06-16", "l_receiptdate": "1996-04-28", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "ounts sleep fluffily even requ" }, { "l_orderkey": 2146i32, "l_partkey": 25i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 14.0d, "l_extendedprice": 12950.28d, "l_discount": 0.03d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-09-16", "l_commitdate": "1992-10-16", "l_receiptdate": "1992-09-20", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "ecial, express a" }, { "l_orderkey": 2146i32, "l_partkey": 25i32, "l_suppkey": 6i32, "l_linenumber": 7i32, "l_quantity": 39.0d, "l_extendedprice": 36075.78d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-01-05", "l_commitdate": "1992-11-06", "l_receiptdate": "1993-01-14", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "uickly regular excuses detect. regular c" }, { "l_orderkey": 2561i32, "l_partkey": 25i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 32.0d, "l_extendedprice": 29600.64d, "l_discount": 0.02d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-05", "l_commitdate": "1997-12-28", "l_receiptdate": "1998-01-26", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "bold packages wake slyly. slyly" }, { "l_orderkey": 2688i32, "l_partkey": 25i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 3.0d, "l_extendedprice": 2775.06d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-02-04", "l_commitdate": "1992-03-18", "l_receiptdate": "1992-02-24", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "e fluffily " }, { "l_orderkey": 2980i32, "l_partkey": 25i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 49.0d, "l_extendedprice": 45325.98d, "l_discount": 0.03d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-04", "l_commitdate": "1996-12-04", "l_receiptdate": "1996-10-06", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "hy packages sleep quic" }, { "l_orderkey": 3105i32, "l_partkey": 25i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 48.0d, "l_extendedprice": 44400.96d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-28", "l_commitdate": "1997-01-31", "l_receiptdate": "1997-03-18", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "ending platelets wake carefully ironic inst" }, { "l_orderkey": 3265i32, "l_partkey": 25i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 8.0d, "l_extendedprice": 7400.16d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-09-01", "l_commitdate": "1992-09-12", "l_receiptdate": "1992-09-27", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "thely ironic requests sleep slyly-- i" }, { "l_orderkey": 3523i32, "l_partkey": 25i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 15.0d, "l_extendedprice": 13875.3d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-26", "l_commitdate": "1998-05-22", "l_receiptdate": "1998-07-24", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "se slyly pending, sp" }, { "l_orderkey": 3585i32, "l_partkey": 25i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 13.0d, "l_extendedprice": 12025.26d, "l_discount": 0.06d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-03-15", "l_commitdate": "1995-01-22", "l_receiptdate": "1995-03-17", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "ccording to the foxes. slyly iro" }, { "l_orderkey": 4709i32, "l_partkey": 25i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 25.0d, "l_extendedprice": 23125.5d, "l_discount": 0.03d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-02-21", "l_commitdate": "1996-02-11", "l_receiptdate": "1996-03-17", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "deposits grow. fluffily unusual accounts " }, { "l_orderkey": 5060i32, "l_partkey": 25i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 27.0d, "l_extendedprice": 24975.54d, "l_discount": 0.1d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-07-23", "l_commitdate": "1992-09-05", "l_receiptdate": "1992-08-07", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironic s. ironi" }, { "l_orderkey": 5185i32, "l_partkey": 25i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 32.0d, "l_extendedprice": 29600.64d, "l_discount": 0.06d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-17", "l_commitdate": "1997-09-30", "l_receiptdate": "1997-08-24", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "ackages. slyly even requests" }, { "l_orderkey": 5505i32, "l_partkey": 25i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 43.0d, "l_extendedprice": 39775.86d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-30", "l_commitdate": "1997-11-28", "l_receiptdate": "1998-01-09", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "y alongside of the special requests." }, { "l_orderkey": 5762i32, "l_partkey": 25i32, "l_suppkey": 6i32, "l_linenumber": 5i32, "l_quantity": 28.0d, "l_extendedprice": 25900.56d, "l_discount": 0.02d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-22", "l_commitdate": "1997-03-25", "l_receiptdate": "1997-02-24", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "ic foxes among the blithely qui" } ] }
+{ "partkey": 26i32, "lines": [ { "l_orderkey": 453i32, "l_partkey": 26i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 32.0d, "l_extendedprice": 29632.64d, "l_discount": 0.04d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-15", "l_commitdate": "1997-06-27", "l_receiptdate": "1997-07-18", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "s. fluffily bold packages cajole. unu" }, { "l_orderkey": 577i32, "l_partkey": 26i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 25.0d, "l_extendedprice": 23150.5d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-04-09", "l_commitdate": "1995-02-20", "l_receiptdate": "1995-05-09", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "ve slyly of the frets. careful" }, { "l_orderkey": 801i32, "l_partkey": 26i32, "l_suppkey": 5i32, "l_linenumber": 7i32, "l_quantity": 11.0d, "l_extendedprice": 10186.22d, "l_discount": 0.01d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-05-09", "l_commitdate": "1992-04-19", "l_receiptdate": "1992-05-15", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "y special pinto beans cajole " }, { "l_orderkey": 961i32, "l_partkey": 26i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 38.0d, "l_extendedprice": 35188.76d, "l_discount": 0.03d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-21", "l_commitdate": "1995-07-19", "l_receiptdate": "1995-08-27", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "he blithely special requests. furiousl" }, { "l_orderkey": 1028i32, "l_partkey": 26i32, "l_suppkey": 1i32, "l_linenumber": 6i32, "l_quantity": 39.0d, "l_extendedprice": 36114.78d, "l_discount": 0.03d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-02-27", "l_commitdate": "1994-02-16", "l_receiptdate": "1994-03-02", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "c theodoli" }, { "l_orderkey": 1089i32, "l_partkey": 26i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 23.0d, "l_extendedprice": 21298.46d, "l_discount": 0.1d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-24", "l_commitdate": "1996-07-25", "l_receiptdate": "1996-07-20", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "g dolphins. deposits integrate. s" }, { "l_orderkey": 1442i32, "l_partkey": 26i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 8.0d, "l_extendedprice": 7408.16d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-10-31", "l_commitdate": "1994-09-04", "l_receiptdate": "1994-11-25", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "c deposits haggle after the even" }, { "l_orderkey": 1541i32, "l_partkey": 26i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 8.0d, "l_extendedprice": 7408.16d, "l_discount": 0.1d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "F", "l_shipdate": "1995-06-05", "l_commitdate": "1995-08-07", "l_receiptdate": "1995-06-21", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "y pending packages. blithely fi" }, { "l_orderkey": 1762i32, "l_partkey": 26i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 15.0d, "l_extendedprice": 13890.3d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-12-18", "l_commitdate": "1994-10-29", "l_receiptdate": "1995-01-17", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "old packages thrash. care" }, { "l_orderkey": 2146i32, "l_partkey": 26i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 31.0d, "l_extendedprice": 28706.62d, "l_discount": 0.02d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-01-04", "l_commitdate": "1992-10-24", "l_receiptdate": "1993-01-15", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "lly even deposit" }, { "l_orderkey": 2567i32, "l_partkey": 26i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 39.0d, "l_extendedprice": 36114.78d, "l_discount": 0.03d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-10", "l_commitdate": "1998-05-10", "l_receiptdate": "1998-05-21", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "ns. furiously final dependencies cajo" }, { "l_orderkey": 2758i32, "l_partkey": 26i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 1.0d, "l_extendedprice": 926.02d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-10-09", "l_commitdate": "1998-09-15", "l_receiptdate": "1998-10-16", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "ake furious" }, { "l_orderkey": 2884i32, "l_partkey": 26i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 8.0d, "l_extendedprice": 7408.16d, "l_discount": 0.08d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-11-30", "l_commitdate": "1997-11-28", "l_receiptdate": "1997-12-14", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "pending accounts about " }, { "l_orderkey": 3527i32, "l_partkey": 26i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 33.0d, "l_extendedprice": 30558.66d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-25", "l_commitdate": "1997-09-17", "l_receiptdate": "1997-10-12", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "kly alongside of " }, { "l_orderkey": 3968i32, "l_partkey": 26i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 45.0d, "l_extendedprice": 41670.9d, "l_discount": 0.0d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-18", "l_commitdate": "1997-04-24", "l_receiptdate": "1997-06-25", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "ully slyly fi" }, { "l_orderkey": 4007i32, "l_partkey": 26i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 23.0d, "l_extendedprice": 21298.46d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-10-08", "l_commitdate": "1993-09-09", "l_receiptdate": "1993-10-23", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "ter the accounts. expr" }, { "l_orderkey": 4131i32, "l_partkey": 26i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 25.0d, "l_extendedprice": 23150.5d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-02-24", "l_commitdate": "1998-03-01", "l_receiptdate": "1998-02-27", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "uickly exp" }, { "l_orderkey": 4646i32, "l_partkey": 26i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 22.0d, "l_extendedprice": 20372.44d, "l_discount": 0.01d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-14", "l_commitdate": "1996-08-06", "l_receiptdate": "1996-07-29", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "cies are blithely after the slyly reg" }, { "l_orderkey": 4800i32, "l_partkey": 26i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 1.0d, "l_extendedprice": 926.02d, "l_discount": 0.06d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-02-23", "l_commitdate": "1992-03-16", "l_receiptdate": "1992-03-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "nal accounts are blithely deposits. bol" }, { "l_orderkey": 4801i32, "l_partkey": 26i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 34.0d, "l_extendedprice": 31484.68d, "l_discount": 0.03d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-02-05", "l_commitdate": "1996-04-16", "l_receiptdate": "1996-02-23", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "y final requests " }, { "l_orderkey": 5027i32, "l_partkey": 26i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 37.0d, "l_extendedprice": 34262.74d, "l_discount": 0.02d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-10-05", "l_commitdate": "1997-10-30", "l_receiptdate": "1997-10-26", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "ost slyly fluffily" }, { "l_orderkey": 5123i32, "l_partkey": 26i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 13.0d, "l_extendedprice": 12038.26d, "l_discount": 0.08d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-17", "l_commitdate": "1998-03-23", "l_receiptdate": "1998-06-02", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "regular pearls" }, { "l_orderkey": 5572i32, "l_partkey": 26i32, "l_suppkey": 1i32, "l_linenumber": 7i32, "l_quantity": 24.0d, "l_extendedprice": 22224.48d, "l_discount": 0.01d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-09-26", "l_commitdate": "1994-09-04", "l_receiptdate": "1994-10-22", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": " beans. foxes sleep fluffily across th" } ] }
+{ "partkey": 27i32, "lines": [ { "l_orderkey": 448i32, "l_partkey": 27i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 35.0d, "l_extendedprice": 32445.7d, "l_discount": 0.1d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-27", "l_commitdate": "1995-11-19", "l_receiptdate": "1995-10-20", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "ses nag quickly quickly ir" }, { "l_orderkey": 1124i32, "l_partkey": 27i32, "l_suppkey": 6i32, "l_linenumber": 6i32, "l_quantity": 43.0d, "l_extendedprice": 39861.86d, "l_discount": 0.01d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-09-19", "l_commitdate": "1998-10-28", "l_receiptdate": "1998-10-10", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "across the " }, { "l_orderkey": 1411i32, "l_partkey": 27i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 37.0d, "l_extendedprice": 34299.74d, "l_discount": 0.0d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-02-27", "l_commitdate": "1995-03-02", "l_receiptdate": "1995-03-24", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "d excuses. furiously final pear" }, { "l_orderkey": 1728i32, "l_partkey": 27i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 34.0d, "l_extendedprice": 31518.68d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-28", "l_commitdate": "1996-07-20", "l_receiptdate": "1996-09-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "special req" }, { "l_orderkey": 1799i32, "l_partkey": 27i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 42.0d, "l_extendedprice": 38934.84d, "l_discount": 0.02d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-04-05", "l_commitdate": "1994-04-28", "l_receiptdate": "1994-04-09", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "es pending " }, { "l_orderkey": 1826i32, "l_partkey": 27i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 4.0d, "l_extendedprice": 3708.08d, "l_discount": 0.06d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-07-05", "l_commitdate": "1992-06-12", "l_receiptdate": "1992-08-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "alongside of the quickly unusual re" }, { "l_orderkey": 1861i32, "l_partkey": 27i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 31.0d, "l_extendedprice": 28737.62d, "l_discount": 0.1d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-01-29", "l_commitdate": "1994-03-07", "l_receiptdate": "1994-02-15", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "arefully unusual" }, { "l_orderkey": 2084i32, "l_partkey": 27i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 28.0d, "l_extendedprice": 25956.56d, "l_discount": 0.07d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-05-04", "l_commitdate": "1993-05-14", "l_receiptdate": "1993-05-31", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "cajole quickly carefu" }, { "l_orderkey": 2342i32, "l_partkey": 27i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 22.0d, "l_extendedprice": 20394.44d, "l_discount": 0.08d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-10", "l_commitdate": "1996-08-02", "l_receiptdate": "1996-08-31", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "s. ironic " }, { "l_orderkey": 2405i32, "l_partkey": 27i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 30.0d, "l_extendedprice": 27810.6d, "l_discount": 0.1d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-24", "l_commitdate": "1997-03-10", "l_receiptdate": "1997-04-14", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "y final deposits are slyly caref" }, { "l_orderkey": 2534i32, "l_partkey": 27i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 49.0d, "l_extendedprice": 45423.98d, "l_discount": 0.08d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-01", "l_commitdate": "1996-08-20", "l_receiptdate": "1996-09-06", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "sometimes regular requests. blithely unus" }, { "l_orderkey": 3782i32, "l_partkey": 27i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 29.0d, "l_extendedprice": 26883.58d, "l_discount": 0.01d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-17", "l_commitdate": "1996-10-03", "l_receiptdate": "1996-10-07", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "quickly unusual pinto beans. carefully fina" }, { "l_orderkey": 3783i32, "l_partkey": 27i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 37.0d, "l_extendedprice": 34299.74d, "l_discount": 0.1d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-12-09", "l_commitdate": "1994-02-17", "l_receiptdate": "1993-12-30", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "ing to the ideas. regular accounts de" }, { "l_orderkey": 4096i32, "l_partkey": 27i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 31.0d, "l_extendedprice": 28737.62d, "l_discount": 0.1d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-07-14", "l_commitdate": "1992-09-03", "l_receiptdate": "1992-07-31", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "y final, even platelets. boldly" }, { "l_orderkey": 4129i32, "l_partkey": 27i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 39.0d, "l_extendedprice": 36153.78d, "l_discount": 0.06d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-10-21", "l_commitdate": "1993-08-04", "l_receiptdate": "1993-10-29", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "y regular foxes. slyly ironic deposits " }, { "l_orderkey": 4294i32, "l_partkey": 27i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 16.0d, "l_extendedprice": 14832.32d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-08-17", "l_commitdate": "1992-09-24", "l_receiptdate": "1992-09-04", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "lithely pint" }, { "l_orderkey": 4544i32, "l_partkey": 27i32, "l_suppkey": 8i32, "l_linenumber": 6i32, "l_quantity": 8.0d, "l_extendedprice": 7416.16d, "l_discount": 0.1d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-10-13", "l_commitdate": "1997-10-06", "l_receiptdate": "1997-10-25", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "olites. fi" }, { "l_orderkey": 4640i32, "l_partkey": 27i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 18.0d, "l_extendedprice": 16686.36d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-02-28", "l_commitdate": "1996-03-06", "l_receiptdate": "1996-03-28", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "boost furiously accord" } ] }
+{ "partkey": 28i32, "lines": [ { "l_orderkey": 455i32, "l_partkey": 28i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 44.0d, "l_extendedprice": 40832.88d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-17", "l_commitdate": "1997-02-22", "l_receiptdate": "1997-02-12", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": " accounts sleep slyly ironic asymptote" }, { "l_orderkey": 485i32, "l_partkey": 28i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 40.0d, "l_extendedprice": 37120.8d, "l_discount": 0.08d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-29", "l_commitdate": "1997-05-08", "l_receiptdate": "1997-04-30", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "al escapades" }, { "l_orderkey": 645i32, "l_partkey": 28i32, "l_suppkey": 9i32, "l_linenumber": 7i32, "l_quantity": 9.0d, "l_extendedprice": 8352.18d, "l_discount": 0.03d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-12-25", "l_commitdate": "1995-01-04", "l_receiptdate": "1995-01-15", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "special deposits. regular, final th" }, { "l_orderkey": 935i32, "l_partkey": 28i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 23.0d, "l_extendedprice": 21344.46d, "l_discount": 0.05d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-11-11", "l_commitdate": "1997-11-22", "l_receiptdate": "1997-11-29", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "ular accounts about" }, { "l_orderkey": 1445i32, "l_partkey": 28i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 17.0d, "l_extendedprice": 15776.34d, "l_discount": 0.04d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-04-02", "l_commitdate": "1995-04-04", "l_receiptdate": "1995-05-01", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "ges. furiously regular pint" }, { "l_orderkey": 1506i32, "l_partkey": 28i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 37.0d, "l_extendedprice": 34336.74d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-11-04", "l_commitdate": "1992-12-01", "l_receiptdate": "1992-11-23", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "carefully bold dolphins. accounts su" }, { "l_orderkey": 1509i32, "l_partkey": 28i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 14.0d, "l_extendedprice": 12992.28d, "l_discount": 0.04d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-10-04", "l_commitdate": "1993-09-25", "l_receiptdate": "1993-10-21", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "nal realms" }, { "l_orderkey": 1985i32, "l_partkey": 28i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 33.0d, "l_extendedprice": 30624.66d, "l_discount": 0.1d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-12-04", "l_commitdate": "1994-11-01", "l_receiptdate": "1994-12-05", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "s are express packages. pendin" }, { "l_orderkey": 2240i32, "l_partkey": 28i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 37.0d, "l_extendedprice": 34336.74d, "l_discount": 0.03d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-03-16", "l_commitdate": "1992-05-31", "l_receiptdate": "1992-04-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": " quickly after the packages? blithely si" }, { "l_orderkey": 2849i32, "l_partkey": 28i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 30.0d, "l_extendedprice": 27840.6d, "l_discount": 0.1d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-24", "l_commitdate": "1996-07-08", "l_receiptdate": "1996-09-03", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "ly. carefully silent" }, { "l_orderkey": 2978i32, "l_partkey": 28i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 7.0d, "l_extendedprice": 6496.14d, "l_discount": 0.0d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-18", "l_commitdate": "1995-07-03", "l_receiptdate": "1995-07-23", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": ". final ideas are blithe" }, { "l_orderkey": 3495i32, "l_partkey": 28i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 20.0d, "l_extendedprice": 18560.4d, "l_discount": 0.1d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-04-24", "l_commitdate": "1996-05-18", "l_receiptdate": "1996-05-01", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "posits are carefully; forges cajole qui" }, { "l_orderkey": 3520i32, "l_partkey": 28i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 30.0d, "l_extendedprice": 27840.6d, "l_discount": 0.04d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-11-11", "l_commitdate": "1997-10-02", "l_receiptdate": "1997-12-06", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "deas should solve blithely among the ironi" }, { "l_orderkey": 3555i32, "l_partkey": 28i32, "l_suppkey": 3i32, "l_linenumber": 6i32, "l_quantity": 33.0d, "l_extendedprice": 30624.66d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-20", "l_commitdate": "1996-09-23", "l_receiptdate": "1996-10-05", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "fluffily regular a" }, { "l_orderkey": 3746i32, "l_partkey": 28i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 11.0d, "l_extendedprice": 10208.22d, "l_discount": 0.0d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-10-02", "l_commitdate": "1994-11-19", "l_receiptdate": "1994-10-10", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": " ironic theodolites are among th" }, { "l_orderkey": 4034i32, "l_partkey": 28i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 46.0d, "l_extendedprice": 42688.92d, "l_discount": 0.06d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-02-22", "l_commitdate": "1994-01-09", "l_receiptdate": "1994-03-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "uests. furiously unusual instructions wake" }, { "l_orderkey": 4039i32, "l_partkey": 28i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 43.0d, "l_extendedprice": 39904.86d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-02", "l_commitdate": "1997-12-22", "l_receiptdate": "1998-01-15", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "beans believe bene" }, { "l_orderkey": 4161i32, "l_partkey": 28i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 47.0d, "l_extendedprice": 43616.94d, "l_discount": 0.05d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-12-20", "l_commitdate": "1993-10-29", "l_receiptdate": "1994-01-19", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "r requests about the final, even foxes hag" }, { "l_orderkey": 4704i32, "l_partkey": 28i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 7.0d, "l_extendedprice": 6496.14d, "l_discount": 0.03d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-04", "l_commitdate": "1996-10-30", "l_receiptdate": "1996-12-23", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "ers wake car" }, { "l_orderkey": 5699i32, "l_partkey": 28i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 21.0d, "l_extendedprice": 19488.42d, "l_discount": 0.02d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-10-13", "l_commitdate": "1992-09-30", "l_receiptdate": "1992-10-19", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "lyly final pla" }, { "l_orderkey": 5921i32, "l_partkey": 28i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 26.0d, "l_extendedprice": 24128.52d, "l_discount": 0.03d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-05-03", "l_commitdate": "1994-07-06", "l_receiptdate": "1994-05-06", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "hy dependenc" } ] }
+{ "partkey": 29i32, "lines": [ { "l_orderkey": 103i32, "l_partkey": 29i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 23.0d, "l_extendedprice": 21367.46d, "l_discount": 0.01d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-11", "l_commitdate": "1996-09-18", "l_receiptdate": "1996-09-26", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "ironic accou" }, { "l_orderkey": 132i32, "l_partkey": 29i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 23.0d, "l_extendedprice": 21367.46d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-06-16", "l_commitdate": "1993-08-27", "l_receiptdate": "1993-06-23", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "refully blithely bold acco" }, { "l_orderkey": 358i32, "l_partkey": 29i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 18.0d, "l_extendedprice": 16722.36d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-10-07", "l_commitdate": "1993-11-01", "l_receiptdate": "1993-10-26", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "olphins haggle ironic accounts. f" }, { "l_orderkey": 486i32, "l_partkey": 29i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 3.0d, "l_extendedprice": 2787.06d, "l_discount": 0.07d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-07", "l_commitdate": "1996-04-20", "l_receiptdate": "1996-07-23", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "ccounts ha" }, { "l_orderkey": 773i32, "l_partkey": 29i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 28.0d, "l_extendedprice": 26012.56d, "l_discount": 0.1d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-01-19", "l_commitdate": "1993-11-05", "l_receiptdate": "1994-01-23", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "he furiously slow deposits." }, { "l_orderkey": 838i32, "l_partkey": 29i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 27.0d, "l_extendedprice": 25083.54d, "l_discount": 0.05d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-02-15", "l_commitdate": "1998-04-03", "l_receiptdate": "1998-02-20", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": " pending pinto beans haggle about t" }, { "l_orderkey": 868i32, "l_partkey": 29i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 13.0d, "l_extendedprice": 12077.26d, "l_discount": 0.05d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-07-25", "l_commitdate": "1992-08-26", "l_receiptdate": "1992-08-04", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "gged instructi" }, { "l_orderkey": 1028i32, "l_partkey": 29i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 27.0d, "l_extendedprice": 25083.54d, "l_discount": 0.0d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-04-03", "l_commitdate": "1994-02-07", "l_receiptdate": "1994-04-26", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "ial accounts nag. slyly" }, { "l_orderkey": 1059i32, "l_partkey": 29i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 7.0d, "l_extendedprice": 6503.14d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-03-30", "l_commitdate": "1994-04-01", "l_receiptdate": "1994-04-24", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "the furiously silent excuses are e" }, { "l_orderkey": 1575i32, "l_partkey": 29i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 42.0d, "l_extendedprice": 39018.84d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-21", "l_commitdate": "1995-11-25", "l_receiptdate": "1995-10-24", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "ly pending pinto beans." }, { "l_orderkey": 1956i32, "l_partkey": 29i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 11.0d, "l_extendedprice": 10219.22d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-12-19", "l_commitdate": "1992-10-29", "l_receiptdate": "1993-01-07", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": " the braids slee" }, { "l_orderkey": 2147i32, "l_partkey": 29i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 50.0d, "l_extendedprice": 46451.0d, "l_discount": 0.04d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-11-18", "l_commitdate": "1992-11-30", "l_receiptdate": "1992-11-30", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "al accounts. even, even foxes wake" }, { "l_orderkey": 2630i32, "l_partkey": 29i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 46.0d, "l_extendedprice": 42734.92d, "l_discount": 0.05d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-11-05", "l_commitdate": "1992-12-17", "l_receiptdate": "1992-12-05", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "uests cajole. e" }, { "l_orderkey": 2658i32, "l_partkey": 29i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 22.0d, "l_extendedprice": 20438.44d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-12", "l_commitdate": "1995-11-18", "l_receiptdate": "1995-11-14", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "ts cajole. pending packages affix" }, { "l_orderkey": 2784i32, "l_partkey": 29i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 3.0d, "l_extendedprice": 2787.06d, "l_discount": 0.04d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-19", "l_commitdate": "1998-04-05", "l_receiptdate": "1998-02-05", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "n packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggle quickly silen packages. foxes haggl" }, { "l_orderkey": 2791i32, "l_partkey": 29i32, "l_suppkey": 2i32, "l_linenumber": 7i32, "l_quantity": 26.0d, "l_extendedprice": 24154.52d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-02-06", "l_commitdate": "1994-12-07", "l_receiptdate": "1995-02-23", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "uriously special instructio" }, { "l_orderkey": 2978i32, "l_partkey": 29i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 33.0d, "l_extendedprice": 30657.66d, "l_discount": 0.09d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-05-06", "l_commitdate": "1995-07-23", "l_receiptdate": "1995-05-16", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "s. blithely unusual pack" }, { "l_orderkey": 3073i32, "l_partkey": 29i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 14.0d, "l_extendedprice": 13006.28d, "l_discount": 0.09d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-03-24", "l_commitdate": "1994-04-01", "l_receiptdate": "1994-04-07", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "ilently quiet epitaphs." }, { "l_orderkey": 3205i32, "l_partkey": 29i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 32.0d, "l_extendedprice": 29728.64d, "l_discount": 0.08d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-06-01", "l_commitdate": "1992-07-10", "l_receiptdate": "1992-06-06", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "lar accoun" }, { "l_orderkey": 3298i32, "l_partkey": 29i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 25.0d, "l_extendedprice": 23225.5d, "l_discount": 0.1d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-30", "l_commitdate": "1996-05-31", "l_receiptdate": "1996-07-23", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "ly express f" }, { "l_orderkey": 3489i32, "l_partkey": 29i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 46.0d, "l_extendedprice": 42734.92d, "l_discount": 0.0d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-08-02", "l_commitdate": "1993-10-09", "l_receiptdate": "1993-08-10", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "xcuses? quickly stealthy dependenci" }, { "l_orderkey": 3558i32, "l_partkey": 29i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 38.0d, "l_extendedprice": 35302.76d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-29", "l_commitdate": "1996-05-02", "l_receiptdate": "1996-06-09", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "refully permanently iron" }, { "l_orderkey": 3591i32, "l_partkey": 29i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 21.0d, "l_extendedprice": 19509.42d, "l_discount": 0.03d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-02-25", "l_commitdate": "1994-02-02", "l_receiptdate": "1994-03-05", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "structions against " }, { "l_orderkey": 3778i32, "l_partkey": 29i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 32.0d, "l_extendedprice": 29728.64d, "l_discount": 0.09d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-06-22", "l_commitdate": "1993-08-18", "l_receiptdate": "1993-07-03", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "tes affix carefully above the " }, { "l_orderkey": 4070i32, "l_partkey": 29i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 46.0d, "l_extendedprice": 42734.92d, "l_discount": 0.02d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-06-22", "l_commitdate": "1995-07-14", "l_receiptdate": "1995-07-11", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "nticing ideas. boldly" }, { "l_orderkey": 4161i32, "l_partkey": 29i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 46.0d, "l_extendedprice": 42734.92d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-11-09", "l_commitdate": "1993-11-17", "l_receiptdate": "1993-11-17", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "he stealthily ironic foxes. ideas haggl" }, { "l_orderkey": 4263i32, "l_partkey": 29i32, "l_suppkey": 4i32, "l_linenumber": 7i32, "l_quantity": 6.0d, "l_extendedprice": 5574.12d, "l_discount": 0.04d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-01", "l_commitdate": "1998-06-02", "l_receiptdate": "1998-05-14", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "g the final, regular instructions: " }, { "l_orderkey": 4295i32, "l_partkey": 29i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 49.0d, "l_extendedprice": 45521.98d, "l_discount": 0.09d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-25", "l_commitdate": "1996-03-17", "l_receiptdate": "1996-06-19", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "refully silent requests. f" }, { "l_orderkey": 4647i32, "l_partkey": 29i32, "l_suppkey": 4i32, "l_linenumber": 6i32, "l_quantity": 28.0d, "l_extendedprice": 26012.56d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-08-25", "l_commitdate": "1994-08-06", "l_receiptdate": "1994-09-18", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": " are above the fluffily fin" }, { "l_orderkey": 4738i32, "l_partkey": 29i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 22.0d, "l_extendedprice": 20438.44d, "l_discount": 0.02d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-05-25", "l_commitdate": "1992-05-19", "l_receiptdate": "1992-06-12", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "ld, even packages. furio" }, { "l_orderkey": 4806i32, "l_partkey": 29i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 8.0d, "l_extendedprice": 7432.16d, "l_discount": 0.09d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-05-08", "l_commitdate": "1993-07-16", "l_receiptdate": "1993-05-28", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "requests boost blithely. qui" }, { "l_orderkey": 4997i32, "l_partkey": 29i32, "l_suppkey": 2i32, "l_linenumber": 6i32, "l_quantity": 2.0d, "l_extendedprice": 1858.04d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-09", "l_commitdate": "1998-06-10", "l_receiptdate": "1998-07-21", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "counts. slyl" }, { "l_orderkey": 5254i32, "l_partkey": 29i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 23.0d, "l_extendedprice": 21367.46d, "l_discount": 0.02d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-08-16", "l_commitdate": "1992-09-05", "l_receiptdate": "1992-09-15", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "lyly regular accounts. furiously pendin" }, { "l_orderkey": 5410i32, "l_partkey": 29i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 40.0d, "l_extendedprice": 37160.8d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-11-17", "l_commitdate": "1998-10-02", "l_receiptdate": "1998-11-27", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "iously special accounts are along th" }, { "l_orderkey": 5569i32, "l_partkey": 29i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 25.0d, "l_extendedprice": 23225.5d, "l_discount": 0.1d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-06-29", "l_commitdate": "1993-07-18", "l_receiptdate": "1993-07-05", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": " deposits cajole above" } ] }
+{ "partkey": 30i32, "lines": [ { "l_orderkey": 3i32, "l_partkey": 30i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 2.0d, "l_extendedprice": 1860.06d, "l_discount": 0.01d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-12-04", "l_commitdate": "1994-01-07", "l_receiptdate": "1994-01-01", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "y. fluffily pending d" }, { "l_orderkey": 103i32, "l_partkey": 30i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 32.0d, "l_extendedprice": 29760.96d, "l_discount": 0.01d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-30", "l_commitdate": "1996-08-06", "l_receiptdate": "1996-08-04", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "kages doze. special, regular deposit" }, { "l_orderkey": 646i32, "l_partkey": 30i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 24.0d, "l_extendedprice": 22320.72d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-02-20", "l_commitdate": "1994-12-30", "l_receiptdate": "1995-03-16", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "regular accounts haggle dog" }, { "l_orderkey": 1121i32, "l_partkey": 30i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 47.0d, "l_extendedprice": 43711.41d, "l_discount": 0.09d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-27", "l_commitdate": "1997-03-28", "l_receiptdate": "1997-05-14", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "ly idle, i" }, { "l_orderkey": 1282i32, "l_partkey": 30i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 10.0d, "l_extendedprice": 9300.3d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-04-10", "l_commitdate": "1992-04-16", "l_receiptdate": "1992-05-01", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "r theodolite" }, { "l_orderkey": 1702i32, "l_partkey": 30i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 38.0d, "l_extendedprice": 35341.14d, "l_discount": 0.0d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-01", "l_commitdate": "1995-06-10", "l_receiptdate": "1995-09-10", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "as believe blithely. bo" }, { "l_orderkey": 1862i32, "l_partkey": 30i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 41.0d, "l_extendedprice": 38131.23d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-05", "l_commitdate": "1998-05-17", "l_receiptdate": "1998-07-04", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": " carefully along" }, { "l_orderkey": 1925i32, "l_partkey": 30i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 17.0d, "l_extendedprice": 15810.51d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-05-18", "l_commitdate": "1992-04-06", "l_receiptdate": "1992-06-16", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "instructions sleep. pinto bea" }, { "l_orderkey": 2208i32, "l_partkey": 30i32, "l_suppkey": 5i32, "l_linenumber": 5i32, "l_quantity": 43.0d, "l_extendedprice": 39991.29d, "l_discount": 0.03d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-05-10", "l_commitdate": "1995-06-02", "l_receiptdate": "1995-06-09", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "es. accounts cajole. fi" }, { "l_orderkey": 2339i32, "l_partkey": 30i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 28.0d, "l_extendedprice": 26040.84d, "l_discount": 0.0d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-01-25", "l_commitdate": "1994-01-22", "l_receiptdate": "1994-01-28", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "e bold, even packag" }, { "l_orderkey": 2533i32, "l_partkey": 30i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 17.0d, "l_extendedprice": 15810.51d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-23", "l_commitdate": "1997-05-10", "l_receiptdate": "1997-06-18", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "ackages. blith" }, { "l_orderkey": 2662i32, "l_partkey": 30i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 34.0d, "l_extendedprice": 31621.02d, "l_discount": 0.06d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-04", "l_commitdate": "1996-11-05", "l_receiptdate": "1996-10-19", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "ding theodolites use carefully. p" }, { "l_orderkey": 3200i32, "l_partkey": 30i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 11.0d, "l_extendedprice": 10230.33d, "l_discount": 0.1d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-18", "l_commitdate": "1996-03-21", "l_receiptdate": "1996-04-14", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "osits sleep fur" }, { "l_orderkey": 3655i32, "l_partkey": 30i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 35.0d, "l_extendedprice": 32551.05d, "l_discount": 0.01d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-12-20", "l_commitdate": "1992-11-16", "l_receiptdate": "1993-01-15", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "blithely even accounts! furiously regular" }, { "l_orderkey": 3714i32, "l_partkey": 30i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 44.0d, "l_extendedprice": 40921.32d, "l_discount": 0.04d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-18", "l_commitdate": "1998-07-10", "l_receiptdate": "1998-07-22", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "s. quickly ironic dugouts sublat" }, { "l_orderkey": 3781i32, "l_partkey": 30i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 17.0d, "l_extendedprice": 15810.51d, "l_discount": 0.01d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-23", "l_commitdate": "1996-09-04", "l_receiptdate": "1996-07-19", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": ". theodolite" }, { "l_orderkey": 3970i32, "l_partkey": 30i32, "l_suppkey": 3i32, "l_linenumber": 5i32, "l_quantity": 23.0d, "l_extendedprice": 21390.69d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-06-04", "l_commitdate": "1992-06-14", "l_receiptdate": "1992-06-13", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": " above the final braids. regular" }, { "l_orderkey": 3973i32, "l_partkey": 30i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 21.0d, "l_extendedprice": 19530.63d, "l_discount": 0.02d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-06-18", "l_commitdate": "1992-06-03", "l_receiptdate": "1992-07-02", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "equests. furiously" }, { "l_orderkey": 5025i32, "l_partkey": 30i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 11.0d, "l_extendedprice": 10230.33d, "l_discount": 0.0d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-21", "l_commitdate": "1997-04-16", "l_receiptdate": "1997-03-14", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "the carefully final esc" }, { "l_orderkey": 5377i32, "l_partkey": 30i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 17.0d, "l_extendedprice": 15810.51d, "l_discount": 0.09d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-05", "l_commitdate": "1997-05-25", "l_receiptdate": "1997-07-22", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "dencies. carefully regular re" }, { "l_orderkey": 5891i32, "l_partkey": 30i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 10.0d, "l_extendedprice": 9300.3d, "l_discount": 0.08d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-04-14", "l_commitdate": "1993-02-07", "l_receiptdate": "1993-04-15", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "nding requests. b" }, { "l_orderkey": 5986i32, "l_partkey": 30i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 1.0d, "l_extendedprice": 930.03d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-05-21", "l_commitdate": "1992-06-21", "l_receiptdate": "1992-05-24", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "fix quickly quickly final deposits. fluffil" } ] }
+{ "partkey": 31i32, "lines": [ { "l_orderkey": 35i32, "l_partkey": 31i32, "l_suppkey": 7i32, "l_linenumber": 6i32, "l_quantity": 28.0d, "l_extendedprice": 26068.84d, "l_discount": 0.03d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-02-01", "l_commitdate": "1995-12-24", "l_receiptdate": "1996-02-28", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "ly alongside of " }, { "l_orderkey": 354i32, "l_partkey": 31i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 18.0d, "l_extendedprice": 16758.54d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-31", "l_commitdate": "1996-05-13", "l_receiptdate": "1996-04-27", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": " about the carefully unusual " }, { "l_orderkey": 484i32, "l_partkey": 31i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 49.0d, "l_extendedprice": 45620.47d, "l_discount": 0.1d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-06", "l_commitdate": "1997-02-28", "l_receiptdate": "1997-03-23", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "ven accounts" }, { "l_orderkey": 994i32, "l_partkey": 31i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 5.0d, "l_extendedprice": 4655.15d, "l_discount": 0.08d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-06-24", "l_commitdate": "1994-06-14", "l_receiptdate": "1994-06-26", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "ainst the pending requests. packages sl" }, { "l_orderkey": 1028i32, "l_partkey": 31i32, "l_suppkey": 2i32, "l_linenumber": 7i32, "l_quantity": 22.0d, "l_extendedprice": 20482.66d, "l_discount": 0.03d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-04-24", "l_commitdate": "1994-02-27", "l_receiptdate": "1994-05-08", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": " Tiresias alongside of the carefully spec" }, { "l_orderkey": 1185i32, "l_partkey": 31i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 28.0d, "l_extendedprice": 26068.84d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-09-24", "l_commitdate": "1992-10-07", "l_receiptdate": "1992-10-10", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "ke. slyly regular t" }, { "l_orderkey": 1476i32, "l_partkey": 31i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 20.0d, "l_extendedprice": 18620.6d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-11", "l_commitdate": "1996-09-18", "l_receiptdate": "1996-08-26", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": ". bold deposits are carefully amo" }, { "l_orderkey": 1573i32, "l_partkey": 31i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 17.0d, "l_extendedprice": 15827.51d, "l_discount": 0.0d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-02-24", "l_commitdate": "1993-02-16", "l_receiptdate": "1993-03-08", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "carefully regular deposits. " }, { "l_orderkey": 1638i32, "l_partkey": 31i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 5.0d, "l_extendedprice": 4655.15d, "l_discount": 0.08d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-10-15", "l_commitdate": "1997-11-01", "l_receiptdate": "1997-11-08", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "xcuses sleep furiou" }, { "l_orderkey": 1797i32, "l_partkey": 31i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 17.0d, "l_extendedprice": 15827.51d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-06", "l_commitdate": "1996-07-11", "l_receiptdate": "1996-08-29", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": " cajole carefully. unusual Tiresias e" }, { "l_orderkey": 2403i32, "l_partkey": 31i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 30.0d, "l_extendedprice": 27930.9d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-08", "l_commitdate": "1998-06-17", "l_receiptdate": "1998-08-20", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "ackages sleep furiously pendin" }, { "l_orderkey": 2752i32, "l_partkey": 31i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 41.0d, "l_extendedprice": 38172.23d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-03-02", "l_commitdate": "1994-01-31", "l_receiptdate": "1994-03-06", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "tructions hag" }, { "l_orderkey": 2753i32, "l_partkey": 31i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 7.0d, "l_extendedprice": 6517.21d, "l_discount": 0.07d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-02-11", "l_commitdate": "1994-01-22", "l_receiptdate": "1994-03-10", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "xpress ideas detect b" }, { "l_orderkey": 3335i32, "l_partkey": 31i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 44.0d, "l_extendedprice": 40965.32d, "l_discount": 0.07d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-05", "l_commitdate": "1995-12-25", "l_receiptdate": "1996-01-18", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "r packages cajole ac" }, { "l_orderkey": 3556i32, "l_partkey": 31i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 43.0d, "l_extendedprice": 40034.29d, "l_discount": 0.02d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-01-18", "l_commitdate": "1992-11-09", "l_receiptdate": "1993-02-04", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "wake carefull" }, { "l_orderkey": 3781i32, "l_partkey": 31i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 15.0d, "l_extendedprice": 13965.45d, "l_discount": 0.05d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-23", "l_commitdate": "1996-08-08", "l_receiptdate": "1996-09-06", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": " carefully blithe" }, { "l_orderkey": 3808i32, "l_partkey": 31i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 45.0d, "l_extendedprice": 41896.35d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-07-03", "l_commitdate": "1994-05-29", "l_receiptdate": "1994-07-14", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": " carefully special" }, { "l_orderkey": 4197i32, "l_partkey": 31i32, "l_suppkey": 7i32, "l_linenumber": 6i32, "l_quantity": 48.0d, "l_extendedprice": 44689.44d, "l_discount": 0.08d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-07", "l_commitdate": "1996-10-25", "l_receiptdate": "1996-10-23", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": " final instructions. blithe, spe" }, { "l_orderkey": 4258i32, "l_partkey": 31i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 46.0d, "l_extendedprice": 42827.38d, "l_discount": 0.04d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-02", "l_commitdate": "1996-12-26", "l_receiptdate": "1997-01-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": " furiously pend" }, { "l_orderkey": 4355i32, "l_partkey": 31i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 50.0d, "l_extendedprice": 46551.5d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-25", "l_commitdate": "1997-01-01", "l_receiptdate": "1996-12-06", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": " regular accounts boost along the " }, { "l_orderkey": 4608i32, "l_partkey": 31i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 36.0d, "l_extendedprice": 33517.08d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-10-04", "l_commitdate": "1994-08-02", "l_receiptdate": "1994-10-21", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "ages wake quickly slyly iron" }, { "l_orderkey": 4645i32, "l_partkey": 31i32, "l_suppkey": 2i32, "l_linenumber": 7i32, "l_quantity": 42.0d, "l_extendedprice": 39103.26d, "l_discount": 0.1d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-12-31", "l_commitdate": "1994-10-22", "l_receiptdate": "1995-01-28", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "e slyly regular pinto beans. thin" }, { "l_orderkey": 4705i32, "l_partkey": 31i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 14.0d, "l_extendedprice": 13034.42d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-07-14", "l_commitdate": "1992-05-23", "l_receiptdate": "1992-07-25", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "ain carefully amon" }, { "l_orderkey": 4864i32, "l_partkey": 31i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 46.0d, "l_extendedprice": 42827.38d, "l_discount": 0.07d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-02-24", "l_commitdate": "1993-01-02", "l_receiptdate": "1993-03-17", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "sts use carefully across the carefull" }, { "l_orderkey": 4870i32, "l_partkey": 31i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 5.0d, "l_extendedprice": 4655.15d, "l_discount": 0.05d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-10-11", "l_commitdate": "1994-10-07", "l_receiptdate": "1994-10-24", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "s haggle furiously. slyly ironic dinos" }, { "l_orderkey": 5249i32, "l_partkey": 31i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 44.0d, "l_extendedprice": 40965.32d, "l_discount": 0.05d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-12-28", "l_commitdate": "1994-11-29", "l_receiptdate": "1994-12-29", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "ole furiousl" }, { "l_orderkey": 5253i32, "l_partkey": 31i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 35.0d, "l_extendedprice": 32586.05d, "l_discount": 0.02d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-23", "l_commitdate": "1995-06-12", "l_receiptdate": "1995-08-03", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "ven deposits. careful" }, { "l_orderkey": 5285i32, "l_partkey": 31i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 37.0d, "l_extendedprice": 34448.11d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-02-26", "l_commitdate": "1994-02-18", "l_receiptdate": "1994-03-27", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "uffily regu" }, { "l_orderkey": 5413i32, "l_partkey": 31i32, "l_suppkey": 7i32, "l_linenumber": 7i32, "l_quantity": 32.0d, "l_extendedprice": 29792.96d, "l_discount": 0.06d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-10-23", "l_commitdate": "1997-12-09", "l_receiptdate": "1997-11-17", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "he quickly ironic ideas. slyly ironic ide" }, { "l_orderkey": 5415i32, "l_partkey": 31i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 16.0d, "l_extendedprice": 14896.48d, "l_discount": 0.08d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-09-29", "l_commitdate": "1992-09-12", "l_receiptdate": "1992-10-10", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "pinto beans haggle furiously" }, { "l_orderkey": 5575i32, "l_partkey": 31i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 23.0d, "l_extendedprice": 21413.69d, "l_discount": 0.04d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-26", "l_commitdate": "1995-10-09", "l_receiptdate": "1995-11-13", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "enticingly final requests. ironically" } ] }
+{ "partkey": 32i32, "lines": [ { "l_orderkey": 129i32, "l_partkey": 32i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 24.0d, "l_extendedprice": 22368.72d, "l_discount": 0.06d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-12-07", "l_commitdate": "1993-01-02", "l_receiptdate": "1992-12-11", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "uests. foxes cajole slyly after the ca" }, { "l_orderkey": 484i32, "l_partkey": 32i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 45.0d, "l_extendedprice": 41941.35d, "l_discount": 0.06d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-09", "l_commitdate": "1997-03-20", "l_receiptdate": "1997-04-19", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "usly final excuses boost slyly blithe" }, { "l_orderkey": 640i32, "l_partkey": 32i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 45.0d, "l_extendedprice": 41941.35d, "l_discount": 0.07d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-04-15", "l_commitdate": "1993-04-23", "l_receiptdate": "1993-04-21", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "ong the qui" }, { "l_orderkey": 775i32, "l_partkey": 32i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 16.0d, "l_extendedprice": 14912.48d, "l_discount": 0.1d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "F", "l_shipdate": "1995-05-23", "l_commitdate": "1995-05-07", "l_receiptdate": "1995-06-19", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "un quickly slyly" }, { "l_orderkey": 1028i32, "l_partkey": 32i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 26.0d, "l_extendedprice": 24232.78d, "l_discount": 0.07d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-03-18", "l_commitdate": "1994-02-08", "l_receiptdate": "1994-03-19", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "ronic platelets. carefully f" }, { "l_orderkey": 1447i32, "l_partkey": 32i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 6.0d, "l_extendedprice": 5592.18d, "l_discount": 0.01d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-10-24", "l_commitdate": "1992-12-10", "l_receiptdate": "1992-11-05", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "as! regular packages poach above the" }, { "l_orderkey": 1475i32, "l_partkey": 32i32, "l_suppkey": 3i32, "l_linenumber": 5i32, "l_quantity": 33.0d, "l_extendedprice": 30756.99d, "l_discount": 0.01d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-02", "l_commitdate": "1998-01-27", "l_receiptdate": "1998-01-11", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "quickly fluffy" }, { "l_orderkey": 1670i32, "l_partkey": 32i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 41.0d, "l_extendedprice": 38213.23d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-19", "l_commitdate": "1997-08-20", "l_receiptdate": "1997-07-23", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "thely according to the sly" }, { "l_orderkey": 1762i32, "l_partkey": 32i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 7.0d, "l_extendedprice": 6524.21d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-09-03", "l_commitdate": "1994-10-02", "l_receiptdate": "1994-09-10", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "uickly express packages wake slyly-- regul" }, { "l_orderkey": 2050i32, "l_partkey": 32i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 11.0d, "l_extendedprice": 10252.33d, "l_discount": 0.02d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-07-27", "l_commitdate": "1994-08-18", "l_receiptdate": "1994-08-02", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "ns. bold, final ideas cajole among the fi" }, { "l_orderkey": 2465i32, "l_partkey": 32i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 8.0d, "l_extendedprice": 7456.24d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-16", "l_commitdate": "1995-08-26", "l_receiptdate": "1995-11-07", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "s across the express deposits wak" }, { "l_orderkey": 2723i32, "l_partkey": 32i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 10.0d, "l_extendedprice": 9320.3d, "l_discount": 0.06d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-27", "l_commitdate": "1995-11-29", "l_receiptdate": "1995-12-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "al, special r" }, { "l_orderkey": 2817i32, "l_partkey": 32i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 5.0d, "l_extendedprice": 4660.15d, "l_discount": 0.03d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-05-07", "l_commitdate": "1994-05-31", "l_receiptdate": "1994-05-12", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "furiously unusual theodolites use furiou" }, { "l_orderkey": 2885i32, "l_partkey": 32i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 15.0d, "l_extendedprice": 13980.45d, "l_discount": 0.03d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-10-31", "l_commitdate": "1992-11-24", "l_receiptdate": "1992-11-21", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "odolites. boldly pending packages han" }, { "l_orderkey": 3553i32, "l_partkey": 32i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 40.0d, "l_extendedprice": 37281.2d, "l_discount": 0.06d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-09-14", "l_commitdate": "1994-06-26", "l_receiptdate": "1994-09-25", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": " slyly pending asymptotes against the furi" }, { "l_orderkey": 3716i32, "l_partkey": 32i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 10.0d, "l_extendedprice": 9320.3d, "l_discount": 0.09d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-02", "l_commitdate": "1997-11-09", "l_receiptdate": "1997-12-14", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "ts. quickly sly ideas slee" }, { "l_orderkey": 4038i32, "l_partkey": 32i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 24.0d, "l_extendedprice": 22368.72d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-04-06", "l_commitdate": "1996-02-15", "l_receiptdate": "1996-04-18", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "the furiously regu" }, { "l_orderkey": 4197i32, "l_partkey": 32i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 28.0d, "l_extendedprice": 26096.84d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-05", "l_commitdate": "1996-10-24", "l_receiptdate": "1996-10-22", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "regular pin" }, { "l_orderkey": 4419i32, "l_partkey": 32i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 42.0d, "l_extendedprice": 39145.26d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-18", "l_commitdate": "1996-07-25", "l_receiptdate": "1996-09-21", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "sts. furious" }, { "l_orderkey": 4449i32, "l_partkey": 32i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 42.0d, "l_extendedprice": 39145.26d, "l_discount": 0.1d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-22", "l_commitdate": "1998-05-09", "l_receiptdate": "1998-04-03", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": " packages. blithely final " }, { "l_orderkey": 4580i32, "l_partkey": 32i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 10.0d, "l_extendedprice": 9320.3d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-12-20", "l_commitdate": "1993-12-30", "l_receiptdate": "1994-01-17", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "gular, pending deposits. fina" }, { "l_orderkey": 4770i32, "l_partkey": 32i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 41.0d, "l_extendedprice": 38213.23d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-04", "l_commitdate": "1995-08-08", "l_receiptdate": "1995-09-10", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "ithely even packages sleep caref" }, { "l_orderkey": 4900i32, "l_partkey": 32i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 20.0d, "l_extendedprice": 18640.6d, "l_discount": 0.05d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-09-22", "l_commitdate": "1992-09-23", "l_receiptdate": "1992-09-27", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "yers. accounts affix somet" }, { "l_orderkey": 4933i32, "l_partkey": 32i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 48.0d, "l_extendedprice": 44737.44d, "l_discount": 0.08d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-10", "l_commitdate": "1995-10-03", "l_receiptdate": "1995-11-04", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "ideas. sly" }, { "l_orderkey": 5060i32, "l_partkey": 32i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 28.0d, "l_extendedprice": 26096.84d, "l_discount": 0.04d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-09-25", "l_commitdate": "1992-08-11", "l_receiptdate": "1992-10-09", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "c requests" }, { "l_orderkey": 5127i32, "l_partkey": 32i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 20.0d, "l_extendedprice": 18640.6d, "l_discount": 0.01d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-11", "l_commitdate": "1997-02-26", "l_receiptdate": "1997-05-12", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "dolites about the final platelets w" }, { "l_orderkey": 5249i32, "l_partkey": 32i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 13.0d, "l_extendedprice": 12116.39d, "l_discount": 0.09d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-09-27", "l_commitdate": "1994-10-20", "l_receiptdate": "1994-10-05", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "ites. finally exp" }, { "l_orderkey": 5603i32, "l_partkey": 32i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 49.0d, "l_extendedprice": 45669.47d, "l_discount": 0.0d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-10-07", "l_commitdate": "1992-07-21", "l_receiptdate": "1992-10-10", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "nic, pending dependencies print" } ] }
+{ "partkey": 33i32, "lines": [ { "l_orderkey": 388i32, "l_partkey": 33i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 42.0d, "l_extendedprice": 39187.26d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-02-21", "l_commitdate": "1993-02-26", "l_receiptdate": "1993-03-15", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "accounts sleep furiously" }, { "l_orderkey": 451i32, "l_partkey": 33i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 42.0d, "l_extendedprice": 39187.26d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-01", "l_commitdate": "1998-08-05", "l_receiptdate": "1998-08-30", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "express excuses. blithely ironic pin" }, { "l_orderkey": 483i32, "l_partkey": 33i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 8.0d, "l_extendedprice": 7464.24d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-22", "l_commitdate": "1995-08-23", "l_receiptdate": "1995-09-18", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "osits. carefully fin" }, { "l_orderkey": 512i32, "l_partkey": 33i32, "l_suppkey": 9i32, "l_linenumber": 6i32, "l_quantity": 12.0d, "l_extendedprice": 11196.36d, "l_discount": 0.04d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-05-21", "l_commitdate": "1995-08-03", "l_receiptdate": "1995-06-09", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "old furiously express deposits. specia" }, { "l_orderkey": 579i32, "l_partkey": 33i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 39.0d, "l_extendedprice": 36388.17d, "l_discount": 0.02d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-21", "l_commitdate": "1998-06-03", "l_receiptdate": "1998-06-26", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "ncies. furiously final r" }, { "l_orderkey": 1156i32, "l_partkey": 33i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 21.0d, "l_extendedprice": 19593.63d, "l_discount": 0.02d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-07", "l_commitdate": "1997-01-14", "l_receiptdate": "1996-12-03", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "dolphins. fluffily ironic packages sleep re" }, { "l_orderkey": 1280i32, "l_partkey": 33i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 13.0d, "l_extendedprice": 12129.39d, "l_discount": 0.03d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-03-06", "l_commitdate": "1993-03-11", "l_receiptdate": "1993-03-18", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "blithely final accounts use evenly " }, { "l_orderkey": 1377i32, "l_partkey": 33i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 3.0d, "l_extendedprice": 2799.09d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-30", "l_commitdate": "1998-07-02", "l_receiptdate": "1998-05-14", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "yly enticing requ" }, { "l_orderkey": 1377i32, "l_partkey": 33i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 19.0d, "l_extendedprice": 17727.57d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-20", "l_commitdate": "1998-06-27", "l_receiptdate": "1998-07-20", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "ught to are bold foxes" }, { "l_orderkey": 1444i32, "l_partkey": 33i32, "l_suppkey": 4i32, "l_linenumber": 6i32, "l_quantity": 42.0d, "l_extendedprice": 39187.26d, "l_discount": 0.0d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-12-16", "l_commitdate": "1995-02-18", "l_receiptdate": "1994-12-22", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "ss requests. ironic ideas wake above" }, { "l_orderkey": 2053i32, "l_partkey": 33i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 34.0d, "l_extendedprice": 31723.02d, "l_discount": 0.07d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-03-15", "l_commitdate": "1995-03-20", "l_receiptdate": "1995-04-09", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "ions. unusual dependencies" }, { "l_orderkey": 2215i32, "l_partkey": 33i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 30.0d, "l_extendedprice": 27990.9d, "l_discount": 0.01d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-15", "l_commitdate": "1996-09-10", "l_receiptdate": "1996-08-25", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "ckages caj" }, { "l_orderkey": 2784i32, "l_partkey": 33i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 45.0d, "l_extendedprice": 41986.35d, "l_discount": 0.03d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-02-15", "l_commitdate": "1998-04-07", "l_receiptdate": "1998-02-26", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "yly along the asymptotes. reque" }, { "l_orderkey": 2787i32, "l_partkey": 33i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 4.0d, "l_extendedprice": 3732.12d, "l_discount": 0.04d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-26", "l_commitdate": "1995-11-26", "l_receiptdate": "1996-02-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "ts. instructions nag furiously according " }, { "l_orderkey": 2855i32, "l_partkey": 33i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 50.0d, "l_extendedprice": 46651.5d, "l_discount": 0.03d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-05-20", "l_commitdate": "1993-06-28", "l_receiptdate": "1993-06-16", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "beans. deposits " }, { "l_orderkey": 3526i32, "l_partkey": 33i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 20.0d, "l_extendedprice": 18660.6d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "F", "l_shipdate": "1995-06-16", "l_commitdate": "1995-04-26", "l_receiptdate": "1995-06-22", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "kages. bold, special requests detect sl" }, { "l_orderkey": 3555i32, "l_partkey": 33i32, "l_suppkey": 4i32, "l_linenumber": 5i32, "l_quantity": 29.0d, "l_extendedprice": 27057.87d, "l_discount": 0.07d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-02", "l_commitdate": "1996-09-04", "l_receiptdate": "1996-08-08", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "deas. carefully s" }, { "l_orderkey": 3747i32, "l_partkey": 33i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 21.0d, "l_extendedprice": 19593.63d, "l_discount": 0.0d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-18", "l_commitdate": "1996-09-23", "l_receiptdate": "1996-11-26", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "ithely bold orbits mold furiously blit" }, { "l_orderkey": 4163i32, "l_partkey": 33i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 13.0d, "l_extendedprice": 12129.39d, "l_discount": 0.08d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-02-17", "l_commitdate": "1993-03-13", "l_receiptdate": "1993-03-15", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "phins wake. pending requests inte" }, { "l_orderkey": 4227i32, "l_partkey": 33i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 8.0d, "l_extendedprice": 7464.24d, "l_discount": 0.09d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "F", "l_shipdate": "1995-06-11", "l_commitdate": "1995-04-30", "l_receiptdate": "1995-06-28", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": " packages since the bold, u" }, { "l_orderkey": 4359i32, "l_partkey": 33i32, "l_suppkey": 4i32, "l_linenumber": 5i32, "l_quantity": 22.0d, "l_extendedprice": 20526.66d, "l_discount": 0.04d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-03-28", "l_commitdate": "1993-06-01", "l_receiptdate": "1993-04-13", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "accounts wake ironic deposits. ironic" }, { "l_orderkey": 5346i32, "l_partkey": 33i32, "l_suppkey": 9i32, "l_linenumber": 6i32, "l_quantity": 6.0d, "l_extendedprice": 5598.18d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-03-01", "l_commitdate": "1994-02-04", "l_receiptdate": "1994-03-09", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "escapades sleep furiously beside the " }, { "l_orderkey": 5351i32, "l_partkey": 33i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 47.0d, "l_extendedprice": 43852.41d, "l_discount": 0.04d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-30", "l_commitdate": "1998-08-08", "l_receiptdate": "1998-06-23", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "s. grouches cajole. sile" }, { "l_orderkey": 5574i32, "l_partkey": 33i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 21.0d, "l_extendedprice": 19593.63d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-03-22", "l_commitdate": "1992-04-26", "l_receiptdate": "1992-04-16", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "fully final dugouts. express foxes nag " }, { "l_orderkey": 5733i32, "l_partkey": 33i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 39.0d, "l_extendedprice": 36388.17d, "l_discount": 0.01d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-03-22", "l_commitdate": "1993-05-24", "l_receiptdate": "1993-04-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "side of the" } ] }
+{ "partkey": 34i32, "lines": [ { "l_orderkey": 33i32, "l_partkey": 34i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 41.0d, "l_extendedprice": 38295.23d, "l_discount": 0.09d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-11-09", "l_commitdate": "1994-01-24", "l_receiptdate": "1993-11-11", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "unusual packages doubt caref" }, { "l_orderkey": 165i32, "l_partkey": 34i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 3.0d, "l_extendedprice": 2802.09d, "l_discount": 0.01d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-03-29", "l_commitdate": "1993-03-06", "l_receiptdate": "1993-04-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "riously requests. depos" }, { "l_orderkey": 230i32, "l_partkey": 34i32, "l_suppkey": 10i32, "l_linenumber": 6i32, "l_quantity": 8.0d, "l_extendedprice": 7472.24d, "l_discount": 0.0d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-11-21", "l_commitdate": "1994-01-05", "l_receiptdate": "1993-12-19", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "nal ideas. silent, reg" }, { "l_orderkey": 322i32, "l_partkey": 34i32, "l_suppkey": 5i32, "l_linenumber": 6i32, "l_quantity": 3.0d, "l_extendedprice": 2802.09d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-07-03", "l_commitdate": "1992-05-10", "l_receiptdate": "1992-07-28", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "ending, ironic deposits along the blith" }, { "l_orderkey": 576i32, "l_partkey": 34i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 6.0d, "l_extendedprice": 5604.18d, "l_discount": 0.06d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-15", "l_commitdate": "1997-07-26", "l_receiptdate": "1997-06-03", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "al deposits. slyly even sauternes a" }, { "l_orderkey": 645i32, "l_partkey": 34i32, "l_suppkey": 5i32, "l_linenumber": 6i32, "l_quantity": 18.0d, "l_extendedprice": 16812.54d, "l_discount": 0.1d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-03-02", "l_commitdate": "1995-02-08", "l_receiptdate": "1995-03-03", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "ep. slyly even " }, { "l_orderkey": 961i32, "l_partkey": 34i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 29.0d, "l_extendedprice": 27086.87d, "l_discount": 0.0d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "F", "l_shipdate": "1995-06-10", "l_commitdate": "1995-08-20", "l_receiptdate": "1995-06-26", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "l accounts use blithely against the" }, { "l_orderkey": 1284i32, "l_partkey": 34i32, "l_suppkey": 5i32, "l_linenumber": 5i32, "l_quantity": 9.0d, "l_extendedprice": 8406.27d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-03", "l_commitdate": "1996-03-19", "l_receiptdate": "1996-04-01", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "after the pending" }, { "l_orderkey": 1381i32, "l_partkey": 34i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 12.0d, "l_extendedprice": 11208.36d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-13", "l_commitdate": "1998-08-12", "l_receiptdate": "1998-08-28", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": " furiously regular package" }, { "l_orderkey": 1443i32, "l_partkey": 34i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 47.0d, "l_extendedprice": 43899.41d, "l_discount": 0.04d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-05", "l_commitdate": "1997-02-02", "l_receiptdate": "1997-03-03", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "carefully ironic requests sl" }, { "l_orderkey": 1478i32, "l_partkey": 34i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 21.0d, "l_extendedprice": 19614.63d, "l_discount": 0.0d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-20", "l_commitdate": "1997-10-25", "l_receiptdate": "1997-10-06", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": " fluffily pending acc" }, { "l_orderkey": 1571i32, "l_partkey": 34i32, "l_suppkey": 10i32, "l_linenumber": 6i32, "l_quantity": 24.0d, "l_extendedprice": 22416.72d, "l_discount": 0.05d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-03-22", "l_commitdate": "1993-01-31", "l_receiptdate": "1993-04-09", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "warthogs wake carefully acro" }, { "l_orderkey": 1733i32, "l_partkey": 34i32, "l_suppkey": 5i32, "l_linenumber": 5i32, "l_quantity": 22.0d, "l_extendedprice": 20548.66d, "l_discount": 0.06d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-16", "l_commitdate": "1996-07-24", "l_receiptdate": "1996-07-30", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "gainst the final deposits. carefully final " }, { "l_orderkey": 1766i32, "l_partkey": 34i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 12.0d, "l_extendedprice": 11208.36d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-28", "l_commitdate": "1996-12-18", "l_receiptdate": "1996-11-15", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "heodolites above the final, regular acc" }, { "l_orderkey": 1920i32, "l_partkey": 34i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 14.0d, "l_extendedprice": 13076.42d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-10-22", "l_commitdate": "1998-08-10", "l_receiptdate": "1998-10-27", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "ickly ironic d" }, { "l_orderkey": 1924i32, "l_partkey": 34i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 31.0d, "l_extendedprice": 28954.93d, "l_discount": 0.03d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-20", "l_commitdate": "1996-10-19", "l_receiptdate": "1996-10-19", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": " the slyly regular foxes. ruthle" }, { "l_orderkey": 2020i32, "l_partkey": 34i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 50.0d, "l_extendedprice": 46701.5d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-07-12", "l_commitdate": "1993-08-28", "l_receiptdate": "1993-08-02", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "ts against the pending ideas serve along" }, { "l_orderkey": 2272i32, "l_partkey": 34i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 40.0d, "l_extendedprice": 37361.2d, "l_discount": 0.07d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-04-25", "l_commitdate": "1993-07-12", "l_receiptdate": "1993-05-15", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "lithely ir" }, { "l_orderkey": 2275i32, "l_partkey": 34i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 30.0d, "l_extendedprice": 28020.9d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-01-10", "l_commitdate": "1992-11-21", "l_receiptdate": "1993-01-22", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "re slyly slyly special idea" }, { "l_orderkey": 2307i32, "l_partkey": 34i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 7.0d, "l_extendedprice": 6538.21d, "l_discount": 0.07d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-08-03", "l_commitdate": "1993-09-04", "l_receiptdate": "1993-08-28", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "ven instructions wake fluffily " }, { "l_orderkey": 2497i32, "l_partkey": 34i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 28.0d, "l_extendedprice": 26152.84d, "l_discount": 0.02d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-12-02", "l_commitdate": "1992-11-21", "l_receiptdate": "1992-12-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "ouches. special, regular requests" }, { "l_orderkey": 2722i32, "l_partkey": 34i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 16.0d, "l_extendedprice": 14944.48d, "l_discount": 0.04d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-05-25", "l_commitdate": "1994-06-09", "l_receiptdate": "1994-05-26", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "ts besides the fluffy," }, { "l_orderkey": 3270i32, "l_partkey": 34i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 32.0d, "l_extendedprice": 29888.96d, "l_discount": 0.03d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-23", "l_commitdate": "1997-08-17", "l_receiptdate": "1997-09-27", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "promise carefully." }, { "l_orderkey": 3845i32, "l_partkey": 34i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 44.0d, "l_extendedprice": 41097.32d, "l_discount": 0.01d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-07-20", "l_commitdate": "1992-07-15", "l_receiptdate": "1992-07-24", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "s haggle among the fluffily regula" }, { "l_orderkey": 4614i32, "l_partkey": 34i32, "l_suppkey": 5i32, "l_linenumber": 6i32, "l_quantity": 32.0d, "l_extendedprice": 29888.96d, "l_discount": 0.1d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-21", "l_commitdate": "1996-05-28", "l_receiptdate": "1996-09-16", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "ickly furio" }, { "l_orderkey": 4646i32, "l_partkey": 34i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 18.0d, "l_extendedprice": 16812.54d, "l_discount": 0.01d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-30", "l_commitdate": "1996-08-10", "l_receiptdate": "1996-07-12", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "beans sleep car" }, { "l_orderkey": 4675i32, "l_partkey": 34i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 26.0d, "l_extendedprice": 24284.78d, "l_discount": 0.03d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-12-16", "l_commitdate": "1993-12-29", "l_receiptdate": "1993-12-23", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "nts. express requests are quickly " }, { "l_orderkey": 4707i32, "l_partkey": 34i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 7.0d, "l_extendedprice": 6538.21d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-05-14", "l_commitdate": "1995-04-06", "l_receiptdate": "1995-06-06", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "ecial sheaves boost blithely accor" }, { "l_orderkey": 4743i32, "l_partkey": 34i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 27.0d, "l_extendedprice": 25218.81d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-07-26", "l_commitdate": "1993-05-27", "l_receiptdate": "1993-08-24", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "aids use. express deposits" }, { "l_orderkey": 4899i32, "l_partkey": 34i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 14.0d, "l_extendedprice": 13076.42d, "l_discount": 0.06d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-11-10", "l_commitdate": "1994-01-10", "l_receiptdate": "1993-11-20", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": " foxes eat" }, { "l_orderkey": 5089i32, "l_partkey": 34i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 38.0d, "l_extendedprice": 35493.14d, "l_discount": 0.05d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-11-23", "l_commitdate": "1992-09-11", "l_receiptdate": "1992-12-22", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "regular instructions are" }, { "l_orderkey": 5285i32, "l_partkey": 34i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 24.0d, "l_extendedprice": 22416.72d, "l_discount": 0.02d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-04-19", "l_commitdate": "1994-04-03", "l_receiptdate": "1994-04-25", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "ess packages. quick, even deposits snooze b" }, { "l_orderkey": 5345i32, "l_partkey": 34i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 22.0d, "l_extendedprice": 20548.66d, "l_discount": 0.02d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-27", "l_commitdate": "1997-11-22", "l_receiptdate": "1997-09-10", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "leep slyly regular fox" } ] }
+{ "partkey": 35i32, "lines": [ { "l_orderkey": 68i32, "l_partkey": 35i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 46.0d, "l_extendedprice": 43011.38d, "l_discount": 0.04d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-13", "l_commitdate": "1998-07-08", "l_receiptdate": "1998-08-29", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "egular dependencies affix ironically along " }, { "l_orderkey": 71i32, "l_partkey": 35i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 45.0d, "l_extendedprice": 42076.35d, "l_discount": 0.0d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-02-23", "l_commitdate": "1998-03-20", "l_receiptdate": "1998-03-24", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": " ironic packages believe blithely a" }, { "l_orderkey": 326i32, "l_partkey": 35i32, "l_suppkey": 6i32, "l_linenumber": 5i32, "l_quantity": 31.0d, "l_extendedprice": 28985.93d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-27", "l_commitdate": "1995-07-06", "l_receiptdate": "1995-10-22", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "cies sleep quick" }, { "l_orderkey": 418i32, "l_partkey": 35i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 3.0d, "l_extendedprice": 2805.09d, "l_discount": 0.04d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-06-29", "l_commitdate": "1995-07-12", "l_receiptdate": "1995-07-01", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "ly furiously regular w" }, { "l_orderkey": 1697i32, "l_partkey": 35i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 19.0d, "l_extendedprice": 17765.57d, "l_discount": 0.03d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-08", "l_commitdate": "1996-11-12", "l_receiptdate": "1997-01-11", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "ons? special, special accounts after" }, { "l_orderkey": 1701i32, "l_partkey": 35i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 26.0d, "l_extendedprice": 24310.78d, "l_discount": 0.1d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-06-04", "l_commitdate": "1992-07-11", "l_receiptdate": "1992-07-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": " accounts. blithely pending pinto be" }, { "l_orderkey": 2048i32, "l_partkey": 35i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 7.0d, "l_extendedprice": 6545.21d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-12-07", "l_commitdate": "1994-01-31", "l_receiptdate": "1994-01-05", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "lent platelets boost deposits. carefully sp" }, { "l_orderkey": 2049i32, "l_partkey": 35i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 31.0d, "l_extendedprice": 28985.93d, "l_discount": 0.1d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-25", "l_commitdate": "1996-02-25", "l_receiptdate": "1995-12-29", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": " packages are slyly alongside" }, { "l_orderkey": 2371i32, "l_partkey": 35i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 21.0d, "l_extendedprice": 19635.63d, "l_discount": 0.0d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-14", "l_commitdate": "1998-02-14", "l_receiptdate": "1998-04-18", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "gle furiously regu" }, { "l_orderkey": 2724i32, "l_partkey": 35i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 1.0d, "l_extendedprice": 935.03d, "l_discount": 0.07d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-12-26", "l_commitdate": "1994-11-27", "l_receiptdate": "1995-01-07", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "lyly carefully blithe theodolites-- pl" }, { "l_orderkey": 2880i32, "l_partkey": 35i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 40.0d, "l_extendedprice": 37401.2d, "l_discount": 0.09d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-05-26", "l_commitdate": "1992-06-01", "l_receiptdate": "1992-05-31", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "even requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven requests. quickeven req" }, { "l_orderkey": 2914i32, "l_partkey": 35i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 4.0d, "l_extendedprice": 3740.12d, "l_discount": 0.0d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-06-11", "l_commitdate": "1993-04-09", "l_receiptdate": "1993-06-14", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "s integrate. bold deposits sleep req" }, { "l_orderkey": 3270i32, "l_partkey": 35i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 11.0d, "l_extendedprice": 10285.33d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-29", "l_commitdate": "1997-08-11", "l_receiptdate": "1997-08-05", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": " solve at the regular deposits. " }, { "l_orderkey": 3460i32, "l_partkey": 35i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 40.0d, "l_extendedprice": 37401.2d, "l_discount": 0.08d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-29", "l_commitdate": "1995-11-10", "l_receiptdate": "1995-11-24", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "o the even deposits" }, { "l_orderkey": 4230i32, "l_partkey": 35i32, "l_suppkey": 6i32, "l_linenumber": 6i32, "l_quantity": 30.0d, "l_extendedprice": 28050.9d, "l_discount": 0.05d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-03-11", "l_commitdate": "1992-04-29", "l_receiptdate": "1992-03-30", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "s. final excuses across the" }, { "l_orderkey": 4257i32, "l_partkey": 35i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 5.0d, "l_extendedprice": 4675.15d, "l_discount": 0.01d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-04-29", "l_commitdate": "1995-06-05", "l_receiptdate": "1995-05-13", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "n deposits. furiously e" }, { "l_orderkey": 4258i32, "l_partkey": 35i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 22.0d, "l_extendedprice": 20570.66d, "l_discount": 0.04d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-12", "l_commitdate": "1996-12-06", "l_receiptdate": "1996-12-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "e regular, even asym" }, { "l_orderkey": 4418i32, "l_partkey": 35i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 32.0d, "l_extendedprice": 29920.96d, "l_discount": 0.02d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-05-28", "l_commitdate": "1993-06-02", "l_receiptdate": "1993-05-30", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "ly. bold pinto b" }, { "l_orderkey": 4611i32, "l_partkey": 35i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 31.0d, "l_extendedprice": 28985.93d, "l_discount": 0.04d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-01-28", "l_commitdate": "1993-02-14", "l_receiptdate": "1993-01-29", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": " final pinto beans. permanent, sp" }, { "l_orderkey": 4769i32, "l_partkey": 35i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 16.0d, "l_extendedprice": 14960.48d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-16", "l_commitdate": "1995-07-05", "l_receiptdate": "1995-07-22", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": " deposits. slyly even asymptote" }, { "l_orderkey": 4804i32, "l_partkey": 35i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 41.0d, "l_extendedprice": 38336.23d, "l_discount": 0.1d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-04-06", "l_commitdate": "1992-04-12", "l_receiptdate": "1992-05-03", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": ". deposits haggle express tithes?" }, { "l_orderkey": 4833i32, "l_partkey": 35i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 4.0d, "l_extendedprice": 3740.12d, "l_discount": 0.1d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-16", "l_commitdate": "1996-06-29", "l_receiptdate": "1996-08-22", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "y pending packages sleep blithely regular r" }, { "l_orderkey": 5153i32, "l_partkey": 35i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 42.0d, "l_extendedprice": 39271.26d, "l_discount": 0.03d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-03", "l_commitdate": "1995-11-09", "l_receiptdate": "1995-10-11", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "re thinly. ironic" }, { "l_orderkey": 5315i32, "l_partkey": 35i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 12.0d, "l_extendedprice": 11220.36d, "l_discount": 0.08d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-12-18", "l_commitdate": "1993-01-16", "l_receiptdate": "1993-01-10", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "ccounts. furiously ironi" }, { "l_orderkey": 5414i32, "l_partkey": 35i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 23.0d, "l_extendedprice": 21505.69d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-07-22", "l_commitdate": "1993-05-26", "l_receiptdate": "1993-08-08", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "e bold, express dolphins. spec" }, { "l_orderkey": 5856i32, "l_partkey": 35i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 35.0d, "l_extendedprice": 32726.05d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-11-24", "l_commitdate": "1994-12-23", "l_receiptdate": "1994-11-30", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "excuses. finally ir" } ] }
+{ "partkey": 36i32, "lines": [ { "l_orderkey": 134i32, "l_partkey": 36i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 12.0d, "l_extendedprice": 11232.36d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-07-03", "l_commitdate": "1992-06-01", "l_receiptdate": "1992-07-11", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "nts are quic" }, { "l_orderkey": 258i32, "l_partkey": 36i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 25.0d, "l_extendedprice": 23400.75d, "l_discount": 0.08d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-04-13", "l_commitdate": "1994-02-26", "l_receiptdate": "1994-04-29", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "leep pending packages." }, { "l_orderkey": 962i32, "l_partkey": 36i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 27.0d, "l_extendedprice": 25272.81d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-05-11", "l_commitdate": "1994-07-10", "l_receiptdate": "1994-06-03", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "y slyly express deposits. final i" }, { "l_orderkey": 1126i32, "l_partkey": 36i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 44.0d, "l_extendedprice": 41185.32d, "l_discount": 0.08d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-07", "l_commitdate": "1998-04-02", "l_receiptdate": "1998-05-29", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "es. carefully special" }, { "l_orderkey": 1154i32, "l_partkey": 36i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 18.0d, "l_extendedprice": 16848.54d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-02-26", "l_commitdate": "1992-03-24", "l_receiptdate": "1992-03-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "y regular excuses cajole blithely. fi" }, { "l_orderkey": 1575i32, "l_partkey": 36i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 39.0d, "l_extendedprice": 36505.17d, "l_discount": 0.0d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-30", "l_commitdate": "1995-10-15", "l_receiptdate": "1995-11-10", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": " ironic requests snooze ironic, regular acc" }, { "l_orderkey": 1924i32, "l_partkey": 36i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 17.0d, "l_extendedprice": 15912.51d, "l_discount": 0.04d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-31", "l_commitdate": "1996-11-12", "l_receiptdate": "1997-01-25", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "e carefully theodolites. ironically ironic " }, { "l_orderkey": 1988i32, "l_partkey": 36i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 27.0d, "l_extendedprice": 25272.81d, "l_discount": 0.08d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-27", "l_commitdate": "1995-12-24", "l_receiptdate": "1996-02-24", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "uests. regular requests are according to t" }, { "l_orderkey": 2342i32, "l_partkey": 36i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 1.0d, "l_extendedprice": 936.03d, "l_discount": 0.04d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-31", "l_commitdate": "1996-08-09", "l_receiptdate": "1996-09-07", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "ffily. unusual pinto beans wake c" }, { "l_orderkey": 2371i32, "l_partkey": 36i32, "l_suppkey": 2i32, "l_linenumber": 7i32, "l_quantity": 32.0d, "l_extendedprice": 29952.96d, "l_discount": 0.07d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-02-15", "l_commitdate": "1998-04-03", "l_receiptdate": "1998-02-23", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "the ruthless accounts. " }, { "l_orderkey": 2404i32, "l_partkey": 36i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 1.0d, "l_extendedprice": 936.03d, "l_discount": 0.02d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-22", "l_commitdate": "1997-06-06", "l_receiptdate": "1997-05-28", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "from the final orbits? even pinto beans hag" }, { "l_orderkey": 2853i32, "l_partkey": 36i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 1.0d, "l_extendedprice": 936.03d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-09-01", "l_commitdate": "1994-06-27", "l_receiptdate": "1994-09-12", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "refully slyly quick packages. final c" }, { "l_orderkey": 3296i32, "l_partkey": 36i32, "l_suppkey": 2i32, "l_linenumber": 7i32, "l_quantity": 6.0d, "l_extendedprice": 5616.18d, "l_discount": 0.02d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-01-03", "l_commitdate": "1994-12-23", "l_receiptdate": "1995-01-27", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "carefully fur" }, { "l_orderkey": 3302i32, "l_partkey": 36i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 45.0d, "l_extendedprice": 42121.35d, "l_discount": 0.09d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-24", "l_commitdate": "1995-12-16", "l_receiptdate": "1996-02-13", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "counts use quickl" }, { "l_orderkey": 3303i32, "l_partkey": 36i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 26.0d, "l_extendedprice": 24336.78d, "l_discount": 0.09d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-18", "l_commitdate": "1998-03-11", "l_receiptdate": "1998-02-11", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "ickly permanent requests w" }, { "l_orderkey": 3395i32, "l_partkey": 36i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 38.0d, "l_extendedprice": 35569.14d, "l_discount": 0.01d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-01-13", "l_commitdate": "1995-01-13", "l_receiptdate": "1995-01-25", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": " silent accounts are blithely" }, { "l_orderkey": 3521i32, "l_partkey": 36i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 28.0d, "l_extendedprice": 26208.84d, "l_discount": 0.1d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-01-06", "l_commitdate": "1993-01-22", "l_receiptdate": "1993-02-02", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "e slyly above the slyly final" }, { "l_orderkey": 4038i32, "l_partkey": 36i32, "l_suppkey": 2i32, "l_linenumber": 6i32, "l_quantity": 6.0d, "l_extendedprice": 5616.18d, "l_discount": 0.07d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-02-09", "l_commitdate": "1996-03-05", "l_receiptdate": "1996-03-10", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": " special instructions. packa" }, { "l_orderkey": 4131i32, "l_partkey": 36i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 8.0d, "l_extendedprice": 7488.24d, "l_discount": 0.04d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-03", "l_commitdate": "1998-03-15", "l_receiptdate": "1998-03-26", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": " after the furiously ironic d" }, { "l_orderkey": 4484i32, "l_partkey": 36i32, "l_suppkey": 7i32, "l_linenumber": 6i32, "l_quantity": 29.0d, "l_extendedprice": 27144.87d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-27", "l_commitdate": "1997-03-10", "l_receiptdate": "1997-01-13", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": " wake blithely ironic" }, { "l_orderkey": 4641i32, "l_partkey": 36i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 15.0d, "l_extendedprice": 14040.45d, "l_discount": 0.01d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-01-25", "l_commitdate": "1993-04-09", "l_receiptdate": "1993-02-05", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "s. carefully even exc" }, { "l_orderkey": 4768i32, "l_partkey": 36i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 5.0d, "l_extendedprice": 4680.15d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-12-27", "l_commitdate": "1994-02-09", "l_receiptdate": "1994-01-11", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "egular accounts. bravely final fra" }, { "l_orderkey": 4833i32, "l_partkey": 36i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 19.0d, "l_extendedprice": 17784.57d, "l_discount": 0.07d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-21", "l_commitdate": "1996-07-09", "l_receiptdate": "1996-09-10", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "y quick theodolit" }, { "l_orderkey": 4901i32, "l_partkey": 36i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 41.0d, "l_extendedprice": 38377.23d, "l_discount": 0.03d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-18", "l_commitdate": "1998-02-18", "l_receiptdate": "1998-04-14", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "efully bold packages affix carefully eve" }, { "l_orderkey": 5666i32, "l_partkey": 36i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 14.0d, "l_extendedprice": 13104.42d, "l_discount": 0.08d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-02-27", "l_commitdate": "1994-04-11", "l_receiptdate": "1994-03-06", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "lar deposits nag against the slyly final d" } ] }
+{ "partkey": 37i32, "lines": [ { "l_orderkey": 163i32, "l_partkey": 37i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 27.0d, "l_extendedprice": 25299.81d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-26", "l_commitdate": "1997-11-28", "l_receiptdate": "1998-01-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "ously express dependen" }, { "l_orderkey": 576i32, "l_partkey": 37i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 6.0d, "l_extendedprice": 5622.18d, "l_discount": 0.08d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-28", "l_commitdate": "1997-06-16", "l_receiptdate": "1997-09-25", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "ts. ironic multipliers " }, { "l_orderkey": 678i32, "l_partkey": 37i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 22.0d, "l_extendedprice": 20614.66d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-05-10", "l_commitdate": "1993-04-29", "l_receiptdate": "1993-06-08", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "de of the carefully even requests. bl" }, { "l_orderkey": 1026i32, "l_partkey": 37i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 6.0d, "l_extendedprice": 5622.18d, "l_discount": 0.1d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-07", "l_commitdate": "1997-08-16", "l_receiptdate": "1997-07-14", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "to beans. special, regular packages hagg" }, { "l_orderkey": 1088i32, "l_partkey": 37i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 11.0d, "l_extendedprice": 10307.33d, "l_discount": 0.06d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-08-30", "l_commitdate": "1992-07-25", "l_receiptdate": "1992-09-10", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "inal requests. fluffily express theod" }, { "l_orderkey": 1220i32, "l_partkey": 37i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 3.0d, "l_extendedprice": 2811.09d, "l_discount": 0.08d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-06", "l_commitdate": "1996-11-03", "l_receiptdate": "1996-09-10", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": " final theodolites. blithely silent " }, { "l_orderkey": 1319i32, "l_partkey": 37i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 12.0d, "l_extendedprice": 11244.36d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-05", "l_commitdate": "1996-12-12", "l_receiptdate": "1996-11-29", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "packages integrate furiously. expres" }, { "l_orderkey": 1923i32, "l_partkey": 37i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 9.0d, "l_extendedprice": 8433.27d, "l_discount": 0.01d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-29", "l_commitdate": "1997-09-13", "l_receiptdate": "1997-09-07", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "lites. ironic instructions integrate bravel" }, { "l_orderkey": 1923i32, "l_partkey": 37i32, "l_suppkey": 3i32, "l_linenumber": 6i32, "l_quantity": 50.0d, "l_extendedprice": 46851.5d, "l_discount": 0.03d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-11-04", "l_commitdate": "1997-08-08", "l_receiptdate": "1997-11-25", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "uickly along the bold courts. bold the" }, { "l_orderkey": 2500i32, "l_partkey": 37i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 34.0d, "l_extendedprice": 31859.02d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-10-03", "l_commitdate": "1992-11-11", "l_receiptdate": "1992-10-29", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": " stealthy a" }, { "l_orderkey": 2980i32, "l_partkey": 37i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 2.0d, "l_extendedprice": 1874.06d, "l_discount": 0.09d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-18", "l_commitdate": "1996-10-22", "l_receiptdate": "1996-11-27", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "enly across the special, pending packag" }, { "l_orderkey": 2981i32, "l_partkey": 37i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 14.0d, "l_extendedprice": 13118.42d, "l_discount": 0.03d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-30", "l_commitdate": "1998-10-04", "l_receiptdate": "1998-09-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "kages detect furiously express requests." }, { "l_orderkey": 3074i32, "l_partkey": 37i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 50.0d, "l_extendedprice": 46851.5d, "l_discount": 0.08d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-01-31", "l_commitdate": "1992-12-15", "l_receiptdate": "1993-02-20", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "furiously pending requests haggle s" }, { "l_orderkey": 3589i32, "l_partkey": 37i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 42.0d, "l_extendedprice": 39355.26d, "l_discount": 0.08d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-08-11", "l_commitdate": "1994-07-17", "l_receiptdate": "1994-08-23", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "he blithely unusual pac" }, { "l_orderkey": 4224i32, "l_partkey": 37i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 20.0d, "l_extendedprice": 18740.6d, "l_discount": 0.07d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-11-09", "l_commitdate": "1997-08-23", "l_receiptdate": "1997-11-14", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "unts promise across the requests. blith" }, { "l_orderkey": 4645i32, "l_partkey": 37i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 42.0d, "l_extendedprice": 39355.26d, "l_discount": 0.1d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-12-02", "l_commitdate": "1994-12-18", "l_receiptdate": "1994-12-16", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "regular pinto beans amon" }, { "l_orderkey": 5057i32, "l_partkey": 37i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 38.0d, "l_extendedprice": 35607.14d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-10-24", "l_commitdate": "1997-09-07", "l_receiptdate": "1997-10-30", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "packages. stealthily bold wa" } ] }
+{ "partkey": 38i32, "lines": [ { "l_orderkey": 5i32, "l_partkey": 38i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 50.0d, "l_extendedprice": 46901.5d, "l_discount": 0.08d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-08-08", "l_commitdate": "1994-10-13", "l_receiptdate": "1994-08-26", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "eodolites. fluffily unusual" }, { "l_orderkey": 69i32, "l_partkey": 38i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 3.0d, "l_extendedprice": 2814.09d, "l_discount": 0.09d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-06-06", "l_commitdate": "1994-07-27", "l_receiptdate": "1994-06-15", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": " blithely final d" }, { "l_orderkey": 70i32, "l_partkey": 38i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 37.0d, "l_extendedprice": 34707.11d, "l_discount": 0.09d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-02-13", "l_commitdate": "1994-03-16", "l_receiptdate": "1994-02-21", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "n accounts are. q" }, { "l_orderkey": 226i32, "l_partkey": 38i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 35.0d, "l_extendedprice": 32831.05d, "l_discount": 0.09d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-03-31", "l_commitdate": "1993-05-18", "l_receiptdate": "1993-04-01", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "osits cajole. final, even foxes a" }, { "l_orderkey": 322i32, "l_partkey": 38i32, "l_suppkey": 4i32, "l_linenumber": 7i32, "l_quantity": 5.0d, "l_extendedprice": 4690.15d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-04-15", "l_commitdate": "1992-05-12", "l_receiptdate": "1992-04-26", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": " special grouches sleep quickly instructio" }, { "l_orderkey": 804i32, "l_partkey": 38i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 21.0d, "l_extendedprice": 19698.63d, "l_discount": 0.01d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-04-12", "l_commitdate": "1993-06-06", "l_receiptdate": "1993-04-20", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "ular, ironic foxes. quickly even accounts" }, { "l_orderkey": 992i32, "l_partkey": 38i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 34.0d, "l_extendedprice": 31893.02d, "l_discount": 0.02d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-11-29", "l_commitdate": "1998-01-21", "l_receiptdate": "1997-11-30", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "s use silently. blithely regular ideas b" }, { "l_orderkey": 1026i32, "l_partkey": 38i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 36.0d, "l_extendedprice": 33769.08d, "l_discount": 0.1d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-14", "l_commitdate": "1997-07-20", "l_receiptdate": "1997-06-23", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "st the ide" }, { "l_orderkey": 1091i32, "l_partkey": 38i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 40.0d, "l_extendedprice": 37521.2d, "l_discount": 0.1d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-17", "l_commitdate": "1996-10-14", "l_receiptdate": "1996-12-24", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "platelets. regular packag" }, { "l_orderkey": 1414i32, "l_partkey": 38i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 39.0d, "l_extendedprice": 36583.17d, "l_discount": 0.1d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-22", "l_commitdate": "1995-09-30", "l_receiptdate": "1995-10-07", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "quickly aro" }, { "l_orderkey": 1699i32, "l_partkey": 38i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 50.0d, "l_extendedprice": 46901.5d, "l_discount": 0.0d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-03-26", "l_commitdate": "1994-03-23", "l_receiptdate": "1994-04-20", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "to the final requests are carefully silent " }, { "l_orderkey": 2023i32, "l_partkey": 38i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 2.0d, "l_extendedprice": 1876.06d, "l_discount": 0.01d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-08-27", "l_commitdate": "1992-07-16", "l_receiptdate": "1992-08-29", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "ing packages. fluffily silen" }, { "l_orderkey": 2213i32, "l_partkey": 38i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 43.0d, "l_extendedprice": 40335.29d, "l_discount": 0.04d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-04-18", "l_commitdate": "1993-03-11", "l_receiptdate": "1993-05-11", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "r packages are along the carefully bol" }, { "l_orderkey": 3014i32, "l_partkey": 38i32, "l_suppkey": 4i32, "l_linenumber": 6i32, "l_quantity": 30.0d, "l_extendedprice": 28140.9d, "l_discount": 0.04d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-02-28", "l_commitdate": "1993-01-02", "l_receiptdate": "1993-03-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": " final foxes." }, { "l_orderkey": 3104i32, "l_partkey": 38i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 26.0d, "l_extendedprice": 24388.78d, "l_discount": 0.02d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-01-02", "l_commitdate": "1993-12-05", "l_receiptdate": "1994-01-31", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "es boost carefully. slyly " }, { "l_orderkey": 3266i32, "l_partkey": 38i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 43.0d, "l_extendedprice": 40335.29d, "l_discount": 0.06d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-05-04", "l_commitdate": "1995-05-30", "l_receiptdate": "1995-05-11", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "ular asymptotes use careful" }, { "l_orderkey": 3269i32, "l_partkey": 38i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 46.0d, "l_extendedprice": 43149.38d, "l_discount": 0.0d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-04-21", "l_commitdate": "1996-04-12", "l_receiptdate": "1996-05-10", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "final asymptotes nag" }, { "l_orderkey": 3270i32, "l_partkey": 38i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 44.0d, "l_extendedprice": 41273.32d, "l_discount": 0.1d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-20", "l_commitdate": "1997-08-15", "l_receiptdate": "1997-08-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": " accounts. carefully even " }, { "l_orderkey": 3462i32, "l_partkey": 38i32, "l_suppkey": 4i32, "l_linenumber": 5i32, "l_quantity": 14.0d, "l_extendedprice": 13132.42d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-31", "l_commitdate": "1997-07-05", "l_receiptdate": "1997-06-24", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "yly. blithely bold theodolites wa" }, { "l_orderkey": 3904i32, "l_partkey": 38i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 22.0d, "l_extendedprice": 20636.66d, "l_discount": 0.04d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-02-02", "l_commitdate": "1998-02-09", "l_receiptdate": "1998-02-10", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "structions cajole carefully. carefully f" }, { "l_orderkey": 4033i32, "l_partkey": 38i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 34.0d, "l_extendedprice": 31893.02d, "l_discount": 0.07d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-07-19", "l_commitdate": "1993-08-05", "l_receiptdate": "1993-07-26", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "t the blithely dogg" }, { "l_orderkey": 4613i32, "l_partkey": 38i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 17.0d, "l_extendedprice": 15946.51d, "l_discount": 0.09d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-07", "l_commitdate": "1998-05-11", "l_receiptdate": "1998-06-29", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "liers cajole a" }, { "l_orderkey": 4864i32, "l_partkey": 38i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 38.0d, "l_extendedprice": 35645.14d, "l_discount": 0.1d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-12-20", "l_commitdate": "1993-01-07", "l_receiptdate": "1993-01-06", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "ording to the ironic, ir" }, { "l_orderkey": 4993i32, "l_partkey": 38i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 34.0d, "l_extendedprice": 31893.02d, "l_discount": 0.05d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-09-21", "l_commitdate": "1994-10-31", "l_receiptdate": "1994-09-24", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "ular, pending packages at the even packa" }, { "l_orderkey": 5601i32, "l_partkey": 38i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 29.0d, "l_extendedprice": 27202.87d, "l_discount": 0.09d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-04-06", "l_commitdate": "1992-02-24", "l_receiptdate": "1992-04-29", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": " ironic ideas. final" }, { "l_orderkey": 5798i32, "l_partkey": 38i32, "l_suppkey": 4i32, "l_linenumber": 6i32, "l_quantity": 9.0d, "l_extendedprice": 8442.27d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-05", "l_commitdate": "1998-05-25", "l_receiptdate": "1998-05-09", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "e blithely" } ] }
+{ "partkey": 39i32, "lines": [ { "l_orderkey": 100i32, "l_partkey": 39i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 14.0d, "l_extendedprice": 13146.42d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-22", "l_commitdate": "1998-05-01", "l_receiptdate": "1998-06-03", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "y. furiously ironic ideas gr" }, { "l_orderkey": 482i32, "l_partkey": 39i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 46.0d, "l_extendedprice": 43195.38d, "l_discount": 0.01d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-19", "l_commitdate": "1996-06-05", "l_receiptdate": "1996-08-10", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "furiously thin realms. final, fina" }, { "l_orderkey": 612i32, "l_partkey": 39i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 28.0d, "l_extendedprice": 26292.84d, "l_discount": 0.05d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-11-12", "l_commitdate": "1992-12-05", "l_receiptdate": "1992-12-02", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "lyly regular asym" }, { "l_orderkey": 896i32, "l_partkey": 39i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 47.0d, "l_extendedprice": 44134.41d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-05-28", "l_commitdate": "1993-05-15", "l_receiptdate": "1993-06-15", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "ly even pinto beans integrate. b" }, { "l_orderkey": 1447i32, "l_partkey": 39i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 9.0d, "l_extendedprice": 8451.27d, "l_discount": 0.04d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-11-15", "l_commitdate": "1993-01-07", "l_receiptdate": "1992-11-29", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "counts wake s" }, { "l_orderkey": 1569i32, "l_partkey": 39i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 16.0d, "l_extendedprice": 15024.48d, "l_discount": 0.01d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-26", "l_commitdate": "1998-06-16", "l_receiptdate": "1998-05-26", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "deposits. blithely final asymptotes ac" }, { "l_orderkey": 1600i32, "l_partkey": 39i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 8.0d, "l_extendedprice": 7512.24d, "l_discount": 0.04d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-03-07", "l_commitdate": "1993-04-22", "l_receiptdate": "1993-03-26", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "cajole furiously fluf" }, { "l_orderkey": 1603i32, "l_partkey": 39i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 1.0d, "l_extendedprice": 939.03d, "l_discount": 0.08d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-08-17", "l_commitdate": "1993-09-04", "l_receiptdate": "1993-08-22", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "d accounts. special warthogs use fur" }, { "l_orderkey": 1958i32, "l_partkey": 39i32, "l_suppkey": 5i32, "l_linenumber": 7i32, "l_quantity": 29.0d, "l_extendedprice": 27231.87d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-14", "l_commitdate": "1995-11-06", "l_receiptdate": "1995-11-01", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "final requests nag according to the " }, { "l_orderkey": 2435i32, "l_partkey": 39i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 8.0d, "l_extendedprice": 7512.24d, "l_discount": 0.08d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-06-08", "l_commitdate": "1993-04-04", "l_receiptdate": "1993-06-29", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "e fluffily quickly final accounts. care" }, { "l_orderkey": 2535i32, "l_partkey": 39i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 12.0d, "l_extendedprice": 11268.36d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-07-17", "l_commitdate": "1993-08-17", "l_receiptdate": "1993-07-31", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "uses sleep among the packages. excuses " }, { "l_orderkey": 2596i32, "l_partkey": 39i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 19.0d, "l_extendedprice": 17841.57d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-02", "l_commitdate": "1996-11-03", "l_receiptdate": "1996-09-06", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "ias mold! sp" }, { "l_orderkey": 3396i32, "l_partkey": 39i32, "l_suppkey": 10i32, "l_linenumber": 6i32, "l_quantity": 18.0d, "l_extendedprice": 16902.54d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-07-27", "l_commitdate": "1994-06-26", "l_receiptdate": "1994-08-25", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "l requests haggle furiously along the fur" }, { "l_orderkey": 3461i32, "l_partkey": 39i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 44.0d, "l_extendedprice": 41317.32d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-05-20", "l_commitdate": "1993-04-03", "l_receiptdate": "1993-05-27", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": " haggle quickly even ideas. fin" }, { "l_orderkey": 3588i32, "l_partkey": 39i32, "l_suppkey": 5i32, "l_linenumber": 7i32, "l_quantity": 46.0d, "l_extendedprice": 43195.38d, "l_discount": 0.08d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-06-06", "l_commitdate": "1995-05-08", "l_receiptdate": "1995-06-08", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": " slyly ironic deposits sublate ab" }, { "l_orderkey": 4515i32, "l_partkey": 39i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 15.0d, "l_extendedprice": 14085.45d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-05-26", "l_commitdate": "1992-05-25", "l_receiptdate": "1992-06-03", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "posits wake" }, { "l_orderkey": 4774i32, "l_partkey": 39i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 4.0d, "l_extendedprice": 3756.12d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-08-03", "l_commitdate": "1993-05-30", "l_receiptdate": "1993-08-19", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "xes according to the foxes wake above the f" }, { "l_orderkey": 4994i32, "l_partkey": 39i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 40.0d, "l_extendedprice": 37561.2d, "l_discount": 0.01d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-25", "l_commitdate": "1996-08-16", "l_receiptdate": "1996-09-07", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "eposits. regula" }, { "l_orderkey": 5287i32, "l_partkey": 39i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 32.0d, "l_extendedprice": 30048.96d, "l_discount": 0.01d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-01-29", "l_commitdate": "1994-01-27", "l_receiptdate": "1994-02-08", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "heodolites haggle caref" }, { "l_orderkey": 5344i32, "l_partkey": 39i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 21.0d, "l_extendedprice": 19719.63d, "l_discount": 0.03d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-31", "l_commitdate": "1998-09-06", "l_receiptdate": "1998-09-02", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "xes. furiously even pinto beans sleep f" }, { "l_orderkey": 5570i32, "l_partkey": 39i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 15.0d, "l_extendedprice": 14085.45d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-04", "l_commitdate": "1996-10-05", "l_receiptdate": "1996-10-28", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "beans nag slyly special, regular pack" }, { "l_orderkey": 5958i32, "l_partkey": 39i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 18.0d, "l_extendedprice": 16902.54d, "l_discount": 0.04d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-02", "l_commitdate": "1995-10-17", "l_receiptdate": "1995-12-22", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "regular requests haggle" } ] }
+{ "partkey": 40i32, "lines": [ { "l_orderkey": 129i32, "l_partkey": 40i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 33.0d, "l_extendedprice": 31021.32d, "l_discount": 0.04d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-01-08", "l_commitdate": "1993-02-14", "l_receiptdate": "1993-01-29", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "sts nag bravely. fluffily" }, { "l_orderkey": 289i32, "l_partkey": 40i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 48.0d, "l_extendedprice": 45121.92d, "l_discount": 0.01d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-14", "l_commitdate": "1997-03-30", "l_receiptdate": "1997-03-24", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "sits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole. bold pinto beans x-ray flsits cajole." }, { "l_orderkey": 417i32, "l_partkey": 40i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 39.0d, "l_extendedprice": 36661.56d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-05-31", "l_commitdate": "1994-05-02", "l_receiptdate": "1994-06-06", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "y regular requests wake along " }, { "l_orderkey": 773i32, "l_partkey": 40i32, "l_suppkey": 1i32, "l_linenumber": 6i32, "l_quantity": 43.0d, "l_extendedprice": 40421.72d, "l_discount": 0.07d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-11-06", "l_commitdate": "1993-11-20", "l_receiptdate": "1993-11-08", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "furiously bold dependencies. blithel" }, { "l_orderkey": 931i32, "l_partkey": 40i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 18.0d, "l_extendedprice": 16920.72d, "l_discount": 0.0d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-04-04", "l_commitdate": "1993-01-11", "l_receiptdate": "1993-04-13", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "slyly ironic re" }, { "l_orderkey": 993i32, "l_partkey": 40i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 10.0d, "l_extendedprice": 9400.4d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-17", "l_commitdate": "1995-11-13", "l_receiptdate": "1995-12-20", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "encies wake fur" }, { "l_orderkey": 1252i32, "l_partkey": 40i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 19.0d, "l_extendedprice": 17860.76d, "l_discount": 0.07d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-10-13", "l_commitdate": "1997-10-23", "l_receiptdate": "1997-10-18", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "ts wake carefully-- packages sleep. quick " }, { "l_orderkey": 1507i32, "l_partkey": 40i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 33.0d, "l_extendedprice": 31021.32d, "l_discount": 0.04d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-10-29", "l_commitdate": "1993-12-23", "l_receiptdate": "1993-11-14", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": " asymptotes nag furiously above t" }, { "l_orderkey": 1543i32, "l_partkey": 40i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 9.0d, "l_extendedprice": 8460.36d, "l_discount": 0.08d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-14", "l_commitdate": "1997-05-19", "l_receiptdate": "1997-03-26", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "ravely special requests " }, { "l_orderkey": 1667i32, "l_partkey": 40i32, "l_suppkey": 6i32, "l_linenumber": 7i32, "l_quantity": 19.0d, "l_extendedprice": 17860.76d, "l_discount": 0.09d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-23", "l_commitdate": "1997-11-24", "l_receiptdate": "1998-01-26", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "around the pinto beans. express, special" }, { "l_orderkey": 1924i32, "l_partkey": 40i32, "l_suppkey": 1i32, "l_linenumber": 7i32, "l_quantity": 21.0d, "l_extendedprice": 19740.84d, "l_discount": 0.09d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-21", "l_commitdate": "1996-11-12", "l_receiptdate": "1996-10-02", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": " blithely reg" }, { "l_orderkey": 1926i32, "l_partkey": 40i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 29.0d, "l_extendedprice": 27261.16d, "l_discount": 0.06d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-02-29", "l_commitdate": "1996-03-13", "l_receiptdate": "1996-03-24", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "hily unusual packages are fluffily am" }, { "l_orderkey": 2818i32, "l_partkey": 40i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 32.0d, "l_extendedprice": 30081.28d, "l_discount": 0.08d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-02-04", "l_commitdate": "1995-03-05", "l_receiptdate": "1995-02-18", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "arefully! ac" }, { "l_orderkey": 3110i32, "l_partkey": 40i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 16.0d, "l_extendedprice": 15040.64d, "l_discount": 0.04d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-01-10", "l_commitdate": "1995-02-06", "l_receiptdate": "1995-01-26", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "across the regular acco" }, { "l_orderkey": 3139i32, "l_partkey": 40i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 46.0d, "l_extendedprice": 43241.84d, "l_discount": 0.08d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-04-28", "l_commitdate": "1992-03-04", "l_receiptdate": "1992-05-19", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "of the unusual, unusual re" }, { "l_orderkey": 3170i32, "l_partkey": 40i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 12.0d, "l_extendedprice": 11280.48d, "l_discount": 0.03d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-02-12", "l_commitdate": "1998-01-17", "l_receiptdate": "1998-02-24", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "ing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing accounts along the speciing acco" }, { "l_orderkey": 3366i32, "l_partkey": 40i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 4.0d, "l_extendedprice": 3760.16d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-20", "l_commitdate": "1997-06-25", "l_receiptdate": "1997-06-03", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": " carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefully about carefull" }, { "l_orderkey": 3462i32, "l_partkey": 40i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 43.0d, "l_extendedprice": 40421.72d, "l_discount": 0.08d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-01", "l_commitdate": "1997-07-18", "l_receiptdate": "1997-08-29", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": " carefully. final, final ideas sleep slyly" }, { "l_orderkey": 3906i32, "l_partkey": 40i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 50.0d, "l_extendedprice": 47002.0d, "l_discount": 0.01d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-09-24", "l_commitdate": "1992-08-24", "l_receiptdate": "1992-09-29", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "ke slyly. stealt" }, { "l_orderkey": 3973i32, "l_partkey": 40i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 40.0d, "l_extendedprice": 37601.6d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-05-03", "l_commitdate": "1992-06-09", "l_receiptdate": "1992-05-21", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "g the carefully blithe f" }, { "l_orderkey": 4002i32, "l_partkey": 40i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 6.0d, "l_extendedprice": 5640.24d, "l_discount": 0.08d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-02", "l_commitdate": "1997-07-07", "l_receiptdate": "1997-05-16", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": " furiously furiously special theodoli" }, { "l_orderkey": 4064i32, "l_partkey": 40i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 15.0d, "l_extendedprice": 14100.6d, "l_discount": 0.02d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-09", "l_commitdate": "1996-12-04", "l_receiptdate": "1996-11-18", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "braids affix across the regular sheave" }, { "l_orderkey": 4231i32, "l_partkey": 40i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 35.0d, "l_extendedprice": 32901.4d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-02-21", "l_commitdate": "1998-01-24", "l_receiptdate": "1998-03-18", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "le quickly regular, unus" }, { "l_orderkey": 4292i32, "l_partkey": 40i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 1.0d, "l_extendedprice": 940.04d, "l_discount": 0.03d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-02-07", "l_commitdate": "1992-03-16", "l_receiptdate": "1992-02-10", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": " the furiously ev" }, { "l_orderkey": 4646i32, "l_partkey": 40i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 38.0d, "l_extendedprice": 35721.52d, "l_discount": 0.08d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-01", "l_commitdate": "1996-08-23", "l_receiptdate": "1996-09-27", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "al platelets cajole. slyly final dol" }, { "l_orderkey": 4802i32, "l_partkey": 40i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 6.0d, "l_extendedprice": 5640.24d, "l_discount": 0.0d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-16", "l_commitdate": "1997-03-25", "l_receiptdate": "1997-04-21", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "unusual accounts wake blithely. b" }, { "l_orderkey": 4935i32, "l_partkey": 40i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 37.0d, "l_extendedprice": 34781.48d, "l_discount": 0.01d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-08-30", "l_commitdate": "1993-07-23", "l_receiptdate": "1993-09-07", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "y even dependencies nag a" }, { "l_orderkey": 4995i32, "l_partkey": 40i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 9.0d, "l_extendedprice": 8460.36d, "l_discount": 0.07d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-07", "l_commitdate": "1996-03-17", "l_receiptdate": "1996-03-11", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": " ironic packages cajole across t" }, { "l_orderkey": 4997i32, "l_partkey": 40i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 5.0d, "l_extendedprice": 4700.2d, "l_discount": 0.1d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-12", "l_commitdate": "1998-04-24", "l_receiptdate": "1998-06-13", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "aggle slyly alongside of the slyly i" }, { "l_orderkey": 5286i32, "l_partkey": 40i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 6.0d, "l_extendedprice": 5640.24d, "l_discount": 0.04d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-10-15", "l_commitdate": "1997-12-05", "l_receiptdate": "1997-11-12", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "y special a" }, { "l_orderkey": 5347i32, "l_partkey": 40i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 4.0d, "l_extendedprice": 3760.16d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-03-24", "l_commitdate": "1995-04-03", "l_receiptdate": "1995-04-01", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "ldly pending asymptotes ki" }, { "l_orderkey": 5505i32, "l_partkey": 40i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 18.0d, "l_extendedprice": 16920.72d, "l_discount": 0.04d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-10-25", "l_commitdate": "1997-12-12", "l_receiptdate": "1997-10-30", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": " to the quickly express pac" }, { "l_orderkey": 5829i32, "l_partkey": 40i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 4.0d, "l_extendedprice": 3760.16d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-01", "l_commitdate": "1997-02-17", "l_receiptdate": "1997-03-22", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "ithely; accounts cajole ideas. regular foxe" }, { "l_orderkey": 5959i32, "l_partkey": 40i32, "l_suppkey": 6i32, "l_linenumber": 5i32, "l_quantity": 37.0d, "l_extendedprice": 34781.48d, "l_discount": 0.04d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-06-05", "l_commitdate": "1992-07-18", "l_receiptdate": "1992-06-29", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "endencies. brai" } ] }
+{ "partkey": 41i32, "lines": [ { "l_orderkey": 67i32, "l_partkey": 41i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 23.0d, "l_extendedprice": 21643.92d, "l_discount": 0.05d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-19", "l_commitdate": "1997-02-14", "l_receiptdate": "1997-05-06", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "ly regular deposit" }, { "l_orderkey": 98i32, "l_partkey": 41i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 28.0d, "l_extendedprice": 26349.12d, "l_discount": 0.06d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-12-24", "l_commitdate": "1994-10-25", "l_receiptdate": "1995-01-16", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": " pending, regular accounts s" }, { "l_orderkey": 226i32, "l_partkey": 41i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 45.0d, "l_extendedprice": 42346.8d, "l_discount": 0.1d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-04-17", "l_commitdate": "1993-05-27", "l_receiptdate": "1993-05-11", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": " carefully pending pi" }, { "l_orderkey": 517i32, "l_partkey": 41i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 9.0d, "l_extendedprice": 8469.36d, "l_discount": 0.04d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-03", "l_commitdate": "1997-06-16", "l_receiptdate": "1997-05-24", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": " slyly stealthily express instructions. " }, { "l_orderkey": 1314i32, "l_partkey": 41i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 11.0d, "l_extendedprice": 10351.44d, "l_discount": 0.01d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-05-16", "l_commitdate": "1994-07-30", "l_receiptdate": "1994-05-31", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "tegrate furious" }, { "l_orderkey": 1316i32, "l_partkey": 41i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 40.0d, "l_extendedprice": 37641.6d, "l_discount": 0.01d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-02-04", "l_commitdate": "1994-02-09", "l_receiptdate": "1994-02-27", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "l dugouts. co" }, { "l_orderkey": 2085i32, "l_partkey": 41i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 45.0d, "l_extendedprice": 42346.8d, "l_discount": 0.0d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-02-27", "l_commitdate": "1994-01-11", "l_receiptdate": "1994-03-29", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": ". carefully e" }, { "l_orderkey": 2279i32, "l_partkey": 41i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 38.0d, "l_extendedprice": 35759.52d, "l_discount": 0.08d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-06-09", "l_commitdate": "1993-04-06", "l_receiptdate": "1993-06-26", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "s above the furiously express dep" }, { "l_orderkey": 2406i32, "l_partkey": 41i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 40.0d, "l_extendedprice": 37641.6d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-09", "l_commitdate": "1996-12-02", "l_receiptdate": "1997-01-16", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "gular accounts caj" }, { "l_orderkey": 2852i32, "l_partkey": 41i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 24.0d, "l_extendedprice": 22584.96d, "l_discount": 0.05d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-01-18", "l_commitdate": "1993-03-13", "l_receiptdate": "1993-02-14", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": " the blithe" }, { "l_orderkey": 2917i32, "l_partkey": 41i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 37.0d, "l_extendedprice": 34818.48d, "l_discount": 0.04d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-12", "l_commitdate": "1998-02-03", "l_receiptdate": "1997-12-23", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "dependencies. express " }, { "l_orderkey": 3073i32, "l_partkey": 41i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 25.0d, "l_extendedprice": 23526.0d, "l_discount": 0.0d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-04-14", "l_commitdate": "1994-03-07", "l_receiptdate": "1994-04-22", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "nag asymptotes. pinto beans sleep " }, { "l_orderkey": 3170i32, "l_partkey": 41i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 34.0d, "l_extendedprice": 31995.36d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-02-01", "l_commitdate": "1998-01-11", "l_receiptdate": "1998-02-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "s about the fluffily final de" }, { "l_orderkey": 3367i32, "l_partkey": 41i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 27.0d, "l_extendedprice": 25408.08d, "l_discount": 0.01d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-04-13", "l_commitdate": "1993-03-16", "l_receiptdate": "1993-04-26", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "kly even instructions caj" }, { "l_orderkey": 3459i32, "l_partkey": 41i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 45.0d, "l_extendedprice": 42346.8d, "l_discount": 0.04d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-07-31", "l_commitdate": "1994-09-09", "l_receiptdate": "1994-08-02", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "ntly speci" }, { "l_orderkey": 3617i32, "l_partkey": 41i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 22.0d, "l_extendedprice": 20702.88d, "l_discount": 0.1d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-11", "l_commitdate": "1996-05-02", "l_receiptdate": "1996-07-25", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "uffily even accounts. packages sleep blithe" }, { "l_orderkey": 3878i32, "l_partkey": 41i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 20.0d, "l_extendedprice": 18820.8d, "l_discount": 0.08d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-20", "l_commitdate": "1997-05-24", "l_receiptdate": "1997-07-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "the furiously careful ideas cajole slyly sl" }, { "l_orderkey": 3941i32, "l_partkey": 41i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 47.0d, "l_extendedprice": 44228.88d, "l_discount": 0.05d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-24", "l_commitdate": "1996-10-09", "l_receiptdate": "1996-12-22", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": " carefully pending" }, { "l_orderkey": 4001i32, "l_partkey": 41i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 19.0d, "l_extendedprice": 17879.76d, "l_discount": 0.03d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-23", "l_commitdate": "1997-06-15", "l_receiptdate": "1997-09-18", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "ackages. carefully ironi" }, { "l_orderkey": 4165i32, "l_partkey": 41i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 12.0d, "l_extendedprice": 11292.48d, "l_discount": 0.0d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-20", "l_commitdate": "1997-10-20", "l_receiptdate": "1997-10-12", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "nwind slow theodolites. carefully pending " }, { "l_orderkey": 4448i32, "l_partkey": 41i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 35.0d, "l_extendedprice": 32936.4d, "l_discount": 0.1d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-09-18", "l_commitdate": "1998-07-27", "l_receiptdate": "1998-10-08", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "aggle carefully alongside of the q" }, { "l_orderkey": 4512i32, "l_partkey": 41i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 24.0d, "l_extendedprice": 22584.96d, "l_discount": 0.04d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-16", "l_commitdate": "1996-01-16", "l_receiptdate": "1995-12-25", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "ly regular pinto beans. carefully bold depo" }, { "l_orderkey": 4869i32, "l_partkey": 41i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 31.0d, "l_extendedprice": 29172.24d, "l_discount": 0.1d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-01-17", "l_commitdate": "1994-11-30", "l_receiptdate": "1995-02-02", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "ins. always unusual ideas across the ir" }, { "l_orderkey": 4896i32, "l_partkey": 41i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 19.0d, "l_extendedprice": 17879.76d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-12-13", "l_commitdate": "1992-11-13", "l_receiptdate": "1993-01-09", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "nusual requ" }, { "l_orderkey": 4964i32, "l_partkey": 41i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 42.0d, "l_extendedprice": 39523.68d, "l_discount": 0.06d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-04", "l_commitdate": "1997-08-28", "l_receiptdate": "1997-10-02", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": " hinder. idly even" } ] }
+{ "partkey": 42i32, "lines": [ { "l_orderkey": 197i32, "l_partkey": 42i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 14.0d, "l_extendedprice": 13188.56d, "l_discount": 0.09d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-05-08", "l_commitdate": "1995-05-24", "l_receiptdate": "1995-05-12", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "use slyly slyly silent depo" }, { "l_orderkey": 260i32, "l_partkey": 42i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 27.0d, "l_extendedprice": 25435.08d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-23", "l_commitdate": "1997-02-15", "l_receiptdate": "1997-04-22", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "ions according to the" }, { "l_orderkey": 327i32, "l_partkey": 42i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 9.0d, "l_extendedprice": 8478.36d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-05-24", "l_commitdate": "1995-07-11", "l_receiptdate": "1995-06-05", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": " asymptotes are fu" }, { "l_orderkey": 771i32, "l_partkey": 42i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 7.0d, "l_extendedprice": 6594.28d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-06-18", "l_commitdate": "1995-08-31", "l_receiptdate": "1995-06-20", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "theodolites after the fluffily express " }, { "l_orderkey": 903i32, "l_partkey": 42i32, "l_suppkey": 3i32, "l_linenumber": 5i32, "l_quantity": 1.0d, "l_extendedprice": 942.04d, "l_discount": 0.04d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-22", "l_commitdate": "1995-09-13", "l_receiptdate": "1995-11-03", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "y final platelets sublate among the " }, { "l_orderkey": 1152i32, "l_partkey": 42i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 6.0d, "l_extendedprice": 5652.24d, "l_discount": 0.07d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-12-07", "l_commitdate": "1994-11-05", "l_receiptdate": "1994-12-25", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "p furiously; packages above th" }, { "l_orderkey": 1216i32, "l_partkey": 42i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 18.0d, "l_extendedprice": 16956.72d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-01-20", "l_commitdate": "1993-01-28", "l_receiptdate": "1993-02-02", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "y final packages nod " }, { "l_orderkey": 1218i32, "l_partkey": 42i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 1.0d, "l_extendedprice": 942.04d, "l_discount": 0.01d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-09-15", "l_commitdate": "1994-09-07", "l_receiptdate": "1994-10-03", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "press furio" }, { "l_orderkey": 1413i32, "l_partkey": 42i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 6.0d, "l_extendedprice": 5652.24d, "l_discount": 0.04d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-07", "l_commitdate": "1997-07-30", "l_receiptdate": "1997-09-21", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "lithely excuses. f" }, { "l_orderkey": 1571i32, "l_partkey": 42i32, "l_suppkey": 5i32, "l_linenumber": 5i32, "l_quantity": 10.0d, "l_extendedprice": 9420.4d, "l_discount": 0.03d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-12-12", "l_commitdate": "1993-02-13", "l_receiptdate": "1992-12-29", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "lets. carefully regular ideas wake" }, { "l_orderkey": 1604i32, "l_partkey": 42i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 15.0d, "l_extendedprice": 14130.6d, "l_discount": 0.09d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-09-22", "l_commitdate": "1993-09-03", "l_receiptdate": "1993-09-29", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": " instructions haggle" }, { "l_orderkey": 1702i32, "l_partkey": 42i32, "l_suppkey": 9i32, "l_linenumber": 6i32, "l_quantity": 28.0d, "l_extendedprice": 26377.12d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-14", "l_commitdate": "1995-07-31", "l_receiptdate": "1995-09-08", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "ackages sleep. furiously even excuses snooz" }, { "l_orderkey": 1767i32, "l_partkey": 42i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 1.0d, "l_extendedprice": 942.04d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-06-23", "l_commitdate": "1995-05-25", "l_receiptdate": "1995-07-03", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "ing to the slyly fin" }, { "l_orderkey": 2310i32, "l_partkey": 42i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 48.0d, "l_extendedprice": 45217.92d, "l_discount": 0.08d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-04", "l_commitdate": "1996-11-20", "l_receiptdate": "1996-10-25", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "ep slyly alongside of the " }, { "l_orderkey": 2342i32, "l_partkey": 42i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 12.0d, "l_extendedprice": 11304.48d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-31", "l_commitdate": "1996-07-26", "l_receiptdate": "1996-08-14", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "print blithely even deposits. carefull" }, { "l_orderkey": 2560i32, "l_partkey": 42i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 9.0d, "l_extendedprice": 8478.36d, "l_discount": 0.04d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-10-23", "l_commitdate": "1992-10-29", "l_receiptdate": "1992-11-02", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": " deposits affix quickly. unusual, eve" }, { "l_orderkey": 2566i32, "l_partkey": 42i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 3.0d, "l_extendedprice": 2826.12d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-11-04", "l_commitdate": "1992-12-30", "l_receiptdate": "1992-12-04", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "ckages are ironic Tiresias. furious" }, { "l_orderkey": 2599i32, "l_partkey": 42i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 26.0d, "l_extendedprice": 24493.04d, "l_discount": 0.03d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-08", "l_commitdate": "1996-12-21", "l_receiptdate": "1996-11-24", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "nag carefully " }, { "l_orderkey": 2659i32, "l_partkey": 42i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 28.0d, "l_extendedprice": 26377.12d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-03-17", "l_commitdate": "1994-01-24", "l_receiptdate": "1994-03-19", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "idle tithes" }, { "l_orderkey": 2882i32, "l_partkey": 42i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 30.0d, "l_extendedprice": 28261.2d, "l_discount": 0.0d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-15", "l_commitdate": "1995-10-13", "l_receiptdate": "1995-10-25", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "among the furiously even theodolites. regu" }, { "l_orderkey": 2944i32, "l_partkey": 42i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 44.0d, "l_extendedprice": 41449.76d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-10-28", "l_commitdate": "1997-11-22", "l_receiptdate": "1997-11-10", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "ickly. regular requests haggle. idea" }, { "l_orderkey": 3268i32, "l_partkey": 42i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 40.0d, "l_extendedprice": 37681.6d, "l_discount": 0.08d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-06-30", "l_commitdate": "1994-08-22", "l_receiptdate": "1994-07-25", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "ly. bold, eve" }, { "l_orderkey": 3488i32, "l_partkey": 42i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 12.0d, "l_extendedprice": 11304.48d, "l_discount": 0.05d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-04-27", "l_commitdate": "1995-02-16", "l_receiptdate": "1995-05-09", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "e slyly; furiously final packages wak" }, { "l_orderkey": 3585i32, "l_partkey": 42i32, "l_suppkey": 1i32, "l_linenumber": 7i32, "l_quantity": 45.0d, "l_extendedprice": 42391.8d, "l_discount": 0.03d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-01-20", "l_commitdate": "1995-02-19", "l_receiptdate": "1995-02-11", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "are blithely c" }, { "l_orderkey": 4576i32, "l_partkey": 42i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 14.0d, "l_extendedprice": 13188.56d, "l_discount": 0.09d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-12", "l_commitdate": "1996-09-30", "l_receiptdate": "1996-09-24", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "detect slyly." }, { "l_orderkey": 4579i32, "l_partkey": 42i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 28.0d, "l_extendedprice": 26377.12d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-22", "l_commitdate": "1996-02-13", "l_receiptdate": "1996-02-03", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "slyly across the " }, { "l_orderkey": 4645i32, "l_partkey": 42i32, "l_suppkey": 9i32, "l_linenumber": 6i32, "l_quantity": 27.0d, "l_extendedprice": 25435.08d, "l_discount": 0.09d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-11-26", "l_commitdate": "1994-10-25", "l_receiptdate": "1994-12-04", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "ously express pinto beans. ironic depos" }, { "l_orderkey": 4837i32, "l_partkey": 42i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 16.0d, "l_extendedprice": 15072.64d, "l_discount": 0.09d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-12", "l_commitdate": "1998-06-06", "l_receiptdate": "1998-08-26", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "ing requests are blithely regular instructi" }, { "l_orderkey": 4994i32, "l_partkey": 42i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 24.0d, "l_extendedprice": 22608.96d, "l_discount": 0.01d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-19", "l_commitdate": "1996-09-24", "l_receiptdate": "1996-08-25", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "s. slyly ironic deposits cajole f" }, { "l_orderkey": 5442i32, "l_partkey": 42i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 16.0d, "l_extendedprice": 15072.64d, "l_discount": 0.0d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-12", "l_commitdate": "1998-03-03", "l_receiptdate": "1998-05-04", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "r packages. accounts haggle dependencies. f" }, { "l_orderkey": 5765i32, "l_partkey": 42i32, "l_suppkey": 5i32, "l_linenumber": 7i32, "l_quantity": 21.0d, "l_extendedprice": 19782.84d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-04-05", "l_commitdate": "1995-02-12", "l_receiptdate": "1995-05-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "ole furiously. quick, special dependencies " } ] }
+{ "partkey": 43i32, "lines": [ { "l_orderkey": 326i32, "l_partkey": 43i32, "l_suppkey": 10i32, "l_linenumber": 7i32, "l_quantity": 47.0d, "l_extendedprice": 44322.88d, "l_discount": 0.04d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-16", "l_commitdate": "1995-07-04", "l_receiptdate": "1995-10-04", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": " special accounts sleep " }, { "l_orderkey": 678i32, "l_partkey": 43i32, "l_suppkey": 4i32, "l_linenumber": 6i32, "l_quantity": 11.0d, "l_extendedprice": 10373.44d, "l_discount": 0.09d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-04-28", "l_commitdate": "1993-05-16", "l_receiptdate": "1993-05-11", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "ess deposits dazzle f" }, { "l_orderkey": 707i32, "l_partkey": 43i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 22.0d, "l_extendedprice": 20746.88d, "l_discount": 0.0d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-01-12", "l_commitdate": "1994-12-28", "l_receiptdate": "1995-01-16", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": " kindle ironically" }, { "l_orderkey": 901i32, "l_partkey": 43i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 37.0d, "l_extendedprice": 34892.48d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-11-01", "l_commitdate": "1998-09-13", "l_receiptdate": "1998-11-05", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "ickly final deposits " }, { "l_orderkey": 1127i32, "l_partkey": 43i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 35.0d, "l_extendedprice": 33006.4d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-25", "l_commitdate": "1995-11-03", "l_receiptdate": "1995-12-17", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "l instructions boost blithely according " }, { "l_orderkey": 1639i32, "l_partkey": 43i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 38.0d, "l_extendedprice": 35835.52d, "l_discount": 0.01d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-23", "l_commitdate": "1995-11-09", "l_receiptdate": "1995-08-29", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "y regular packages. b" }, { "l_orderkey": 1892i32, "l_partkey": 43i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 35.0d, "l_extendedprice": 33006.4d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-04-05", "l_commitdate": "1994-05-09", "l_receiptdate": "1994-05-03", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "hes nod furiously around the instruc" }, { "l_orderkey": 2023i32, "l_partkey": 43i32, "l_suppkey": 2i32, "l_linenumber": 6i32, "l_quantity": 29.0d, "l_extendedprice": 27348.16d, "l_discount": 0.02d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-08-29", "l_commitdate": "1992-07-28", "l_receiptdate": "1992-09-18", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "usual instructions. bli" }, { "l_orderkey": 2052i32, "l_partkey": 43i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 16.0d, "l_extendedprice": 15088.64d, "l_discount": 0.01d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-06-30", "l_commitdate": "1992-07-09", "l_receiptdate": "1992-07-12", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "y final deposits cajole according " }, { "l_orderkey": 2208i32, "l_partkey": 43i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 50.0d, "l_extendedprice": 47152.0d, "l_discount": 0.07d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "F", "l_shipdate": "1995-06-11", "l_commitdate": "1995-05-31", "l_receiptdate": "1995-06-29", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "al foxes will hav" }, { "l_orderkey": 2371i32, "l_partkey": 43i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 33.0d, "l_extendedprice": 31120.32d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-30", "l_commitdate": "1998-02-06", "l_receiptdate": "1998-04-05", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "deas are. express r" }, { "l_orderkey": 2372i32, "l_partkey": 43i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 42.0d, "l_extendedprice": 39607.68d, "l_discount": 0.08d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-04", "l_commitdate": "1998-01-02", "l_receiptdate": "1998-02-02", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "lar packages. regular" }, { "l_orderkey": 2659i32, "l_partkey": 43i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 21.0d, "l_extendedprice": 19803.84d, "l_discount": 0.0d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-12-23", "l_commitdate": "1994-02-10", "l_receiptdate": "1994-01-17", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "y beyond the furiously even co" }, { "l_orderkey": 2978i32, "l_partkey": 43i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 26.0d, "l_extendedprice": 24519.04d, "l_discount": 0.07d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-29", "l_commitdate": "1995-07-22", "l_receiptdate": "1995-08-20", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "as haggle against the carefully express dep" }, { "l_orderkey": 3333i32, "l_partkey": 43i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 45.0d, "l_extendedprice": 42436.8d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-10-04", "l_commitdate": "1992-11-08", "l_receiptdate": "1992-10-27", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "dolites. quickly r" }, { "l_orderkey": 3395i32, "l_partkey": 43i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 43.0d, "l_extendedprice": 40550.72d, "l_discount": 0.06d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-12-13", "l_commitdate": "1995-01-07", "l_receiptdate": "1994-12-14", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "ckages above the furiously regu" }, { "l_orderkey": 3555i32, "l_partkey": 43i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 25.0d, "l_extendedprice": 23576.0d, "l_discount": 0.09d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-01", "l_commitdate": "1996-08-23", "l_receiptdate": "1996-10-24", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "sual packages. quickly " }, { "l_orderkey": 3653i32, "l_partkey": 43i32, "l_suppkey": 4i32, "l_linenumber": 6i32, "l_quantity": 9.0d, "l_extendedprice": 8487.36d, "l_discount": 0.05d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-07-21", "l_commitdate": "1994-05-31", "l_receiptdate": "1994-08-17", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "tes: blithely bo" }, { "l_orderkey": 3808i32, "l_partkey": 43i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 28.0d, "l_extendedprice": 26405.12d, "l_discount": 0.02d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-05-27", "l_commitdate": "1994-06-18", "l_receiptdate": "1994-06-22", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "lly final accounts alo" }, { "l_orderkey": 3811i32, "l_partkey": 43i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 19.0d, "l_extendedprice": 17917.76d, "l_discount": 0.02d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-20", "l_commitdate": "1998-06-14", "l_receiptdate": "1998-07-29", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "s boost blithely furiou" }, { "l_orderkey": 4069i32, "l_partkey": 43i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 32.0d, "l_extendedprice": 30177.28d, "l_discount": 0.1d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-06-18", "l_commitdate": "1992-07-20", "l_receiptdate": "1992-07-07", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "unts. deposit" }, { "l_orderkey": 4259i32, "l_partkey": 43i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 14.0d, "l_extendedprice": 13202.56d, "l_discount": 0.05d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-09", "l_commitdate": "1997-11-21", "l_receiptdate": "1998-01-29", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": " furiously pending excuses. ideas hagg" }, { "l_orderkey": 4324i32, "l_partkey": 43i32, "l_suppkey": 2i32, "l_linenumber": 6i32, "l_quantity": 31.0d, "l_extendedprice": 29234.24d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-23", "l_commitdate": "1995-09-14", "l_receiptdate": "1995-11-09", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "efully flu" }, { "l_orderkey": 4517i32, "l_partkey": 43i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 50.0d, "l_extendedprice": 47152.0d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-08", "l_commitdate": "1998-04-18", "l_receiptdate": "1998-06-20", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "refully pending acco" }, { "l_orderkey": 5191i32, "l_partkey": 43i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 27.0d, "l_extendedprice": 25462.08d, "l_discount": 0.07d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-12-26", "l_commitdate": "1995-01-24", "l_receiptdate": "1995-01-14", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "tructions nag bravely within the re" }, { "l_orderkey": 5281i32, "l_partkey": 43i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 33.0d, "l_extendedprice": 31120.32d, "l_discount": 0.01d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-01", "l_commitdate": "1995-12-28", "l_receiptdate": "1996-03-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "ly brave foxes. bold deposits above the " }, { "l_orderkey": 5285i32, "l_partkey": 43i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 12.0d, "l_extendedprice": 11316.48d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-04-22", "l_commitdate": "1994-04-07", "l_receiptdate": "1994-05-19", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": " deposits-- quickly bold requests hag" }, { "l_orderkey": 5444i32, "l_partkey": 43i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 40.0d, "l_extendedprice": 37721.6d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-09", "l_commitdate": "1995-04-25", "l_receiptdate": "1995-07-19", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "ously bold ideas. instructions wake slyl" }, { "l_orderkey": 5793i32, "l_partkey": 43i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 8.0d, "l_extendedprice": 7544.32d, "l_discount": 0.07d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-16", "l_commitdate": "1997-09-08", "l_receiptdate": "1997-08-28", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "al foxes l" }, { "l_orderkey": 5831i32, "l_partkey": 43i32, "l_suppkey": 4i32, "l_linenumber": 5i32, "l_quantity": 37.0d, "l_extendedprice": 34892.48d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-17", "l_commitdate": "1997-02-08", "l_receiptdate": "1997-02-01", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "uriously even requests" }, { "l_orderkey": 5958i32, "l_partkey": 43i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 23.0d, "l_extendedprice": 21689.92d, "l_discount": 0.03d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-26", "l_commitdate": "1995-10-19", "l_receiptdate": "1995-09-27", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "regular requests. bold, bold deposits unwin" }, { "l_orderkey": 5959i32, "l_partkey": 43i32, "l_suppkey": 10i32, "l_linenumber": 7i32, "l_quantity": 47.0d, "l_extendedprice": 44322.88d, "l_discount": 0.02d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-08-28", "l_commitdate": "1992-07-24", "l_receiptdate": "1992-09-09", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "deposits. slyly special cou" } ] }
+{ "partkey": 44i32, "lines": [ { "l_orderkey": 322i32, "l_partkey": 44i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 48.0d, "l_extendedprice": 45313.92d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-06-11", "l_commitdate": "1992-06-16", "l_receiptdate": "1992-06-26", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "dolites detect qu" }, { "l_orderkey": 739i32, "l_partkey": 44i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 47.0d, "l_extendedprice": 44369.88d, "l_discount": 0.09d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-12", "l_commitdate": "1998-07-09", "l_receiptdate": "1998-08-28", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "deas according to the theodolites sn" }, { "l_orderkey": 838i32, "l_partkey": 44i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 18.0d, "l_extendedprice": 16992.72d, "l_discount": 0.09d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-28", "l_commitdate": "1998-04-06", "l_receiptdate": "1998-03-31", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "hely unusual foxes. furio" }, { "l_orderkey": 932i32, "l_partkey": 44i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 41.0d, "l_extendedprice": 38705.64d, "l_discount": 0.01d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-05", "l_commitdate": "1997-07-22", "l_receiptdate": "1997-06-26", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "foxes. ironic pl" }, { "l_orderkey": 1024i32, "l_partkey": 44i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 28.0d, "l_extendedprice": 26433.12d, "l_discount": 0.04d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-04", "l_commitdate": "1998-03-12", "l_receiptdate": "1998-03-15", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "e blithely regular pi" }, { "l_orderkey": 1153i32, "l_partkey": 44i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 25.0d, "l_extendedprice": 23601.0d, "l_discount": 0.0d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-18", "l_commitdate": "1996-06-28", "l_receiptdate": "1996-07-09", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": " theodolites" }, { "l_orderkey": 1350i32, "l_partkey": 44i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 32.0d, "l_extendedprice": 30209.28d, "l_discount": 0.03d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-11-18", "l_commitdate": "1993-09-30", "l_receiptdate": "1993-12-16", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "ic, final " }, { "l_orderkey": 1600i32, "l_partkey": 44i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 48.0d, "l_extendedprice": 45313.92d, "l_discount": 0.07d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-04-17", "l_commitdate": "1993-04-14", "l_receiptdate": "1993-05-03", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "furiously silent foxes could wake. car" }, { "l_orderkey": 2147i32, "l_partkey": 44i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 34.0d, "l_extendedprice": 32097.36d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-11-29", "l_commitdate": "1992-11-08", "l_receiptdate": "1992-12-22", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "egular deposits hang car" }, { "l_orderkey": 3073i32, "l_partkey": 44i32, "l_suppkey": 5i32, "l_linenumber": 7i32, "l_quantity": 11.0d, "l_extendedprice": 10384.44d, "l_discount": 0.08d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-05-01", "l_commitdate": "1994-03-06", "l_receiptdate": "1994-05-08", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "instructions sleep according to the " }, { "l_orderkey": 3138i32, "l_partkey": 44i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 27.0d, "l_extendedprice": 25489.08d, "l_discount": 0.09d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-03-24", "l_commitdate": "1994-03-23", "l_receiptdate": "1994-04-18", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "counts cajole fluffily carefully special i" }, { "l_orderkey": 3138i32, "l_partkey": 44i32, "l_suppkey": 7i32, "l_linenumber": 6i32, "l_quantity": 25.0d, "l_extendedprice": 23601.0d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-05-19", "l_commitdate": "1994-04-07", "l_receiptdate": "1994-06-17", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "dolites around the carefully busy the" }, { "l_orderkey": 3269i32, "l_partkey": 44i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 39.0d, "l_extendedprice": 36817.56d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-13", "l_commitdate": "1996-05-26", "l_receiptdate": "1996-03-19", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "he express packages?" }, { "l_orderkey": 3621i32, "l_partkey": 44i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 20.0d, "l_extendedprice": 18880.8d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-05-27", "l_commitdate": "1993-07-04", "l_receiptdate": "1993-06-22", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "gular accounts use carefully with" }, { "l_orderkey": 4292i32, "l_partkey": 44i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 22.0d, "l_extendedprice": 20768.88d, "l_discount": 0.08d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-02-14", "l_commitdate": "1992-02-16", "l_receiptdate": "1992-03-01", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "refully expres" }, { "l_orderkey": 4961i32, "l_partkey": 44i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 38.0d, "l_extendedprice": 35873.52d, "l_discount": 0.1d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-09", "l_commitdate": "1998-06-03", "l_receiptdate": "1998-07-11", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "e on the blithely bold accounts. unu" }, { "l_orderkey": 5250i32, "l_partkey": 44i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 2.0d, "l_extendedprice": 1888.08d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-09", "l_commitdate": "1995-10-10", "l_receiptdate": "1995-08-13", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "its. final pinto" }, { "l_orderkey": 5284i32, "l_partkey": 44i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 24.0d, "l_extendedprice": 22656.96d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-21", "l_commitdate": "1995-08-23", "l_receiptdate": "1995-10-27", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": " haggle according " }, { "l_orderkey": 5319i32, "l_partkey": 44i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 39.0d, "l_extendedprice": 36817.56d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-17", "l_commitdate": "1996-03-14", "l_receiptdate": "1996-06-11", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "unts. furiously silent" }, { "l_orderkey": 5381i32, "l_partkey": 44i32, "l_suppkey": 3i32, "l_linenumber": 7i32, "l_quantity": 31.0d, "l_extendedprice": 29265.24d, "l_discount": 0.04d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-04-10", "l_commitdate": "1993-03-22", "l_receiptdate": "1993-04-13", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "the carefully expre" }, { "l_orderkey": 5568i32, "l_partkey": 44i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 18.0d, "l_extendedprice": 16992.72d, "l_discount": 0.01d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-19", "l_commitdate": "1995-08-18", "l_receiptdate": "1995-08-24", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "structions haggle. carefully regular " }, { "l_orderkey": 5728i32, "l_partkey": 44i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 47.0d, "l_extendedprice": 44369.88d, "l_discount": 0.1d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-12-13", "l_commitdate": "1995-01-25", "l_receiptdate": "1994-12-25", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "nd the bravely final deposits. final ideas" }, { "l_orderkey": 5859i32, "l_partkey": 44i32, "l_suppkey": 5i32, "l_linenumber": 6i32, "l_quantity": 9.0d, "l_extendedprice": 8496.36d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-15", "l_commitdate": "1997-06-06", "l_receiptdate": "1997-06-20", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "ges boost quickly. blithely r" } ] }
+{ "partkey": 45i32, "lines": [ { "l_orderkey": 32i32, "l_partkey": 45i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 2.0d, "l_extendedprice": 1890.08d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-07", "l_commitdate": "1995-10-07", "l_receiptdate": "1995-08-23", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": " express accounts wake according to the" }, { "l_orderkey": 98i32, "l_partkey": 45i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 14.0d, "l_extendedprice": 13230.56d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-12-30", "l_commitdate": "1994-11-22", "l_receiptdate": "1995-01-27", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": " cajole furiously. blithely ironic ideas " }, { "l_orderkey": 131i32, "l_partkey": 45i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 50.0d, "l_extendedprice": 47252.0d, "l_discount": 0.02d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-09-17", "l_commitdate": "1994-08-10", "l_receiptdate": "1994-09-21", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "ending requests. final, ironic pearls slee" }, { "l_orderkey": 417i32, "l_partkey": 45i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 41.0d, "l_extendedprice": 38746.64d, "l_discount": 0.1d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-04-11", "l_commitdate": "1994-03-08", "l_receiptdate": "1994-05-06", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "tes. regular requests across the " }, { "l_orderkey": 517i32, "l_partkey": 45i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 28.0d, "l_extendedprice": 26461.12d, "l_discount": 0.03d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-30", "l_commitdate": "1997-05-18", "l_receiptdate": "1997-05-17", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": " requests. special, fi" }, { "l_orderkey": 643i32, "l_partkey": 45i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 39.0d, "l_extendedprice": 36856.56d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-06-08", "l_commitdate": "1995-06-16", "l_receiptdate": "1995-06-13", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": " the pains. carefully s" }, { "l_orderkey": 930i32, "l_partkey": 45i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 36.0d, "l_extendedprice": 34021.44d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-12-21", "l_commitdate": "1995-02-20", "l_receiptdate": "1994-12-24", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "quickly regular pinto beans sle" }, { "l_orderkey": 1158i32, "l_partkey": 45i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 5.0d, "l_extendedprice": 4725.2d, "l_discount": 0.02d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-20", "l_commitdate": "1996-07-30", "l_receiptdate": "1996-11-14", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "symptotes along the care" }, { "l_orderkey": 1893i32, "l_partkey": 45i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 3.0d, "l_extendedprice": 2835.12d, "l_discount": 0.03d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-02-10", "l_commitdate": "1998-01-18", "l_receiptdate": "1998-02-25", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "gular, even ideas. fluffily bol" }, { "l_orderkey": 2055i32, "l_partkey": 45i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 15.0d, "l_extendedprice": 14175.6d, "l_discount": 0.04d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-09-15", "l_commitdate": "1993-10-06", "l_receiptdate": "1993-10-07", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "furiously bold " }, { "l_orderkey": 2278i32, "l_partkey": 45i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 36.0d, "l_extendedprice": 34021.44d, "l_discount": 0.04d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-04", "l_commitdate": "1998-06-06", "l_receiptdate": "1998-06-30", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "y ironic pinto beans br" }, { "l_orderkey": 2278i32, "l_partkey": 45i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 50.0d, "l_extendedprice": 47252.0d, "l_discount": 0.02d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-09", "l_commitdate": "1998-07-08", "l_receiptdate": "1998-09-05", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "into beans. blit" }, { "l_orderkey": 2337i32, "l_partkey": 45i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 49.0d, "l_extendedprice": 46306.96d, "l_discount": 0.06d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-08", "l_commitdate": "1997-08-15", "l_receiptdate": "1997-08-31", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": " along the packages. furiously p" }, { "l_orderkey": 2720i32, "l_partkey": 45i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 5.0d, "l_extendedprice": 4725.2d, "l_discount": 0.1d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-06-24", "l_commitdate": "1993-08-08", "l_receiptdate": "1993-07-08", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "ously ironic foxes thrash" }, { "l_orderkey": 2818i32, "l_partkey": 45i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 11.0d, "l_extendedprice": 10395.44d, "l_discount": 0.01d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-02-18", "l_commitdate": "1995-02-11", "l_receiptdate": "1995-03-19", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "ggle across the carefully blithe" }, { "l_orderkey": 3009i32, "l_partkey": 45i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 48.0d, "l_extendedprice": 45361.92d, "l_discount": 0.1d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-19", "l_commitdate": "1997-05-13", "l_receiptdate": "1997-04-11", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": " dependencies sleep quickly a" }, { "l_orderkey": 3105i32, "l_partkey": 45i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 9.0d, "l_extendedprice": 8505.36d, "l_discount": 0.08d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-25", "l_commitdate": "1997-02-04", "l_receiptdate": "1997-01-09", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "es wake among t" }, { "l_orderkey": 3239i32, "l_partkey": 45i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 50.0d, "l_extendedprice": 47252.0d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-02-09", "l_commitdate": "1998-04-02", "l_receiptdate": "1998-02-22", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "d blithely stea" }, { "l_orderkey": 3239i32, "l_partkey": 45i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 43.0d, "l_extendedprice": 40636.72d, "l_discount": 0.01d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-15", "l_commitdate": "1998-03-12", "l_receiptdate": "1998-01-29", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "y. bold pinto beans use " }, { "l_orderkey": 3460i32, "l_partkey": 45i32, "l_suppkey": 2i32, "l_linenumber": 7i32, "l_quantity": 28.0d, "l_extendedprice": 26461.12d, "l_discount": 0.0d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-28", "l_commitdate": "1995-11-13", "l_receiptdate": "1995-11-17", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "inal, ironic instructions. carefully" }, { "l_orderkey": 3686i32, "l_partkey": 45i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 31.0d, "l_extendedprice": 29296.24d, "l_discount": 0.1d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-09-09", "l_commitdate": "1998-08-28", "l_receiptdate": "1998-10-09", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "gle across the courts. furiously regu" }, { "l_orderkey": 3879i32, "l_partkey": 45i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 35.0d, "l_extendedprice": 33076.4d, "l_discount": 0.0d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-08", "l_commitdate": "1996-01-23", "l_receiptdate": "1995-12-28", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "o beans. accounts cajole furiously. re" }, { "l_orderkey": 4515i32, "l_partkey": 45i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 22.0d, "l_extendedprice": 20790.88d, "l_discount": 0.09d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-07-16", "l_commitdate": "1992-05-07", "l_receiptdate": "1992-07-23", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "le quickly above the even, bold ideas." }, { "l_orderkey": 4518i32, "l_partkey": 45i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 19.0d, "l_extendedprice": 17955.76d, "l_discount": 0.1d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-09", "l_commitdate": "1997-06-06", "l_receiptdate": "1997-08-27", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "ter the slyly bo" }, { "l_orderkey": 4547i32, "l_partkey": 45i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 15.0d, "l_extendedprice": 14175.6d, "l_discount": 0.0d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-11-18", "l_commitdate": "1993-10-06", "l_receiptdate": "1993-12-13", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "e carefully across the unus" }, { "l_orderkey": 4548i32, "l_partkey": 45i32, "l_suppkey": 4i32, "l_linenumber": 5i32, "l_quantity": 36.0d, "l_extendedprice": 34021.44d, "l_discount": 0.04d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-19", "l_commitdate": "1996-09-12", "l_receiptdate": "1996-09-08", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "tions integrat" }, { "l_orderkey": 4935i32, "l_partkey": 45i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 49.0d, "l_extendedprice": 46306.96d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-09-16", "l_commitdate": "1993-08-21", "l_receiptdate": "1993-10-12", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "ffily after the furiou" }, { "l_orderkey": 4960i32, "l_partkey": 45i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 6.0d, "l_extendedprice": 5670.24d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-03-21", "l_commitdate": "1995-05-13", "l_receiptdate": "1995-04-14", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "ual package" }, { "l_orderkey": 5092i32, "l_partkey": 45i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 34.0d, "l_extendedprice": 32131.36d, "l_discount": 0.04d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-09", "l_commitdate": "1995-12-26", "l_receiptdate": "1995-12-21", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "ckages nag " }, { "l_orderkey": 5122i32, "l_partkey": 45i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 12.0d, "l_extendedprice": 11340.48d, "l_discount": 0.07d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-04-02", "l_commitdate": "1996-04-27", "l_receiptdate": "1996-04-10", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "lar instructions " }, { "l_orderkey": 5158i32, "l_partkey": 45i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 43.0d, "l_extendedprice": 40636.72d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-10", "l_commitdate": "1997-03-06", "l_receiptdate": "1997-04-15", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual platelets. slyly even foxes cajole nusual p" }, { "l_orderkey": 5223i32, "l_partkey": 45i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 24.0d, "l_extendedprice": 22680.96d, "l_discount": 0.0d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-10-03", "l_commitdate": "1994-09-20", "l_receiptdate": "1994-10-11", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "refully bold courts besides the regular," }, { "l_orderkey": 5507i32, "l_partkey": 45i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 4.0d, "l_extendedprice": 3780.16d, "l_discount": 0.04d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-06", "l_commitdate": "1998-07-02", "l_receiptdate": "1998-06-27", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "into beans are" }, { "l_orderkey": 5537i32, "l_partkey": 45i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 10.0d, "l_extendedprice": 9450.4d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-13", "l_commitdate": "1996-12-25", "l_receiptdate": "1997-01-28", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": " sleep carefully slyly bold depos" } ] }
+{ "partkey": 46i32, "lines": [ { "l_orderkey": 70i32, "l_partkey": 46i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 11.0d, "l_extendedprice": 10406.44d, "l_discount": 0.01d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-03-17", "l_commitdate": "1994-03-17", "l_receiptdate": "1994-03-27", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "alongside of the deposits. fur" }, { "l_orderkey": 166i32, "l_partkey": 46i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 8.0d, "l_extendedprice": 7568.32d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-30", "l_commitdate": "1995-11-29", "l_receiptdate": "1996-01-29", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "e carefully bold " }, { "l_orderkey": 356i32, "l_partkey": 46i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 4.0d, "l_extendedprice": 3784.16d, "l_discount": 0.1d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-07-28", "l_commitdate": "1994-08-01", "l_receiptdate": "1994-08-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": " the dependencies nod unusual, final ac" }, { "l_orderkey": 901i32, "l_partkey": 46i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 2.0d, "l_extendedprice": 1892.08d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-10-25", "l_commitdate": "1998-09-27", "l_receiptdate": "1998-11-01", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "d foxes use slyly" }, { "l_orderkey": 1031i32, "l_partkey": 46i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 15.0d, "l_extendedprice": 14190.6d, "l_discount": 0.1d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-11-07", "l_commitdate": "1994-10-29", "l_receiptdate": "1994-11-09", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "about the carefully bold a" }, { "l_orderkey": 1120i32, "l_partkey": 46i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 22.0d, "l_extendedprice": 20812.88d, "l_discount": 0.09d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-11-15", "l_commitdate": "1998-01-25", "l_receiptdate": "1997-12-07", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "ons. slyly silent requests sleep silent" }, { "l_orderkey": 1318i32, "l_partkey": 46i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 26.0d, "l_extendedprice": 24597.04d, "l_discount": 0.01d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-09-26", "l_commitdate": "1998-08-09", "l_receiptdate": "1998-10-07", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "ly. regular, u" }, { "l_orderkey": 1859i32, "l_partkey": 46i32, "l_suppkey": 3i32, "l_linenumber": 5i32, "l_quantity": 11.0d, "l_extendedprice": 10406.44d, "l_discount": 0.06d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-15", "l_commitdate": "1997-06-05", "l_receiptdate": "1997-07-29", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "ffily ironic pac" }, { "l_orderkey": 2370i32, "l_partkey": 46i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 3.0d, "l_extendedprice": 2838.12d, "l_discount": 0.03d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-03-24", "l_commitdate": "1994-03-26", "l_receiptdate": "1994-04-15", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "ly regular Tiresia" }, { "l_orderkey": 2435i32, "l_partkey": 46i32, "l_suppkey": 9i32, "l_linenumber": 6i32, "l_quantity": 17.0d, "l_extendedprice": 16082.68d, "l_discount": 0.02d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-06-05", "l_commitdate": "1993-05-05", "l_receiptdate": "1993-06-14", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "cajole aft" }, { "l_orderkey": 2499i32, "l_partkey": 46i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 48.0d, "l_extendedprice": 45409.92d, "l_discount": 0.09d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-14", "l_commitdate": "1995-12-12", "l_receiptdate": "1995-11-11", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "ronic ideas cajole quickly requests. caref" }, { "l_orderkey": 2503i32, "l_partkey": 46i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 50.0d, "l_extendedprice": 47302.0d, "l_discount": 0.09d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-09-22", "l_commitdate": "1993-08-17", "l_receiptdate": "1993-09-29", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "s around the slyly " }, { "l_orderkey": 2560i32, "l_partkey": 46i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 31.0d, "l_extendedprice": 29327.24d, "l_discount": 0.01d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-11-14", "l_commitdate": "1992-10-14", "l_receiptdate": "1992-12-11", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "to beans. blithely regular Tiresias int" }, { "l_orderkey": 2919i32, "l_partkey": 46i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 44.0d, "l_extendedprice": 41625.76d, "l_discount": 0.07d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-04-01", "l_commitdate": "1994-01-12", "l_receiptdate": "1994-04-07", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "final ideas haggle carefully fluff" }, { "l_orderkey": 3043i32, "l_partkey": 46i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 23.0d, "l_extendedprice": 21758.92d, "l_discount": 0.07d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-05-08", "l_commitdate": "1992-07-22", "l_receiptdate": "1992-05-18", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "uickly above the pending," }, { "l_orderkey": 3141i32, "l_partkey": 46i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 47.0d, "l_extendedprice": 44463.88d, "l_discount": 0.03d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-29", "l_commitdate": "1996-01-13", "l_receiptdate": "1995-12-10", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": " are slyly pi" }, { "l_orderkey": 3173i32, "l_partkey": 46i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 16.0d, "l_extendedprice": 15136.64d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-12", "l_commitdate": "1996-09-21", "l_receiptdate": "1996-08-22", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "e special," }, { "l_orderkey": 3201i32, "l_partkey": 46i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 11.0d, "l_extendedprice": 10406.44d, "l_discount": 0.1d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-09-27", "l_commitdate": "1993-08-29", "l_receiptdate": "1993-10-18", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "ing to the furiously expr" }, { "l_orderkey": 3525i32, "l_partkey": 46i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 12.0d, "l_extendedprice": 11352.48d, "l_discount": 0.01d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-08", "l_commitdate": "1996-03-18", "l_receiptdate": "1996-03-16", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "lar excuses wake carefull" }, { "l_orderkey": 3648i32, "l_partkey": 46i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 34.0d, "l_extendedprice": 32165.36d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-08-21", "l_commitdate": "1993-07-25", "l_receiptdate": "1993-09-15", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": " deposits are furiously. careful, " }, { "l_orderkey": 3684i32, "l_partkey": 46i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 6.0d, "l_extendedprice": 5676.24d, "l_discount": 0.06d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-08-09", "l_commitdate": "1993-10-05", "l_receiptdate": "1993-09-06", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "he silent requests. packages sleep fu" }, { "l_orderkey": 3779i32, "l_partkey": 46i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 28.0d, "l_extendedprice": 26489.12d, "l_discount": 0.04d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-06", "l_commitdate": "1997-04-01", "l_receiptdate": "1997-05-18", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "s. close requests sleep" }, { "l_orderkey": 3840i32, "l_partkey": 46i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 12.0d, "l_extendedprice": 11352.48d, "l_discount": 0.04d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-10-02", "l_commitdate": "1998-08-19", "l_receiptdate": "1998-10-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "xpress pinto beans. accounts a" }, { "l_orderkey": 3845i32, "l_partkey": 46i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 1.0d, "l_extendedprice": 946.04d, "l_discount": 0.04d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-05-21", "l_commitdate": "1992-06-07", "l_receiptdate": "1992-06-17", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": " blithely ironic t" }, { "l_orderkey": 4230i32, "l_partkey": 46i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 38.0d, "l_extendedprice": 35949.52d, "l_discount": 0.1d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-04-28", "l_commitdate": "1992-04-21", "l_receiptdate": "1992-05-28", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "ly regular packages. regular ideas boost" }, { "l_orderkey": 4320i32, "l_partkey": 46i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 28.0d, "l_extendedprice": 26489.12d, "l_discount": 0.02d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-28", "l_commitdate": "1997-02-07", "l_receiptdate": "1997-02-07", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "nts. even, ironic excuses hagg" }, { "l_orderkey": 4322i32, "l_partkey": 46i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 17.0d, "l_extendedprice": 16082.68d, "l_discount": 0.09d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-31", "l_commitdate": "1998-05-31", "l_receiptdate": "1998-06-10", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "ructions boost " }, { "l_orderkey": 4514i32, "l_partkey": 46i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 15.0d, "l_extendedprice": 14190.6d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-08-24", "l_commitdate": "1994-07-11", "l_receiptdate": "1994-09-14", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "! unusual, special deposits afte" }, { "l_orderkey": 4676i32, "l_partkey": 46i32, "l_suppkey": 7i32, "l_linenumber": 6i32, "l_quantity": 8.0d, "l_extendedprice": 7568.32d, "l_discount": 0.08d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-05", "l_commitdate": "1995-10-18", "l_receiptdate": "1996-01-02", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "cuses boost above" }, { "l_orderkey": 4711i32, "l_partkey": 46i32, "l_suppkey": 5i32, "l_linenumber": 7i32, "l_quantity": 18.0d, "l_extendedprice": 17028.72d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-03", "l_commitdate": "1998-07-31", "l_receiptdate": "1998-07-23", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": " blithely. bold asymptote" }, { "l_orderkey": 5633i32, "l_partkey": 46i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 27.0d, "l_extendedprice": 25543.08d, "l_discount": 0.03d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-09-28", "l_commitdate": "1998-07-28", "l_receiptdate": "1998-10-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "ructions. even ideas haggle carefully r" }, { "l_orderkey": 5665i32, "l_partkey": 46i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 47.0d, "l_extendedprice": 44463.88d, "l_discount": 0.01d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-10-06", "l_commitdate": "1993-09-19", "l_receiptdate": "1993-11-01", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "s mold fluffily. final deposits along the" }, { "l_orderkey": 5767i32, "l_partkey": 46i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 36.0d, "l_extendedprice": 34057.44d, "l_discount": 0.03d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-07-17", "l_commitdate": "1992-06-10", "l_receiptdate": "1992-07-19", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "ake carefully. packages " }, { "l_orderkey": 5859i32, "l_partkey": 46i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 33.0d, "l_extendedprice": 31219.32d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-08", "l_commitdate": "1997-06-22", "l_receiptdate": "1997-07-18", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "eposits unwind furiously final pinto bea" } ] }
+{ "partkey": 47i32, "lines": [ { "l_orderkey": 100i32, "l_partkey": 47i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 46.0d, "l_extendedprice": 43563.84d, "l_discount": 0.03d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-02", "l_commitdate": "1998-04-10", "l_receiptdate": "1998-05-22", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "ular accounts. even" }, { "l_orderkey": 289i32, "l_partkey": 47i32, "l_suppkey": 4i32, "l_linenumber": 5i32, "l_quantity": 13.0d, "l_extendedprice": 12311.52d, "l_discount": 0.1d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-08", "l_commitdate": "1997-04-06", "l_receiptdate": "1997-06-18", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "ts. quickly bold deposits alongside" }, { "l_orderkey": 486i32, "l_partkey": 47i32, "l_suppkey": 4i32, "l_linenumber": 6i32, "l_quantity": 46.0d, "l_extendedprice": 43563.84d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-04-18", "l_commitdate": "1996-05-02", "l_receiptdate": "1996-04-20", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "theodolites eat carefully furious" }, { "l_orderkey": 519i32, "l_partkey": 47i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 27.0d, "l_extendedprice": 25570.08d, "l_discount": 0.08d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-11-20", "l_commitdate": "1997-12-06", "l_receiptdate": "1997-12-16", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "le. even, final dependencies" }, { "l_orderkey": 768i32, "l_partkey": 47i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 47.0d, "l_extendedprice": 44510.88d, "l_discount": 0.06d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-28", "l_commitdate": "1996-10-30", "l_receiptdate": "1996-12-12", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "foxes. slyly ironic deposits a" }, { "l_orderkey": 805i32, "l_partkey": 47i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 12.0d, "l_extendedprice": 11364.48d, "l_discount": 0.01d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-13", "l_commitdate": "1995-09-27", "l_receiptdate": "1995-08-02", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": " regular foxes. furio" }, { "l_orderkey": 869i32, "l_partkey": 47i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 36.0d, "l_extendedprice": 34093.44d, "l_discount": 0.04d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-03", "l_commitdate": "1997-03-17", "l_receiptdate": "1997-05-24", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "ong the furiously bold instructi" }, { "l_orderkey": 899i32, "l_partkey": 47i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 25.0d, "l_extendedprice": 23676.0d, "l_discount": 0.0d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-21", "l_commitdate": "1998-05-12", "l_receiptdate": "1998-08-16", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "rly final sentiments. bold pinto beans " }, { "l_orderkey": 1156i32, "l_partkey": 47i32, "l_suppkey": 6i32, "l_linenumber": 7i32, "l_quantity": 20.0d, "l_extendedprice": 18940.8d, "l_discount": 0.08d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-01", "l_commitdate": "1997-01-06", "l_receiptdate": "1997-01-16", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "deposits sleep bravel" }, { "l_orderkey": 1184i32, "l_partkey": 47i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 27.0d, "l_extendedprice": 25570.08d, "l_discount": 0.01d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-10", "l_commitdate": "1997-12-02", "l_receiptdate": "1998-02-06", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "s wake fluffily. fl" }, { "l_orderkey": 1665i32, "l_partkey": 47i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 4.0d, "l_extendedprice": 3788.16d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-09-01", "l_commitdate": "1994-06-07", "l_receiptdate": "1994-09-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "ely final requests. requests" }, { "l_orderkey": 2311i32, "l_partkey": 47i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 1.0d, "l_extendedprice": 947.04d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-06-07", "l_commitdate": "1995-06-20", "l_receiptdate": "1995-06-10", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "ptotes. furiously regular theodolite" }, { "l_orderkey": 2341i32, "l_partkey": 47i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 12.0d, "l_extendedprice": 11364.48d, "l_discount": 0.08d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-06-06", "l_commitdate": "1993-07-08", "l_receiptdate": "1993-06-17", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": ". quickly final deposits sl" }, { "l_orderkey": 2375i32, "l_partkey": 47i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 26.0d, "l_extendedprice": 24623.04d, "l_discount": 0.02d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-18", "l_commitdate": "1997-02-02", "l_receiptdate": "1997-03-29", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "rate across the" }, { "l_orderkey": 2465i32, "l_partkey": 47i32, "l_suppkey": 4i32, "l_linenumber": 5i32, "l_quantity": 50.0d, "l_extendedprice": 47352.0d, "l_discount": 0.01d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-01", "l_commitdate": "1995-09-06", "l_receiptdate": "1995-09-18", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "the pending th" }, { "l_orderkey": 3105i32, "l_partkey": 47i32, "l_suppkey": 6i32, "l_linenumber": 6i32, "l_quantity": 30.0d, "l_extendedprice": 28411.2d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-03", "l_commitdate": "1997-02-03", "l_receiptdate": "1997-03-05", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "ess accounts boost among t" }, { "l_orderkey": 3171i32, "l_partkey": 47i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 34.0d, "l_extendedprice": 32199.36d, "l_discount": 0.04d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-05-30", "l_commitdate": "1993-05-27", "l_receiptdate": "1993-06-06", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "r the final, even packages. quickly" }, { "l_orderkey": 3682i32, "l_partkey": 47i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 17.0d, "l_extendedprice": 16099.68d, "l_discount": 0.03d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-12", "l_commitdate": "1997-04-04", "l_receiptdate": "1997-02-22", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": ", ironic packages wake a" }, { "l_orderkey": 3685i32, "l_partkey": 47i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 37.0d, "l_extendedprice": 35040.48d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-03-11", "l_commitdate": "1992-04-09", "l_receiptdate": "1992-04-05", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "ress attai" }, { "l_orderkey": 4037i32, "l_partkey": 47i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 4.0d, "l_extendedprice": 3788.16d, "l_discount": 0.09d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-07-05", "l_commitdate": "1993-06-12", "l_receiptdate": "1993-08-03", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "s around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs around the blithely ironic acs" }, { "l_orderkey": 4194i32, "l_partkey": 47i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 18.0d, "l_extendedprice": 17046.72d, "l_discount": 0.07d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-02-14", "l_commitdate": "1994-12-04", "l_receiptdate": "1995-03-11", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "ld packages. quickly eve" }, { "l_orderkey": 4387i32, "l_partkey": 47i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 9.0d, "l_extendedprice": 8523.36d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-04", "l_commitdate": "1995-12-26", "l_receiptdate": "1996-01-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "c ideas. slyly regular packages sol" }, { "l_orderkey": 4421i32, "l_partkey": 47i32, "l_suppkey": 6i32, "l_linenumber": 6i32, "l_quantity": 44.0d, "l_extendedprice": 41669.76d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-17", "l_commitdate": "1997-06-20", "l_receiptdate": "1997-06-29", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "le carefully. bl" }, { "l_orderkey": 4548i32, "l_partkey": 47i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 17.0d, "l_extendedprice": 16099.68d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-23", "l_commitdate": "1996-09-21", "l_receiptdate": "1996-07-26", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "y ironic requests above the fluffily d" }, { "l_orderkey": 4608i32, "l_partkey": 47i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 50.0d, "l_extendedprice": 47352.0d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-07-25", "l_commitdate": "1994-09-01", "l_receiptdate": "1994-08-10", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": " theodolites" }, { "l_orderkey": 4609i32, "l_partkey": 47i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 28.0d, "l_extendedprice": 26517.12d, "l_discount": 0.1d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-02", "l_commitdate": "1997-02-17", "l_receiptdate": "1997-03-02", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "ously. quickly final requests cajole fl" }, { "l_orderkey": 4769i32, "l_partkey": 47i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 36.0d, "l_extendedprice": 34093.44d, "l_discount": 0.1d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-22", "l_commitdate": "1995-06-16", "l_receiptdate": "1995-08-11", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": ". slyly even deposit" }, { "l_orderkey": 5636i32, "l_partkey": 47i32, "l_suppkey": 4i32, "l_linenumber": 5i32, "l_quantity": 13.0d, "l_extendedprice": 12311.52d, "l_discount": 0.1d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-05-11", "l_commitdate": "1995-04-27", "l_receiptdate": "1995-05-26", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "en, fluffy accounts amon" }, { "l_orderkey": 5637i32, "l_partkey": 47i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 14.0d, "l_extendedprice": 13258.56d, "l_discount": 0.03d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-20", "l_commitdate": "1996-07-26", "l_receiptdate": "1996-08-14", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "y bold deposits wak" }, { "l_orderkey": 5639i32, "l_partkey": 47i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 11.0d, "l_extendedprice": 10417.44d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-09-18", "l_commitdate": "1994-07-10", "l_receiptdate": "1994-10-12", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "g the unusual pinto beans caj" }, { "l_orderkey": 5761i32, "l_partkey": 47i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 41.0d, "l_extendedprice": 38828.64d, "l_discount": 0.08d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-31", "l_commitdate": "1998-08-09", "l_receiptdate": "1998-08-08", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "pecial deposits. qu" } ] }
+{ "partkey": 48i32, "lines": [ { "l_orderkey": 420i32, "l_partkey": 48i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 45.0d, "l_extendedprice": 42661.8d, "l_discount": 0.09d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-14", "l_commitdate": "1996-01-01", "l_receiptdate": "1996-01-26", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": " final accounts. furiously express forges" }, { "l_orderkey": 832i32, "l_partkey": 48i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 24.0d, "l_extendedprice": 22752.96d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-06-15", "l_commitdate": "1992-07-14", "l_receiptdate": "1992-06-17", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "ully. carefully speci" }, { "l_orderkey": 928i32, "l_partkey": 48i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 24.0d, "l_extendedprice": 22752.96d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-04-06", "l_commitdate": "1995-05-08", "l_receiptdate": "1995-04-24", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "s the furiously regular warthogs im" }, { "l_orderkey": 992i32, "l_partkey": 48i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 21.0d, "l_extendedprice": 19908.84d, "l_discount": 0.06d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-11-13", "l_commitdate": "1997-12-28", "l_receiptdate": "1997-12-10", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "fily. quickly special deposit" }, { "l_orderkey": 997i32, "l_partkey": 48i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 17.0d, "l_extendedprice": 16116.68d, "l_discount": 0.03d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-28", "l_commitdate": "1997-07-26", "l_receiptdate": "1997-08-20", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "aggle quickly furiously" }, { "l_orderkey": 1157i32, "l_partkey": 48i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 8.0d, "l_extendedprice": 7584.32d, "l_discount": 0.02d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-25", "l_commitdate": "1998-03-16", "l_receiptdate": "1998-03-29", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "blithely even pa" }, { "l_orderkey": 1218i32, "l_partkey": 48i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 44.0d, "l_extendedprice": 41713.76d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-10-05", "l_commitdate": "1994-09-03", "l_receiptdate": "1994-10-30", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "thely ironic accounts wake slyly" }, { "l_orderkey": 1574i32, "l_partkey": 48i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 41.0d, "l_extendedprice": 38869.64d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-08", "l_commitdate": "1997-02-09", "l_receiptdate": "1997-04-01", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "s. slyly regular depen" }, { "l_orderkey": 1634i32, "l_partkey": 48i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 21.0d, "l_extendedprice": 19908.84d, "l_discount": 0.0d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-04", "l_commitdate": "1996-10-22", "l_receiptdate": "1996-11-01", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "counts alo" }, { "l_orderkey": 1667i32, "l_partkey": 48i32, "l_suppkey": 7i32, "l_linenumber": 6i32, "l_quantity": 6.0d, "l_extendedprice": 5688.24d, "l_discount": 0.01d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-21", "l_commitdate": "1997-12-19", "l_receiptdate": "1998-01-28", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": " nag quickly above th" }, { "l_orderkey": 1793i32, "l_partkey": 48i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 29.0d, "l_extendedprice": 27493.16d, "l_discount": 0.01d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-10-24", "l_commitdate": "1992-09-20", "l_receiptdate": "1992-11-23", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "ar excuses. " }, { "l_orderkey": 1831i32, "l_partkey": 48i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 9.0d, "l_extendedprice": 8532.36d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-03-22", "l_commitdate": "1994-01-07", "l_receiptdate": "1994-04-06", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "ent deposits. regular saute" }, { "l_orderkey": 2050i32, "l_partkey": 48i32, "l_suppkey": 5i32, "l_linenumber": 7i32, "l_quantity": 25.0d, "l_extendedprice": 23701.0d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-08-18", "l_commitdate": "1994-07-04", "l_receiptdate": "1994-09-04", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "y according to " }, { "l_orderkey": 2211i32, "l_partkey": 48i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 25.0d, "l_extendedprice": 23701.0d, "l_discount": 0.04d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-10-09", "l_commitdate": "1994-08-04", "l_receiptdate": "1994-11-03", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "deas. carefully special theodolites along" }, { "l_orderkey": 2213i32, "l_partkey": 48i32, "l_suppkey": 5i32, "l_linenumber": 6i32, "l_quantity": 41.0d, "l_extendedprice": 38869.64d, "l_discount": 0.01d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-01-31", "l_commitdate": "1993-03-31", "l_receiptdate": "1993-02-28", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": " carefully pend" }, { "l_orderkey": 2304i32, "l_partkey": 48i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 3.0d, "l_extendedprice": 2844.12d, "l_discount": 0.0d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-03-19", "l_commitdate": "1994-03-04", "l_receiptdate": "1994-03-20", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "l excuses after the ev" }, { "l_orderkey": 2503i32, "l_partkey": 48i32, "l_suppkey": 5i32, "l_linenumber": 5i32, "l_quantity": 3.0d, "l_extendedprice": 2844.12d, "l_discount": 0.04d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-07-10", "l_commitdate": "1993-09-17", "l_receiptdate": "1993-07-19", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "s cajole. slyly close courts nod f" }, { "l_orderkey": 2660i32, "l_partkey": 48i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 17.0d, "l_extendedprice": 16116.68d, "l_discount": 0.0d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-18", "l_commitdate": "1995-09-13", "l_receiptdate": "1995-09-17", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "al pinto beans wake after the furious" }, { "l_orderkey": 2691i32, "l_partkey": 48i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 2.0d, "l_extendedprice": 1896.08d, "l_discount": 0.0d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-05-10", "l_commitdate": "1992-06-04", "l_receiptdate": "1992-05-11", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "s cajole at the blithely ironic warthog" }, { "l_orderkey": 2753i32, "l_partkey": 48i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 40.0d, "l_extendedprice": 37921.6d, "l_discount": 0.03d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-01-06", "l_commitdate": "1994-02-13", "l_receiptdate": "1994-02-03", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "latelets kindle slyly final depos" }, { "l_orderkey": 2785i32, "l_partkey": 48i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 34.0d, "l_extendedprice": 32233.36d, "l_discount": 0.0d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-16", "l_commitdate": "1995-09-09", "l_receiptdate": "1995-10-11", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "kages wake carefully silent " }, { "l_orderkey": 3042i32, "l_partkey": 48i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 19.0d, "l_extendedprice": 18012.76d, "l_discount": 0.02d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-03-05", "l_commitdate": "1995-01-24", "l_receiptdate": "1995-03-17", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "e carefully. regul" }, { "l_orderkey": 3104i32, "l_partkey": 48i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 47.0d, "l_extendedprice": 44557.88d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-12-25", "l_commitdate": "1993-11-02", "l_receiptdate": "1994-01-12", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "ily daring acc" }, { "l_orderkey": 3585i32, "l_partkey": 48i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 33.0d, "l_extendedprice": 31285.32d, "l_discount": 0.08d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-12-14", "l_commitdate": "1995-01-19", "l_receiptdate": "1994-12-22", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "ironic dependencies serve furi" }, { "l_orderkey": 3619i32, "l_partkey": 48i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 46.0d, "l_extendedprice": 43609.84d, "l_discount": 0.08d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-31", "l_commitdate": "1997-01-27", "l_receiptdate": "1997-02-11", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "press, expres" }, { "l_orderkey": 3937i32, "l_partkey": 48i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 30.0d, "l_extendedprice": 28441.2d, "l_discount": 0.01d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-17", "l_commitdate": "1998-01-03", "l_receiptdate": "1998-02-08", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "al packages slee" }, { "l_orderkey": 4192i32, "l_partkey": 48i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 48.0d, "l_extendedprice": 45505.92d, "l_discount": 0.08d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-17", "l_commitdate": "1998-07-11", "l_receiptdate": "1998-09-03", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "ests. quickly bol" }, { "l_orderkey": 4324i32, "l_partkey": 48i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 12.0d, "l_extendedprice": 11376.48d, "l_discount": 0.04d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-05", "l_commitdate": "1995-09-07", "l_receiptdate": "1995-10-18", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "c packages. furiously express sauternes" }, { "l_orderkey": 4422i32, "l_partkey": 48i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 41.0d, "l_extendedprice": 38869.64d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "F", "l_shipdate": "1995-06-12", "l_commitdate": "1995-07-09", "l_receiptdate": "1995-06-20", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": " theodolites shal" }, { "l_orderkey": 4836i32, "l_partkey": 48i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 16.0d, "l_extendedprice": 15168.64d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-14", "l_commitdate": "1997-03-05", "l_receiptdate": "1997-01-30", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "gular packages against the express reque" }, { "l_orderkey": 4870i32, "l_partkey": 48i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 49.0d, "l_extendedprice": 46453.96d, "l_discount": 0.05d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-11-14", "l_commitdate": "1994-10-24", "l_receiptdate": "1994-12-12", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": " regular packages " }, { "l_orderkey": 5056i32, "l_partkey": 48i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 7.0d, "l_extendedprice": 6636.28d, "l_discount": 0.09d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-28", "l_commitdate": "1997-04-07", "l_receiptdate": "1997-05-15", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "rouches after the pending instruc" }, { "l_orderkey": 5090i32, "l_partkey": 48i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 21.0d, "l_extendedprice": 19908.84d, "l_discount": 0.1d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-29", "l_commitdate": "1997-04-24", "l_receiptdate": "1997-04-25", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "ly express accounts. slyly even r" }, { "l_orderkey": 5155i32, "l_partkey": 48i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 1.0d, "l_extendedprice": 948.04d, "l_discount": 0.0d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-07-03", "l_commitdate": "1994-08-11", "l_receiptdate": "1994-07-29", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "oze slyly after the silent, regular idea" }, { "l_orderkey": 5473i32, "l_partkey": 48i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 9.0d, "l_extendedprice": 8532.36d, "l_discount": 0.03d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-06-03", "l_commitdate": "1992-05-30", "l_receiptdate": "1992-06-09", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": " excuses sleep blithely! regular dep" }, { "l_orderkey": 5474i32, "l_partkey": 48i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 31.0d, "l_extendedprice": 29389.24d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-08-02", "l_commitdate": "1992-07-12", "l_receiptdate": "1992-08-04", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "the furiously express ideas. speci" }, { "l_orderkey": 5476i32, "l_partkey": 48i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 13.0d, "l_extendedprice": 12324.52d, "l_discount": 0.01d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-27", "l_commitdate": "1997-12-08", "l_receiptdate": "1997-12-29", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "iously special ac" } ] }
+{ "partkey": 49i32, "lines": [ { "l_orderkey": 455i32, "l_partkey": 49i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 45.0d, "l_extendedprice": 42706.8d, "l_discount": 0.04d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-20", "l_commitdate": "1997-01-31", "l_receiptdate": "1997-01-07", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "thrash ironically regular packages. qui" }, { "l_orderkey": 739i32, "l_partkey": 49i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 12.0d, "l_extendedprice": 11388.48d, "l_discount": 0.05d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-20", "l_commitdate": "1998-07-24", "l_receiptdate": "1998-08-22", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "le slyly along the close i" }, { "l_orderkey": 768i32, "l_partkey": 49i32, "l_suppkey": 10i32, "l_linenumber": 7i32, "l_quantity": 33.0d, "l_extendedprice": 31318.32d, "l_discount": 0.01d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-06", "l_commitdate": "1996-09-29", "l_receiptdate": "1996-10-01", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "sly ironic instructions. excuses can hagg" }, { "l_orderkey": 898i32, "l_partkey": 49i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 11.0d, "l_extendedprice": 10439.44d, "l_discount": 0.01d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-09-13", "l_commitdate": "1993-08-31", "l_receiptdate": "1993-09-25", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "etly bold accounts " }, { "l_orderkey": 933i32, "l_partkey": 49i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 23.0d, "l_extendedprice": 21827.92d, "l_discount": 0.02d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-08-13", "l_commitdate": "1992-09-18", "l_receiptdate": "1992-08-25", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": " the furiously bold dinos. sly" }, { "l_orderkey": 1157i32, "l_partkey": 49i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 16.0d, "l_extendedprice": 15184.64d, "l_discount": 0.06d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-12", "l_commitdate": "1998-03-09", "l_receiptdate": "1998-04-23", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "tions hang" }, { "l_orderkey": 1191i32, "l_partkey": 49i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 29.0d, "l_extendedprice": 27522.16d, "l_discount": 0.0d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-24", "l_commitdate": "1996-01-28", "l_receiptdate": "1996-02-17", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": " regular pin" }, { "l_orderkey": 1220i32, "l_partkey": 49i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 25.0d, "l_extendedprice": 23726.0d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-11", "l_commitdate": "1996-10-09", "l_receiptdate": "1996-09-25", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "packages affi" }, { "l_orderkey": 1286i32, "l_partkey": 49i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 48.0d, "l_extendedprice": 45553.92d, "l_discount": 0.01d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-07-11", "l_commitdate": "1993-07-11", "l_receiptdate": "1993-08-01", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "unts alongs" }, { "l_orderkey": 1543i32, "l_partkey": 49i32, "l_suppkey": 8i32, "l_linenumber": 6i32, "l_quantity": 3.0d, "l_extendedprice": 2847.12d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-29", "l_commitdate": "1997-05-10", "l_receiptdate": "1997-04-22", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "sleep along the furiou" }, { "l_orderkey": 1569i32, "l_partkey": 49i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 43.0d, "l_extendedprice": 40808.72d, "l_discount": 0.1d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-05", "l_commitdate": "1998-05-31", "l_receiptdate": "1998-06-28", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": " instructions." }, { "l_orderkey": 1761i32, "l_partkey": 49i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 37.0d, "l_extendedprice": 35114.48d, "l_discount": 0.06d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-01-02", "l_commitdate": "1994-03-12", "l_receiptdate": "1994-01-25", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "regular packages wake after" }, { "l_orderkey": 2022i32, "l_partkey": 49i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 48.0d, "l_extendedprice": 45553.92d, "l_discount": 0.1d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-06-14", "l_commitdate": "1992-06-04", "l_receiptdate": "1992-07-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "counts. slyly enticing accounts are during " }, { "l_orderkey": 2050i32, "l_partkey": 49i32, "l_suppkey": 2i32, "l_linenumber": 6i32, "l_quantity": 29.0d, "l_extendedprice": 27522.16d, "l_discount": 0.0d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-09-23", "l_commitdate": "1994-08-01", "l_receiptdate": "1994-10-23", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "oxes alongsid" }, { "l_orderkey": 2115i32, "l_partkey": 49i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 47.0d, "l_extendedprice": 44604.88d, "l_discount": 0.06d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-29", "l_commitdate": "1998-07-30", "l_receiptdate": "1998-09-05", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "regular accounts integrate brav" }, { "l_orderkey": 2149i32, "l_partkey": 49i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 47.0d, "l_extendedprice": 44604.88d, "l_discount": 0.0d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-06-27", "l_commitdate": "1993-05-12", "l_receiptdate": "1993-07-11", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "hely final depo" }, { "l_orderkey": 2435i32, "l_partkey": 49i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 43.0d, "l_extendedprice": 40808.72d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-03-27", "l_commitdate": "1993-05-20", "l_receiptdate": "1993-04-18", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "alongside of the s" }, { "l_orderkey": 2464i32, "l_partkey": 49i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 10.0d, "l_extendedprice": 9490.4d, "l_discount": 0.05d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-02-04", "l_commitdate": "1997-12-29", "l_receiptdate": "1998-02-16", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "slyly final pinto bean" }, { "l_orderkey": 2983i32, "l_partkey": 49i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 11.0d, "l_extendedprice": 10439.44d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-04-29", "l_commitdate": "1992-02-27", "l_receiptdate": "1992-05-26", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "aids integrate s" }, { "l_orderkey": 3396i32, "l_partkey": 49i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 43.0d, "l_extendedprice": 40808.72d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-07-03", "l_commitdate": "1994-08-09", "l_receiptdate": "1994-07-14", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "cial packages cajole blithely around the " }, { "l_orderkey": 3426i32, "l_partkey": 49i32, "l_suppkey": 6i32, "l_linenumber": 5i32, "l_quantity": 31.0d, "l_extendedprice": 29420.24d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-11", "l_commitdate": "1996-12-10", "l_receiptdate": "1996-12-10", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": " even sentiment" }, { "l_orderkey": 3653i32, "l_partkey": 49i32, "l_suppkey": 6i32, "l_linenumber": 7i32, "l_quantity": 2.0d, "l_extendedprice": 1898.08d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-06-02", "l_commitdate": "1994-05-31", "l_receiptdate": "1994-06-29", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "n accounts. fina" }, { "l_orderkey": 3683i32, "l_partkey": 49i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 41.0d, "l_extendedprice": 38910.64d, "l_discount": 0.01d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-03-26", "l_commitdate": "1993-05-06", "l_receiptdate": "1993-04-09", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "ress instructions. slyly express a" }, { "l_orderkey": 4225i32, "l_partkey": 49i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 25.0d, "l_extendedprice": 23726.0d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-10", "l_commitdate": "1997-08-08", "l_receiptdate": "1997-07-31", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "se fluffily. busily ironic requests are;" }, { "l_orderkey": 4486i32, "l_partkey": 49i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 19.0d, "l_extendedprice": 18031.76d, "l_discount": 0.1d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-07", "l_commitdate": "1998-05-28", "l_receiptdate": "1998-07-02", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "pending foxes after" }, { "l_orderkey": 4711i32, "l_partkey": 49i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 15.0d, "l_extendedprice": 14235.6d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-09-03", "l_commitdate": "1998-07-15", "l_receiptdate": "1998-09-13", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "ld requests: furiously final inst" }, { "l_orderkey": 4771i32, "l_partkey": 49i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 9.0d, "l_extendedprice": 8541.36d, "l_discount": 0.01d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-02-28", "l_commitdate": "1993-02-19", "l_receiptdate": "1993-03-25", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "riously after the packages. fina" }, { "l_orderkey": 5157i32, "l_partkey": 49i32, "l_suppkey": 8i32, "l_linenumber": 7i32, "l_quantity": 12.0d, "l_extendedprice": 11388.48d, "l_discount": 0.1d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-10-19", "l_commitdate": "1997-08-07", "l_receiptdate": "1997-10-26", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "es. busily " } ] }
+{ "partkey": 50i32, "lines": [ { "l_orderkey": 97i32, "l_partkey": 50i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 37.0d, "l_extendedprice": 35151.85d, "l_discount": 0.02d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-04-13", "l_commitdate": "1993-03-30", "l_receiptdate": "1993-04-14", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "ic requests boost carefully quic" }, { "l_orderkey": 354i32, "l_partkey": 50i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 14.0d, "l_extendedprice": 13300.7d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-04-12", "l_commitdate": "1996-06-03", "l_receiptdate": "1996-05-08", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "quickly regular grouches will eat. careful" }, { "l_orderkey": 644i32, "l_partkey": 50i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 23.0d, "l_extendedprice": 21851.15d, "l_discount": 0.02d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-07-31", "l_commitdate": "1992-07-28", "l_receiptdate": "1992-08-13", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "uctions nag quickly alongside of t" }, { "l_orderkey": 870i32, "l_partkey": 50i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 36.0d, "l_extendedprice": 34201.8d, "l_discount": 0.04d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-10-18", "l_commitdate": "1993-09-16", "l_receiptdate": "1993-11-15", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "fily. furiously final accounts are " }, { "l_orderkey": 1089i32, "l_partkey": 50i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 35.0d, "l_extendedprice": 33251.75d, "l_discount": 0.03d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-14", "l_commitdate": "1996-07-10", "l_receiptdate": "1996-08-26", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "ly express deposits haggle" }, { "l_orderkey": 1124i32, "l_partkey": 50i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 25.0d, "l_extendedprice": 23751.25d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-05", "l_commitdate": "1998-10-14", "l_receiptdate": "1998-08-11", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "ggle slyly according" }, { "l_orderkey": 1281i32, "l_partkey": 50i32, "l_suppkey": 9i32, "l_linenumber": 6i32, "l_quantity": 4.0d, "l_extendedprice": 3800.2d, "l_discount": 0.07d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-03-15", "l_commitdate": "1995-02-21", "l_receiptdate": "1995-03-20", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "ggle against the even requests. requests " }, { "l_orderkey": 1475i32, "l_partkey": 50i32, "l_suppkey": 7i32, "l_linenumber": 6i32, "l_quantity": 12.0d, "l_extendedprice": 11400.6d, "l_discount": 0.04d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-09", "l_commitdate": "1997-12-30", "l_receiptdate": "1998-01-23", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "arefully-- excuses sublate" }, { "l_orderkey": 1506i32, "l_partkey": 50i32, "l_suppkey": 3i32, "l_linenumber": 6i32, "l_quantity": 38.0d, "l_extendedprice": 36101.9d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-12-02", "l_commitdate": "1992-12-19", "l_receiptdate": "1992-12-29", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "xpress, regular excuse" }, { "l_orderkey": 1762i32, "l_partkey": 50i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 39.0d, "l_extendedprice": 37051.95d, "l_discount": 0.1d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-09-12", "l_commitdate": "1994-11-09", "l_receiptdate": "1994-10-08", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": " ironic platelets sleep along t" }, { "l_orderkey": 2406i32, "l_partkey": 50i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 16.0d, "l_extendedprice": 15200.8d, "l_discount": 0.07d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-31", "l_commitdate": "1996-11-28", "l_receiptdate": "1996-11-08", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": " special accou" }, { "l_orderkey": 2432i32, "l_partkey": 50i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 30.0d, "l_extendedprice": 28501.5d, "l_discount": 0.03d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-05", "l_commitdate": "1996-10-10", "l_receiptdate": "1996-10-05", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": " requests wake alongside of" }, { "l_orderkey": 2562i32, "l_partkey": 50i32, "l_suppkey": 7i32, "l_linenumber": 6i32, "l_quantity": 17.0d, "l_extendedprice": 16150.85d, "l_discount": 0.01d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-10-15", "l_commitdate": "1992-10-08", "l_receiptdate": "1992-10-26", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "lar pinto beans. blithely ev" }, { "l_orderkey": 2724i32, "l_partkey": 50i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 22.0d, "l_extendedprice": 20901.1d, "l_discount": 0.04d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-09-19", "l_commitdate": "1994-11-18", "l_receiptdate": "1994-10-17", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "express fo" }, { "l_orderkey": 2753i32, "l_partkey": 50i32, "l_suppkey": 1i32, "l_linenumber": 6i32, "l_quantity": 17.0d, "l_extendedprice": 16150.85d, "l_discount": 0.01d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-03-08", "l_commitdate": "1994-01-17", "l_receiptdate": "1994-03-11", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": " carefully bold deposits sublate s" }, { "l_orderkey": 2786i32, "l_partkey": 50i32, "l_suppkey": 3i32, "l_linenumber": 5i32, "l_quantity": 43.0d, "l_extendedprice": 40852.15d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-04-22", "l_commitdate": "1992-05-13", "l_receiptdate": "1992-04-29", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "ons. theodolites after" }, { "l_orderkey": 2885i32, "l_partkey": 50i32, "l_suppkey": 9i32, "l_linenumber": 7i32, "l_quantity": 40.0d, "l_extendedprice": 38002.0d, "l_discount": 0.05d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-09-23", "l_commitdate": "1992-11-15", "l_receiptdate": "1992-10-07", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": " express depos" }, { "l_orderkey": 3458i32, "l_partkey": 50i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 46.0d, "l_extendedprice": 43702.3d, "l_discount": 0.06d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-03-08", "l_commitdate": "1995-01-21", "l_receiptdate": "1995-03-10", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "nod across the boldly even instruct" }, { "l_orderkey": 3522i32, "l_partkey": 50i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 27.0d, "l_extendedprice": 25651.35d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-11-29", "l_commitdate": "1994-12-15", "l_receiptdate": "1994-12-08", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "ic tithes. car" }, { "l_orderkey": 3523i32, "l_partkey": 50i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 24.0d, "l_extendedprice": 22801.2d, "l_discount": 0.07d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-02", "l_commitdate": "1998-06-22", "l_receiptdate": "1998-08-27", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "ke according to the doggedly re" }, { "l_orderkey": 3841i32, "l_partkey": 50i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 9.0d, "l_extendedprice": 8550.45d, "l_discount": 0.1d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-11-21", "l_commitdate": "1994-12-26", "l_receiptdate": "1994-11-26", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "s according to the courts shall nag s" }, { "l_orderkey": 3877i32, "l_partkey": 50i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 12.0d, "l_extendedprice": 11400.6d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-05-30", "l_commitdate": "1993-08-09", "l_receiptdate": "1993-06-24", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "nal requests. even requests are. pac" }, { "l_orderkey": 3943i32, "l_partkey": 50i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 5.0d, "l_extendedprice": 4750.25d, "l_discount": 0.04d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-09", "l_commitdate": "1996-11-10", "l_receiptdate": "1997-02-06", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "arefully regular deposits accord" }, { "l_orderkey": 4034i32, "l_partkey": 50i32, "l_suppkey": 9i32, "l_linenumber": 6i32, "l_quantity": 5.0d, "l_extendedprice": 4750.25d, "l_discount": 0.01d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-02-12", "l_commitdate": "1994-01-24", "l_receiptdate": "1994-02-13", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "fully around the furiously ironic re" }, { "l_orderkey": 4131i32, "l_partkey": 50i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 6.0d, "l_extendedprice": 5700.3d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-27", "l_commitdate": "1998-04-18", "l_receiptdate": "1998-04-29", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "ns cajole slyly. even, iro" }, { "l_orderkey": 4324i32, "l_partkey": 50i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 14.0d, "l_extendedprice": 13300.7d, "l_discount": 0.02d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-20", "l_commitdate": "1995-10-08", "l_receiptdate": "1995-10-06", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": " express ideas. blithely blit" }, { "l_orderkey": 4581i32, "l_partkey": 50i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 7.0d, "l_extendedprice": 6650.35d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-10-09", "l_commitdate": "1992-10-20", "l_receiptdate": "1992-10-21", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "express accounts d" }, { "l_orderkey": 4612i32, "l_partkey": 50i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 17.0d, "l_extendedprice": 16150.85d, "l_discount": 0.1d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-01-09", "l_commitdate": "1993-11-08", "l_receiptdate": "1994-02-06", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "equests haggle carefully silent excus" }, { "l_orderkey": 4645i32, "l_partkey": 50i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 45.0d, "l_extendedprice": 42752.25d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-12-27", "l_commitdate": "1994-11-02", "l_receiptdate": "1994-12-31", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "ular ideas. slyly" }, { "l_orderkey": 4706i32, "l_partkey": 50i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 27.0d, "l_extendedprice": 25651.35d, "l_discount": 0.06d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-04-04", "l_commitdate": "1993-03-11", "l_receiptdate": "1993-04-09", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "into beans. finally special instruct" }, { "l_orderkey": 4865i32, "l_partkey": 50i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 21.0d, "l_extendedprice": 19951.05d, "l_discount": 0.04d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-17", "l_commitdate": "1997-08-10", "l_receiptdate": "1997-07-21", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "eposits detect sly" }, { "l_orderkey": 4967i32, "l_partkey": 50i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 15.0d, "l_extendedprice": 14250.75d, "l_discount": 0.08d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-16", "l_commitdate": "1997-04-12", "l_receiptdate": "1997-05-08", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "y. blithel" }, { "l_orderkey": 5031i32, "l_partkey": 50i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 15.0d, "l_extendedprice": 14250.75d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-04-01", "l_commitdate": "1995-02-24", "l_receiptdate": "1995-04-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "yly pending theodolites." }, { "l_orderkey": 5249i32, "l_partkey": 50i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 31.0d, "l_extendedprice": 29451.55d, "l_discount": 0.07d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-11-21", "l_commitdate": "1994-11-19", "l_receiptdate": "1994-12-08", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "f the excuses. furiously fin" }, { "l_orderkey": 5347i32, "l_partkey": 50i32, "l_suppkey": 7i32, "l_linenumber": 7i32, "l_quantity": 18.0d, "l_extendedprice": 17100.9d, "l_discount": 0.01d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "F", "l_shipdate": "1995-05-24", "l_commitdate": "1995-05-07", "l_receiptdate": "1995-06-19", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "he ideas among the requests " }, { "l_orderkey": 5410i32, "l_partkey": 50i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 8.0d, "l_extendedprice": 7600.4d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-09-12", "l_commitdate": "1998-10-22", "l_receiptdate": "1998-09-22", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "ly. fluffily ironic platelets alon" }, { "l_orderkey": 5573i32, "l_partkey": 50i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 2.0d, "l_extendedprice": 1900.1d, "l_discount": 0.01d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-26", "l_commitdate": "1996-09-29", "l_receiptdate": "1996-09-04", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": " even foxes. specia" }, { "l_orderkey": 5925i32, "l_partkey": 50i32, "l_suppkey": 9i32, "l_linenumber": 6i32, "l_quantity": 48.0d, "l_extendedprice": 45602.4d, "l_discount": 0.02d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-02-03", "l_commitdate": "1996-01-19", "l_receiptdate": "1996-03-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": " haggle after the fo" }, { "l_orderkey": 5926i32, "l_partkey": 50i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 27.0d, "l_extendedprice": 25651.35d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-07-05", "l_commitdate": "1994-08-11", "l_receiptdate": "1994-08-02", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "ironic requests" } ] }
+{ "partkey": 51i32, "lines": [ { "l_orderkey": 224i32, "l_partkey": 51i32, "l_suppkey": 3i32, "l_linenumber": 6i32, "l_quantity": 4.0d, "l_extendedprice": 3804.2d, "l_discount": 0.02d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-09-08", "l_commitdate": "1994-08-24", "l_receiptdate": "1994-10-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "tructions " }, { "l_orderkey": 288i32, "l_partkey": 51i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 31.0d, "l_extendedprice": 29482.55d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-17", "l_commitdate": "1997-04-28", "l_receiptdate": "1997-04-06", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "instructions wa" }, { "l_orderkey": 512i32, "l_partkey": 51i32, "l_suppkey": 9i32, "l_linenumber": 7i32, "l_quantity": 2.0d, "l_extendedprice": 1902.1d, "l_discount": 0.09d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-06-19", "l_commitdate": "1995-08-13", "l_receiptdate": "1995-06-24", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "e slyly silent accounts serve with" }, { "l_orderkey": 582i32, "l_partkey": 51i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 49.0d, "l_extendedprice": 46601.45d, "l_discount": 0.05d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-17", "l_commitdate": "1998-01-12", "l_receiptdate": "1997-12-31", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "nts according to the furiously regular pin" }, { "l_orderkey": 643i32, "l_partkey": 51i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 48.0d, "l_extendedprice": 45650.4d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-10", "l_commitdate": "1995-06-07", "l_receiptdate": "1995-08-01", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "ly ironic accounts" }, { "l_orderkey": 644i32, "l_partkey": 51i32, "l_suppkey": 9i32, "l_linenumber": 7i32, "l_quantity": 38.0d, "l_extendedprice": 36139.9d, "l_discount": 0.08d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-05-17", "l_commitdate": "1992-07-10", "l_receiptdate": "1992-06-06", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": " packages. blithely slow accounts nag quic" }, { "l_orderkey": 676i32, "l_partkey": 51i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 9.0d, "l_extendedprice": 8559.45d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-03", "l_commitdate": "1997-02-02", "l_receiptdate": "1997-04-08", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "aintain sl" }, { "l_orderkey": 1189i32, "l_partkey": 51i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 23.0d, "l_extendedprice": 21874.15d, "l_discount": 0.06d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-07-25", "l_commitdate": "1994-06-07", "l_receiptdate": "1994-08-02", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "s. fluffy Tiresias run quickly. bra" }, { "l_orderkey": 1347i32, "l_partkey": 51i32, "l_suppkey": 3i32, "l_linenumber": 7i32, "l_quantity": 10.0d, "l_extendedprice": 9510.5d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-04", "l_commitdate": "1997-07-23", "l_receiptdate": "1997-07-05", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "y ironic pin" }, { "l_orderkey": 1508i32, "l_partkey": 51i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 16.0d, "l_extendedprice": 15216.8d, "l_discount": 0.02d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-21", "l_commitdate": "1998-05-30", "l_receiptdate": "1998-07-11", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "riously across the ironic, unusua" }, { "l_orderkey": 1731i32, "l_partkey": 51i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 50.0d, "l_extendedprice": 47552.5d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-14", "l_commitdate": "1996-03-13", "l_receiptdate": "1996-01-29", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "ly slyly speci" }, { "l_orderkey": 1920i32, "l_partkey": 51i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 31.0d, "l_extendedprice": 29482.55d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-01", "l_commitdate": "1998-08-30", "l_receiptdate": "1998-08-17", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "lly. ideas wa" }, { "l_orderkey": 1926i32, "l_partkey": 51i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 24.0d, "l_extendedprice": 22825.2d, "l_discount": 0.06d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-04", "l_commitdate": "1996-03-14", "l_receiptdate": "1996-06-01", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "e theodolites." }, { "l_orderkey": 2115i32, "l_partkey": 51i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 3.0d, "l_extendedprice": 2853.15d, "l_discount": 0.03d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-23", "l_commitdate": "1998-07-30", "l_receiptdate": "1998-08-14", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "quickly ironic dolphin" }, { "l_orderkey": 2144i32, "l_partkey": 51i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 46.0d, "l_extendedprice": 43748.3d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-04-08", "l_commitdate": "1994-04-29", "l_receiptdate": "1994-05-07", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": " foxes haggle blithel" }, { "l_orderkey": 2244i32, "l_partkey": 51i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 3.0d, "l_extendedprice": 2853.15d, "l_discount": 0.02d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-04-30", "l_commitdate": "1993-03-15", "l_receiptdate": "1993-05-19", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": " beans for the regular platel" }, { "l_orderkey": 2305i32, "l_partkey": 51i32, "l_suppkey": 3i32, "l_linenumber": 6i32, "l_quantity": 7.0d, "l_extendedprice": 6657.35d, "l_discount": 0.06d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-05-15", "l_commitdate": "1993-04-25", "l_receiptdate": "1993-06-09", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "gular deposits boost about the foxe" }, { "l_orderkey": 2465i32, "l_partkey": 51i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 34.0d, "l_extendedprice": 32335.7d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-02", "l_commitdate": "1995-08-04", "l_receiptdate": "1995-10-09", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "posits wake. regular package" }, { "l_orderkey": 2561i32, "l_partkey": 51i32, "l_suppkey": 6i32, "l_linenumber": 6i32, "l_quantity": 14.0d, "l_extendedprice": 13314.7d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-07", "l_commitdate": "1998-02-04", "l_receiptdate": "1998-03-21", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "ep unusual, ironic accounts" }, { "l_orderkey": 2690i32, "l_partkey": 51i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 50.0d, "l_extendedprice": 47552.5d, "l_discount": 0.03d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-13", "l_commitdate": "1996-05-22", "l_receiptdate": "1996-06-14", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": " doubt careful" }, { "l_orderkey": 2786i32, "l_partkey": 51i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 42.0d, "l_extendedprice": 39944.1d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-05-15", "l_commitdate": "1992-04-22", "l_receiptdate": "1992-05-30", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "unts are against the furious" }, { "l_orderkey": 2951i32, "l_partkey": 51i32, "l_suppkey": 6i32, "l_linenumber": 5i32, "l_quantity": 15.0d, "l_extendedprice": 14265.75d, "l_discount": 0.07d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-25", "l_commitdate": "1996-04-23", "l_receiptdate": "1996-03-27", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "inal account" }, { "l_orderkey": 3104i32, "l_partkey": 51i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 20.0d, "l_extendedprice": 19021.0d, "l_discount": 0.01d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-12-31", "l_commitdate": "1993-11-24", "l_receiptdate": "1994-01-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "s are. furiously s" }, { "l_orderkey": 3233i32, "l_partkey": 51i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 23.0d, "l_extendedprice": 21874.15d, "l_discount": 0.04d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-12-07", "l_commitdate": "1995-01-11", "l_receiptdate": "1994-12-26", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "pending instructions use after the carefu" }, { "l_orderkey": 3972i32, "l_partkey": 51i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 2.0d, "l_extendedprice": 1902.1d, "l_discount": 0.05d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-07-24", "l_commitdate": "1994-06-30", "l_receiptdate": "1994-08-13", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "y final theodolite" }, { "l_orderkey": 4099i32, "l_partkey": 51i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 36.0d, "l_extendedprice": 34237.8d, "l_discount": 0.06d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-11-06", "l_commitdate": "1992-09-28", "l_receiptdate": "1992-12-02", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "beans cajole slyly quickly ironic " }, { "l_orderkey": 4193i32, "l_partkey": 51i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 29.0d, "l_extendedprice": 27580.45d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-02-11", "l_commitdate": "1994-03-11", "l_receiptdate": "1994-03-13", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "ly. final packages use blit" }, { "l_orderkey": 4324i32, "l_partkey": 51i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 44.0d, "l_extendedprice": 41846.2d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-15", "l_commitdate": "1995-09-07", "l_receiptdate": "1995-11-07", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "ainst the u" }, { "l_orderkey": 4354i32, "l_partkey": 51i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 2.0d, "l_extendedprice": 1902.1d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-01-09", "l_commitdate": "1994-12-15", "l_receiptdate": "1995-01-24", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "s nag quickly " }, { "l_orderkey": 4544i32, "l_partkey": 51i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 39.0d, "l_extendedprice": 37090.95d, "l_discount": 0.07d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-20", "l_commitdate": "1997-09-07", "l_receiptdate": "1997-08-27", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "ular packages. s" }, { "l_orderkey": 4741i32, "l_partkey": 51i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 39.0d, "l_extendedprice": 37090.95d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-10-28", "l_commitdate": "1992-10-03", "l_receiptdate": "1992-11-11", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "t, regular requests" }, { "l_orderkey": 4836i32, "l_partkey": 51i32, "l_suppkey": 6i32, "l_linenumber": 5i32, "l_quantity": 12.0d, "l_extendedprice": 11412.6d, "l_discount": 0.01d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-02", "l_commitdate": "1997-02-10", "l_receiptdate": "1997-02-03", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "sly ironic accoun" }, { "l_orderkey": 4932i32, "l_partkey": 51i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 13.0d, "l_extendedprice": 12363.65d, "l_discount": 0.04d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-09-13", "l_commitdate": "1993-10-16", "l_receiptdate": "1993-09-20", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "slyly according to the furiously fin" }, { "l_orderkey": 5088i32, "l_partkey": 51i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 41.0d, "l_extendedprice": 38993.05d, "l_discount": 0.09d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-01-22", "l_commitdate": "1993-03-07", "l_receiptdate": "1993-02-09", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "ing requests. " }, { "l_orderkey": 5860i32, "l_partkey": 51i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 10.0d, "l_extendedprice": 9510.5d, "l_discount": 0.04d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-03-11", "l_commitdate": "1992-03-30", "l_receiptdate": "1992-03-31", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "ual patterns try to eat carefully above" } ] }
+{ "partkey": 52i32, "lines": [ { "l_orderkey": 928i32, "l_partkey": 52i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 43.0d, "l_extendedprice": 40938.15d, "l_discount": 0.1d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-04-14", "l_commitdate": "1995-04-21", "l_receiptdate": "1995-05-09", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "blithely. express, silent requests doze at" }, { "l_orderkey": 1057i32, "l_partkey": 52i32, "l_suppkey": 7i32, "l_linenumber": 6i32, "l_quantity": 19.0d, "l_extendedprice": 18088.95d, "l_discount": 0.04d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-05-31", "l_commitdate": "1992-05-09", "l_receiptdate": "1992-06-02", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "r-- packages haggle alon" }, { "l_orderkey": 1280i32, "l_partkey": 52i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 24.0d, "l_extendedprice": 22849.2d, "l_discount": 0.07d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-03-20", "l_commitdate": "1993-03-01", "l_receiptdate": "1993-04-09", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "y pending orbits boost after the slyly" }, { "l_orderkey": 1313i32, "l_partkey": 52i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 48.0d, "l_extendedprice": 45698.4d, "l_discount": 0.01d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-12-20", "l_commitdate": "1994-10-29", "l_receiptdate": "1995-01-07", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "s are quick" }, { "l_orderkey": 1571i32, "l_partkey": 52i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 47.0d, "l_extendedprice": 44746.35d, "l_discount": 0.0d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-12-07", "l_commitdate": "1993-02-24", "l_receiptdate": "1993-01-01", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "ng to the fluffily unusual " }, { "l_orderkey": 1637i32, "l_partkey": 52i32, "l_suppkey": 10i32, "l_linenumber": 7i32, "l_quantity": 21.0d, "l_extendedprice": 19993.05d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-04-30", "l_commitdate": "1995-04-30", "l_receiptdate": "1995-05-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "ly ironic theodolites use b" }, { "l_orderkey": 1761i32, "l_partkey": 52i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 33.0d, "l_extendedprice": 31417.65d, "l_discount": 0.09d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-01-03", "l_commitdate": "1994-01-23", "l_receiptdate": "1994-01-31", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "s. excuses a" }, { "l_orderkey": 1761i32, "l_partkey": 52i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 37.0d, "l_extendedprice": 35225.85d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-02-17", "l_commitdate": "1994-03-08", "l_receiptdate": "1994-03-16", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": " integrate. quickly unusual" }, { "l_orderkey": 1767i32, "l_partkey": 52i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 40.0d, "l_extendedprice": 38082.0d, "l_discount": 0.06d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-04-16", "l_commitdate": "1995-05-06", "l_receiptdate": "1995-04-21", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "ep. accounts nag blithely fu" }, { "l_orderkey": 1799i32, "l_partkey": 52i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 8.0d, "l_extendedprice": 7616.4d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-06-14", "l_commitdate": "1994-05-27", "l_receiptdate": "1994-06-27", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "ealms upon the special, ironic waters" }, { "l_orderkey": 2019i32, "l_partkey": 52i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 18.0d, "l_extendedprice": 17136.9d, "l_discount": 0.04d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-01-24", "l_commitdate": "1992-12-22", "l_receiptdate": "1993-02-02", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "are carefully furiously regular requ" }, { "l_orderkey": 2183i32, "l_partkey": 52i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 25.0d, "l_extendedprice": 23801.25d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-06", "l_commitdate": "1996-08-21", "l_receiptdate": "1996-08-05", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "he quickly f" }, { "l_orderkey": 2279i32, "l_partkey": 52i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 42.0d, "l_extendedprice": 39986.1d, "l_discount": 0.02d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-02-28", "l_commitdate": "1993-04-25", "l_receiptdate": "1993-03-02", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": " above the furiously ironic deposits. " }, { "l_orderkey": 2338i32, "l_partkey": 52i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 30.0d, "l_extendedprice": 28561.5d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-10", "l_commitdate": "1997-10-15", "l_receiptdate": "1997-12-11", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "ould have to nag quickly" }, { "l_orderkey": 2567i32, "l_partkey": 52i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 6.0d, "l_extendedprice": 5712.3d, "l_discount": 0.03d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-21", "l_commitdate": "1998-04-14", "l_receiptdate": "1998-05-11", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "s cajole regular, final acco" }, { "l_orderkey": 2945i32, "l_partkey": 52i32, "l_suppkey": 10i32, "l_linenumber": 7i32, "l_quantity": 47.0d, "l_extendedprice": 44746.35d, "l_discount": 0.07d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-05", "l_commitdate": "1996-02-11", "l_receiptdate": "1996-01-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "quests use" }, { "l_orderkey": 3040i32, "l_partkey": 52i32, "l_suppkey": 3i32, "l_linenumber": 5i32, "l_quantity": 43.0d, "l_extendedprice": 40938.15d, "l_discount": 0.04d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-05-21", "l_commitdate": "1993-05-25", "l_receiptdate": "1993-05-26", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "sts nag slyly alongside of the depos" }, { "l_orderkey": 3075i32, "l_partkey": 52i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 2.0d, "l_extendedprice": 1904.1d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-06-14", "l_commitdate": "1994-06-10", "l_receiptdate": "1994-06-25", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": ". unusual, unusual accounts haggle furious" }, { "l_orderkey": 3106i32, "l_partkey": 52i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 42.0d, "l_extendedprice": 39986.1d, "l_discount": 0.09d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-05", "l_commitdate": "1997-03-17", "l_receiptdate": "1997-04-22", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "nstructions wake. furiously " }, { "l_orderkey": 3111i32, "l_partkey": 52i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 10.0d, "l_extendedprice": 9520.5d, "l_discount": 0.02d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-10", "l_commitdate": "1995-11-02", "l_receiptdate": "1995-12-04", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "ng the slyly ironic inst" }, { "l_orderkey": 3430i32, "l_partkey": 52i32, "l_suppkey": 7i32, "l_linenumber": 7i32, "l_quantity": 23.0d, "l_extendedprice": 21897.15d, "l_discount": 0.09d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-03-06", "l_commitdate": "1995-03-01", "l_receiptdate": "1995-03-10", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "eas according to the" }, { "l_orderkey": 3907i32, "l_partkey": 52i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 45.0d, "l_extendedprice": 42842.25d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-09-21", "l_commitdate": "1992-09-19", "l_receiptdate": "1992-10-18", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": " about the regular pac" }, { "l_orderkey": 3969i32, "l_partkey": 52i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 39.0d, "l_extendedprice": 37129.95d, "l_discount": 0.04d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-12", "l_commitdate": "1997-06-13", "l_receiptdate": "1997-07-05", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "ly bold ideas s" }, { "l_orderkey": 4003i32, "l_partkey": 52i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 18.0d, "l_extendedprice": 17136.9d, "l_discount": 0.04d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-02-02", "l_commitdate": "1993-04-15", "l_receiptdate": "1993-02-28", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "ar grouches s" }, { "l_orderkey": 4388i32, "l_partkey": 52i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 13.0d, "l_extendedprice": 12376.65d, "l_discount": 0.07d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-28", "l_commitdate": "1996-05-23", "l_receiptdate": "1996-07-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "ly even, expre" }, { "l_orderkey": 4448i32, "l_partkey": 52i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 24.0d, "l_extendedprice": 22849.2d, "l_discount": 0.1d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-09-09", "l_commitdate": "1998-07-06", "l_receiptdate": "1998-09-27", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "nal packages along the ironic instructi" }, { "l_orderkey": 4454i32, "l_partkey": 52i32, "l_suppkey": 4i32, "l_linenumber": 5i32, "l_quantity": 48.0d, "l_extendedprice": 45698.4d, "l_discount": 0.0d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-04-23", "l_commitdate": "1994-04-03", "l_receiptdate": "1994-04-26", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "to beans wake across th" }, { "l_orderkey": 4611i32, "l_partkey": 52i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 47.0d, "l_extendedprice": 44746.35d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-03-05", "l_commitdate": "1993-03-01", "l_receiptdate": "1993-03-17", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "iously. furiously regular" }, { "l_orderkey": 4838i32, "l_partkey": 52i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 26.0d, "l_extendedprice": 24753.3d, "l_discount": 0.06d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-09-03", "l_commitdate": "1992-10-25", "l_receiptdate": "1992-09-11", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "ular requests boost about the packages. r" }, { "l_orderkey": 4934i32, "l_partkey": 52i32, "l_suppkey": 3i32, "l_linenumber": 6i32, "l_quantity": 42.0d, "l_extendedprice": 39986.1d, "l_discount": 0.0d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-19", "l_commitdate": "1997-05-05", "l_receiptdate": "1997-03-25", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "ven, ironic ideas" }, { "l_orderkey": 5159i32, "l_partkey": 52i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 5.0d, "l_extendedprice": 4760.25d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-25", "l_commitdate": "1996-12-19", "l_receiptdate": "1996-12-25", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "nal deposits. pending, ironic ideas grow" }, { "l_orderkey": 5282i32, "l_partkey": 52i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 32.0d, "l_extendedprice": 30465.6d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-01", "l_commitdate": "1998-03-31", "l_receiptdate": "1998-03-03", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "onic deposits; furiou" } ] }
+{ "partkey": 53i32, "lines": [ { "l_orderkey": 480i32, "l_partkey": 53i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 22.0d, "l_extendedprice": 20967.1d, "l_discount": 0.04d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-06-16", "l_commitdate": "1993-07-28", "l_receiptdate": "1993-07-09", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "into beans cajole furiously. accounts s" }, { "l_orderkey": 772i32, "l_partkey": 53i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 35.0d, "l_extendedprice": 33356.75d, "l_discount": 0.1d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-07-05", "l_commitdate": "1993-06-05", "l_receiptdate": "1993-08-02", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "kly thin packages wake slowly" }, { "l_orderkey": 1060i32, "l_partkey": 53i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 1.0d, "l_extendedprice": 953.05d, "l_discount": 0.04d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-06-19", "l_commitdate": "1993-05-10", "l_receiptdate": "1993-06-21", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "posits detect carefully abo" }, { "l_orderkey": 1698i32, "l_partkey": 53i32, "l_suppkey": 4i32, "l_linenumber": 5i32, "l_quantity": 37.0d, "l_extendedprice": 35262.85d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-16", "l_commitdate": "1997-05-29", "l_receiptdate": "1997-05-27", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "ly regular ideas. deposit" }, { "l_orderkey": 1731i32, "l_partkey": 53i32, "l_suppkey": 4i32, "l_linenumber": 5i32, "l_quantity": 37.0d, "l_extendedprice": 35262.85d, "l_discount": 0.1d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-04-30", "l_commitdate": "1996-03-17", "l_receiptdate": "1996-05-27", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": " beans use furiously slyly b" }, { "l_orderkey": 1888i32, "l_partkey": 53i32, "l_suppkey": 8i32, "l_linenumber": 6i32, "l_quantity": 48.0d, "l_extendedprice": 45746.4d, "l_discount": 0.08d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-02-28", "l_commitdate": "1993-12-16", "l_receiptdate": "1994-03-15", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "ar ideas cajole. regular p" }, { "l_orderkey": 1893i32, "l_partkey": 53i32, "l_suppkey": 4i32, "l_linenumber": 5i32, "l_quantity": 6.0d, "l_extendedprice": 5718.3d, "l_discount": 0.1d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-23", "l_commitdate": "1997-12-22", "l_receiptdate": "1998-02-09", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "ar accounts use. daringly ironic packag" }, { "l_orderkey": 1952i32, "l_partkey": 53i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 7.0d, "l_extendedprice": 6671.35d, "l_discount": 0.04d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-05-06", "l_commitdate": "1994-06-11", "l_receiptdate": "1994-05-12", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "about the express, even requ" }, { "l_orderkey": 1984i32, "l_partkey": 53i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 45.0d, "l_extendedprice": 42887.25d, "l_discount": 0.03d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-09", "l_commitdate": "1998-06-11", "l_receiptdate": "1998-05-01", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "p. quickly final ideas sle" }, { "l_orderkey": 1991i32, "l_partkey": 53i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 49.0d, "l_extendedprice": 46699.45d, "l_discount": 0.08d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-10-19", "l_commitdate": "1992-11-29", "l_receiptdate": "1992-10-25", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "nd the ideas affi" }, { "l_orderkey": 2240i32, "l_partkey": 53i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 39.0d, "l_extendedprice": 37168.95d, "l_discount": 0.08d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-05-22", "l_commitdate": "1992-05-10", "l_receiptdate": "1992-06-08", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "y orbits. final depos" }, { "l_orderkey": 2246i32, "l_partkey": 53i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 22.0d, "l_extendedprice": 20967.1d, "l_discount": 0.02d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-25", "l_commitdate": "1996-08-03", "l_receiptdate": "1996-08-24", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "ructions wake carefully fina" }, { "l_orderkey": 2400i32, "l_partkey": 53i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 23.0d, "l_extendedprice": 21920.15d, "l_discount": 0.02d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-05", "l_commitdate": "1998-08-28", "l_receiptdate": "1998-08-30", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "tions. fluffily ironic platelets cajole c" }, { "l_orderkey": 2532i32, "l_partkey": 53i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 3.0d, "l_extendedprice": 2859.15d, "l_discount": 0.06d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-14", "l_commitdate": "1995-11-28", "l_receiptdate": "1995-12-15", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "unusual sentiments. even pinto" }, { "l_orderkey": 2562i32, "l_partkey": 53i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 28.0d, "l_extendedprice": 26685.4d, "l_discount": 0.04d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-10-04", "l_commitdate": "1992-09-24", "l_receiptdate": "1992-10-09", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "ans haggle special, special packages. " }, { "l_orderkey": 2950i32, "l_partkey": 53i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 14.0d, "l_extendedprice": 13342.7d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-29", "l_commitdate": "1997-08-05", "l_receiptdate": "1997-07-31", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "ccounts haggle carefully according " }, { "l_orderkey": 3717i32, "l_partkey": 53i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 3.0d, "l_extendedprice": 2859.15d, "l_discount": 0.01d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-09", "l_commitdate": "1998-07-31", "l_receiptdate": "1998-06-14", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "nside the regular packages sleep" }, { "l_orderkey": 4036i32, "l_partkey": 53i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 21.0d, "l_extendedprice": 20014.05d, "l_discount": 0.09d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-08", "l_commitdate": "1997-06-28", "l_receiptdate": "1997-08-09", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "e carefully. qui" }, { "l_orderkey": 4800i32, "l_partkey": 53i32, "l_suppkey": 4i32, "l_linenumber": 5i32, "l_quantity": 24.0d, "l_extendedprice": 22873.2d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-01-14", "l_commitdate": "1992-02-23", "l_receiptdate": "1992-01-25", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "ully carefully r" }, { "l_orderkey": 4967i32, "l_partkey": 53i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 43.0d, "l_extendedprice": 40981.15d, "l_discount": 0.0d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-28", "l_commitdate": "1997-04-10", "l_receiptdate": "1997-06-09", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "ons. slyly ironic requests" }, { "l_orderkey": 5153i32, "l_partkey": 53i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 14.0d, "l_extendedprice": 13342.7d, "l_discount": 0.05d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-29", "l_commitdate": "1995-10-21", "l_receiptdate": "1995-12-08", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": " slyly daring pinto beans lose blithely fi" }, { "l_orderkey": 5664i32, "l_partkey": 53i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 31.0d, "l_extendedprice": 29544.55d, "l_discount": 0.01d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-11-10", "l_commitdate": "1998-09-12", "l_receiptdate": "1998-12-07", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "ainst the never silent request" }, { "l_orderkey": 5793i32, "l_partkey": 53i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 20.0d, "l_extendedprice": 19061.0d, "l_discount": 0.05d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-10-05", "l_commitdate": "1997-09-04", "l_receiptdate": "1997-10-30", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "e carefully ex" }, { "l_orderkey": 5924i32, "l_partkey": 53i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 49.0d, "l_extendedprice": 46699.45d, "l_discount": 0.04d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-25", "l_commitdate": "1995-12-11", "l_receiptdate": "1995-11-08", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "inly final excuses. blithely regular requ" } ] }
+{ "partkey": 54i32, "lines": [ { "l_orderkey": 100i32, "l_partkey": 54i32, "l_suppkey": 6i32, "l_linenumber": 5i32, "l_quantity": 37.0d, "l_extendedprice": 35299.85d, "l_discount": 0.05d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-06", "l_commitdate": "1998-04-16", "l_receiptdate": "1998-03-31", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "nd the quickly s" }, { "l_orderkey": 385i32, "l_partkey": 54i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 46.0d, "l_extendedprice": 43886.3d, "l_discount": 0.08d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-29", "l_commitdate": "1996-05-17", "l_receiptdate": "1996-04-18", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "lthily ironic f" }, { "l_orderkey": 642i32, "l_partkey": 54i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 26.0d, "l_extendedprice": 24805.3d, "l_discount": 0.1d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-04-16", "l_commitdate": "1994-02-01", "l_receiptdate": "1994-04-27", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "quests according to the unu" }, { "l_orderkey": 770i32, "l_partkey": 54i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 25.0d, "l_extendedprice": 23851.25d, "l_discount": 0.03d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-26", "l_commitdate": "1998-07-23", "l_receiptdate": "1998-06-04", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": " deposits dazzle fluffily alongside of " }, { "l_orderkey": 772i32, "l_partkey": 54i32, "l_suppkey": 5i32, "l_linenumber": 5i32, "l_quantity": 42.0d, "l_extendedprice": 40070.1d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-06-09", "l_commitdate": "1993-07-16", "l_receiptdate": "1993-06-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": " express foxes abo" }, { "l_orderkey": 803i32, "l_partkey": 54i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 8.0d, "l_extendedprice": 7632.4d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-04", "l_commitdate": "1997-06-19", "l_receiptdate": "1997-08-12", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "ronic theodo" }, { "l_orderkey": 833i32, "l_partkey": 54i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 1.0d, "l_extendedprice": 954.05d, "l_discount": 0.04d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-04-26", "l_commitdate": "1994-04-05", "l_receiptdate": "1994-04-29", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "ffily ironic theodolites" }, { "l_orderkey": 1253i32, "l_partkey": 54i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 13.0d, "l_extendedprice": 12402.65d, "l_discount": 0.01d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-03-05", "l_commitdate": "1993-04-26", "l_receiptdate": "1993-03-08", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "al packages" }, { "l_orderkey": 1346i32, "l_partkey": 54i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 13.0d, "l_extendedprice": 12402.65d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-07-22", "l_commitdate": "1992-08-10", "l_receiptdate": "1992-08-06", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "arefully brave deposits into the slyly iro" }, { "l_orderkey": 1350i32, "l_partkey": 54i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 21.0d, "l_extendedprice": 20035.05d, "l_discount": 0.04d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-12-17", "l_commitdate": "1993-10-17", "l_receiptdate": "1993-12-25", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "lyly above the evenly " }, { "l_orderkey": 1473i32, "l_partkey": 54i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 50.0d, "l_extendedprice": 47702.5d, "l_discount": 0.04d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-05", "l_commitdate": "1997-05-20", "l_receiptdate": "1997-05-09", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "requests wake express deposits. special, ir" }, { "l_orderkey": 1701i32, "l_partkey": 54i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 2.0d, "l_extendedprice": 1908.1d, "l_discount": 0.01d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-06-24", "l_commitdate": "1992-07-12", "l_receiptdate": "1992-06-29", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "ween the pending, final accounts. " }, { "l_orderkey": 1988i32, "l_partkey": 54i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 8.0d, "l_extendedprice": 7632.4d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-20", "l_commitdate": "1995-11-11", "l_receiptdate": "1995-11-18", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "le quickly ac" }, { "l_orderkey": 2150i32, "l_partkey": 54i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 39.0d, "l_extendedprice": 37207.95d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-07-31", "l_commitdate": "1994-08-17", "l_receiptdate": "1994-08-11", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "ess accounts nag. unusual asymptotes haggl" }, { "l_orderkey": 2311i32, "l_partkey": 54i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 15.0d, "l_extendedprice": 14310.75d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-06-23", "l_commitdate": "1995-06-06", "l_receiptdate": "1995-07-09", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "ve the blithely pending accounts. furio" }, { "l_orderkey": 2533i32, "l_partkey": 54i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 36.0d, "l_extendedprice": 34345.8d, "l_discount": 0.06d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-10", "l_commitdate": "1997-04-28", "l_receiptdate": "1997-07-01", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "ss requests sleep neve" }, { "l_orderkey": 2535i32, "l_partkey": 54i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 5.0d, "l_extendedprice": 4770.25d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-07-28", "l_commitdate": "1993-08-14", "l_receiptdate": "1993-08-11", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": " across the express requests. silent, eve" }, { "l_orderkey": 2784i32, "l_partkey": 54i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 23.0d, "l_extendedprice": 21943.15d, "l_discount": 0.03d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-28", "l_commitdate": "1998-02-07", "l_receiptdate": "1998-04-17", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "uests lose after " }, { "l_orderkey": 3046i32, "l_partkey": 54i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 46.0d, "l_extendedprice": 43886.3d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-22", "l_commitdate": "1996-02-28", "l_receiptdate": "1996-04-07", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "sits sleep furious" }, { "l_orderkey": 3111i32, "l_partkey": 54i32, "l_suppkey": 6i32, "l_linenumber": 5i32, "l_quantity": 14.0d, "l_extendedprice": 13356.7d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-17", "l_commitdate": "1995-10-19", "l_receiptdate": "1995-10-19", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "re. pinto " }, { "l_orderkey": 3271i32, "l_partkey": 54i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 18.0d, "l_extendedprice": 17172.9d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-05-01", "l_commitdate": "1992-03-28", "l_receiptdate": "1992-05-29", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": " packages eat around the furiously regul" }, { "l_orderkey": 3427i32, "l_partkey": 54i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 41.0d, "l_extendedprice": 39116.05d, "l_discount": 0.1d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-11", "l_commitdate": "1997-07-03", "l_receiptdate": "1997-10-04", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "s the carefully" }, { "l_orderkey": 3749i32, "l_partkey": 54i32, "l_suppkey": 6i32, "l_linenumber": 6i32, "l_quantity": 10.0d, "l_extendedprice": 9540.5d, "l_discount": 0.1d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-06-24", "l_commitdate": "1995-05-24", "l_receiptdate": "1995-07-18", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "essly. regular pi" }, { "l_orderkey": 3968i32, "l_partkey": 54i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 27.0d, "l_extendedprice": 25759.35d, "l_discount": 0.04d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-25", "l_commitdate": "1997-04-17", "l_receiptdate": "1997-05-11", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "t silently." }, { "l_orderkey": 4034i32, "l_partkey": 54i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 43.0d, "l_extendedprice": 41024.15d, "l_discount": 0.1d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-11-29", "l_commitdate": "1994-01-08", "l_receiptdate": "1993-12-10", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "posits wake carefully af" }, { "l_orderkey": 4321i32, "l_partkey": 54i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 45.0d, "l_extendedprice": 42932.25d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-11-13", "l_commitdate": "1994-09-15", "l_receiptdate": "1994-11-18", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": " haggle ironically bold theodolites. quick" }, { "l_orderkey": 4515i32, "l_partkey": 54i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 32.0d, "l_extendedprice": 30529.6d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-04-07", "l_commitdate": "1992-05-11", "l_receiptdate": "1992-04-09", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "carefully express depo" }, { "l_orderkey": 4645i32, "l_partkey": 54i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 25.0d, "l_extendedprice": 23851.25d, "l_discount": 0.03d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-10-25", "l_commitdate": "1994-12-11", "l_receiptdate": "1994-11-14", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "braids. ironic dependencies main" }, { "l_orderkey": 4865i32, "l_partkey": 54i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 33.0d, "l_extendedprice": 31483.65d, "l_discount": 0.0d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-17", "l_commitdate": "1997-08-16", "l_receiptdate": "1997-07-30", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "y pending notornis ab" }, { "l_orderkey": 5350i32, "l_partkey": 54i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 12.0d, "l_extendedprice": 11448.6d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-01-30", "l_commitdate": "1993-11-21", "l_receiptdate": "1994-02-15", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": " cajole. even instructions haggle. blithe" }, { "l_orderkey": 5408i32, "l_partkey": 54i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 48.0d, "l_extendedprice": 45794.4d, "l_discount": 0.04d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-09-30", "l_commitdate": "1992-08-27", "l_receiptdate": "1992-10-27", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": ". furiously regular " }, { "l_orderkey": 5412i32, "l_partkey": 54i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 2.0d, "l_extendedprice": 1908.1d, "l_discount": 0.03d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-14", "l_commitdate": "1998-04-02", "l_receiptdate": "1998-04-19", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": " sleep above the furiou" }, { "l_orderkey": 5701i32, "l_partkey": 54i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 17.0d, "l_extendedprice": 16218.85d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-27", "l_commitdate": "1997-04-08", "l_receiptdate": "1997-04-21", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "tes. quickly final a" }, { "l_orderkey": 5925i32, "l_partkey": 54i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 30.0d, "l_extendedprice": 28621.5d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-02-21", "l_commitdate": "1996-02-11", "l_receiptdate": "1996-03-10", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": " the packa" } ] }
+{ "partkey": 55i32, "lines": [ { "l_orderkey": 39i32, "l_partkey": 55i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 43.0d, "l_extendedprice": 41067.15d, "l_discount": 0.01d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-17", "l_commitdate": "1996-11-14", "l_receiptdate": "1996-10-26", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "yly regular i" }, { "l_orderkey": 871i32, "l_partkey": 55i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 47.0d, "l_extendedprice": 44887.35d, "l_discount": 0.07d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-25", "l_commitdate": "1996-02-01", "l_receiptdate": "1996-01-24", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "ss, final dep" }, { "l_orderkey": 928i32, "l_partkey": 55i32, "l_suppkey": 6i32, "l_linenumber": 6i32, "l_quantity": 50.0d, "l_extendedprice": 47752.5d, "l_discount": 0.05d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "F", "l_shipdate": "1995-06-07", "l_commitdate": "1995-04-15", "l_receiptdate": "1995-07-01", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": " slyly slyly special request" }, { "l_orderkey": 964i32, "l_partkey": 55i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 44.0d, "l_extendedprice": 42022.2d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-18", "l_commitdate": "1995-08-02", "l_receiptdate": "1995-10-17", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "ronic deposit" }, { "l_orderkey": 1408i32, "l_partkey": 55i32, "l_suppkey": 6i32, "l_linenumber": 7i32, "l_quantity": 26.0d, "l_extendedprice": 24831.3d, "l_discount": 0.0d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-19", "l_commitdate": "1998-03-14", "l_receiptdate": "1998-04-01", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "ic foxes ca" }, { "l_orderkey": 1574i32, "l_partkey": 55i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 25.0d, "l_extendedprice": 23876.25d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-16", "l_commitdate": "1997-02-14", "l_receiptdate": "1997-02-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "ly silent accounts." }, { "l_orderkey": 1856i32, "l_partkey": 55i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 10.0d, "l_extendedprice": 9550.5d, "l_discount": 0.05d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-05-11", "l_commitdate": "1992-05-20", "l_receiptdate": "1992-06-02", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "he furiously even theodolites. account" }, { "l_orderkey": 2022i32, "l_partkey": 55i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 38.0d, "l_extendedprice": 36291.9d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-06-17", "l_commitdate": "1992-05-15", "l_receiptdate": "1992-06-28", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "instructions dazzle carefull" }, { "l_orderkey": 2177i32, "l_partkey": 55i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 34.0d, "l_extendedprice": 32471.7d, "l_discount": 0.05d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-03", "l_commitdate": "1997-04-10", "l_receiptdate": "1997-02-21", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "tes are doggedly quickly" }, { "l_orderkey": 2180i32, "l_partkey": 55i32, "l_suppkey": 6i32, "l_linenumber": 6i32, "l_quantity": 48.0d, "l_extendedprice": 45842.4d, "l_discount": 0.09d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-30", "l_commitdate": "1996-11-22", "l_receiptdate": "1997-01-16", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "nic instructions haggle careful" }, { "l_orderkey": 2181i32, "l_partkey": 55i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 28.0d, "l_extendedprice": 26741.4d, "l_discount": 0.04d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-21", "l_commitdate": "1995-10-23", "l_receiptdate": "1996-01-04", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "s excuses sleep car" }, { "l_orderkey": 2657i32, "l_partkey": 55i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 11.0d, "l_extendedprice": 10505.55d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-19", "l_commitdate": "1995-12-11", "l_receiptdate": "1995-11-24", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "ckly enticing requests. fur" }, { "l_orderkey": 2849i32, "l_partkey": 55i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 48.0d, "l_extendedprice": 45842.4d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-03", "l_commitdate": "1996-06-05", "l_receiptdate": "1996-05-28", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "mong the carefully regular theodol" }, { "l_orderkey": 3399i32, "l_partkey": 55i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 8.0d, "l_extendedprice": 7640.4d, "l_discount": 0.01d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-05-15", "l_commitdate": "1995-04-19", "l_receiptdate": "1995-06-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "s use carefully carefully ir" }, { "l_orderkey": 3588i32, "l_partkey": 55i32, "l_suppkey": 3i32, "l_linenumber": 5i32, "l_quantity": 28.0d, "l_extendedprice": 26741.4d, "l_discount": 0.03d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-04-23", "l_commitdate": "1995-05-25", "l_receiptdate": "1995-04-28", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": " express sheaves. unusual theodo" }, { "l_orderkey": 4006i32, "l_partkey": 55i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 11.0d, "l_extendedprice": 10505.55d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-04-29", "l_commitdate": "1995-02-21", "l_receiptdate": "1995-05-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "ress foxes cajole quick" }, { "l_orderkey": 4519i32, "l_partkey": 55i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 30.0d, "l_extendedprice": 28651.5d, "l_discount": 0.09d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-04-11", "l_commitdate": "1993-06-05", "l_receiptdate": "1993-04-22", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "totes. slyly bold somas after the " }, { "l_orderkey": 4672i32, "l_partkey": 55i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 45.0d, "l_extendedprice": 42977.25d, "l_discount": 0.08d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-02-07", "l_commitdate": "1996-01-16", "l_receiptdate": "1996-02-14", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": " platelets use amon" }, { "l_orderkey": 4897i32, "l_partkey": 55i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 26.0d, "l_extendedprice": 24831.3d, "l_discount": 0.01d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-12-22", "l_commitdate": "1992-10-25", "l_receiptdate": "1992-12-27", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": ". carefully ironic dep" }, { "l_orderkey": 4897i32, "l_partkey": 55i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 42.0d, "l_extendedprice": 40112.1d, "l_discount": 0.09d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-09-23", "l_commitdate": "1992-10-28", "l_receiptdate": "1992-10-02", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "sts. blithely regular deposits will have" }, { "l_orderkey": 5124i32, "l_partkey": 55i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 43.0d, "l_extendedprice": 41067.15d, "l_discount": 0.0d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-10", "l_commitdate": "1997-05-13", "l_receiptdate": "1997-07-31", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "onic package" }, { "l_orderkey": 5157i32, "l_partkey": 55i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 35.0d, "l_extendedprice": 33426.75d, "l_discount": 0.06d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-28", "l_commitdate": "1997-09-30", "l_receiptdate": "1997-08-15", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "to the furiously sil" }, { "l_orderkey": 5186i32, "l_partkey": 55i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 38.0d, "l_extendedprice": 36291.9d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-23", "l_commitdate": "1996-09-21", "l_receiptdate": "1996-12-11", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "y ruthless foxes. fluffily " }, { "l_orderkey": 5382i32, "l_partkey": 55i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 13.0d, "l_extendedprice": 12415.65d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-01-16", "l_commitdate": "1992-03-12", "l_receiptdate": "1992-02-06", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "eodolites. final foxes " }, { "l_orderkey": 5569i32, "l_partkey": 55i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 48.0d, "l_extendedprice": 45842.4d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-06-16", "l_commitdate": "1993-06-15", "l_receiptdate": "1993-07-09", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "the fluffily" }, { "l_orderkey": 5605i32, "l_partkey": 55i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 45.0d, "l_extendedprice": 42977.25d, "l_discount": 0.0d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-05", "l_commitdate": "1996-10-04", "l_receiptdate": "1996-09-13", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "ly unusual instructions. carefully ironic p" }, { "l_orderkey": 5697i32, "l_partkey": 55i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 24.0d, "l_extendedprice": 22921.2d, "l_discount": 0.1d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-10-27", "l_commitdate": "1992-11-28", "l_receiptdate": "1992-11-20", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "uffily iro" }, { "l_orderkey": 5699i32, "l_partkey": 55i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 26.0d, "l_extendedprice": 24831.3d, "l_discount": 0.06d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-08-11", "l_commitdate": "1992-09-21", "l_receiptdate": "1992-08-14", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "y final deposits wake fluffily u" }, { "l_orderkey": 5699i32, "l_partkey": 55i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 46.0d, "l_extendedprice": 43932.3d, "l_discount": 0.08d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-11-28", "l_commitdate": "1992-09-23", "l_receiptdate": "1992-12-27", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "o the slyly" }, { "l_orderkey": 5956i32, "l_partkey": 55i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 23.0d, "l_extendedprice": 21966.15d, "l_discount": 0.08d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-06", "l_commitdate": "1998-07-10", "l_receiptdate": "1998-06-15", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "ly slyly special " } ] }
+{ "partkey": 56i32, "lines": [ { "l_orderkey": 70i32, "l_partkey": 56i32, "l_suppkey": 8i32, "l_linenumber": 6i32, "l_quantity": 19.0d, "l_extendedprice": 18164.95d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-01-26", "l_commitdate": "1994-02-17", "l_receiptdate": "1994-02-06", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": " packages wake pending accounts." }, { "l_orderkey": 356i32, "l_partkey": 56i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 41.0d, "l_extendedprice": 39198.05d, "l_discount": 0.07d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-09-28", "l_commitdate": "1994-09-20", "l_receiptdate": "1994-10-07", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": " according to the express foxes will" }, { "l_orderkey": 387i32, "l_partkey": 56i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 19.0d, "l_extendedprice": 18164.95d, "l_discount": 0.08d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-14", "l_commitdate": "1997-04-21", "l_receiptdate": "1997-04-04", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "gular dependencies" }, { "l_orderkey": 708i32, "l_partkey": 56i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 5.0d, "l_extendedprice": 4780.25d, "l_discount": 0.07d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-22", "l_commitdate": "1998-08-15", "l_receiptdate": "1998-07-28", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "c pinto beans nag after the account" }, { "l_orderkey": 903i32, "l_partkey": 56i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 9.0d, "l_extendedprice": 8604.45d, "l_discount": 0.09d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-06", "l_commitdate": "1995-09-14", "l_receiptdate": "1995-10-24", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "he slyly ev" }, { "l_orderkey": 1248i32, "l_partkey": 56i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 26.0d, "l_extendedprice": 24857.3d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-01-16", "l_commitdate": "1992-03-01", "l_receiptdate": "1992-02-06", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": " ironic dependen" }, { "l_orderkey": 1638i32, "l_partkey": 56i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 19.0d, "l_extendedprice": 18164.95d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-10-15", "l_commitdate": "1997-10-27", "l_receiptdate": "1997-11-03", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": " quickly expres" }, { "l_orderkey": 2272i32, "l_partkey": 56i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 36.0d, "l_extendedprice": 34417.8d, "l_discount": 0.03d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-05-25", "l_commitdate": "1993-05-23", "l_receiptdate": "1993-06-09", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "about the ironic packages; quickly iron" }, { "l_orderkey": 2308i32, "l_partkey": 56i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 36.0d, "l_extendedprice": 34417.8d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-11-11", "l_commitdate": "1992-11-27", "l_receiptdate": "1992-11-23", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "ong the pending hockey players. blithe" }, { "l_orderkey": 2531i32, "l_partkey": 56i32, "l_suppkey": 4i32, "l_linenumber": 5i32, "l_quantity": 28.0d, "l_extendedprice": 26769.4d, "l_discount": 0.03d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-06", "l_commitdate": "1996-07-31", "l_receiptdate": "1996-07-19", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "its. busily" }, { "l_orderkey": 2752i32, "l_partkey": 56i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 4.0d, "l_extendedprice": 3824.2d, "l_discount": 0.08d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-12-14", "l_commitdate": "1994-02-13", "l_receiptdate": "1994-01-05", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "telets haggle. regular, final " }, { "l_orderkey": 3205i32, "l_partkey": 56i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 10.0d, "l_extendedprice": 9560.5d, "l_discount": 0.01d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-06-18", "l_commitdate": "1992-07-04", "l_receiptdate": "1992-07-16", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": " deposits cajole careful" }, { "l_orderkey": 3590i32, "l_partkey": 56i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 26.0d, "l_extendedprice": 24857.3d, "l_discount": 0.01d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-08", "l_commitdate": "1995-06-17", "l_receiptdate": "1995-08-02", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "arefully along th" }, { "l_orderkey": 3680i32, "l_partkey": 56i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 33.0d, "l_extendedprice": 31549.65d, "l_discount": 0.09d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-03-16", "l_commitdate": "1993-02-19", "l_receiptdate": "1993-04-05", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "ts. ironic, fina" }, { "l_orderkey": 3685i32, "l_partkey": 56i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 37.0d, "l_extendedprice": 35373.85d, "l_discount": 0.0d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-03-02", "l_commitdate": "1992-04-10", "l_receiptdate": "1992-03-04", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": ". carefully sly requests are regular, regu" }, { "l_orderkey": 4129i32, "l_partkey": 56i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 32.0d, "l_extendedprice": 30593.6d, "l_discount": 0.03d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-09-16", "l_commitdate": "1993-08-25", "l_receiptdate": "1993-09-25", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "ckages haggl" }, { "l_orderkey": 4421i32, "l_partkey": 56i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 46.0d, "l_extendedprice": 43978.3d, "l_discount": 0.04d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-21", "l_commitdate": "1997-05-13", "l_receiptdate": "1997-05-15", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "reful packages. bold, " }, { "l_orderkey": 4450i32, "l_partkey": 56i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 6.0d, "l_extendedprice": 5736.3d, "l_discount": 0.09d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-02", "l_commitdate": "1997-09-30", "l_receiptdate": "1997-09-09", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "eposits. foxes cajole unusual fox" }, { "l_orderkey": 4705i32, "l_partkey": 56i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 16.0d, "l_extendedprice": 15296.8d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-07-02", "l_commitdate": "1992-06-06", "l_receiptdate": "1992-07-06", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "special ideas nag sl" }, { "l_orderkey": 4996i32, "l_partkey": 56i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 35.0d, "l_extendedprice": 33461.75d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-10-30", "l_commitdate": "1992-10-27", "l_receiptdate": "1992-11-05", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "s. unusual, regular dolphins integrate care" }, { "l_orderkey": 5190i32, "l_partkey": 56i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 43.0d, "l_extendedprice": 41110.15d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-08-19", "l_commitdate": "1992-06-10", "l_receiptdate": "1992-09-01", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "encies use fluffily unusual requests? hoc" }, { "l_orderkey": 5347i32, "l_partkey": 56i32, "l_suppkey": 1i32, "l_linenumber": 6i32, "l_quantity": 6.0d, "l_extendedprice": 5736.3d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-04-11", "l_commitdate": "1995-04-14", "l_receiptdate": "1995-05-02", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "lly unusual ideas. sl" }, { "l_orderkey": 5411i32, "l_partkey": 56i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 5.0d, "l_extendedprice": 4780.25d, "l_discount": 0.1d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-12", "l_commitdate": "1997-08-03", "l_receiptdate": "1997-09-23", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": " bold, ironic theodo" }, { "l_orderkey": 5697i32, "l_partkey": 56i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 42.0d, "l_extendedprice": 40154.1d, "l_discount": 0.03d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-12-19", "l_commitdate": "1992-12-08", "l_receiptdate": "1993-01-03", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "inal theodolites cajole after the bli" } ] }
+{ "partkey": 57i32, "lines": [ { "l_orderkey": 194i32, "l_partkey": 57i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 8.0d, "l_extendedprice": 7656.4d, "l_discount": 0.04d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-07-06", "l_commitdate": "1992-06-25", "l_receiptdate": "1992-07-11", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "uriously unusual excuses" }, { "l_orderkey": 198i32, "l_partkey": 57i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 33.0d, "l_extendedprice": 31582.65d, "l_discount": 0.07d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-05", "l_commitdate": "1998-03-20", "l_receiptdate": "1998-01-10", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "carefully caref" }, { "l_orderkey": 231i32, "l_partkey": 57i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 31.0d, "l_extendedprice": 29668.55d, "l_discount": 0.08d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-11-05", "l_commitdate": "1994-12-27", "l_receiptdate": "1994-11-30", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "iously special decoys wake q" }, { "l_orderkey": 450i32, "l_partkey": 57i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 40.0d, "l_extendedprice": 38282.0d, "l_discount": 0.05d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-03-20", "l_commitdate": "1995-05-25", "l_receiptdate": "1995-04-14", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "ve. asymptote" }, { "l_orderkey": 548i32, "l_partkey": 57i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 21.0d, "l_extendedprice": 20098.05d, "l_discount": 0.08d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-10-27", "l_commitdate": "1994-12-04", "l_receiptdate": "1994-11-21", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": " engage quickly. regular theo" }, { "l_orderkey": 582i32, "l_partkey": 57i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 7.0d, "l_extendedprice": 6699.35d, "l_discount": 0.07d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-11-16", "l_commitdate": "1997-11-29", "l_receiptdate": "1997-12-10", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "ithely unusual t" }, { "l_orderkey": 736i32, "l_partkey": 57i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 13.0d, "l_extendedprice": 12441.65d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-16", "l_commitdate": "1998-07-26", "l_receiptdate": "1998-08-19", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "st furiously among the " }, { "l_orderkey": 805i32, "l_partkey": 57i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 29.0d, "l_extendedprice": 27754.45d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-24", "l_commitdate": "1995-08-15", "l_receiptdate": "1995-09-16", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "dolites according to the slyly f" }, { "l_orderkey": 837i32, "l_partkey": 57i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 39.0d, "l_extendedprice": 37324.95d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-07-22", "l_commitdate": "1994-08-10", "l_receiptdate": "1994-08-11", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "ecial pinto bea" }, { "l_orderkey": 962i32, "l_partkey": 57i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 36.0d, "l_extendedprice": 34453.8d, "l_discount": 0.01d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-08-09", "l_commitdate": "1994-07-10", "l_receiptdate": "1994-09-02", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "al foxes. iron" }, { "l_orderkey": 962i32, "l_partkey": 57i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 20.0d, "l_extendedprice": 19141.0d, "l_discount": 0.04d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-08-26", "l_commitdate": "1994-06-27", "l_receiptdate": "1994-09-11", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": " deposits use fluffily according to " }, { "l_orderkey": 964i32, "l_partkey": 57i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 49.0d, "l_extendedprice": 46895.45d, "l_discount": 0.01d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-06", "l_commitdate": "1995-08-10", "l_receiptdate": "1995-10-05", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "ounts. blithely regular packag" }, { "l_orderkey": 1189i32, "l_partkey": 57i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 22.0d, "l_extendedprice": 21055.1d, "l_discount": 0.05d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-06-09", "l_commitdate": "1994-06-29", "l_receiptdate": "1994-06-23", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "quickly unusual platelets lose forges. ca" }, { "l_orderkey": 1345i32, "l_partkey": 57i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 31.0d, "l_extendedprice": 29668.55d, "l_discount": 0.08d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-12-02", "l_commitdate": "1992-12-29", "l_receiptdate": "1992-12-14", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": ". slyly silent accounts sublat" }, { "l_orderkey": 1444i32, "l_partkey": 57i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 34.0d, "l_extendedprice": 32539.7d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-02-22", "l_commitdate": "1995-02-15", "l_receiptdate": "1995-03-19", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "y. doggedly pend" }, { "l_orderkey": 1632i32, "l_partkey": 57i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 33.0d, "l_extendedprice": 31582.65d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-01", "l_commitdate": "1997-02-24", "l_receiptdate": "1997-04-29", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "ructions! slyly" }, { "l_orderkey": 1664i32, "l_partkey": 57i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 9.0d, "l_extendedprice": 8613.45d, "l_discount": 0.07d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-04-15", "l_commitdate": "1996-05-14", "l_receiptdate": "1996-05-11", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "ges. fluffil" }, { "l_orderkey": 1924i32, "l_partkey": 57i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 40.0d, "l_extendedprice": 38282.0d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-31", "l_commitdate": "1996-11-30", "l_receiptdate": "1996-11-21", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "ains sleep carefully" }, { "l_orderkey": 2146i32, "l_partkey": 57i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 42.0d, "l_extendedprice": 40196.1d, "l_discount": 0.1d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-09-21", "l_commitdate": "1992-11-02", "l_receiptdate": "1992-09-23", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "ns according to the doggedly " }, { "l_orderkey": 2177i32, "l_partkey": 57i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 46.0d, "l_extendedprice": 44024.3d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-10", "l_commitdate": "1997-02-23", "l_receiptdate": "1997-05-28", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "ending asymptotes." }, { "l_orderkey": 2215i32, "l_partkey": 57i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 30.0d, "l_extendedprice": 28711.5d, "l_discount": 0.07d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-09", "l_commitdate": "1996-07-20", "l_receiptdate": "1996-09-28", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "against the carefu" }, { "l_orderkey": 2372i32, "l_partkey": 57i32, "l_suppkey": 8i32, "l_linenumber": 7i32, "l_quantity": 19.0d, "l_extendedprice": 18183.95d, "l_discount": 0.01d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-26", "l_commitdate": "1998-02-19", "l_receiptdate": "1998-01-02", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": " beans haggle sometimes" }, { "l_orderkey": 2404i32, "l_partkey": 57i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 19.0d, "l_extendedprice": 18183.95d, "l_discount": 0.09d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-07", "l_commitdate": "1997-05-24", "l_receiptdate": "1997-05-24", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "cuses. quickly even in" }, { "l_orderkey": 2630i32, "l_partkey": 57i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 8.0d, "l_extendedprice": 7656.4d, "l_discount": 0.09d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-11-16", "l_commitdate": "1993-01-01", "l_receiptdate": "1992-12-07", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "indle fluffily silent, ironic pi" }, { "l_orderkey": 3072i32, "l_partkey": 57i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 6.0d, "l_extendedprice": 5742.3d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-02-09", "l_commitdate": "1994-03-24", "l_receiptdate": "1994-02-28", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "gular requests abov" }, { "l_orderkey": 3110i32, "l_partkey": 57i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 31.0d, "l_extendedprice": 29668.55d, "l_discount": 0.01d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-03-31", "l_commitdate": "1995-03-07", "l_receiptdate": "1995-04-21", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "en deposits. ironic" }, { "l_orderkey": 3270i32, "l_partkey": 57i32, "l_suppkey": 5i32, "l_linenumber": 6i32, "l_quantity": 29.0d, "l_extendedprice": 27754.45d, "l_discount": 0.01d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-22", "l_commitdate": "1997-08-17", "l_receiptdate": "1997-09-06", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "ptotes nag above the quickly bold deposits" }, { "l_orderkey": 3271i32, "l_partkey": 57i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 30.0d, "l_extendedprice": 28711.5d, "l_discount": 0.01d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-01-16", "l_commitdate": "1992-03-20", "l_receiptdate": "1992-01-17", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "r the unusual Tiresia" }, { "l_orderkey": 3682i32, "l_partkey": 57i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 30.0d, "l_extendedprice": 28711.5d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-16", "l_commitdate": "1997-04-16", "l_receiptdate": "1997-04-29", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "he requests cajole quickly pending package" }, { "l_orderkey": 3778i32, "l_partkey": 57i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 21.0d, "l_extendedprice": 20098.05d, "l_discount": 0.01d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-05-27", "l_commitdate": "1993-07-10", "l_receiptdate": "1993-06-03", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "ts. blithely special theodoli" }, { "l_orderkey": 3975i32, "l_partkey": 57i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 38.0d, "l_extendedprice": 36367.9d, "l_discount": 0.01d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-02", "l_commitdate": "1995-06-18", "l_receiptdate": "1995-08-19", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "es are furiously: furi" }, { "l_orderkey": 4007i32, "l_partkey": 57i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 32.0d, "l_extendedprice": 30625.6d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-09-30", "l_commitdate": "1993-08-16", "l_receiptdate": "1993-10-03", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "nal accounts across t" }, { "l_orderkey": 4034i32, "l_partkey": 57i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 47.0d, "l_extendedprice": 44981.35d, "l_discount": 0.07d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-01-27", "l_commitdate": "1993-12-26", "l_receiptdate": "1994-02-04", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "eodolites was slyly ironic ideas. de" }, { "l_orderkey": 4068i32, "l_partkey": 57i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 31.0d, "l_extendedprice": 29668.55d, "l_discount": 0.08d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-11", "l_commitdate": "1996-12-07", "l_receiptdate": "1996-12-30", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "ds wake carefully amon" }, { "l_orderkey": 4096i32, "l_partkey": 57i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 17.0d, "l_extendedprice": 16269.85d, "l_discount": 0.07d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-09-30", "l_commitdate": "1992-08-11", "l_receiptdate": "1992-10-11", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "platelets alongside of the " }, { "l_orderkey": 4672i32, "l_partkey": 57i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 13.0d, "l_extendedprice": 12441.65d, "l_discount": 0.1d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-02-02", "l_commitdate": "1995-12-13", "l_receiptdate": "1996-03-02", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "ar requests? pending accounts against" }, { "l_orderkey": 5922i32, "l_partkey": 57i32, "l_suppkey": 5i32, "l_linenumber": 5i32, "l_quantity": 39.0d, "l_extendedprice": 37324.95d, "l_discount": 0.04d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-04", "l_commitdate": "1997-01-17", "l_receiptdate": "1997-03-25", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "e of the instructions. quick" } ] }
+{ "partkey": 58i32, "lines": [ { "l_orderkey": 935i32, "l_partkey": 58i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 13.0d, "l_extendedprice": 12454.65d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-13", "l_commitdate": "1997-11-30", "l_receiptdate": "1998-02-08", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "ld platelet" }, { "l_orderkey": 1126i32, "l_partkey": 58i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 7.0d, "l_extendedprice": 6706.35d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-02", "l_commitdate": "1998-03-22", "l_receiptdate": "1998-05-21", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "ons. final, unusual" }, { "l_orderkey": 1412i32, "l_partkey": 58i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 37.0d, "l_extendedprice": 35447.85d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-04-10", "l_commitdate": "1993-04-19", "l_receiptdate": "1993-04-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excuses are hely express excus" }, { "l_orderkey": 1542i32, "l_partkey": 58i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 37.0d, "l_extendedprice": 35447.85d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-12-15", "l_commitdate": "1993-10-17", "l_receiptdate": "1994-01-07", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "e blithely unusual accounts. quic" }, { "l_orderkey": 2117i32, "l_partkey": 58i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 43.0d, "l_extendedprice": 41196.15d, "l_discount": 0.04d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-27", "l_commitdate": "1997-06-12", "l_receiptdate": "1997-07-22", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": " foxes sleep furiously " }, { "l_orderkey": 2208i32, "l_partkey": 58i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 48.0d, "l_extendedprice": 45986.4d, "l_discount": 0.08d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-05-13", "l_commitdate": "1995-06-30", "l_receiptdate": "1995-05-20", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "sits. idly permanent request" }, { "l_orderkey": 2310i32, "l_partkey": 58i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 36.0d, "l_extendedprice": 34489.8d, "l_discount": 0.03d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-09", "l_commitdate": "1996-10-28", "l_receiptdate": "1996-10-29", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "iously against the slyly special accounts" }, { "l_orderkey": 2501i32, "l_partkey": 58i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 26.0d, "l_extendedprice": 24909.3d, "l_discount": 0.09d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-15", "l_commitdate": "1997-08-15", "l_receiptdate": "1997-07-28", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "c accounts. express, iron" }, { "l_orderkey": 2695i32, "l_partkey": 58i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 16.0d, "l_extendedprice": 15328.8d, "l_discount": 0.08d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-16", "l_commitdate": "1996-10-05", "l_receiptdate": "1996-11-22", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "its. theodolites sleep slyly" }, { "l_orderkey": 3010i32, "l_partkey": 58i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 24.0d, "l_extendedprice": 22993.2d, "l_discount": 0.04d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-09", "l_commitdate": "1996-03-14", "l_receiptdate": "1996-05-15", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "ar, even reques" }, { "l_orderkey": 3111i32, "l_partkey": 58i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 30.0d, "l_extendedprice": 28741.5d, "l_discount": 0.06d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-05", "l_commitdate": "1995-11-15", "l_receiptdate": "1995-11-01", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "eas are furiously slyly special deposits." }, { "l_orderkey": 3360i32, "l_partkey": 58i32, "l_suppkey": 6i32, "l_linenumber": 5i32, "l_quantity": 4.0d, "l_extendedprice": 3832.2d, "l_discount": 0.08d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-02-27", "l_commitdate": "1998-03-23", "l_receiptdate": "1998-03-28", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "ly busy inst" }, { "l_orderkey": 3586i32, "l_partkey": 58i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 2.0d, "l_extendedprice": 1916.1d, "l_discount": 0.03d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-03-22", "l_commitdate": "1994-02-20", "l_receiptdate": "1994-04-08", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "unts. slyly final ideas agai" }, { "l_orderkey": 3685i32, "l_partkey": 58i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 7.0d, "l_extendedprice": 6706.35d, "l_discount": 0.05d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-05-16", "l_commitdate": "1992-02-23", "l_receiptdate": "1992-05-17", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "sits. special asymptotes about the r" }, { "l_orderkey": 3751i32, "l_partkey": 58i32, "l_suppkey": 3i32, "l_linenumber": 5i32, "l_quantity": 12.0d, "l_extendedprice": 11496.6d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-08-09", "l_commitdate": "1994-06-30", "l_receiptdate": "1994-08-12", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "accounts wake furious" }, { "l_orderkey": 4576i32, "l_partkey": 58i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 43.0d, "l_extendedprice": 41196.15d, "l_discount": 0.08d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-24", "l_commitdate": "1996-09-23", "l_receiptdate": "1996-11-10", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "ly final deposits. never" }, { "l_orderkey": 4678i32, "l_partkey": 58i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 35.0d, "l_extendedprice": 33531.75d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-11-27", "l_commitdate": "1998-10-02", "l_receiptdate": "1998-12-17", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "he accounts. fluffily bold sheaves b" }, { "l_orderkey": 4869i32, "l_partkey": 58i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 24.0d, "l_extendedprice": 22993.2d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-11-17", "l_commitdate": "1994-11-07", "l_receiptdate": "1994-11-27", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "olites cajole after the ideas. special t" }, { "l_orderkey": 4896i32, "l_partkey": 58i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 6.0d, "l_extendedprice": 5748.3d, "l_discount": 0.04d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-10-30", "l_commitdate": "1992-11-12", "l_receiptdate": "1992-11-28", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "usly regular deposits" }, { "l_orderkey": 4997i32, "l_partkey": 58i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 24.0d, "l_extendedprice": 22993.2d, "l_discount": 0.04d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-20", "l_commitdate": "1998-04-23", "l_receiptdate": "1998-05-16", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "xpress, bo" }, { "l_orderkey": 5024i32, "l_partkey": 58i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 41.0d, "l_extendedprice": 39280.05d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-09", "l_commitdate": "1996-12-03", "l_receiptdate": "1996-12-01", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "osits hinder carefully " }, { "l_orderkey": 5282i32, "l_partkey": 58i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 28.0d, "l_extendedprice": 26825.4d, "l_discount": 0.03d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-06", "l_commitdate": "1998-04-24", "l_receiptdate": "1998-05-30", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "fily final instruc" }, { "l_orderkey": 5569i32, "l_partkey": 58i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 26.0d, "l_extendedprice": 24909.3d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-08-21", "l_commitdate": "1993-07-22", "l_receiptdate": "1993-09-09", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "pitaphs. ironic req" }, { "l_orderkey": 5575i32, "l_partkey": 58i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 7.0d, "l_extendedprice": 6706.35d, "l_discount": 0.01d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-01", "l_commitdate": "1995-09-30", "l_receiptdate": "1995-10-06", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "s. slyly pending theodolites prin" }, { "l_orderkey": 5698i32, "l_partkey": 58i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 15.0d, "l_extendedprice": 14370.75d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-06-29", "l_commitdate": "1994-07-03", "l_receiptdate": "1994-07-02", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "ly ironic frets haggle carefully " }, { "l_orderkey": 5796i32, "l_partkey": 58i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 27.0d, "l_extendedprice": 25867.35d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-04-06", "l_commitdate": "1996-02-29", "l_receiptdate": "1996-04-20", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "s wake quickly aro" }, { "l_orderkey": 5857i32, "l_partkey": 58i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 25.0d, "l_extendedprice": 23951.25d, "l_discount": 0.03d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-02", "l_commitdate": "1997-12-17", "l_receiptdate": "1997-12-08", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "ding platelets. pending excu" }, { "l_orderkey": 5920i32, "l_partkey": 58i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 24.0d, "l_extendedprice": 22993.2d, "l_discount": 0.01d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-12-28", "l_commitdate": "1995-01-21", "l_receiptdate": "1994-12-31", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "fully regular dolphins. furiousl" } ] }
+{ "partkey": 59i32, "lines": [ { "l_orderkey": 165i32, "l_partkey": 59i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 15.0d, "l_extendedprice": 14385.75d, "l_discount": 0.0d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-04-10", "l_commitdate": "1993-03-29", "l_receiptdate": "1993-05-01", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": " bold packages mainta" }, { "l_orderkey": 262i32, "l_partkey": 59i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 35.0d, "l_extendedprice": 33566.75d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-12", "l_commitdate": "1996-02-14", "l_receiptdate": "1996-04-11", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "lites cajole along the pending packag" }, { "l_orderkey": 354i32, "l_partkey": 59i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 50.0d, "l_extendedprice": 47952.5d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-21", "l_commitdate": "1996-05-20", "l_receiptdate": "1996-04-04", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "to beans s" }, { "l_orderkey": 674i32, "l_partkey": 59i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 4.0d, "l_extendedprice": 3836.2d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-10-05", "l_commitdate": "1992-11-22", "l_receiptdate": "1992-10-22", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "ly express pinto beans sleep car" }, { "l_orderkey": 677i32, "l_partkey": 59i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 32.0d, "l_extendedprice": 30689.6d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-01-06", "l_commitdate": "1994-01-31", "l_receiptdate": "1994-02-02", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "slyly final" }, { "l_orderkey": 935i32, "l_partkey": 59i32, "l_suppkey": 1i32, "l_linenumber": 6i32, "l_quantity": 1.0d, "l_extendedprice": 959.05d, "l_discount": 0.01d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-14", "l_commitdate": "1997-11-22", "l_receiptdate": "1998-01-08", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": " instructions. ironic acc" }, { "l_orderkey": 967i32, "l_partkey": 59i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 41.0d, "l_extendedprice": 39321.05d, "l_discount": 0.05d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-09-21", "l_commitdate": "1992-08-15", "l_receiptdate": "1992-10-21", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "ld foxes wake closely special" }, { "l_orderkey": 1249i32, "l_partkey": 59i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 49.0d, "l_extendedprice": 46993.45d, "l_discount": 0.07d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-03-03", "l_commitdate": "1994-02-28", "l_receiptdate": "1994-03-08", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "ffily express theodo" }, { "l_orderkey": 1282i32, "l_partkey": 59i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 19.0d, "l_extendedprice": 18221.95d, "l_discount": 0.0d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-06-20", "l_commitdate": "1992-04-17", "l_receiptdate": "1992-07-05", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "nto beans. carefully close theodo" }, { "l_orderkey": 1284i32, "l_partkey": 59i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 1.0d, "l_extendedprice": 959.05d, "l_discount": 0.01d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-04-28", "l_commitdate": "1996-04-02", "l_receiptdate": "1996-05-08", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "al packages use carefully express de" }, { "l_orderkey": 1510i32, "l_partkey": 59i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 27.0d, "l_extendedprice": 25894.35d, "l_discount": 0.08d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-20", "l_commitdate": "1996-12-05", "l_receiptdate": "1996-11-02", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "he blithely regular req" }, { "l_orderkey": 1571i32, "l_partkey": 59i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 18.0d, "l_extendedprice": 17262.9d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-01-09", "l_commitdate": "1993-01-12", "l_receiptdate": "1993-01-31", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": " pending grouches " }, { "l_orderkey": 1605i32, "l_partkey": 59i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 39.0d, "l_extendedprice": 37402.95d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-12", "l_commitdate": "1998-06-05", "l_receiptdate": "1998-08-09", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "nal dependencies-- quickly final frets acc" }, { "l_orderkey": 1667i32, "l_partkey": 59i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 24.0d, "l_extendedprice": 23017.2d, "l_discount": 0.04d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-10-14", "l_commitdate": "1997-12-01", "l_receiptdate": "1997-11-09", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "hrash final requests. care" }, { "l_orderkey": 1890i32, "l_partkey": 59i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 24.0d, "l_extendedprice": 23017.2d, "l_discount": 0.06d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-09", "l_commitdate": "1997-02-10", "l_receiptdate": "1997-02-12", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "is wake carefully above the even id" }, { "l_orderkey": 2087i32, "l_partkey": 59i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 6.0d, "l_extendedprice": 5754.3d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-23", "l_commitdate": "1998-03-27", "l_receiptdate": "1998-05-18", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "dazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the slyly sidazzle after the s" }, { "l_orderkey": 2406i32, "l_partkey": 59i32, "l_suppkey": 4i32, "l_linenumber": 6i32, "l_quantity": 22.0d, "l_extendedprice": 21099.1d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-22", "l_commitdate": "1997-01-17", "l_receiptdate": "1996-12-15", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "hely even foxes unwind furiously aga" }, { "l_orderkey": 2688i32, "l_partkey": 59i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 22.0d, "l_extendedprice": 21099.1d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-02-09", "l_commitdate": "1992-04-09", "l_receiptdate": "1992-02-11", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "press, ironic excuses wake carefully id" }, { "l_orderkey": 2759i32, "l_partkey": 59i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 10.0d, "l_extendedprice": 9590.5d, "l_discount": 0.1d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-12-14", "l_commitdate": "1994-01-08", "l_receiptdate": "1994-01-01", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "s. busily ironic theodo" }, { "l_orderkey": 2791i32, "l_partkey": 59i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 49.0d, "l_extendedprice": 46993.45d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-01-11", "l_commitdate": "1994-11-10", "l_receiptdate": "1995-02-08", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": " accounts sleep at the bold, regular pinto " }, { "l_orderkey": 2816i32, "l_partkey": 59i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 33.0d, "l_extendedprice": 31648.65d, "l_discount": 0.0d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-10-19", "l_commitdate": "1994-11-10", "l_receiptdate": "1994-11-09", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "s; slyly even theodo" }, { "l_orderkey": 2945i32, "l_partkey": 59i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 37.0d, "l_extendedprice": 35484.85d, "l_discount": 0.0d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-02-10", "l_commitdate": "1996-03-20", "l_receiptdate": "1996-02-12", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "l instructions. regular, regular " }, { "l_orderkey": 3429i32, "l_partkey": 59i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 15.0d, "l_extendedprice": 14385.75d, "l_discount": 0.03d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-04", "l_commitdate": "1997-03-09", "l_receiptdate": "1997-03-01", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "beans are fu" }, { "l_orderkey": 3521i32, "l_partkey": 59i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 48.0d, "l_extendedprice": 46034.4d, "l_discount": 0.09d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-01-03", "l_commitdate": "1992-12-31", "l_receiptdate": "1993-01-22", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "ses use. furiously express ideas wake f" }, { "l_orderkey": 3620i32, "l_partkey": 59i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 41.0d, "l_extendedprice": 39321.05d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-21", "l_commitdate": "1997-04-20", "l_receiptdate": "1997-03-30", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "t attainments cajole qui" }, { "l_orderkey": 3845i32, "l_partkey": 59i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 17.0d, "l_extendedprice": 16303.85d, "l_discount": 0.08d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-06-12", "l_commitdate": "1992-07-05", "l_receiptdate": "1992-06-26", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "counts haggle. reg" }, { "l_orderkey": 3906i32, "l_partkey": 59i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 36.0d, "l_extendedprice": 34525.8d, "l_discount": 0.08d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-08-07", "l_commitdate": "1992-08-08", "l_receiptdate": "1992-08-24", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "y. ironic deposits haggle sl" }, { "l_orderkey": 4099i32, "l_partkey": 59i32, "l_suppkey": 10i32, "l_linenumber": 6i32, "l_quantity": 39.0d, "l_extendedprice": 37402.95d, "l_discount": 0.07d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-12-13", "l_commitdate": "1992-11-13", "l_receiptdate": "1992-12-26", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "fluffy accounts impress pending, iro" }, { "l_orderkey": 4672i32, "l_partkey": 59i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 22.0d, "l_extendedprice": 21099.1d, "l_discount": 0.01d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-03", "l_commitdate": "1995-12-08", "l_receiptdate": "1995-12-17", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "l instructions. blithely ironic packages " }, { "l_orderkey": 4998i32, "l_partkey": 59i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 27.0d, "l_extendedprice": 25894.35d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-03-17", "l_commitdate": "1992-02-26", "l_receiptdate": "1992-04-05", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "the blithely ironic " }, { "l_orderkey": 5157i32, "l_partkey": 59i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 25.0d, "l_extendedprice": 23976.25d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-24", "l_commitdate": "1997-09-23", "l_receiptdate": "1997-08-28", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": " packages detect. even requests against th" }, { "l_orderkey": 5444i32, "l_partkey": 59i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 33.0d, "l_extendedprice": 31648.65d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-06-24", "l_commitdate": "1995-04-24", "l_receiptdate": "1995-07-13", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "ut the courts cajole blithely excuses" }, { "l_orderkey": 5472i32, "l_partkey": 59i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 27.0d, "l_extendedprice": 25894.35d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-08-04", "l_commitdate": "1993-07-07", "l_receiptdate": "1993-09-03", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "fily pending attainments. unus" }, { "l_orderkey": 5569i32, "l_partkey": 59i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 15.0d, "l_extendedprice": 14385.75d, "l_discount": 0.02d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-06-29", "l_commitdate": "1993-07-06", "l_receiptdate": "1993-07-05", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "lithely bold requests boost fur" }, { "l_orderkey": 5696i32, "l_partkey": 59i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 46.0d, "l_extendedprice": 44116.3d, "l_discount": 0.01d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-10", "l_commitdate": "1995-07-08", "l_receiptdate": "1995-08-25", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "ter the instruct" }, { "l_orderkey": 5923i32, "l_partkey": 59i32, "l_suppkey": 4i32, "l_linenumber": 5i32, "l_quantity": 35.0d, "l_extendedprice": 33566.75d, "l_discount": 0.04d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-21", "l_commitdate": "1997-07-11", "l_receiptdate": "1997-08-01", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "sts affix unusual, final requests. request" }, { "l_orderkey": 5957i32, "l_partkey": 59i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 46.0d, "l_extendedprice": 44116.3d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-01-23", "l_commitdate": "1994-01-30", "l_receiptdate": "1994-02-07", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "platelets. furiously unusual requests " } ] }
+{ "partkey": 60i32, "lines": [ { "l_orderkey": 65i32, "l_partkey": 60i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 26.0d, "l_extendedprice": 24961.56d, "l_discount": 0.03d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-04-20", "l_commitdate": "1995-04-25", "l_receiptdate": "1995-05-13", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "pending deposits nag even packages. ca" }, { "l_orderkey": 294i32, "l_partkey": 60i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 31.0d, "l_extendedprice": 29761.86d, "l_discount": 0.0d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-08-06", "l_commitdate": "1993-08-19", "l_receiptdate": "1993-08-13", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "le fluffily along the quick" }, { "l_orderkey": 579i32, "l_partkey": 60i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 6.0d, "l_extendedprice": 5760.36d, "l_discount": 0.03d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-24", "l_commitdate": "1998-05-03", "l_receiptdate": "1998-05-08", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "ickly final requests-- bold accou" }, { "l_orderkey": 992i32, "l_partkey": 60i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 14.0d, "l_extendedprice": 13440.84d, "l_discount": 0.1d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-29", "l_commitdate": "1997-12-29", "l_receiptdate": "1998-02-18", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "the unusual, even dependencies affix fluff" }, { "l_orderkey": 1217i32, "l_partkey": 60i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 45.0d, "l_extendedprice": 43202.7d, "l_discount": 0.07d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-07-01", "l_commitdate": "1992-06-23", "l_receiptdate": "1992-07-06", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "riously close ideas" }, { "l_orderkey": 1540i32, "l_partkey": 60i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 35.0d, "l_extendedprice": 33602.1d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-10-31", "l_commitdate": "1992-09-04", "l_receiptdate": "1992-11-05", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "e blithely a" }, { "l_orderkey": 1991i32, "l_partkey": 60i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 49.0d, "l_extendedprice": 47042.94d, "l_discount": 0.06d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-09-10", "l_commitdate": "1992-11-30", "l_receiptdate": "1992-10-07", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "quests cajole blithely" }, { "l_orderkey": 2086i32, "l_partkey": 60i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 22.0d, "l_extendedprice": 21121.32d, "l_discount": 0.03d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-12-04", "l_commitdate": "1994-12-16", "l_receiptdate": "1994-12-20", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "idly busy acc" }, { "l_orderkey": 2149i32, "l_partkey": 60i32, "l_suppkey": 5i32, "l_linenumber": 5i32, "l_quantity": 22.0d, "l_extendedprice": 21121.32d, "l_discount": 0.06d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-05-24", "l_commitdate": "1993-04-23", "l_receiptdate": "1993-06-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "ptotes sleep along the blithely ir" }, { "l_orderkey": 2213i32, "l_partkey": 60i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 4.0d, "l_extendedprice": 3840.24d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-04-15", "l_commitdate": "1993-04-15", "l_receiptdate": "1993-05-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": " affix carefully furiously " }, { "l_orderkey": 2305i32, "l_partkey": 60i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 39.0d, "l_extendedprice": 37442.34d, "l_discount": 0.07d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-04-16", "l_commitdate": "1993-04-17", "l_receiptdate": "1993-04-22", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "ms after the foxes " }, { "l_orderkey": 2406i32, "l_partkey": 60i32, "l_suppkey": 2i32, "l_linenumber": 7i32, "l_quantity": 30.0d, "l_extendedprice": 28801.8d, "l_discount": 0.07d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-17", "l_commitdate": "1997-01-12", "l_receiptdate": "1997-01-22", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": " final pinto beans han" }, { "l_orderkey": 2817i32, "l_partkey": 60i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 25.0d, "l_extendedprice": 24001.5d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-04-21", "l_commitdate": "1994-06-20", "l_receiptdate": "1994-05-07", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "doze blithely." }, { "l_orderkey": 2849i32, "l_partkey": 60i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 24.0d, "l_extendedprice": 23041.44d, "l_discount": 0.01d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-12", "l_commitdate": "1996-07-10", "l_receiptdate": "1996-06-27", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "e slyly even asymptotes. slo" }, { "l_orderkey": 2886i32, "l_partkey": 60i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 1.0d, "l_extendedprice": 960.06d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-02-01", "l_commitdate": "1994-12-18", "l_receiptdate": "1995-02-28", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "eposits fr" }, { "l_orderkey": 2944i32, "l_partkey": 60i32, "l_suppkey": 2i32, "l_linenumber": 6i32, "l_quantity": 17.0d, "l_extendedprice": 16321.02d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-10-18", "l_commitdate": "1997-11-27", "l_receiptdate": "1997-10-29", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "slyly final dolphins sleep silent the" }, { "l_orderkey": 3008i32, "l_partkey": 60i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 48.0d, "l_extendedprice": 46082.88d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-23", "l_commitdate": "1996-01-07", "l_receiptdate": "1996-02-09", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "ld theodolites. fluffily bold theodolit" }, { "l_orderkey": 3013i32, "l_partkey": 60i32, "l_suppkey": 5i32, "l_linenumber": 5i32, "l_quantity": 20.0d, "l_extendedprice": 19201.2d, "l_discount": 0.0d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-06", "l_commitdate": "1997-03-18", "l_receiptdate": "1997-05-12", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "unts boost regular ideas. slyly pe" }, { "l_orderkey": 3043i32, "l_partkey": 60i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 42.0d, "l_extendedprice": 40322.52d, "l_discount": 0.1d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-07-15", "l_commitdate": "1992-06-19", "l_receiptdate": "1992-07-23", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "ide of the un" }, { "l_orderkey": 3168i32, "l_partkey": 60i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 46.0d, "l_extendedprice": 44162.76d, "l_discount": 0.08d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-02-14", "l_commitdate": "1992-03-02", "l_receiptdate": "1992-03-02", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "y across the express accounts. fluff" }, { "l_orderkey": 4322i32, "l_partkey": 60i32, "l_suppkey": 8i32, "l_linenumber": 6i32, "l_quantity": 39.0d, "l_extendedprice": 37442.34d, "l_discount": 0.09d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-16", "l_commitdate": "1998-05-21", "l_receiptdate": "1998-04-11", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "ccounts. dogged pin" }, { "l_orderkey": 4423i32, "l_partkey": 60i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 2.0d, "l_extendedprice": 1920.12d, "l_discount": 0.07d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-03-04", "l_commitdate": "1995-04-04", "l_receiptdate": "1995-03-08", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "old sheaves sleep" }, { "l_orderkey": 4743i32, "l_partkey": 60i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 19.0d, "l_extendedprice": 18241.14d, "l_discount": 0.04d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-06-23", "l_commitdate": "1993-05-03", "l_receiptdate": "1993-07-20", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "hely even accounts" }, { "l_orderkey": 4839i32, "l_partkey": 60i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 5.0d, "l_extendedprice": 4800.3d, "l_discount": 0.1d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-09-07", "l_commitdate": "1994-07-15", "l_receiptdate": "1994-10-05", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "ses integrate. regular deposits are about " }, { "l_orderkey": 4839i32, "l_partkey": 60i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 18.0d, "l_extendedprice": 17281.08d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-05-18", "l_commitdate": "1994-06-13", "l_receiptdate": "1994-06-09", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "blithely ironic theodolites use along" }, { "l_orderkey": 4961i32, "l_partkey": 60i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 1.0d, "l_extendedprice": 960.06d, "l_discount": 0.08d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-08", "l_commitdate": "1998-05-25", "l_receiptdate": "1998-07-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "s affix carefully silent dependen" }, { "l_orderkey": 5570i32, "l_partkey": 60i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 29.0d, "l_extendedprice": 27841.74d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-12", "l_commitdate": "1996-10-20", "l_receiptdate": "1996-11-08", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "he silent, enticing requests." }, { "l_orderkey": 5735i32, "l_partkey": 60i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 41.0d, "l_extendedprice": 39362.46d, "l_discount": 0.01d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-12-23", "l_commitdate": "1995-02-10", "l_receiptdate": "1995-01-22", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "lthily ruthless i" } ] }
+{ "partkey": 61i32, "lines": [ { "l_orderkey": 33i32, "l_partkey": 61i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 32.0d, "l_extendedprice": 30753.92d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-12-09", "l_commitdate": "1994-01-04", "l_receiptdate": "1993-12-28", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "gular theodolites" }, { "l_orderkey": 261i32, "l_partkey": 61i32, "l_suppkey": 6i32, "l_linenumber": 5i32, "l_quantity": 49.0d, "l_extendedprice": 47091.94d, "l_discount": 0.01d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-09-29", "l_commitdate": "1993-09-08", "l_receiptdate": "1993-10-01", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": " pinto beans haggle slyly furiously pending" }, { "l_orderkey": 262i32, "l_partkey": 61i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 33.0d, "l_extendedprice": 31714.98d, "l_discount": 0.09d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-10", "l_commitdate": "1996-01-31", "l_receiptdate": "1996-03-27", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "atelets sleep furiously. requests cajole. b" }, { "l_orderkey": 291i32, "l_partkey": 61i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 30.0d, "l_extendedprice": 28831.8d, "l_discount": 0.1d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-03-22", "l_commitdate": "1994-04-30", "l_receiptdate": "1994-03-24", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": " fluffily regular deposits. quickl" }, { "l_orderkey": 295i32, "l_partkey": 61i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 26.0d, "l_extendedprice": 24987.56d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-01-12", "l_commitdate": "1994-11-22", "l_receiptdate": "1995-01-22", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": " carefully iron" }, { "l_orderkey": 899i32, "l_partkey": 61i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 18.0d, "l_extendedprice": 17299.08d, "l_discount": 0.04d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-06", "l_commitdate": "1998-05-09", "l_receiptdate": "1998-09-05", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "re daring, pending deposits. blit" }, { "l_orderkey": 999i32, "l_partkey": 61i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 34.0d, "l_extendedprice": 32676.04d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-10-30", "l_commitdate": "1993-10-17", "l_receiptdate": "1993-10-31", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "its. daringly final instruc" }, { "l_orderkey": 1093i32, "l_partkey": 61i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 34.0d, "l_extendedprice": 32676.04d, "l_discount": 0.01d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-11-07", "l_commitdate": "1997-09-06", "l_receiptdate": "1997-11-28", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "sits. express accounts play carefully. bol" }, { "l_orderkey": 1319i32, "l_partkey": 61i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 21.0d, "l_extendedprice": 20182.26d, "l_discount": 0.03d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-05", "l_commitdate": "1996-12-02", "l_receiptdate": "1996-10-28", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "s: carefully express " }, { "l_orderkey": 1380i32, "l_partkey": 61i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 33.0d, "l_extendedprice": 31714.98d, "l_discount": 0.04d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-23", "l_commitdate": "1996-10-01", "l_receiptdate": "1996-09-18", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "e ironic, even excuses haggle " }, { "l_orderkey": 1763i32, "l_partkey": 61i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 44.0d, "l_extendedprice": 42286.64d, "l_discount": 0.04d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-04", "l_commitdate": "1997-01-06", "l_receiptdate": "1996-12-25", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": " instructions need to integrate deposits. " }, { "l_orderkey": 2020i32, "l_partkey": 61i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 27.0d, "l_extendedprice": 25948.62d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-07-14", "l_commitdate": "1993-09-02", "l_receiptdate": "1993-08-03", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "e of the bold foxes haggle " }, { "l_orderkey": 2117i32, "l_partkey": 61i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 19.0d, "l_extendedprice": 18260.14d, "l_discount": 0.04d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-30", "l_commitdate": "1997-06-18", "l_receiptdate": "1997-08-13", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "s between the slyly regula" }, { "l_orderkey": 2370i32, "l_partkey": 61i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 32.0d, "l_extendedprice": 30753.92d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-04-24", "l_commitdate": "1994-03-03", "l_receiptdate": "1994-05-15", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "ies since the final deposits" }, { "l_orderkey": 2374i32, "l_partkey": 61i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 2.0d, "l_extendedprice": 1922.12d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-12-30", "l_commitdate": "1994-01-24", "l_receiptdate": "1994-01-02", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": ", unusual ideas. deposits cajole quietl" }, { "l_orderkey": 2595i32, "l_partkey": 61i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 42.0d, "l_extendedprice": 40364.52d, "l_discount": 0.08d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-24", "l_commitdate": "1996-01-28", "l_receiptdate": "1996-04-10", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "ggle furiou" }, { "l_orderkey": 2950i32, "l_partkey": 61i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 46.0d, "l_extendedprice": 44208.76d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-15", "l_commitdate": "1997-09-30", "l_receiptdate": "1997-07-25", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "to the regular accounts are slyly carefu" }, { "l_orderkey": 3463i32, "l_partkey": 61i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 45.0d, "l_extendedprice": 43247.7d, "l_discount": 0.02d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-10-30", "l_commitdate": "1993-11-04", "l_receiptdate": "1993-11-08", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "nts are slyly " }, { "l_orderkey": 3682i32, "l_partkey": 61i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 6.0d, "l_extendedprice": 5766.36d, "l_discount": 0.07d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-06", "l_commitdate": "1997-04-04", "l_receiptdate": "1997-05-11", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "ronic deposits wake slyly. ca" }, { "l_orderkey": 3846i32, "l_partkey": 61i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 15.0d, "l_extendedprice": 14415.9d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-02-17", "l_commitdate": "1998-04-27", "l_receiptdate": "1998-02-21", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "uternes. carefully even" }, { "l_orderkey": 3968i32, "l_partkey": 61i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 7.0d, "l_extendedprice": 6727.42d, "l_discount": 0.07d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-30", "l_commitdate": "1997-05-01", "l_receiptdate": "1997-04-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "efully bold instructions. express" }, { "l_orderkey": 3974i32, "l_partkey": 61i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 17.0d, "l_extendedprice": 16338.02d, "l_discount": 0.05d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-04-05", "l_commitdate": "1996-05-21", "l_receiptdate": "1996-04-28", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "ions eat slyly after the blithely " }, { "l_orderkey": 4167i32, "l_partkey": 61i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 47.0d, "l_extendedprice": 45169.82d, "l_discount": 0.04d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-02", "l_commitdate": "1998-08-24", "l_receiptdate": "1998-08-28", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": " carefully final asymptotes. slyly bo" }, { "l_orderkey": 4672i32, "l_partkey": 61i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 41.0d, "l_extendedprice": 39403.46d, "l_discount": 0.0d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-01", "l_commitdate": "1995-12-15", "l_receiptdate": "1995-12-12", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": " slyly quie" }, { "l_orderkey": 5312i32, "l_partkey": 61i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 27.0d, "l_extendedprice": 25948.62d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-04-20", "l_commitdate": "1995-04-09", "l_receiptdate": "1995-04-25", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "tructions cajol" }, { "l_orderkey": 5318i32, "l_partkey": 61i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 13.0d, "l_extendedprice": 12493.78d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-07-15", "l_commitdate": "1993-06-25", "l_receiptdate": "1993-08-13", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "ly silent ideas. ideas haggle among the " }, { "l_orderkey": 5376i32, "l_partkey": 61i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 42.0d, "l_extendedprice": 40364.52d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-09-20", "l_commitdate": "1994-08-30", "l_receiptdate": "1994-09-29", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "y even asymptotes. courts are unusual pa" }, { "l_orderkey": 5442i32, "l_partkey": 61i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 12.0d, "l_extendedprice": 11532.72d, "l_discount": 0.01d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-15", "l_commitdate": "1998-03-18", "l_receiptdate": "1998-05-05", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "fully final" }, { "l_orderkey": 5797i32, "l_partkey": 61i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 17.0d, "l_extendedprice": 16338.02d, "l_discount": 0.09d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-13", "l_commitdate": "1998-01-12", "l_receiptdate": "1997-12-23", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "the ironic, even theodoli" } ] }
+{ "partkey": 62i32, "lines": [ { "l_orderkey": 33i32, "l_partkey": 62i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 31.0d, "l_extendedprice": 29823.86d, "l_discount": 0.09d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-10-29", "l_commitdate": "1993-12-19", "l_receiptdate": "1993-11-08", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "ng to the furiously ironic package" }, { "l_orderkey": 71i32, "l_partkey": 62i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 25.0d, "l_extendedprice": 24051.5d, "l_discount": 0.09d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-10", "l_commitdate": "1998-04-22", "l_receiptdate": "1998-04-11", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "ckly. slyly" }, { "l_orderkey": 102i32, "l_partkey": 62i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 15.0d, "l_extendedprice": 14430.9d, "l_discount": 0.07d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-02", "l_commitdate": "1997-07-13", "l_receiptdate": "1997-06-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "final packages. carefully even excu" }, { "l_orderkey": 354i32, "l_partkey": 62i32, "l_suppkey": 1i32, "l_linenumber": 6i32, "l_quantity": 36.0d, "l_extendedprice": 34634.16d, "l_discount": 0.03d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-19", "l_commitdate": "1996-05-29", "l_receiptdate": "1996-03-30", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "onic requests thrash bold g" }, { "l_orderkey": 482i32, "l_partkey": 62i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 31.0d, "l_extendedprice": 29823.86d, "l_discount": 0.04d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-01", "l_commitdate": "1996-05-06", "l_receiptdate": "1996-06-17", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": " blithe pin" }, { "l_orderkey": 513i32, "l_partkey": 62i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 20.0d, "l_extendedprice": 19241.2d, "l_discount": 0.09d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-12", "l_commitdate": "1995-05-31", "l_receiptdate": "1995-07-31", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "efully ironic ideas doze slyl" }, { "l_orderkey": 1248i32, "l_partkey": 62i32, "l_suppkey": 9i32, "l_linenumber": 6i32, "l_quantity": 30.0d, "l_extendedprice": 28861.8d, "l_discount": 0.1d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-02-01", "l_commitdate": "1992-03-24", "l_receiptdate": "1992-02-08", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "fily special foxes kindle am" }, { "l_orderkey": 1287i32, "l_partkey": 62i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 10.0d, "l_extendedprice": 9620.6d, "l_discount": 0.01d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-09-03", "l_commitdate": "1994-08-12", "l_receiptdate": "1994-09-16", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "ding, regular accounts" }, { "l_orderkey": 1511i32, "l_partkey": 62i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 32.0d, "l_extendedprice": 30785.92d, "l_discount": 0.04d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-06", "l_commitdate": "1997-03-21", "l_receiptdate": "1997-01-26", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": " deposits. carefully ironi" }, { "l_orderkey": 2087i32, "l_partkey": 62i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 1.0d, "l_extendedprice": 962.06d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-27", "l_commitdate": "1998-04-11", "l_receiptdate": "1998-06-12", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "hely final acc" }, { "l_orderkey": 3393i32, "l_partkey": 62i32, "l_suppkey": 7i32, "l_linenumber": 6i32, "l_quantity": 17.0d, "l_extendedprice": 16355.02d, "l_discount": 0.04d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-15", "l_commitdate": "1995-09-07", "l_receiptdate": "1995-09-10", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "kly ironic deposits could" }, { "l_orderkey": 3907i32, "l_partkey": 62i32, "l_suppkey": 3i32, "l_linenumber": 5i32, "l_quantity": 22.0d, "l_extendedprice": 21165.32d, "l_discount": 0.09d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-09-20", "l_commitdate": "1992-10-30", "l_receiptdate": "1992-09-29", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "ly. furiously unusual deposits use afte" }, { "l_orderkey": 3936i32, "l_partkey": 62i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 12.0d, "l_extendedprice": 11544.72d, "l_discount": 0.06d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-25", "l_commitdate": "1997-01-09", "l_receiptdate": "1996-12-06", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "ithely across the carefully brave req" }, { "l_orderkey": 4070i32, "l_partkey": 62i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 11.0d, "l_extendedprice": 10582.66d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-23", "l_commitdate": "1995-08-15", "l_receiptdate": "1995-08-31", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": " carefully final pack" }, { "l_orderkey": 4450i32, "l_partkey": 62i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 13.0d, "l_extendedprice": 12506.78d, "l_discount": 0.0d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-26", "l_commitdate": "1997-09-18", "l_receiptdate": "1997-09-20", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": " brave foxes. slyly unusual" }, { "l_orderkey": 4453i32, "l_partkey": 62i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 48.0d, "l_extendedprice": 46178.88d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-29", "l_commitdate": "1997-06-24", "l_receiptdate": "1997-06-03", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "eep. fluffily express accounts at the furi" }, { "l_orderkey": 4483i32, "l_partkey": 62i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 50.0d, "l_extendedprice": 48103.0d, "l_discount": 0.01d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-06-19", "l_commitdate": "1992-05-12", "l_receiptdate": "1992-07-08", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "ag blithely even" }, { "l_orderkey": 5027i32, "l_partkey": 62i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 39.0d, "l_extendedprice": 37520.34d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-09", "l_commitdate": "1997-11-13", "l_receiptdate": "1997-09-21", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "ess requests! quickly regular pac" }, { "l_orderkey": 5378i32, "l_partkey": 62i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 46.0d, "l_extendedprice": 44254.76d, "l_discount": 0.01d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-02-17", "l_commitdate": "1993-01-20", "l_receiptdate": "1993-02-26", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "into beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto beans sleep. fuinto bea" }, { "l_orderkey": 5382i32, "l_partkey": 62i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 20.0d, "l_extendedprice": 19241.2d, "l_discount": 0.08d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-03-26", "l_commitdate": "1992-02-17", "l_receiptdate": "1992-04-15", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "carefully regular accounts. slyly ev" }, { "l_orderkey": 5536i32, "l_partkey": 62i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 20.0d, "l_extendedprice": 19241.2d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-08", "l_commitdate": "1998-05-10", "l_receiptdate": "1998-05-31", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "equests mo" }, { "l_orderkey": 5602i32, "l_partkey": 62i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 31.0d, "l_extendedprice": 29823.86d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-04", "l_commitdate": "1997-10-24", "l_receiptdate": "1997-09-07", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "rate fluffily regular platelets. blithel" }, { "l_orderkey": 5888i32, "l_partkey": 62i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 46.0d, "l_extendedprice": 44254.76d, "l_discount": 0.02d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-18", "l_commitdate": "1996-11-05", "l_receiptdate": "1996-12-08", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "yly final accounts hag" }, { "l_orderkey": 5955i32, "l_partkey": 62i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 15.0d, "l_extendedprice": 14430.9d, "l_discount": 0.08d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-04-22", "l_commitdate": "1995-05-28", "l_receiptdate": "1995-04-27", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "y final accounts above the regu" } ] }
+{ "partkey": 63i32, "lines": [ { "l_orderkey": 3i32, "l_partkey": 63i32, "l_suppkey": 8i32, "l_linenumber": 6i32, "l_quantity": 26.0d, "l_extendedprice": 25039.56d, "l_discount": 0.1d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-10-29", "l_commitdate": "1993-12-18", "l_receiptdate": "1993-11-04", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "ges sleep after the caref" }, { "l_orderkey": 100i32, "l_partkey": 63i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 28.0d, "l_extendedprice": 26965.68d, "l_discount": 0.04d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-08", "l_commitdate": "1998-05-13", "l_receiptdate": "1998-06-07", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "sts haggle. slowl" }, { "l_orderkey": 869i32, "l_partkey": 63i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 27.0d, "l_extendedprice": 26002.62d, "l_discount": 0.07d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-30", "l_commitdate": "1997-02-17", "l_receiptdate": "1997-02-26", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "uffily even excuses? slyly even deposits " }, { "l_orderkey": 1636i32, "l_partkey": 63i32, "l_suppkey": 2i32, "l_linenumber": 6i32, "l_quantity": 34.0d, "l_extendedprice": 32744.04d, "l_discount": 0.1d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-11", "l_commitdate": "1997-09-09", "l_receiptdate": "1997-08-23", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "ular depos" }, { "l_orderkey": 1863i32, "l_partkey": 63i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 48.0d, "l_extendedprice": 46226.88d, "l_discount": 0.09d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-10-10", "l_commitdate": "1993-12-09", "l_receiptdate": "1993-10-19", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "ans hinder furiou" }, { "l_orderkey": 1986i32, "l_partkey": 63i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 14.0d, "l_extendedprice": 13482.84d, "l_discount": 0.04d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-07-14", "l_commitdate": "1994-06-19", "l_receiptdate": "1994-08-08", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "the packages. pending, unusual" }, { "l_orderkey": 2016i32, "l_partkey": 63i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 15.0d, "l_extendedprice": 14445.9d, "l_discount": 0.04d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-24", "l_commitdate": "1996-10-05", "l_receiptdate": "1996-10-21", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "uests haggle carefully furiously regul" }, { "l_orderkey": 2624i32, "l_partkey": 63i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 15.0d, "l_extendedprice": 14445.9d, "l_discount": 0.03d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-28", "l_commitdate": "1997-02-19", "l_receiptdate": "1997-03-21", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "le. quickly pending requests" }, { "l_orderkey": 2791i32, "l_partkey": 63i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 4.0d, "l_extendedprice": 3852.24d, "l_discount": 0.1d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-01-02", "l_commitdate": "1994-12-28", "l_receiptdate": "1995-01-29", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "slyly bold packages boost. slyly" }, { "l_orderkey": 2886i32, "l_partkey": 63i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 2.0d, "l_extendedprice": 1926.12d, "l_discount": 0.04d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-11-18", "l_commitdate": "1995-01-31", "l_receiptdate": "1994-12-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "ar theodolites. e" }, { "l_orderkey": 3104i32, "l_partkey": 63i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 11.0d, "l_extendedprice": 10593.66d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-10-05", "l_commitdate": "1993-11-30", "l_receiptdate": "1993-10-27", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": " special deposits u" }, { "l_orderkey": 3264i32, "l_partkey": 63i32, "l_suppkey": 4i32, "l_linenumber": 5i32, "l_quantity": 6.0d, "l_extendedprice": 5778.36d, "l_discount": 0.04d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-10", "l_commitdate": "1996-12-05", "l_receiptdate": "1996-11-22", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "press packages. ironical" }, { "l_orderkey": 3460i32, "l_partkey": 63i32, "l_suppkey": 10i32, "l_linenumber": 6i32, "l_quantity": 46.0d, "l_extendedprice": 44300.76d, "l_discount": 0.03d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-27", "l_commitdate": "1996-01-01", "l_receiptdate": "1996-02-01", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "uses run among the carefully even deposits" }, { "l_orderkey": 3461i32, "l_partkey": 63i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 27.0d, "l_extendedprice": 26002.62d, "l_discount": 0.06d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-02-10", "l_commitdate": "1993-03-02", "l_receiptdate": "1993-03-04", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "ely unusual deposits. quickly ir" }, { "l_orderkey": 3618i32, "l_partkey": 63i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 24.0d, "l_extendedprice": 23113.44d, "l_discount": 0.01d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-26", "l_commitdate": "1998-01-15", "l_receiptdate": "1998-02-17", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "xpress acc" }, { "l_orderkey": 3650i32, "l_partkey": 63i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 31.0d, "l_extendedprice": 29854.86d, "l_discount": 0.1d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-06-15", "l_commitdate": "1992-07-01", "l_receiptdate": "1992-07-15", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": " against the ironic accounts cajol" }, { "l_orderkey": 4130i32, "l_partkey": 63i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 2.0d, "l_extendedprice": 1926.12d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-19", "l_commitdate": "1996-04-24", "l_receiptdate": "1996-06-17", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "uriously regular instructions around th" }, { "l_orderkey": 4160i32, "l_partkey": 63i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 48.0d, "l_extendedprice": 46226.88d, "l_discount": 0.04d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-19", "l_commitdate": "1996-11-02", "l_receiptdate": "1996-09-24", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": " unusual dolphins " }, { "l_orderkey": 4451i32, "l_partkey": 63i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 34.0d, "l_extendedprice": 32744.04d, "l_discount": 0.1d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-11-30", "l_commitdate": "1994-12-04", "l_receiptdate": "1994-12-13", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": " regular ideas." }, { "l_orderkey": 4545i32, "l_partkey": 63i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 27.0d, "l_extendedprice": 26002.62d, "l_discount": 0.01d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-02-07", "l_commitdate": "1993-02-18", "l_receiptdate": "1993-02-18", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "ously bold asymptotes! blithely pen" }, { "l_orderkey": 4769i32, "l_partkey": 63i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 34.0d, "l_extendedprice": 32744.04d, "l_discount": 0.06d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-26", "l_commitdate": "1995-05-18", "l_receiptdate": "1995-08-03", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "ven instructions. ca" }, { "l_orderkey": 4871i32, "l_partkey": 63i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 3.0d, "l_extendedprice": 2889.18d, "l_discount": 0.03d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-03", "l_commitdate": "1995-08-10", "l_receiptdate": "1995-10-06", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "y special packages wak" }, { "l_orderkey": 4998i32, "l_partkey": 63i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 47.0d, "l_extendedprice": 45263.82d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-02-07", "l_commitdate": "1992-03-07", "l_receiptdate": "1992-02-19", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "mong the careful" }, { "l_orderkey": 5381i32, "l_partkey": 63i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 49.0d, "l_extendedprice": 47189.94d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-05-08", "l_commitdate": "1993-04-07", "l_receiptdate": "1993-06-03", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": " accounts. regular, regula" }, { "l_orderkey": 5575i32, "l_partkey": 63i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 16.0d, "l_extendedprice": 15408.96d, "l_discount": 0.0d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-17", "l_commitdate": "1995-10-14", "l_receiptdate": "1995-08-30", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "jole boldly beyond the final as" }, { "l_orderkey": 5702i32, "l_partkey": 63i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 31.0d, "l_extendedprice": 29854.86d, "l_discount": 0.0d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-01-04", "l_commitdate": "1993-10-22", "l_receiptdate": "1994-01-26", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "pinto beans. blithely " } ] }
+{ "partkey": 64i32, "lines": [ { "l_orderkey": 1i32, "l_partkey": 64i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 8.0d, "l_extendedprice": 7712.48d, "l_discount": 0.1d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-29", "l_commitdate": "1996-03-05", "l_receiptdate": "1996-01-31", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "riously. regular, express dep" }, { "l_orderkey": 352i32, "l_partkey": 64i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 17.0d, "l_extendedprice": 16389.02d, "l_discount": 0.07d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-06-02", "l_commitdate": "1994-05-31", "l_receiptdate": "1994-06-29", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "pending deposits sleep furiously " }, { "l_orderkey": 384i32, "l_partkey": 64i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 49.0d, "l_extendedprice": 47238.94d, "l_discount": 0.09d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-04-01", "l_commitdate": "1992-04-25", "l_receiptdate": "1992-04-18", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "refully carefully ironic instructions. bl" }, { "l_orderkey": 577i32, "l_partkey": 64i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 14.0d, "l_extendedprice": 13496.84d, "l_discount": 0.08d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-03-19", "l_commitdate": "1995-02-25", "l_receiptdate": "1995-04-09", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "l accounts wake deposits. ironic packa" }, { "l_orderkey": 581i32, "l_partkey": 64i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 41.0d, "l_extendedprice": 39526.46d, "l_discount": 0.09d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-26", "l_commitdate": "1997-04-06", "l_receiptdate": "1997-06-10", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "nts. quickly" }, { "l_orderkey": 1541i32, "l_partkey": 64i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 44.0d, "l_extendedprice": 42418.64d, "l_discount": 0.1d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-24", "l_commitdate": "1995-07-13", "l_receiptdate": "1995-08-26", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "o beans boost fluffily abou" }, { "l_orderkey": 1666i32, "l_partkey": 64i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 20.0d, "l_extendedprice": 19281.2d, "l_discount": 0.01d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-27", "l_commitdate": "1995-12-12", "l_receiptdate": "1996-01-31", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "uietly regular foxes wake quick" }, { "l_orderkey": 2209i32, "l_partkey": 64i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 11.0d, "l_extendedprice": 10604.66d, "l_discount": 0.01d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-07-12", "l_commitdate": "1992-08-24", "l_receiptdate": "1992-08-10", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "express, regular pinto be" }, { "l_orderkey": 2213i32, "l_partkey": 64i32, "l_suppkey": 9i32, "l_linenumber": 7i32, "l_quantity": 3.0d, "l_extendedprice": 2892.18d, "l_discount": 0.02d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-03-09", "l_commitdate": "1993-03-17", "l_receiptdate": "1993-04-07", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "o wake. ironic platel" }, { "l_orderkey": 2407i32, "l_partkey": 64i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 14.0d, "l_extendedprice": 13496.84d, "l_discount": 0.04d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-10-10", "l_commitdate": "1998-08-25", "l_receiptdate": "1998-10-27", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "l dependencies s" }, { "l_orderkey": 2470i32, "l_partkey": 64i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 10.0d, "l_extendedprice": 9640.6d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-20", "l_commitdate": "1997-06-19", "l_receiptdate": "1997-06-24", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": " ironic requests a" }, { "l_orderkey": 2628i32, "l_partkey": 64i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 42.0d, "l_extendedprice": 40490.52d, "l_discount": 0.0d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-11-20", "l_commitdate": "1994-01-04", "l_receiptdate": "1993-12-19", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "ld notornis alongside " }, { "l_orderkey": 2755i32, "l_partkey": 64i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 21.0d, "l_extendedprice": 20245.26d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-02-13", "l_commitdate": "1992-04-20", "l_receiptdate": "1992-03-02", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "furious re" }, { "l_orderkey": 3172i32, "l_partkey": 64i32, "l_suppkey": 5i32, "l_linenumber": 5i32, "l_quantity": 31.0d, "l_extendedprice": 29885.86d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-09-01", "l_commitdate": "1992-08-27", "l_receiptdate": "1992-09-23", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": ". slyly regular dependencies haggle quiet" }, { "l_orderkey": 3266i32, "l_partkey": 64i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 31.0d, "l_extendedprice": 29885.86d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-06-19", "l_commitdate": "1995-05-04", "l_receiptdate": "1995-07-06", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "grate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate among the quickly express depositsgrate am" }, { "l_orderkey": 3271i32, "l_partkey": 64i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 29.0d, "l_extendedprice": 27957.74d, "l_discount": 0.07d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-03-10", "l_commitdate": "1992-02-05", "l_receiptdate": "1992-03-14", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "lar instructions. carefully regular" }, { "l_orderkey": 3331i32, "l_partkey": 64i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 9.0d, "l_extendedprice": 8676.54d, "l_discount": 0.08d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-07-18", "l_commitdate": "1993-07-03", "l_receiptdate": "1993-08-16", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "odolites. bold accounts" }, { "l_orderkey": 3520i32, "l_partkey": 64i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 41.0d, "l_extendedprice": 39526.46d, "l_discount": 0.01d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-06", "l_commitdate": "1997-09-20", "l_receiptdate": "1997-08-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": " carefully pendi" }, { "l_orderkey": 3653i32, "l_partkey": 64i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 29.0d, "l_extendedprice": 27957.74d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-04-11", "l_commitdate": "1994-06-11", "l_receiptdate": "1994-04-29", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "ording to the special, final" }, { "l_orderkey": 3712i32, "l_partkey": 64i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 44.0d, "l_extendedprice": 42418.64d, "l_discount": 0.01d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-03-26", "l_commitdate": "1992-02-19", "l_receiptdate": "1992-04-18", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "ously permanently regular req" }, { "l_orderkey": 3717i32, "l_partkey": 64i32, "l_suppkey": 1i32, "l_linenumber": 6i32, "l_quantity": 38.0d, "l_extendedprice": 36634.28d, "l_discount": 0.01d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-10", "l_commitdate": "1998-07-08", "l_receiptdate": "1998-07-29", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "ly about the car" }, { "l_orderkey": 4004i32, "l_partkey": 64i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 47.0d, "l_extendedprice": 45310.82d, "l_discount": 0.07d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-06-25", "l_commitdate": "1993-08-03", "l_receiptdate": "1993-07-12", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "thely instead of the even, unu" }, { "l_orderkey": 4037i32, "l_partkey": 64i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 32.0d, "l_extendedprice": 30849.92d, "l_discount": 0.0d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-05-06", "l_commitdate": "1993-06-08", "l_receiptdate": "1993-05-31", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "e of the pending, iron" }, { "l_orderkey": 4039i32, "l_partkey": 64i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 9.0d, "l_extendedprice": 8676.54d, "l_discount": 0.1d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-08", "l_commitdate": "1998-02-05", "l_receiptdate": "1998-04-05", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "t? pinto beans cajole across the thinly r" }, { "l_orderkey": 4545i32, "l_partkey": 64i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 2.0d, "l_extendedprice": 1928.12d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-04-16", "l_commitdate": "1993-04-17", "l_receiptdate": "1993-05-03", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "ages use. slyly even i" }, { "l_orderkey": 4676i32, "l_partkey": 64i32, "l_suppkey": 1i32, "l_linenumber": 7i32, "l_quantity": 13.0d, "l_extendedprice": 12532.78d, "l_discount": 0.05d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-18", "l_commitdate": "1995-11-07", "l_receiptdate": "1995-12-10", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": " at the slyly bold attainments. silently e" }, { "l_orderkey": 4704i32, "l_partkey": 64i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 44.0d, "l_extendedprice": 42418.64d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-02", "l_commitdate": "1996-10-07", "l_receiptdate": "1996-09-17", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "out the care" }, { "l_orderkey": 4832i32, "l_partkey": 64i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 6.0d, "l_extendedprice": 5784.36d, "l_discount": 0.02d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-08", "l_commitdate": "1998-02-03", "l_receiptdate": "1997-12-10", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "ages cajole after the bold requests. furi" }, { "l_orderkey": 5409i32, "l_partkey": 64i32, "l_suppkey": 3i32, "l_linenumber": 6i32, "l_quantity": 14.0d, "l_extendedprice": 13496.84d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-02-14", "l_commitdate": "1992-03-26", "l_receiptdate": "1992-02-29", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "osits cajole furiously" }, { "l_orderkey": 5540i32, "l_partkey": 64i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 19.0d, "l_extendedprice": 18317.14d, "l_discount": 0.01d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-06", "l_commitdate": "1996-11-18", "l_receiptdate": "1997-02-20", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": " slyly slyl" }, { "l_orderkey": 5826i32, "l_partkey": 64i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 18.0d, "l_extendedprice": 17353.08d, "l_discount": 0.04d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-17", "l_commitdate": "1998-09-03", "l_receiptdate": "1998-07-22", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "atelets use above t" } ] }
+{ "partkey": 65i32, "lines": [ { "l_orderkey": 70i32, "l_partkey": 65i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 8.0d, "l_extendedprice": 7720.48d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-01-12", "l_commitdate": "1994-02-27", "l_receiptdate": "1994-01-14", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "ggle. carefully pending dependenc" }, { "l_orderkey": 166i32, "l_partkey": 65i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 37.0d, "l_extendedprice": 35707.22d, "l_discount": 0.09d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-16", "l_commitdate": "1995-10-17", "l_receiptdate": "1995-12-13", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "lar frays wake blithely a" }, { "l_orderkey": 388i32, "l_partkey": 65i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 40.0d, "l_extendedprice": 38602.4d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-12-24", "l_commitdate": "1993-01-28", "l_receiptdate": "1993-01-19", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "quests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests against the carefully unusual epiquests a" }, { "l_orderkey": 419i32, "l_partkey": 65i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 32.0d, "l_extendedprice": 30881.92d, "l_discount": 0.01d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-04", "l_commitdate": "1996-12-04", "l_receiptdate": "1996-12-24", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "blithely regular requests. special pinto" }, { "l_orderkey": 512i32, "l_partkey": 65i32, "l_suppkey": 6i32, "l_linenumber": 5i32, "l_quantity": 6.0d, "l_extendedprice": 5790.36d, "l_discount": 0.03d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-06-10", "l_commitdate": "1995-06-21", "l_receiptdate": "1995-06-16", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "en ideas haggle " }, { "l_orderkey": 903i32, "l_partkey": 65i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 27.0d, "l_extendedprice": 26056.62d, "l_discount": 0.04d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-18", "l_commitdate": "1995-09-20", "l_receiptdate": "1995-10-02", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "lly pending foxes. furiously" }, { "l_orderkey": 930i32, "l_partkey": 65i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 10.0d, "l_extendedprice": 9650.6d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-12-18", "l_commitdate": "1995-01-27", "l_receiptdate": "1995-01-16", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "ckly regular requests: regular instructions" }, { "l_orderkey": 935i32, "l_partkey": 65i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 23.0d, "l_extendedprice": 22196.38d, "l_discount": 0.02d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-11", "l_commitdate": "1997-11-25", "l_receiptdate": "1998-02-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "hes haggle furiously dolphins. qu" }, { "l_orderkey": 994i32, "l_partkey": 65i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 4.0d, "l_extendedprice": 3860.24d, "l_discount": 0.07d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-07-05", "l_commitdate": "1994-05-21", "l_receiptdate": "1994-07-20", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "aggle carefully acc" }, { "l_orderkey": 1030i32, "l_partkey": 65i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 17.0d, "l_extendedprice": 16406.02d, "l_discount": 0.06d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-10-13", "l_commitdate": "1994-08-01", "l_receiptdate": "1994-11-10", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "ly. carefully even packages dazz" }, { "l_orderkey": 1347i32, "l_partkey": 65i32, "l_suppkey": 6i32, "l_linenumber": 5i32, "l_quantity": 9.0d, "l_extendedprice": 8685.54d, "l_discount": 0.01d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-28", "l_commitdate": "1997-09-16", "l_receiptdate": "1997-09-26", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": " detect blithely above the fina" }, { "l_orderkey": 1409i32, "l_partkey": 65i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 36.0d, "l_extendedprice": 34742.16d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-01-27", "l_commitdate": "1993-01-31", "l_receiptdate": "1993-02-07", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "ncies sleep carefully r" }, { "l_orderkey": 1927i32, "l_partkey": 65i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 6.0d, "l_extendedprice": 5790.36d, "l_discount": 0.05d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-29", "l_commitdate": "1995-11-20", "l_receiptdate": "1995-12-08", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "furiously even wat" }, { "l_orderkey": 2053i32, "l_partkey": 65i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 46.0d, "l_extendedprice": 44392.76d, "l_discount": 0.01d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-04-01", "l_commitdate": "1995-04-02", "l_receiptdate": "1995-04-18", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "tions. furiously even requests hagg" }, { "l_orderkey": 2503i32, "l_partkey": 65i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 28.0d, "l_extendedprice": 27021.68d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-08-08", "l_commitdate": "1993-08-31", "l_receiptdate": "1993-08-10", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "s wake quickly slyly " }, { "l_orderkey": 2528i32, "l_partkey": 65i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 37.0d, "l_extendedprice": 35707.22d, "l_discount": 0.0d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-12-25", "l_commitdate": "1995-02-02", "l_receiptdate": "1994-12-31", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "ng the pending excuses haggle after the bl" }, { "l_orderkey": 2563i32, "l_partkey": 65i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 10.0d, "l_extendedprice": 9650.6d, "l_discount": 0.07d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-01-26", "l_commitdate": "1993-12-19", "l_receiptdate": "1994-01-28", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "tealthily abo" }, { "l_orderkey": 2785i32, "l_partkey": 65i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 33.0d, "l_extendedprice": 31846.98d, "l_discount": 0.08d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-16", "l_commitdate": "1995-08-24", "l_receiptdate": "1995-11-02", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "fter the furiously final p" }, { "l_orderkey": 2848i32, "l_partkey": 65i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 44.0d, "l_extendedprice": 42462.64d, "l_discount": 0.01d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-04-14", "l_commitdate": "1992-05-09", "l_receiptdate": "1992-04-19", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "ions. slyly express instructions n" }, { "l_orderkey": 3106i32, "l_partkey": 65i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 16.0d, "l_extendedprice": 15440.96d, "l_discount": 0.09d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-25", "l_commitdate": "1997-04-10", "l_receiptdate": "1997-03-16", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "sits wake slyl" }, { "l_orderkey": 3270i32, "l_partkey": 65i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 20.0d, "l_extendedprice": 19301.2d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-26", "l_commitdate": "1997-07-31", "l_receiptdate": "1997-08-30", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "en accounts among the c" }, { "l_orderkey": 3430i32, "l_partkey": 65i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 50.0d, "l_extendedprice": 48253.0d, "l_discount": 0.01d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-12-15", "l_commitdate": "1995-03-03", "l_receiptdate": "1994-12-24", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "ironic theodolites. carefully regular pac" }, { "l_orderkey": 3553i32, "l_partkey": 65i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 26.0d, "l_extendedprice": 25091.56d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-08-06", "l_commitdate": "1994-07-30", "l_receiptdate": "1994-08-23", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "fily special p" }, { "l_orderkey": 3751i32, "l_partkey": 65i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 45.0d, "l_extendedprice": 43427.7d, "l_discount": 0.08d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-05-27", "l_commitdate": "1994-06-19", "l_receiptdate": "1994-06-14", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "according to " }, { "l_orderkey": 4257i32, "l_partkey": 65i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 3.0d, "l_extendedprice": 2895.18d, "l_discount": 0.1d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-06-18", "l_commitdate": "1995-05-01", "l_receiptdate": "1995-07-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "thin the theodolites use after the bl" }, { "l_orderkey": 4354i32, "l_partkey": 65i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 37.0d, "l_extendedprice": 35707.22d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-01-13", "l_commitdate": "1994-12-29", "l_receiptdate": "1995-01-31", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "deas use blithely! special foxes print af" }, { "l_orderkey": 4388i32, "l_partkey": 65i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 30.0d, "l_extendedprice": 28951.8d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-07", "l_commitdate": "1996-05-07", "l_receiptdate": "1996-06-22", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "s cajole fluffil" }, { "l_orderkey": 4614i32, "l_partkey": 65i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 3.0d, "l_extendedprice": 2895.18d, "l_discount": 0.08d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-22", "l_commitdate": "1996-07-21", "l_receiptdate": "1996-08-07", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "ions engage final, ironic " }, { "l_orderkey": 4711i32, "l_partkey": 65i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 8.0d, "l_extendedprice": 7720.48d, "l_discount": 0.07d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-17", "l_commitdate": "1998-06-13", "l_receiptdate": "1998-06-27", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "g to the carefully ironic deposits. specia" }, { "l_orderkey": 4804i32, "l_partkey": 65i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 33.0d, "l_extendedprice": 31846.98d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-03-02", "l_commitdate": "1992-04-14", "l_receiptdate": "1992-03-13", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": ", thin excuses. " }, { "l_orderkey": 4805i32, "l_partkey": 65i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 13.0d, "l_extendedprice": 12545.78d, "l_discount": 0.04d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-07-16", "l_commitdate": "1992-06-07", "l_receiptdate": "1992-08-10", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "its serve about the accounts. slyly regu" }, { "l_orderkey": 4865i32, "l_partkey": 65i32, "l_suppkey": 2i32, "l_linenumber": 6i32, "l_quantity": 47.0d, "l_extendedprice": 45357.82d, "l_discount": 0.0d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-26", "l_commitdate": "1997-08-07", "l_receiptdate": "1997-08-31", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "y unusual packages. packages" }, { "l_orderkey": 4995i32, "l_partkey": 65i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 16.0d, "l_extendedprice": 15440.96d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-02-27", "l_commitdate": "1996-04-03", "l_receiptdate": "1996-02-29", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "egular, bold packages. accou" }, { "l_orderkey": 5095i32, "l_partkey": 65i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 46.0d, "l_extendedprice": 44392.76d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-06-26", "l_commitdate": "1992-06-25", "l_receiptdate": "1992-07-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "egular instruction" }, { "l_orderkey": 5376i32, "l_partkey": 65i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 18.0d, "l_extendedprice": 17371.08d, "l_discount": 0.02d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-10-29", "l_commitdate": "1994-09-13", "l_receiptdate": "1994-11-01", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": " accounts boo" }, { "l_orderkey": 5539i32, "l_partkey": 65i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 42.0d, "l_extendedprice": 40532.52d, "l_discount": 0.1d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-09-29", "l_commitdate": "1994-09-17", "l_receiptdate": "1994-10-20", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "ons across the carefully si" } ] }
+{ "partkey": 66i32, "lines": [ { "l_orderkey": 71i32, "l_partkey": 66i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 3.0d, "l_extendedprice": 2898.18d, "l_discount": 0.09d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-23", "l_commitdate": "1998-04-03", "l_receiptdate": "1998-06-02", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "y. pinto beans haggle after the" }, { "l_orderkey": 194i32, "l_partkey": 66i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 13.0d, "l_extendedprice": 12558.78d, "l_discount": 0.08d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-05-07", "l_commitdate": "1992-06-18", "l_receiptdate": "1992-05-10", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "about the blit" }, { "l_orderkey": 261i32, "l_partkey": 66i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 20.0d, "l_extendedprice": 19321.2d, "l_discount": 0.0d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-10-21", "l_commitdate": "1993-08-02", "l_receiptdate": "1993-11-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "ites hinder " }, { "l_orderkey": 549i32, "l_partkey": 66i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 36.0d, "l_extendedprice": 34778.16d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-09-11", "l_commitdate": "1992-10-11", "l_receiptdate": "1992-09-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "ts against the ironic, even theodolites eng" }, { "l_orderkey": 609i32, "l_partkey": 66i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 21.0d, "l_extendedprice": 20287.26d, "l_discount": 0.01d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-08-24", "l_commitdate": "1994-08-23", "l_receiptdate": "1994-08-27", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "de of the special warthogs. excu" }, { "l_orderkey": 740i32, "l_partkey": 66i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 35.0d, "l_extendedprice": 33812.1d, "l_discount": 0.0d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-06", "l_commitdate": "1995-08-22", "l_receiptdate": "1995-10-02", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "p quickly. fu" }, { "l_orderkey": 995i32, "l_partkey": 66i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 25.0d, "l_extendedprice": 24151.5d, "l_discount": 0.01d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-08", "l_commitdate": "1995-08-05", "l_receiptdate": "1995-09-28", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "lyly even " }, { "l_orderkey": 1280i32, "l_partkey": 66i32, "l_suppkey": 3i32, "l_linenumber": 6i32, "l_quantity": 9.0d, "l_extendedprice": 8694.54d, "l_discount": 0.0d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-04-18", "l_commitdate": "1993-03-28", "l_receiptdate": "1993-05-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "usual accou" }, { "l_orderkey": 1316i32, "l_partkey": 66i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 15.0d, "l_extendedprice": 14490.9d, "l_discount": 0.0d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-12-17", "l_commitdate": "1994-02-04", "l_receiptdate": "1993-12-20", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "fully express dugouts. furiously silent ide" }, { "l_orderkey": 1410i32, "l_partkey": 66i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 25.0d, "l_extendedprice": 24151.5d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-07", "l_commitdate": "1997-07-10", "l_receiptdate": "1997-05-16", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "unts haggle against the furiously fina" }, { "l_orderkey": 1603i32, "l_partkey": 66i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 29.0d, "l_extendedprice": 28015.74d, "l_discount": 0.06d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-09-28", "l_commitdate": "1993-09-20", "l_receiptdate": "1993-10-28", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "ses wake furiously. theodolite" }, { "l_orderkey": 1733i32, "l_partkey": 66i32, "l_suppkey": 7i32, "l_linenumber": 6i32, "l_quantity": 9.0d, "l_extendedprice": 8694.54d, "l_discount": 0.06d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-25", "l_commitdate": "1996-07-23", "l_receiptdate": "1996-06-10", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "ven foxes was according to t" }, { "l_orderkey": 2343i32, "l_partkey": 66i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 35.0d, "l_extendedprice": 33812.1d, "l_discount": 0.03d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-24", "l_commitdate": "1995-11-09", "l_receiptdate": "1995-10-26", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "ges haggle furiously carefully regular req" }, { "l_orderkey": 2562i32, "l_partkey": 66i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 25.0d, "l_extendedprice": 24151.5d, "l_discount": 0.05d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-11-23", "l_commitdate": "1992-10-08", "l_receiptdate": "1992-12-19", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": " accounts-- silent, unusual ideas a" }, { "l_orderkey": 2592i32, "l_partkey": 66i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 2.0d, "l_extendedprice": 1932.12d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-03-24", "l_commitdate": "1993-04-05", "l_receiptdate": "1993-04-16", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "side of the b" }, { "l_orderkey": 2887i32, "l_partkey": 66i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 11.0d, "l_extendedprice": 10626.66d, "l_discount": 0.06d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-08", "l_commitdate": "1997-07-17", "l_receiptdate": "1997-07-15", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "ackages. unusual, speci" }, { "l_orderkey": 2914i32, "l_partkey": 66i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 22.0d, "l_extendedprice": 21253.32d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-05-11", "l_commitdate": "1993-04-09", "l_receiptdate": "1993-05-22", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": " carefully about the fluffily ironic gifts" }, { "l_orderkey": 2950i32, "l_partkey": 66i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 18.0d, "l_extendedprice": 17389.08d, "l_discount": 0.1d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-19", "l_commitdate": "1997-08-29", "l_receiptdate": "1997-08-17", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "uests cajole furio" }, { "l_orderkey": 3015i32, "l_partkey": 66i32, "l_suppkey": 7i32, "l_linenumber": 6i32, "l_quantity": 18.0d, "l_extendedprice": 17389.08d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-10-10", "l_commitdate": "1992-11-19", "l_receiptdate": "1992-10-18", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "equests wake fluffil" }, { "l_orderkey": 3143i32, "l_partkey": 66i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 46.0d, "l_extendedprice": 44438.76d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-04-19", "l_commitdate": "1993-03-21", "l_receiptdate": "1993-05-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "low forges haggle. even packages use bli" }, { "l_orderkey": 3814i32, "l_partkey": 66i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 20.0d, "l_extendedprice": 19321.2d, "l_discount": 0.04d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-02-23", "l_commitdate": "1995-03-26", "l_receiptdate": "1995-03-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": ". doggedly ironic deposits will have to wa" }, { "l_orderkey": 4193i32, "l_partkey": 66i32, "l_suppkey": 1i32, "l_linenumber": 6i32, "l_quantity": 21.0d, "l_extendedprice": 20287.26d, "l_discount": 0.02d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-04-26", "l_commitdate": "1994-03-22", "l_receiptdate": "1994-05-23", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "accounts cajole b" }, { "l_orderkey": 4195i32, "l_partkey": 66i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 22.0d, "l_extendedprice": 21253.32d, "l_discount": 0.1d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-07-01", "l_commitdate": "1993-07-23", "l_receiptdate": "1993-07-28", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "lly express pinto bea" }, { "l_orderkey": 4550i32, "l_partkey": 66i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 19.0d, "l_extendedprice": 18355.14d, "l_discount": 0.06d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-01-01", "l_commitdate": "1995-02-13", "l_receiptdate": "1995-01-20", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "quests. express " }, { "l_orderkey": 4645i32, "l_partkey": 66i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 32.0d, "l_extendedprice": 30913.92d, "l_discount": 0.1d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-11-17", "l_commitdate": "1994-10-30", "l_receiptdate": "1994-11-18", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": " final accounts alongside" }, { "l_orderkey": 5380i32, "l_partkey": 66i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 6.0d, "l_extendedprice": 5796.36d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-11-15", "l_commitdate": "1998-01-08", "l_receiptdate": "1997-12-11", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "es. fluffily brave accounts across t" }, { "l_orderkey": 5412i32, "l_partkey": 66i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 48.0d, "l_extendedprice": 46370.88d, "l_discount": 0.01d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-02-22", "l_commitdate": "1998-03-28", "l_receiptdate": "1998-03-18", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "s. slyly final packages cajole blithe" }, { "l_orderkey": 5637i32, "l_partkey": 66i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 16.0d, "l_extendedprice": 15456.96d, "l_discount": 0.03d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-08", "l_commitdate": "1996-08-31", "l_receiptdate": "1996-09-29", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "d packages. express requests" }, { "l_orderkey": 5922i32, "l_partkey": 66i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 13.0d, "l_extendedprice": 12558.78d, "l_discount": 0.08d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-08", "l_commitdate": "1996-12-26", "l_receiptdate": "1997-04-03", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "sly special accounts wake ironically." } ] }
+{ "partkey": 67i32, "lines": [ { "l_orderkey": 612i32, "l_partkey": 67i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 49.0d, "l_extendedprice": 47385.94d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-01-08", "l_commitdate": "1992-11-25", "l_receiptdate": "1993-01-17", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "theodolite" }, { "l_orderkey": 1445i32, "l_partkey": 67i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 48.0d, "l_extendedprice": 46418.88d, "l_discount": 0.1d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-02-28", "l_commitdate": "1995-03-16", "l_receiptdate": "1995-03-12", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": ". final ideas are carefully dar" }, { "l_orderkey": 1543i32, "l_partkey": 67i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 42.0d, "l_extendedprice": 40616.52d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-26", "l_commitdate": "1997-03-30", "l_receiptdate": "1997-06-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "its sleep until the fur" }, { "l_orderkey": 1702i32, "l_partkey": 67i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 19.0d, "l_extendedprice": 18374.14d, "l_discount": 0.02d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "F", "l_shipdate": "1995-06-02", "l_commitdate": "1995-06-30", "l_receiptdate": "1995-06-29", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "ies haggle blith" }, { "l_orderkey": 1764i32, "l_partkey": 67i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 3.0d, "l_extendedprice": 2901.18d, "l_discount": 0.07d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-05-13", "l_commitdate": "1992-06-07", "l_receiptdate": "1992-05-26", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "es wake slowly. " }, { "l_orderkey": 2049i32, "l_partkey": 67i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 18.0d, "l_extendedprice": 17407.08d, "l_discount": 0.05d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-09", "l_commitdate": "1996-01-22", "l_receiptdate": "1996-01-25", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": " sleep fluffily. dependencies use never" }, { "l_orderkey": 2631i32, "l_partkey": 67i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 4.0d, "l_extendedprice": 3868.24d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-11-03", "l_commitdate": "1993-12-17", "l_receiptdate": "1993-11-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "special theodolites. a" }, { "l_orderkey": 2661i32, "l_partkey": 67i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 11.0d, "l_extendedprice": 10637.66d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-14", "l_commitdate": "1997-02-11", "l_receiptdate": "1997-05-05", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "equests are a" }, { "l_orderkey": 2819i32, "l_partkey": 67i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 12.0d, "l_extendedprice": 11604.72d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-07-18", "l_commitdate": "1994-06-24", "l_receiptdate": "1994-07-28", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": " regular, regular a" }, { "l_orderkey": 3136i32, "l_partkey": 67i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 2.0d, "l_extendedprice": 1934.12d, "l_discount": 0.08d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-11-21", "l_commitdate": "1994-11-03", "l_receiptdate": "1994-11-26", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "? special, silent " }, { "l_orderkey": 3399i32, "l_partkey": 67i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 3.0d, "l_extendedprice": 2901.18d, "l_discount": 0.03d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "F", "l_shipdate": "1995-06-16", "l_commitdate": "1995-04-04", "l_receiptdate": "1995-06-23", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "hely pending dugouts " }, { "l_orderkey": 3426i32, "l_partkey": 67i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 19.0d, "l_extendedprice": 18374.14d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-07", "l_commitdate": "1996-12-15", "l_receiptdate": "1996-12-14", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "c accounts cajole carefu" }, { "l_orderkey": 4102i32, "l_partkey": 67i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 39.0d, "l_extendedprice": 37715.34d, "l_discount": 0.08d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-04-14", "l_commitdate": "1996-05-18", "l_receiptdate": "1996-04-20", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "ffix blithely slyly special " }, { "l_orderkey": 4929i32, "l_partkey": 67i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 24.0d, "l_extendedprice": 23209.44d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-04-15", "l_commitdate": "1996-04-30", "l_receiptdate": "1996-05-09", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": " accounts boost" }, { "l_orderkey": 5317i32, "l_partkey": 67i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 50.0d, "l_extendedprice": 48353.0d, "l_discount": 0.09d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-10-17", "l_commitdate": "1994-10-25", "l_receiptdate": "1994-11-03", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "cajole furiously. accounts use quick" }, { "l_orderkey": 5344i32, "l_partkey": 67i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 26.0d, "l_extendedprice": 25143.56d, "l_discount": 0.02d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-27", "l_commitdate": "1998-08-22", "l_receiptdate": "1998-09-24", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "furiously pending, silent multipliers." }, { "l_orderkey": 5441i32, "l_partkey": 67i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 47.0d, "l_extendedprice": 45451.82d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-11-19", "l_commitdate": "1994-10-16", "l_receiptdate": "1994-12-16", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "ounts wake slyly about the express instr" }, { "l_orderkey": 5507i32, "l_partkey": 67i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 22.0d, "l_extendedprice": 21275.32d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-08", "l_commitdate": "1998-08-10", "l_receiptdate": "1998-07-22", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "gular ideas. carefully unu" }, { "l_orderkey": 5543i32, "l_partkey": 67i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 3.0d, "l_extendedprice": 2901.18d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-11-18", "l_commitdate": "1993-11-05", "l_receiptdate": "1993-12-17", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "ress, even " }, { "l_orderkey": 5632i32, "l_partkey": 67i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 24.0d, "l_extendedprice": 23209.44d, "l_discount": 0.04d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-23", "l_commitdate": "1996-04-02", "l_receiptdate": "1996-03-30", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "beans detect. quickly final i" }, { "l_orderkey": 5734i32, "l_partkey": 67i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 10.0d, "l_extendedprice": 9670.6d, "l_discount": 0.01d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-28", "l_commitdate": "1997-12-24", "l_receiptdate": "1998-01-24", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "equests; accounts above" } ] }
+{ "partkey": 68i32, "lines": [ { "l_orderkey": 1i32, "l_partkey": 68i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 36.0d, "l_extendedprice": 34850.16d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-04-12", "l_commitdate": "1996-02-28", "l_receiptdate": "1996-04-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "ly final dependencies: slyly bold " }, { "l_orderkey": 39i32, "l_partkey": 68i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 46.0d, "l_extendedprice": 44530.76d, "l_discount": 0.06d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-26", "l_commitdate": "1996-12-19", "l_receiptdate": "1996-10-26", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "he carefully e" }, { "l_orderkey": 135i32, "l_partkey": 68i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 34.0d, "l_extendedprice": 32914.04d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-12", "l_commitdate": "1996-01-19", "l_receiptdate": "1996-02-05", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "counts doze against the blithely ironi" }, { "l_orderkey": 486i32, "l_partkey": 68i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 40.0d, "l_extendedprice": 38722.4d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-21", "l_commitdate": "1996-06-06", "l_receiptdate": "1996-06-07", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "ts nag quickly among the slyl" }, { "l_orderkey": 610i32, "l_partkey": 68i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 11.0d, "l_extendedprice": 10648.66d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-31", "l_commitdate": "1995-10-25", "l_receiptdate": "1995-11-18", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "blithely final " }, { "l_orderkey": 868i32, "l_partkey": 68i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 19.0d, "l_extendedprice": 18393.14d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-06-22", "l_commitdate": "1992-08-27", "l_receiptdate": "1992-07-04", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "lyly ironic platelets wake. rut" }, { "l_orderkey": 1473i32, "l_partkey": 68i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 32.0d, "l_extendedprice": 30977.92d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-18", "l_commitdate": "1997-05-12", "l_receiptdate": "1997-05-10", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "out the packages lose furiously ab" }, { "l_orderkey": 1507i32, "l_partkey": 68i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 25.0d, "l_extendedprice": 24201.5d, "l_discount": 0.01d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-01-07", "l_commitdate": "1994-01-06", "l_receiptdate": "1994-01-11", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "xes. slyly busy de" }, { "l_orderkey": 1539i32, "l_partkey": 68i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 7.0d, "l_extendedprice": 6776.42d, "l_discount": 0.09d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-05-14", "l_commitdate": "1995-04-16", "l_receiptdate": "1995-05-30", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": ". fluffily reg" }, { "l_orderkey": 1543i32, "l_partkey": 68i32, "l_suppkey": 7i32, "l_linenumber": 7i32, "l_quantity": 3.0d, "l_extendedprice": 2904.18d, "l_discount": 0.0d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-22", "l_commitdate": "1997-04-06", "l_receiptdate": "1997-03-30", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "quickly. final accounts haggle slyl" }, { "l_orderkey": 1634i32, "l_partkey": 68i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 17.0d, "l_extendedprice": 16457.02d, "l_discount": 0.08d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-29", "l_commitdate": "1996-10-15", "l_receiptdate": "1996-11-02", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "cial, bold platelets alongside of the f" }, { "l_orderkey": 1826i32, "l_partkey": 68i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 9.0d, "l_extendedprice": 8712.54d, "l_discount": 0.07d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-07-12", "l_commitdate": "1992-07-11", "l_receiptdate": "1992-07-15", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": " blithely special" }, { "l_orderkey": 1861i32, "l_partkey": 68i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 7.0d, "l_extendedprice": 6776.42d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-01-14", "l_commitdate": "1994-04-03", "l_receiptdate": "1994-01-16", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "s foxes. slyly" }, { "l_orderkey": 1890i32, "l_partkey": 68i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 43.0d, "l_extendedprice": 41626.58d, "l_discount": 0.09d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-08", "l_commitdate": "1997-02-19", "l_receiptdate": "1997-04-30", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "lyly. instructions across the furiously" }, { "l_orderkey": 1926i32, "l_partkey": 68i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 13.0d, "l_extendedprice": 12584.78d, "l_discount": 0.04d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-04-26", "l_commitdate": "1996-04-13", "l_receiptdate": "1996-05-08", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "eans wake bli" }, { "l_orderkey": 1927i32, "l_partkey": 68i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 3.0d, "l_extendedprice": 2904.18d, "l_discount": 0.0d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-06", "l_commitdate": "1995-12-08", "l_receiptdate": "1995-11-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "ccounts affi" }, { "l_orderkey": 2052i32, "l_partkey": 68i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 50.0d, "l_extendedprice": 48403.0d, "l_discount": 0.09d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-06-22", "l_commitdate": "1992-06-03", "l_receiptdate": "1992-07-19", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "wake after the decoy" }, { "l_orderkey": 2438i32, "l_partkey": 68i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 10.0d, "l_extendedprice": 9680.6d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-08-18", "l_commitdate": "1993-08-28", "l_receiptdate": "1993-09-08", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "engage car" }, { "l_orderkey": 2465i32, "l_partkey": 68i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 27.0d, "l_extendedprice": 26137.62d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-05", "l_commitdate": "1995-09-07", "l_receiptdate": "1995-09-17", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "posits boost carefully unusual instructio" }, { "l_orderkey": 3041i32, "l_partkey": 68i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 9.0d, "l_extendedprice": 8712.54d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-28", "l_commitdate": "1997-07-23", "l_receiptdate": "1997-09-16", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "scapades after the special" }, { "l_orderkey": 3205i32, "l_partkey": 68i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 7.0d, "l_extendedprice": 6776.42d, "l_discount": 0.09d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-07-05", "l_commitdate": "1992-06-17", "l_receiptdate": "1992-07-07", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "ly alongsi" }, { "l_orderkey": 3842i32, "l_partkey": 68i32, "l_suppkey": 3i32, "l_linenumber": 5i32, "l_quantity": 13.0d, "l_extendedprice": 12584.78d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-04-13", "l_commitdate": "1992-06-22", "l_receiptdate": "1992-05-11", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "t blithely. busily regular accounts alon" }, { "l_orderkey": 3873i32, "l_partkey": 68i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 19.0d, "l_extendedprice": 18393.14d, "l_discount": 0.04d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-15", "l_commitdate": "1998-05-10", "l_receiptdate": "1998-05-17", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "y final ac" }, { "l_orderkey": 4706i32, "l_partkey": 68i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 6.0d, "l_extendedprice": 5808.36d, "l_discount": 0.01d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-01-20", "l_commitdate": "1993-03-18", "l_receiptdate": "1993-01-26", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "efully eve" }, { "l_orderkey": 4837i32, "l_partkey": 68i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 42.0d, "l_extendedprice": 40658.52d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-19", "l_commitdate": "1998-07-06", "l_receiptdate": "1998-06-23", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "o the furiously final theodolites boost" }, { "l_orderkey": 4865i32, "l_partkey": 68i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 44.0d, "l_extendedprice": 42594.64d, "l_discount": 0.1d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-25", "l_commitdate": "1997-08-20", "l_receiptdate": "1997-08-22", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "even deposits sleep against the quickly r" }, { "l_orderkey": 5121i32, "l_partkey": 68i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 10.0d, "l_extendedprice": 9680.6d, "l_discount": 0.04d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-06-08", "l_commitdate": "1992-07-10", "l_receiptdate": "1992-07-02", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "e quickly according " }, { "l_orderkey": 5153i32, "l_partkey": 68i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 30.0d, "l_extendedprice": 29041.8d, "l_discount": 0.09d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-10", "l_commitdate": "1995-11-14", "l_receiptdate": "1995-11-16", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "beans sleep bl" }, { "l_orderkey": 5252i32, "l_partkey": 68i32, "l_suppkey": 5i32, "l_linenumber": 5i32, "l_quantity": 24.0d, "l_extendedprice": 23233.44d, "l_discount": 0.04d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-11", "l_commitdate": "1996-04-17", "l_receiptdate": "1996-05-12", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "posits after the fluffi" }, { "l_orderkey": 5414i32, "l_partkey": 68i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 40.0d, "l_extendedprice": 38722.4d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-04-07", "l_commitdate": "1993-05-18", "l_receiptdate": "1993-04-23", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "ts are evenly across" }, { "l_orderkey": 5472i32, "l_partkey": 68i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 28.0d, "l_extendedprice": 27105.68d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-07-28", "l_commitdate": "1993-05-28", "l_receiptdate": "1993-08-11", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "ffily pendin" }, { "l_orderkey": 5504i32, "l_partkey": 68i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 4.0d, "l_extendedprice": 3872.24d, "l_discount": 0.1d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-04-30", "l_commitdate": "1993-03-01", "l_receiptdate": "1993-05-22", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "into beans boost. " }, { "l_orderkey": 5602i32, "l_partkey": 68i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 30.0d, "l_extendedprice": 29041.8d, "l_discount": 0.04d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-20", "l_commitdate": "1997-10-25", "l_receiptdate": "1997-10-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "e slyly even packages. careful" }, { "l_orderkey": 5664i32, "l_partkey": 68i32, "l_suppkey": 5i32, "l_linenumber": 6i32, "l_quantity": 34.0d, "l_extendedprice": 32914.04d, "l_discount": 0.09d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-09-10", "l_commitdate": "1998-10-05", "l_receiptdate": "1998-09-15", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "st. fluffily pending foxes na" }, { "l_orderkey": 5857i32, "l_partkey": 68i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 1.0d, "l_extendedprice": 968.06d, "l_discount": 0.03d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-02-01", "l_commitdate": "1997-12-09", "l_receiptdate": "1998-02-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "instructions detect final reques" }, { "l_orderkey": 5921i32, "l_partkey": 68i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 17.0d, "l_extendedprice": 16457.02d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-05-20", "l_commitdate": "1994-05-26", "l_receiptdate": "1994-05-23", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "final asymptotes. even packages boost " } ] }
+{ "partkey": 69i32, "lines": [ { "l_orderkey": 386i32, "l_partkey": 69i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 16.0d, "l_extendedprice": 15504.96d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-04-12", "l_commitdate": "1995-04-18", "l_receiptdate": "1995-05-11", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "lithely fluffi" }, { "l_orderkey": 1025i32, "l_partkey": 69i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 23.0d, "l_extendedprice": 22288.38d, "l_discount": 0.08d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "F", "l_shipdate": "1995-06-02", "l_commitdate": "1995-07-29", "l_receiptdate": "1995-06-23", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": " regular platelets nag carefu" }, { "l_orderkey": 1221i32, "l_partkey": 69i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 3.0d, "l_extendedprice": 2907.18d, "l_discount": 0.1d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-07-01", "l_commitdate": "1992-06-04", "l_receiptdate": "1992-07-27", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "ing to the fluffily" }, { "l_orderkey": 1477i32, "l_partkey": 69i32, "l_suppkey": 6i32, "l_linenumber": 6i32, "l_quantity": 49.0d, "l_extendedprice": 47483.94d, "l_discount": 0.06d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-11-18", "l_commitdate": "1997-11-06", "l_receiptdate": "1997-11-27", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "ise according to the sly, bold p" }, { "l_orderkey": 1600i32, "l_partkey": 69i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 25.0d, "l_extendedprice": 24226.5d, "l_discount": 0.0d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-05-25", "l_commitdate": "1993-04-07", "l_receiptdate": "1993-06-05", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "press packages. ironic excuses bo" }, { "l_orderkey": 1824i32, "l_partkey": 69i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 40.0d, "l_extendedprice": 38762.4d, "l_discount": 0.1d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-05-08", "l_commitdate": "1994-07-24", "l_receiptdate": "1994-06-06", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "es mold furiously final instructions. s" }, { "l_orderkey": 2500i32, "l_partkey": 69i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 17.0d, "l_extendedprice": 16474.02d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-09-30", "l_commitdate": "1992-10-16", "l_receiptdate": "1992-10-05", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "encies-- ironic, even packages" }, { "l_orderkey": 2849i32, "l_partkey": 69i32, "l_suppkey": 4i32, "l_linenumber": 6i32, "l_quantity": 30.0d, "l_extendedprice": 29071.8d, "l_discount": 0.06d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-20", "l_commitdate": "1996-07-23", "l_receiptdate": "1996-07-06", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "yly furiously even id" }, { "l_orderkey": 3045i32, "l_partkey": 69i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 48.0d, "l_extendedprice": 46514.88d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-01", "l_commitdate": "1995-12-16", "l_receiptdate": "1995-10-10", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "ole quickly outside th" }, { "l_orderkey": 3205i32, "l_partkey": 69i32, "l_suppkey": 8i32, "l_linenumber": 7i32, "l_quantity": 36.0d, "l_extendedprice": 34886.16d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-05-31", "l_commitdate": "1992-06-19", "l_receiptdate": "1992-06-03", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "s. ironic platelets above the s" }, { "l_orderkey": 3429i32, "l_partkey": 69i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 10.0d, "l_extendedprice": 9690.6d, "l_discount": 0.05d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-19", "l_commitdate": "1997-02-22", "l_receiptdate": "1997-01-25", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "ackages. quickly e" }, { "l_orderkey": 3459i32, "l_partkey": 69i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 10.0d, "l_extendedprice": 9690.6d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-10-06", "l_commitdate": "1994-09-16", "l_receiptdate": "1994-11-03", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": " furiously silent dolphi" }, { "l_orderkey": 3591i32, "l_partkey": 69i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 24.0d, "l_extendedprice": 23257.44d, "l_discount": 0.04d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-12-26", "l_commitdate": "1994-01-07", "l_receiptdate": "1994-01-25", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "ages. slyly regular dependencies cajo" }, { "l_orderkey": 3714i32, "l_partkey": 69i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 13.0d, "l_extendedprice": 12597.78d, "l_discount": 0.07d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-26", "l_commitdate": "1998-06-17", "l_receiptdate": "1998-07-07", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": " the furiously final" }, { "l_orderkey": 3717i32, "l_partkey": 69i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 5.0d, "l_extendedprice": 4845.3d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-09-02", "l_commitdate": "1998-08-20", "l_receiptdate": "1998-09-26", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "quickly among " }, { "l_orderkey": 3940i32, "l_partkey": 69i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 40.0d, "l_extendedprice": 38762.4d, "l_discount": 0.08d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-02-29", "l_commitdate": "1996-03-22", "l_receiptdate": "1996-03-04", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "ts. regular fox" }, { "l_orderkey": 4102i32, "l_partkey": 69i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 5.0d, "l_extendedprice": 4845.3d, "l_discount": 0.08d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-11", "l_commitdate": "1996-05-11", "l_receiptdate": "1996-05-16", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": " the furiously even" }, { "l_orderkey": 4322i32, "l_partkey": 69i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 39.0d, "l_extendedprice": 37793.34d, "l_discount": 0.04d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-27", "l_commitdate": "1998-06-03", "l_receiptdate": "1998-05-04", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "its integrate fluffily " }, { "l_orderkey": 4577i32, "l_partkey": 69i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 12.0d, "l_extendedprice": 11628.72d, "l_discount": 0.07d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-29", "l_commitdate": "1998-06-17", "l_receiptdate": "1998-08-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "equests alongsi" }, { "l_orderkey": 4737i32, "l_partkey": 69i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 22.0d, "l_extendedprice": 21319.32d, "l_discount": 0.04d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-03-29", "l_commitdate": "1993-05-22", "l_receiptdate": "1993-04-16", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": " hang fluffily around t" }, { "l_orderkey": 4769i32, "l_partkey": 69i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 45.0d, "l_extendedprice": 43607.7d, "l_discount": 0.08d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-06-01", "l_commitdate": "1995-07-13", "l_receiptdate": "1995-06-04", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "accounts are. even accounts sleep" }, { "l_orderkey": 5216i32, "l_partkey": 69i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 17.0d, "l_extendedprice": 16474.02d, "l_discount": 0.04d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-20", "l_commitdate": "1997-11-07", "l_receiptdate": "1997-09-14", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "s according to the accounts bo" }, { "l_orderkey": 5348i32, "l_partkey": 69i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 21.0d, "l_extendedprice": 20350.26d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-11", "l_commitdate": "1997-12-24", "l_receiptdate": "1997-12-28", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": " regular theodolites haggle car" }, { "l_orderkey": 5767i32, "l_partkey": 69i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 15.0d, "l_extendedprice": 14535.9d, "l_discount": 0.07d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-06-05", "l_commitdate": "1992-07-28", "l_receiptdate": "1992-06-08", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "warthogs. carefully unusual g" } ] }
+{ "partkey": 70i32, "lines": [ { "l_orderkey": 130i32, "l_partkey": 70i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 31.0d, "l_extendedprice": 30072.17d, "l_discount": 0.06d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-09-01", "l_commitdate": "1992-07-18", "l_receiptdate": "1992-09-02", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "thily about the ruth" }, { "l_orderkey": 417i32, "l_partkey": 70i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 18.0d, "l_extendedprice": 17461.26d, "l_discount": 0.0d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-03-29", "l_commitdate": "1994-04-10", "l_receiptdate": "1994-04-26", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "- final requests sle" }, { "l_orderkey": 645i32, "l_partkey": 70i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 46.0d, "l_extendedprice": 44623.22d, "l_discount": 0.1d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-01-04", "l_commitdate": "1995-02-21", "l_receiptdate": "1995-01-21", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": " regular dependencies across the speci" }, { "l_orderkey": 1155i32, "l_partkey": 70i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 4.0d, "l_extendedprice": 3880.28d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-10-19", "l_commitdate": "1997-12-09", "l_receiptdate": "1997-11-02", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "ic foxes according to the carefully final " }, { "l_orderkey": 1253i32, "l_partkey": 70i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 22.0d, "l_extendedprice": 21341.54d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-02-23", "l_commitdate": "1993-04-06", "l_receiptdate": "1993-03-07", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "telets cajole alongside of the final reques" }, { "l_orderkey": 1569i32, "l_partkey": 70i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 30.0d, "l_extendedprice": 29102.1d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-19", "l_commitdate": "1998-06-04", "l_receiptdate": "1998-08-10", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "packages. excuses lose evenly carefully reg" }, { "l_orderkey": 1984i32, "l_partkey": 70i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 35.0d, "l_extendedprice": 33952.45d, "l_discount": 0.01d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-18", "l_commitdate": "1998-05-04", "l_receiptdate": "1998-06-01", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "tes. quickly pending packages haggle boldl" }, { "l_orderkey": 2213i32, "l_partkey": 70i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 1.0d, "l_extendedprice": 970.07d, "l_discount": 0.05d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-04-25", "l_commitdate": "1993-04-06", "l_receiptdate": "1993-04-28", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "s along the ironic reques" }, { "l_orderkey": 2629i32, "l_partkey": 70i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 33.0d, "l_extendedprice": 32012.31d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-29", "l_commitdate": "1998-05-14", "l_receiptdate": "1998-05-30", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "es. slowly express accounts are along the" }, { "l_orderkey": 2757i32, "l_partkey": 70i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 14.0d, "l_extendedprice": 13580.98d, "l_discount": 0.04d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-01", "l_commitdate": "1995-08-24", "l_receiptdate": "1995-09-03", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "special deposits u" }, { "l_orderkey": 2819i32, "l_partkey": 70i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 17.0d, "l_extendedprice": 16491.19d, "l_discount": 0.08d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-07-16", "l_commitdate": "1994-07-15", "l_receiptdate": "1994-07-17", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "en deposits above the f" }, { "l_orderkey": 2949i32, "l_partkey": 70i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 50.0d, "l_extendedprice": 48503.5d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-08-04", "l_commitdate": "1994-06-23", "l_receiptdate": "1994-08-17", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "gular courts cajole across t" }, { "l_orderkey": 2977i32, "l_partkey": 70i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 25.0d, "l_extendedprice": 24251.75d, "l_discount": 0.03d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-21", "l_commitdate": "1996-10-06", "l_receiptdate": "1996-10-13", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "furiously pe" }, { "l_orderkey": 2982i32, "l_partkey": 70i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 21.0d, "l_extendedprice": 20371.47d, "l_discount": 0.01d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-04-19", "l_commitdate": "1995-06-03", "l_receiptdate": "1995-04-28", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "egular ideas use furiously? bl" }, { "l_orderkey": 3079i32, "l_partkey": 70i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 20.0d, "l_extendedprice": 19401.4d, "l_discount": 0.05d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-10-18", "l_commitdate": "1997-10-26", "l_receiptdate": "1997-11-14", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "ets are according to the quickly dari" }, { "l_orderkey": 3205i32, "l_partkey": 70i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 18.0d, "l_extendedprice": 17461.26d, "l_discount": 0.03d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-07-04", "l_commitdate": "1992-06-14", "l_receiptdate": "1992-08-03", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "symptotes. slyly even deposits ar" }, { "l_orderkey": 3587i32, "l_partkey": 70i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 12.0d, "l_extendedprice": 11640.84d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-30", "l_commitdate": "1996-07-04", "l_receiptdate": "1996-09-22", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "g the even pinto beans. special," }, { "l_orderkey": 3649i32, "l_partkey": 70i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 14.0d, "l_extendedprice": 13580.98d, "l_discount": 0.02d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-09-19", "l_commitdate": "1994-08-17", "l_receiptdate": "1994-10-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "ithely bold accounts wake " }, { "l_orderkey": 3650i32, "l_partkey": 70i32, "l_suppkey": 7i32, "l_linenumber": 7i32, "l_quantity": 43.0d, "l_extendedprice": 41713.01d, "l_discount": 0.1d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-06-25", "l_commitdate": "1992-07-09", "l_receiptdate": "1992-07-22", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "structions use caref" }, { "l_orderkey": 3718i32, "l_partkey": 70i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 8.0d, "l_extendedprice": 7760.56d, "l_discount": 0.05d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-06", "l_commitdate": "1996-12-06", "l_receiptdate": "1996-12-15", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": " the even deposits sleep carefully b" }, { "l_orderkey": 3872i32, "l_partkey": 70i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 42.0d, "l_extendedprice": 40742.94d, "l_discount": 0.03d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-03", "l_commitdate": "1996-10-12", "l_receiptdate": "1997-01-16", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "s the furio" }, { "l_orderkey": 3937i32, "l_partkey": 70i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 48.0d, "l_extendedprice": 46563.36d, "l_discount": 0.1d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-15", "l_commitdate": "1998-02-22", "l_receiptdate": "1998-03-30", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "gainst the thinl" }, { "l_orderkey": 4197i32, "l_partkey": 70i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 39.0d, "l_extendedprice": 37832.73d, "l_discount": 0.02d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-07", "l_commitdate": "1996-10-11", "l_receiptdate": "1996-10-18", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "ronic requests. quickly bold packages in" }, { "l_orderkey": 4199i32, "l_partkey": 70i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 16.0d, "l_extendedprice": 15521.12d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-06-11", "l_commitdate": "1992-04-10", "l_receiptdate": "1992-07-10", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "ncies. furiously special accounts" }, { "l_orderkey": 4455i32, "l_partkey": 70i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 20.0d, "l_extendedprice": 19401.4d, "l_discount": 0.01d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-01-31", "l_commitdate": "1993-11-21", "l_receiptdate": "1994-03-02", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": " express packages. packages boost quickly" }, { "l_orderkey": 4513i32, "l_partkey": 70i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 39.0d, "l_extendedprice": 37832.73d, "l_discount": 0.01d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-25", "l_commitdate": "1996-05-14", "l_receiptdate": "1996-07-24", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "slyly furiously unusual deposits. blit" }, { "l_orderkey": 4992i32, "l_partkey": 70i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 25.0d, "l_extendedprice": 24251.75d, "l_discount": 0.04d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-08-06", "l_commitdate": "1992-07-11", "l_receiptdate": "1992-08-20", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "ly about the never ironic requests. pe" }, { "l_orderkey": 5059i32, "l_partkey": 70i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 5.0d, "l_extendedprice": 4850.35d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-12-23", "l_commitdate": "1994-01-12", "l_receiptdate": "1993-12-24", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "ts affix slyly accordi" }, { "l_orderkey": 5124i32, "l_partkey": 70i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 36.0d, "l_extendedprice": 34922.52d, "l_discount": 0.1d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-20", "l_commitdate": "1997-07-03", "l_receiptdate": "1997-05-04", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "r deposits ab" }, { "l_orderkey": 5473i32, "l_partkey": 70i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 27.0d, "l_extendedprice": 26191.89d, "l_discount": 0.01d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-04-06", "l_commitdate": "1992-04-26", "l_receiptdate": "1992-04-29", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "the deposits. warthogs wake fur" }, { "l_orderkey": 5605i32, "l_partkey": 70i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 39.0d, "l_extendedprice": 37832.73d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-13", "l_commitdate": "1996-11-03", "l_receiptdate": "1996-12-24", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "cial deposits. theodolites w" }, { "l_orderkey": 5636i32, "l_partkey": 70i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 18.0d, "l_extendedprice": 17461.26d, "l_discount": 0.05d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-05-14", "l_commitdate": "1995-05-17", "l_receiptdate": "1995-06-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "slyly express requests. furiously pen" }, { "l_orderkey": 5636i32, "l_partkey": 70i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 26.0d, "l_extendedprice": 25221.82d, "l_discount": 0.03d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-03-05", "l_commitdate": "1995-05-16", "l_receiptdate": "1995-03-23", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": " furiously final pinto beans o" }, { "l_orderkey": 5984i32, "l_partkey": 70i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 13.0d, "l_extendedprice": 12610.91d, "l_discount": 0.06d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-10-16", "l_commitdate": "1994-09-06", "l_receiptdate": "1994-11-11", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "lar platelets. f" } ] }
+{ "partkey": 71i32, "lines": [ { "l_orderkey": 419i32, "l_partkey": 71i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 15.0d, "l_extendedprice": 14566.05d, "l_discount": 0.07d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-17", "l_commitdate": "1996-11-28", "l_receiptdate": "1996-12-19", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": " sleep final, regular theodolites. fluffi" }, { "l_orderkey": 518i32, "l_partkey": 71i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 16.0d, "l_extendedprice": 15537.12d, "l_discount": 0.01d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-15", "l_commitdate": "1998-03-24", "l_receiptdate": "1998-04-08", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "use quickly expre" }, { "l_orderkey": 547i32, "l_partkey": 71i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 44.0d, "l_extendedprice": 42727.08d, "l_discount": 0.08d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-18", "l_commitdate": "1996-08-17", "l_receiptdate": "1996-10-27", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "thely express dependencies. qu" }, { "l_orderkey": 641i32, "l_partkey": 71i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 25.0d, "l_extendedprice": 24276.75d, "l_discount": 0.03d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-12-04", "l_commitdate": "1993-11-18", "l_receiptdate": "1993-12-18", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "d, regular d" }, { "l_orderkey": 673i32, "l_partkey": 71i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 22.0d, "l_extendedprice": 21363.54d, "l_discount": 0.03d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-03-15", "l_commitdate": "1994-04-27", "l_receiptdate": "1994-03-29", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": " the regular, even requests. carefully fin" }, { "l_orderkey": 899i32, "l_partkey": 71i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 4.0d, "l_extendedprice": 3884.28d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-11", "l_commitdate": "1998-05-14", "l_receiptdate": "1998-04-27", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "ges. blithe, ironic waters cajole care" }, { "l_orderkey": 1543i32, "l_partkey": 71i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 34.0d, "l_extendedprice": 33016.38d, "l_discount": 0.02d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-25", "l_commitdate": "1997-03-30", "l_receiptdate": "1997-06-04", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "ic requests are ac" }, { "l_orderkey": 1606i32, "l_partkey": 71i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 14.0d, "l_extendedprice": 13594.98d, "l_discount": 0.1d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-19", "l_commitdate": "1997-07-05", "l_receiptdate": "1997-06-10", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "structions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions haggle fstructions h" }, { "l_orderkey": 1635i32, "l_partkey": 71i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 3.0d, "l_extendedprice": 2913.21d, "l_discount": 0.06d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-13", "l_commitdate": "1997-03-25", "l_receiptdate": "1997-03-27", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": " quickly ironic r" }, { "l_orderkey": 1921i32, "l_partkey": 71i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 27.0d, "l_extendedprice": 26218.89d, "l_discount": 0.0d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-04-26", "l_commitdate": "1994-04-07", "l_receiptdate": "1994-04-30", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "ing pinto beans above the pend" }, { "l_orderkey": 2017i32, "l_partkey": 71i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 14.0d, "l_extendedprice": 13594.98d, "l_discount": 0.07d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-28", "l_commitdate": "1998-06-15", "l_receiptdate": "1998-07-11", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "ily final w" }, { "l_orderkey": 2112i32, "l_partkey": 71i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 18.0d, "l_extendedprice": 17479.26d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-02", "l_commitdate": "1997-03-16", "l_receiptdate": "1997-05-25", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "lphins solve ideas. even, special reque" }, { "l_orderkey": 2146i32, "l_partkey": 71i32, "l_suppkey": 9i32, "l_linenumber": 6i32, "l_quantity": 32.0d, "l_extendedprice": 31074.24d, "l_discount": 0.07d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-01-10", "l_commitdate": "1992-10-19", "l_receiptdate": "1993-02-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "y regular foxes wake among the final" }, { "l_orderkey": 2183i32, "l_partkey": 71i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 29.0d, "l_extendedprice": 28161.03d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-21", "l_commitdate": "1996-08-24", "l_receiptdate": "1996-08-15", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "ly unusual deposits sleep carefully" }, { "l_orderkey": 2212i32, "l_partkey": 71i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 18.0d, "l_extendedprice": 17479.26d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-06-22", "l_commitdate": "1994-06-18", "l_receiptdate": "1994-06-25", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": " cajole. final, pending ideas should are bl" }, { "l_orderkey": 2341i32, "l_partkey": 71i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 37.0d, "l_extendedprice": 35929.59d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-09-23", "l_commitdate": "1993-07-25", "l_receiptdate": "1993-10-14", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "was blithel" }, { "l_orderkey": 2407i32, "l_partkey": 71i32, "l_suppkey": 9i32, "l_linenumber": 6i32, "l_quantity": 18.0d, "l_extendedprice": 17479.26d, "l_discount": 0.04d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-10-03", "l_commitdate": "1998-08-30", "l_receiptdate": "1998-10-19", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": " wake carefully. fluffily " }, { "l_orderkey": 2497i32, "l_partkey": 71i32, "l_suppkey": 2i32, "l_linenumber": 6i32, "l_quantity": 19.0d, "l_extendedprice": 18450.33d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-11-10", "l_commitdate": "1992-11-20", "l_receiptdate": "1992-12-05", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": " instructions? carefully daring accounts" }, { "l_orderkey": 2884i32, "l_partkey": 71i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 41.0d, "l_extendedprice": 39813.87d, "l_discount": 0.03d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-02", "l_commitdate": "1997-12-17", "l_receiptdate": "1998-01-20", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "ep. slyly even accounts a" }, { "l_orderkey": 3207i32, "l_partkey": 71i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 42.0d, "l_extendedprice": 40784.94d, "l_discount": 0.0d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-02", "l_commitdate": "1998-05-10", "l_receiptdate": "1998-06-01", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "to the quickly special accounts? ironically" }, { "l_orderkey": 3360i32, "l_partkey": 71i32, "l_suppkey": 1i32, "l_linenumber": 6i32, "l_quantity": 42.0d, "l_extendedprice": 40784.94d, "l_discount": 0.04d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-07", "l_commitdate": "1998-04-18", "l_receiptdate": "1998-06-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "ages cajole. pending, " }, { "l_orderkey": 3910i32, "l_partkey": 71i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 31.0d, "l_extendedprice": 30103.17d, "l_discount": 0.05d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-22", "l_commitdate": "1996-11-14", "l_receiptdate": "1997-01-01", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "ess instructions. " }, { "l_orderkey": 4295i32, "l_partkey": 71i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 4.0d, "l_extendedprice": 3884.28d, "l_discount": 0.09d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-05", "l_commitdate": "1996-04-26", "l_receiptdate": "1996-06-13", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "arefully according to the pending ac" }, { "l_orderkey": 4482i32, "l_partkey": 71i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 32.0d, "l_extendedprice": 31074.24d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-05-16", "l_commitdate": "1995-07-22", "l_receiptdate": "1995-06-07", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": " quickly pendin" }, { "l_orderkey": 4544i32, "l_partkey": 71i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 20.0d, "l_extendedprice": 19421.4d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-10-12", "l_commitdate": "1997-10-11", "l_receiptdate": "1997-10-13", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": " waters about the" }, { "l_orderkey": 4611i32, "l_partkey": 71i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 48.0d, "l_extendedprice": 46611.36d, "l_discount": 0.02d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-02-28", "l_commitdate": "1993-02-12", "l_receiptdate": "1993-03-01", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "ular accounts " }, { "l_orderkey": 4772i32, "l_partkey": 71i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 15.0d, "l_extendedprice": 14566.05d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-09-19", "l_commitdate": "1994-10-22", "l_receiptdate": "1994-09-26", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": " requests. express, regular th" }, { "l_orderkey": 4834i32, "l_partkey": 71i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 26.0d, "l_extendedprice": 25247.82d, "l_discount": 0.01d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-04", "l_commitdate": "1996-10-21", "l_receiptdate": "1996-10-10", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "ages dazzle carefully. slyly daring foxes" }, { "l_orderkey": 4839i32, "l_partkey": 71i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 9.0d, "l_extendedprice": 8739.63d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-06-17", "l_commitdate": "1994-06-18", "l_receiptdate": "1994-07-10", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "ounts haggle carefully above" }, { "l_orderkey": 4870i32, "l_partkey": 71i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 36.0d, "l_extendedprice": 34958.52d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-09-06", "l_commitdate": "1994-09-17", "l_receiptdate": "1994-10-01", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": " instructions. carefully pending pac" }, { "l_orderkey": 4967i32, "l_partkey": 71i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 50.0d, "l_extendedprice": 48553.5d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-27", "l_commitdate": "1997-05-13", "l_receiptdate": "1997-06-12", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "kages. final, unusual accounts c" }, { "l_orderkey": 5285i32, "l_partkey": 71i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 1.0d, "l_extendedprice": 971.07d, "l_discount": 0.03d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-03-14", "l_commitdate": "1994-02-20", "l_receiptdate": "1994-04-10", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "e fluffily about the slyly special pa" }, { "l_orderkey": 5952i32, "l_partkey": 71i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 43.0d, "l_extendedprice": 41756.01d, "l_discount": 0.01d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-29", "l_commitdate": "1997-06-06", "l_receiptdate": "1997-07-15", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "posits sleep furiously quickly final p" } ] }
+{ "partkey": 72i32, "lines": [ { "l_orderkey": 486i32, "l_partkey": 72i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 38.0d, "l_extendedprice": 36938.66d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-07", "l_commitdate": "1996-04-26", "l_receiptdate": "1996-05-26", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": " blithely final pinto " }, { "l_orderkey": 800i32, "l_partkey": 72i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 38.0d, "l_extendedprice": 36938.66d, "l_discount": 0.0d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-21", "l_commitdate": "1998-09-25", "l_receiptdate": "1998-08-07", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "according to the bold, final dependencies " }, { "l_orderkey": 1060i32, "l_partkey": 72i32, "l_suppkey": 2i32, "l_linenumber": 6i32, "l_quantity": 26.0d, "l_extendedprice": 25273.82d, "l_discount": 0.01d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-02-28", "l_commitdate": "1993-04-01", "l_receiptdate": "1993-03-09", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "quickly abo" }, { "l_orderkey": 1185i32, "l_partkey": 72i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 8.0d, "l_extendedprice": 7776.56d, "l_discount": 0.01d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-12-05", "l_commitdate": "1992-10-05", "l_receiptdate": "1992-12-28", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "ely according to the furiously regular r" }, { "l_orderkey": 1222i32, "l_partkey": 72i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 12.0d, "l_extendedprice": 11664.84d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-02-12", "l_commitdate": "1993-03-14", "l_receiptdate": "1993-03-12", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "s print permanently unusual packages. " }, { "l_orderkey": 1441i32, "l_partkey": 72i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 34.0d, "l_extendedprice": 33050.38d, "l_discount": 0.09d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-12", "l_commitdate": "1997-05-11", "l_receiptdate": "1997-06-29", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "e carefully. blithely ironic dep" }, { "l_orderkey": 1446i32, "l_partkey": 72i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 31.0d, "l_extendedprice": 30134.17d, "l_discount": 0.1d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-01", "l_commitdate": "1998-05-17", "l_receiptdate": "1998-05-30", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": ". slyly reg" }, { "l_orderkey": 1477i32, "l_partkey": 72i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 31.0d, "l_extendedprice": 30134.17d, "l_discount": 0.0d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-16", "l_commitdate": "1997-09-30", "l_receiptdate": "1997-12-17", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": " requests. fluffily final " }, { "l_orderkey": 1988i32, "l_partkey": 72i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 36.0d, "l_extendedprice": 34994.52d, "l_discount": 0.09d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-21", "l_commitdate": "1995-11-24", "l_receiptdate": "1996-01-27", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "gular theodolites. " }, { "l_orderkey": 2435i32, "l_partkey": 72i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 3.0d, "l_extendedprice": 2916.21d, "l_discount": 0.07d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-06-01", "l_commitdate": "1993-03-25", "l_receiptdate": "1993-06-27", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": " final accounts ar" }, { "l_orderkey": 2501i32, "l_partkey": 72i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 20.0d, "l_extendedprice": 19441.4d, "l_discount": 0.1d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-23", "l_commitdate": "1997-07-01", "l_receiptdate": "1997-10-03", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "equests. furiou" }, { "l_orderkey": 2560i32, "l_partkey": 72i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 36.0d, "l_extendedprice": 34994.52d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-10-18", "l_commitdate": "1992-10-30", "l_receiptdate": "1992-11-05", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "accounts alongside of the excuses are " }, { "l_orderkey": 2594i32, "l_partkey": 72i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 7.0d, "l_extendedprice": 6804.49d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-03-26", "l_commitdate": "1993-03-05", "l_receiptdate": "1993-04-24", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "arls cajole " }, { "l_orderkey": 2756i32, "l_partkey": 72i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 30.0d, "l_extendedprice": 29162.1d, "l_discount": 0.0d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-06-05", "l_commitdate": "1994-06-30", "l_receiptdate": "1994-06-14", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "ular packages. regular deposi" }, { "l_orderkey": 2821i32, "l_partkey": 72i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 4.0d, "l_extendedprice": 3888.28d, "l_discount": 0.09d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-11-19", "l_commitdate": "1993-09-20", "l_receiptdate": "1993-11-27", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "ual multipliers. final deposits cajol" }, { "l_orderkey": 2945i32, "l_partkey": 72i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 30.0d, "l_extendedprice": 29162.1d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-19", "l_commitdate": "1996-02-11", "l_receiptdate": "1996-01-26", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "ular instructions" }, { "l_orderkey": 3013i32, "l_partkey": 72i32, "l_suppkey": 2i32, "l_linenumber": 6i32, "l_quantity": 19.0d, "l_extendedprice": 18469.33d, "l_discount": 0.08d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-11", "l_commitdate": "1997-04-18", "l_receiptdate": "1997-05-15", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "fluffily pending packages nag furiously al" }, { "l_orderkey": 3077i32, "l_partkey": 72i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 25.0d, "l_extendedprice": 24301.75d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-14", "l_commitdate": "1997-10-16", "l_receiptdate": "1997-10-06", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "lent account" }, { "l_orderkey": 3174i32, "l_partkey": 72i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 39.0d, "l_extendedprice": 37910.73d, "l_discount": 0.02d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-02", "l_commitdate": "1996-02-08", "l_receiptdate": "1995-12-12", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": " wake slyly foxes. bold requests p" }, { "l_orderkey": 3238i32, "l_partkey": 72i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 12.0d, "l_extendedprice": 11664.84d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-03-06", "l_commitdate": "1993-05-08", "l_receiptdate": "1993-04-01", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "ackages affix furiously. furiously bol" }, { "l_orderkey": 3265i32, "l_partkey": 72i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 7.0d, "l_extendedprice": 6804.49d, "l_discount": 0.09d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-09-16", "l_commitdate": "1992-09-04", "l_receiptdate": "1992-10-14", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "he forges. fluffily regular asym" }, { "l_orderkey": 3393i32, "l_partkey": 72i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 48.0d, "l_extendedprice": 46659.36d, "l_discount": 0.06d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-12", "l_commitdate": "1995-09-15", "l_receiptdate": "1995-08-02", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": " blithely final reques" }, { "l_orderkey": 3558i32, "l_partkey": 72i32, "l_suppkey": 1i32, "l_linenumber": 6i32, "l_quantity": 17.0d, "l_extendedprice": 16525.19d, "l_discount": 0.07d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-14", "l_commitdate": "1996-05-04", "l_receiptdate": "1996-04-05", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "ithely unusual packa" }, { "l_orderkey": 3655i32, "l_partkey": 72i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 35.0d, "l_extendedprice": 34022.45d, "l_discount": 0.04d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-10-17", "l_commitdate": "1992-12-23", "l_receiptdate": "1992-10-28", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "ng foxes cajole fluffily slyly final fo" }, { "l_orderkey": 3969i32, "l_partkey": 72i32, "l_suppkey": 3i32, "l_linenumber": 5i32, "l_quantity": 40.0d, "l_extendedprice": 38882.8d, "l_discount": 0.09d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-19", "l_commitdate": "1997-08-02", "l_receiptdate": "1997-06-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "lar requests cajole furiously blithely regu" }, { "l_orderkey": 4005i32, "l_partkey": 72i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 28.0d, "l_extendedprice": 27217.96d, "l_discount": 0.03d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-08", "l_commitdate": "1997-01-14", "l_receiptdate": "1996-12-30", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "y pending dependenc" }, { "l_orderkey": 4196i32, "l_partkey": 72i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 3.0d, "l_extendedprice": 2916.21d, "l_discount": 0.01d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-17", "l_commitdate": "1998-07-21", "l_receiptdate": "1998-05-18", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": " accounts. fu" }, { "l_orderkey": 4672i32, "l_partkey": 72i32, "l_suppkey": 10i32, "l_linenumber": 7i32, "l_quantity": 38.0d, "l_extendedprice": 36938.66d, "l_discount": 0.01d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-28", "l_commitdate": "1995-12-08", "l_receiptdate": "1995-12-13", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "ests. idle, regular ex" }, { "l_orderkey": 4742i32, "l_partkey": 72i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 15.0d, "l_extendedprice": 14581.05d, "l_discount": 0.06d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-20", "l_commitdate": "1995-05-26", "l_receiptdate": "1995-08-11", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "terns are sl" }, { "l_orderkey": 4806i32, "l_partkey": 72i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 6.0d, "l_extendedprice": 5832.42d, "l_discount": 0.01d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-05-17", "l_commitdate": "1993-07-19", "l_receiptdate": "1993-05-29", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "even theodolites. packages sl" }, { "l_orderkey": 4898i32, "l_partkey": 72i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 44.0d, "l_extendedprice": 42771.08d, "l_discount": 0.07d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-09-13", "l_commitdate": "1994-08-18", "l_receiptdate": "1994-09-16", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "y regular grouches about" }, { "l_orderkey": 5313i32, "l_partkey": 72i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 30.0d, "l_extendedprice": 29162.1d, "l_discount": 0.06d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-27", "l_commitdate": "1997-07-18", "l_receiptdate": "1997-06-30", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "nding packages use" }, { "l_orderkey": 5443i32, "l_partkey": 72i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 39.0d, "l_extendedprice": 37910.73d, "l_discount": 0.03d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-01", "l_commitdate": "1996-11-30", "l_receiptdate": "1996-11-19", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "gage carefully across the furiously" }, { "l_orderkey": 5540i32, "l_partkey": 72i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 24.0d, "l_extendedprice": 23329.68d, "l_discount": 0.1d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-09", "l_commitdate": "1996-12-02", "l_receiptdate": "1997-01-23", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "deposits! ironic depths may engage-- b" }, { "l_orderkey": 5635i32, "l_partkey": 72i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 5.0d, "l_extendedprice": 4860.35d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-10-02", "l_commitdate": "1992-11-05", "l_receiptdate": "1992-10-26", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "yly along the ironic, fi" }, { "l_orderkey": 5635i32, "l_partkey": 72i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 12.0d, "l_extendedprice": 11664.84d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-10-18", "l_commitdate": "1992-09-24", "l_receiptdate": "1992-11-17", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "ke slyly against the carefully final req" } ] }
+{ "partkey": 73i32, "lines": [ { "l_orderkey": 420i32, "l_partkey": 73i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 37.0d, "l_extendedprice": 36003.59d, "l_discount": 0.02d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-16", "l_commitdate": "1995-12-13", "l_receiptdate": "1995-11-19", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "rbits. bold requests along the quickl" }, { "l_orderkey": 676i32, "l_partkey": 73i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 24.0d, "l_extendedprice": 23353.68d, "l_discount": 0.01d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-05", "l_commitdate": "1997-01-16", "l_receiptdate": "1997-03-07", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "ress, regular dep" }, { "l_orderkey": 998i32, "l_partkey": 73i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 1.0d, "l_extendedprice": 973.07d, "l_discount": 0.04d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-01-05", "l_commitdate": "1995-01-06", "l_receiptdate": "1995-01-13", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "es sleep. regular dependencies use bl" }, { "l_orderkey": 1378i32, "l_partkey": 73i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 11.0d, "l_extendedprice": 10703.77d, "l_discount": 0.1d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-07", "l_commitdate": "1996-05-09", "l_receiptdate": "1996-07-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": " blithely express hoc" }, { "l_orderkey": 1379i32, "l_partkey": 73i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 13.0d, "l_extendedprice": 12649.91d, "l_discount": 0.04d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-08", "l_commitdate": "1998-07-13", "l_receiptdate": "1998-06-16", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "ully across the furiously iron" }, { "l_orderkey": 1637i32, "l_partkey": 73i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 1.0d, "l_extendedprice": 973.07d, "l_discount": 0.1d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-02-14", "l_commitdate": "1995-03-26", "l_receiptdate": "1995-03-09", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "ly final pinto beans. furiously" }, { "l_orderkey": 1732i32, "l_partkey": 73i32, "l_suppkey": 1i32, "l_linenumber": 6i32, "l_quantity": 16.0d, "l_extendedprice": 15569.12d, "l_discount": 0.01d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-01-07", "l_commitdate": "1994-01-02", "l_receiptdate": "1994-01-25", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "ix carefully at the furiously regular pac" }, { "l_orderkey": 1761i32, "l_partkey": 73i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 49.0d, "l_extendedprice": 47680.43d, "l_discount": 0.06d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-01-08", "l_commitdate": "1994-03-03", "l_receiptdate": "1994-02-05", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "y even packages promise" }, { "l_orderkey": 1762i32, "l_partkey": 73i32, "l_suppkey": 3i32, "l_linenumber": 7i32, "l_quantity": 47.0d, "l_extendedprice": 45734.29d, "l_discount": 0.03d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-11-02", "l_commitdate": "1994-10-07", "l_receiptdate": "1994-11-08", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": " blithely brave" }, { "l_orderkey": 1924i32, "l_partkey": 73i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 7.0d, "l_extendedprice": 6811.49d, "l_discount": 0.06d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-01", "l_commitdate": "1996-12-02", "l_receiptdate": "1997-01-08", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "osits. even accounts nag furious" }, { "l_orderkey": 1927i32, "l_partkey": 73i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 15.0d, "l_extendedprice": 14596.05d, "l_discount": 0.08d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-25", "l_commitdate": "1995-12-26", "l_receiptdate": "1995-12-31", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": " carefully regular requests sleep car" }, { "l_orderkey": 1958i32, "l_partkey": 73i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 9.0d, "l_extendedprice": 8757.63d, "l_discount": 0.01d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-08", "l_commitdate": "1995-12-17", "l_receiptdate": "1995-12-18", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "ickly. slyly bold " }, { "l_orderkey": 2050i32, "l_partkey": 73i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 47.0d, "l_extendedprice": 45734.29d, "l_discount": 0.05d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-08-25", "l_commitdate": "1994-07-18", "l_receiptdate": "1994-09-15", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "tside the blithely pending packages eat f" }, { "l_orderkey": 2215i32, "l_partkey": 73i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 33.0d, "l_extendedprice": 32111.31d, "l_discount": 0.0d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-19", "l_commitdate": "1996-08-10", "l_receiptdate": "1996-07-30", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "dolites cajole b" }, { "l_orderkey": 2757i32, "l_partkey": 73i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 17.0d, "l_extendedprice": 16542.19d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-06", "l_commitdate": "1995-09-27", "l_receiptdate": "1995-09-22", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "er the furiously silent " }, { "l_orderkey": 2790i32, "l_partkey": 73i32, "l_suppkey": 3i32, "l_linenumber": 6i32, "l_quantity": 13.0d, "l_extendedprice": 12649.91d, "l_discount": 0.08d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-09-20", "l_commitdate": "1994-10-10", "l_receiptdate": "1994-10-20", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "n deposits according to the regul" }, { "l_orderkey": 2951i32, "l_partkey": 73i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 21.0d, "l_extendedprice": 20434.47d, "l_discount": 0.06d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-04-12", "l_commitdate": "1996-04-27", "l_receiptdate": "1996-04-14", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "nt instructions toward the f" }, { "l_orderkey": 3783i32, "l_partkey": 73i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 36.0d, "l_extendedprice": 35030.52d, "l_discount": 0.02d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-03-02", "l_commitdate": "1994-02-09", "l_receiptdate": "1994-03-15", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "egular accounts" }, { "l_orderkey": 3840i32, "l_partkey": 73i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 45.0d, "l_extendedprice": 43788.15d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-10-12", "l_commitdate": "1998-10-12", "l_receiptdate": "1998-10-28", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "onic, even packages are. pe" }, { "l_orderkey": 4167i32, "l_partkey": 73i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 1.0d, "l_extendedprice": 973.07d, "l_discount": 0.03d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-10-11", "l_commitdate": "1998-08-14", "l_receiptdate": "1998-10-13", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "xpress platelets. blithely " }, { "l_orderkey": 4614i32, "l_partkey": 73i32, "l_suppkey": 3i32, "l_linenumber": 5i32, "l_quantity": 24.0d, "l_extendedprice": 23353.68d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-01", "l_commitdate": "1996-06-24", "l_receiptdate": "1996-07-08", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "regular, even" }, { "l_orderkey": 4741i32, "l_partkey": 73i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 24.0d, "l_extendedprice": 23353.68d, "l_discount": 0.0d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-09-16", "l_commitdate": "1992-09-19", "l_receiptdate": "1992-09-20", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "deas boost furiously slyly regular id" }, { "l_orderkey": 4743i32, "l_partkey": 73i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 21.0d, "l_extendedprice": 20434.47d, "l_discount": 0.08d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-07-02", "l_commitdate": "1993-06-15", "l_receiptdate": "1993-07-26", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "ake blithely against the packages. reg" }, { "l_orderkey": 4868i32, "l_partkey": 73i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 47.0d, "l_extendedprice": 45734.29d, "l_discount": 0.03d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-29", "l_commitdate": "1997-04-27", "l_receiptdate": "1997-05-11", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "gle unusual, fluffy packages. foxes cajol" }, { "l_orderkey": 4994i32, "l_partkey": 73i32, "l_suppkey": 4i32, "l_linenumber": 6i32, "l_quantity": 6.0d, "l_extendedprice": 5838.42d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-05", "l_commitdate": "1996-08-04", "l_receiptdate": "1996-09-30", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "grate carefully around th" }, { "l_orderkey": 5601i32, "l_partkey": 73i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 38.0d, "l_extendedprice": 36976.66d, "l_discount": 0.07d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-01-08", "l_commitdate": "1992-03-01", "l_receiptdate": "1992-01-09", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "ter the evenly final deposit" }, { "l_orderkey": 5824i32, "l_partkey": 73i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 16.0d, "l_extendedprice": 15569.12d, "l_discount": 0.03d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-13", "l_commitdate": "1997-01-07", "l_receiptdate": "1997-02-17", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "sly express Ti" } ] }
+{ "partkey": 74i32, "lines": [ { "l_orderkey": 65i32, "l_partkey": 74i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 22.0d, "l_extendedprice": 21429.54d, "l_discount": 0.0d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-17", "l_commitdate": "1995-06-04", "l_receiptdate": "1995-07-19", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": " ideas. special, r" }, { "l_orderkey": 801i32, "l_partkey": 74i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 45.0d, "l_extendedprice": 43833.15d, "l_discount": 0.01d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-03-22", "l_commitdate": "1992-03-22", "l_receiptdate": "1992-03-25", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": " even asymptotes" }, { "l_orderkey": 929i32, "l_partkey": 74i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 14.0d, "l_extendedprice": 13636.98d, "l_discount": 0.06d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-10-21", "l_commitdate": "1992-11-17", "l_receiptdate": "1992-11-15", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "gainst the" }, { "l_orderkey": 1156i32, "l_partkey": 74i32, "l_suppkey": 4i32, "l_linenumber": 5i32, "l_quantity": 49.0d, "l_extendedprice": 47729.43d, "l_discount": 0.04d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-16", "l_commitdate": "1996-12-02", "l_receiptdate": "1996-12-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "ithely unusual in" }, { "l_orderkey": 1888i32, "l_partkey": 74i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 38.0d, "l_extendedprice": 37014.66d, "l_discount": 0.03d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-11-29", "l_commitdate": "1994-01-16", "l_receiptdate": "1993-12-08", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "dazzle carefull" }, { "l_orderkey": 2208i32, "l_partkey": 74i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 41.0d, "l_extendedprice": 39936.87d, "l_discount": 0.08d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-18", "l_commitdate": "1995-06-19", "l_receiptdate": "1995-09-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "nd the furious, express dependencies." }, { "l_orderkey": 2245i32, "l_partkey": 74i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 28.0d, "l_extendedprice": 27273.96d, "l_discount": 0.05d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-08-19", "l_commitdate": "1993-07-27", "l_receiptdate": "1993-09-04", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "e requests sleep furiou" }, { "l_orderkey": 2374i32, "l_partkey": 74i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 28.0d, "l_extendedprice": 27273.96d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-02-19", "l_commitdate": "1993-12-16", "l_receiptdate": "1994-03-15", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "ets cajole fu" }, { "l_orderkey": 2528i32, "l_partkey": 74i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 13.0d, "l_extendedprice": 12662.91d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-11-27", "l_commitdate": "1995-01-20", "l_receiptdate": "1994-12-03", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "ggle furiously. slyly final asympt" }, { "l_orderkey": 3046i32, "l_partkey": 74i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 44.0d, "l_extendedprice": 42859.08d, "l_discount": 0.03d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-03", "l_commitdate": "1996-02-25", "l_receiptdate": "1996-04-01", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": " are quickly. blithe" }, { "l_orderkey": 3460i32, "l_partkey": 74i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 3.0d, "l_extendedprice": 2922.21d, "l_discount": 0.06d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-19", "l_commitdate": "1995-12-28", "l_receiptdate": "1996-01-31", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "er quickly " }, { "l_orderkey": 3587i32, "l_partkey": 74i32, "l_suppkey": 2i32, "l_linenumber": 7i32, "l_quantity": 23.0d, "l_extendedprice": 22403.61d, "l_discount": 0.07d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-30", "l_commitdate": "1996-07-01", "l_receiptdate": "1996-09-10", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "l multipliers sleep theodolites-- slyly " }, { "l_orderkey": 4004i32, "l_partkey": 74i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 46.0d, "l_extendedprice": 44807.22d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-09-04", "l_commitdate": "1993-07-13", "l_receiptdate": "1993-09-28", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "ncies. slyly pending dolphins sleep furio" }, { "l_orderkey": 4097i32, "l_partkey": 74i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 50.0d, "l_extendedprice": 48703.5d, "l_discount": 0.04d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-31", "l_commitdate": "1996-08-14", "l_receiptdate": "1996-09-27", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "egular deposits. blithely pending" }, { "l_orderkey": 4097i32, "l_partkey": 74i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 46.0d, "l_extendedprice": 44807.22d, "l_discount": 0.1d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-29", "l_commitdate": "1996-08-19", "l_receiptdate": "1996-08-25", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": " even depend" }, { "l_orderkey": 4100i32, "l_partkey": 74i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 4.0d, "l_extendedprice": 3896.28d, "l_discount": 0.03d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-20", "l_commitdate": "1996-04-29", "l_receiptdate": "1996-06-21", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "lyly regular, bold requ" }, { "l_orderkey": 4162i32, "l_partkey": 74i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 45.0d, "l_extendedprice": 43833.15d, "l_discount": 0.1d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-03-21", "l_commitdate": "1992-05-02", "l_receiptdate": "1992-03-29", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "elets. slyly regular i" }, { "l_orderkey": 4262i32, "l_partkey": 74i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 45.0d, "l_extendedprice": 43833.15d, "l_discount": 0.02d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-09", "l_commitdate": "1996-09-09", "l_receiptdate": "1996-11-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "ackages boost. pending, even instruction" }, { "l_orderkey": 4288i32, "l_partkey": 74i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 32.0d, "l_extendedprice": 31170.24d, "l_discount": 0.1d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-03-19", "l_commitdate": "1993-01-26", "l_receiptdate": "1993-04-18", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "e blithely even instructions. speci" }, { "l_orderkey": 4578i32, "l_partkey": 74i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 10.0d, "l_extendedprice": 9740.7d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-01-01", "l_commitdate": "1992-11-19", "l_receiptdate": "1993-01-28", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "uests. blithely unus" }, { "l_orderkey": 4775i32, "l_partkey": 74i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 1.0d, "l_extendedprice": 974.07d, "l_discount": 0.1d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-06", "l_commitdate": "1995-09-28", "l_receiptdate": "1995-09-29", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "furiously ironic theodolite" }, { "l_orderkey": 5093i32, "l_partkey": 74i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 15.0d, "l_extendedprice": 14611.05d, "l_discount": 0.01d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-12-02", "l_commitdate": "1993-11-18", "l_receiptdate": "1994-01-01", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "ly among the unusual foxe" }, { "l_orderkey": 5412i32, "l_partkey": 74i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 31.0d, "l_extendedprice": 30196.17d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-23", "l_commitdate": "1998-04-17", "l_receiptdate": "1998-04-10", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "t the accounts detect slyly about the c" }, { "l_orderkey": 5606i32, "l_partkey": 74i32, "l_suppkey": 5i32, "l_linenumber": 7i32, "l_quantity": 46.0d, "l_extendedprice": 44807.22d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-01", "l_commitdate": "1997-01-31", "l_receiptdate": "1997-02-15", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "ow requests wake around the regular accoun" }, { "l_orderkey": 5831i32, "l_partkey": 74i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 33.0d, "l_extendedprice": 32144.31d, "l_discount": 0.04d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-20", "l_commitdate": "1997-01-18", "l_receiptdate": "1996-12-18", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": " instructions wake. slyly sil" } ] }
+{ "partkey": 75i32, "lines": [ { "l_orderkey": 420i32, "l_partkey": 75i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 12.0d, "l_extendedprice": 11700.84d, "l_discount": 0.08d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-02-05", "l_commitdate": "1996-01-03", "l_receiptdate": "1996-02-12", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "c instructions are " }, { "l_orderkey": 581i32, "l_partkey": 75i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 30.0d, "l_extendedprice": 29252.1d, "l_discount": 0.1d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-19", "l_commitdate": "1997-05-21", "l_receiptdate": "1997-06-22", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": " regular ideas grow furio" }, { "l_orderkey": 900i32, "l_partkey": 75i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 24.0d, "l_extendedprice": 23401.68d, "l_discount": 0.03d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-10-21", "l_commitdate": "1994-12-25", "l_receiptdate": "1994-10-22", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "-ray furiously un" }, { "l_orderkey": 992i32, "l_partkey": 75i32, "l_suppkey": 3i32, "l_linenumber": 6i32, "l_quantity": 41.0d, "l_extendedprice": 39977.87d, "l_discount": 0.1d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-11-14", "l_commitdate": "1998-02-04", "l_receiptdate": "1997-11-23", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "eodolites cajole across the accounts." }, { "l_orderkey": 1124i32, "l_partkey": 75i32, "l_suppkey": 5i32, "l_linenumber": 5i32, "l_quantity": 33.0d, "l_extendedprice": 32177.31d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-10-19", "l_commitdate": "1998-09-17", "l_receiptdate": "1998-10-26", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "eposits sleep slyly. stealthily f" }, { "l_orderkey": 1216i32, "l_partkey": 75i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 48.0d, "l_extendedprice": 46803.36d, "l_discount": 0.1d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-01-17", "l_commitdate": "1993-02-01", "l_receiptdate": "1993-02-13", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "symptotes use against th" }, { "l_orderkey": 1569i32, "l_partkey": 75i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 5.0d, "l_extendedprice": 4875.35d, "l_discount": 0.07d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-16", "l_commitdate": "1998-06-21", "l_receiptdate": "1998-04-18", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": " packages. ironic, even excuses a" }, { "l_orderkey": 1668i32, "l_partkey": 75i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 42.0d, "l_extendedprice": 40952.94d, "l_discount": 0.08d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-09", "l_commitdate": "1997-09-08", "l_receiptdate": "1997-08-31", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "ole carefully excuses. final" }, { "l_orderkey": 1697i32, "l_partkey": 75i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 6.0d, "l_extendedprice": 5850.42d, "l_discount": 0.05d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-28", "l_commitdate": "1996-11-27", "l_receiptdate": "1997-01-31", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "accounts breach slyly even de" }, { "l_orderkey": 1859i32, "l_partkey": 75i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 18.0d, "l_extendedprice": 17551.26d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-08", "l_commitdate": "1997-06-30", "l_receiptdate": "1997-08-26", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "e carefully a" }, { "l_orderkey": 2082i32, "l_partkey": 75i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 36.0d, "l_extendedprice": 35102.52d, "l_discount": 0.0d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-01-20", "l_commitdate": "1995-03-18", "l_receiptdate": "1995-01-31", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "haggle furiously silent pinto beans" }, { "l_orderkey": 2534i32, "l_partkey": 75i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 43.0d, "l_extendedprice": 41928.01d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-25", "l_commitdate": "1996-09-30", "l_receiptdate": "1996-11-05", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "ngly final depos" }, { "l_orderkey": 2791i32, "l_partkey": 75i32, "l_suppkey": 3i32, "l_linenumber": 6i32, "l_quantity": 9.0d, "l_extendedprice": 8775.63d, "l_discount": 0.08d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-11-19", "l_commitdate": "1994-12-14", "l_receiptdate": "1994-12-10", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "pendencies. blithely bold patterns acr" }, { "l_orderkey": 2944i32, "l_partkey": 75i32, "l_suppkey": 4i32, "l_linenumber": 5i32, "l_quantity": 18.0d, "l_extendedprice": 17551.26d, "l_discount": 0.1d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-07", "l_commitdate": "1997-10-26", "l_receiptdate": "1998-01-27", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": " furiously slyl" }, { "l_orderkey": 3014i32, "l_partkey": 75i32, "l_suppkey": 5i32, "l_linenumber": 5i32, "l_quantity": 28.0d, "l_extendedprice": 27301.96d, "l_discount": 0.02d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-01-09", "l_commitdate": "1992-12-18", "l_receiptdate": "1993-01-10", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "es are. final braids nag slyly. fluff" }, { "l_orderkey": 3234i32, "l_partkey": 75i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 16.0d, "l_extendedprice": 15601.12d, "l_discount": 0.06d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-10", "l_commitdate": "1996-05-30", "l_receiptdate": "1996-06-18", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "ithely ironic accounts wake along t" }, { "l_orderkey": 3396i32, "l_partkey": 75i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 32.0d, "l_extendedprice": 31202.24d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-08-07", "l_commitdate": "1994-08-10", "l_receiptdate": "1994-09-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "osits are slyly. final, bold foxes s" }, { "l_orderkey": 3494i32, "l_partkey": 75i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 23.0d, "l_extendedprice": 22426.61d, "l_discount": 0.1d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-06-19", "l_commitdate": "1993-06-04", "l_receiptdate": "1993-07-14", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "osits nag " }, { "l_orderkey": 3525i32, "l_partkey": 75i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 31.0d, "l_extendedprice": 30227.17d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-08", "l_commitdate": "1996-02-27", "l_receiptdate": "1996-03-13", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "he careful" }, { "l_orderkey": 4000i32, "l_partkey": 75i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 44.0d, "l_extendedprice": 42903.08d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-03-27", "l_commitdate": "1992-02-18", "l_receiptdate": "1992-03-31", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "equests use blithely blithely bold d" }, { "l_orderkey": 4103i32, "l_partkey": 75i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 40.0d, "l_extendedprice": 39002.8d, "l_discount": 0.05d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-09-19", "l_commitdate": "1992-08-14", "l_receiptdate": "1992-09-21", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "usly across the slyly busy accounts! fin" }, { "l_orderkey": 4227i32, "l_partkey": 75i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 11.0d, "l_extendedprice": 10725.77d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-03-30", "l_commitdate": "1995-05-02", "l_receiptdate": "1995-04-26", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "l requests-- bold requests cajole dogg" }, { "l_orderkey": 4230i32, "l_partkey": 75i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 28.0d, "l_extendedprice": 27301.96d, "l_discount": 0.01d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-05-12", "l_commitdate": "1992-05-10", "l_receiptdate": "1992-06-01", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "nt instruct" }, { "l_orderkey": 4417i32, "l_partkey": 75i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 28.0d, "l_extendedprice": 27301.96d, "l_discount": 0.08d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-09-04", "l_commitdate": "1998-10-04", "l_receiptdate": "1998-09-19", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "ies across the furious" }, { "l_orderkey": 4610i32, "l_partkey": 75i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 26.0d, "l_extendedprice": 25351.82d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-07-01", "l_commitdate": "1993-07-19", "l_receiptdate": "1993-07-19", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": " to the fluffily ironic requests h" }, { "l_orderkey": 4708i32, "l_partkey": 75i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 5.0d, "l_extendedprice": 4875.35d, "l_discount": 0.05d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-10-15", "l_commitdate": "1994-12-02", "l_receiptdate": "1994-11-12", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "ely. carefully sp" }, { "l_orderkey": 5062i32, "l_partkey": 75i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 4.0d, "l_extendedprice": 3900.28d, "l_discount": 0.02d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-02-06", "l_commitdate": "1992-12-14", "l_receiptdate": "1993-03-03", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "ke furiously express theodolites. " }, { "l_orderkey": 5472i32, "l_partkey": 75i32, "l_suppkey": 6i32, "l_linenumber": 5i32, "l_quantity": 40.0d, "l_extendedprice": 39002.8d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-04-13", "l_commitdate": "1993-07-04", "l_receiptdate": "1993-05-04", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "e requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une requests detect furiously. ruthlessly une reques" }, { "l_orderkey": 5892i32, "l_partkey": 75i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 23.0d, "l_extendedprice": 22426.61d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-05-18", "l_commitdate": "1995-07-06", "l_receiptdate": "1995-05-29", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": " foxes nag slyly about the qui" } ] }
+{ "partkey": 76i32, "lines": [ { "l_orderkey": 486i32, "l_partkey": 76i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 36.0d, "l_extendedprice": 35138.52d, "l_discount": 0.0d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-25", "l_commitdate": "1996-05-06", "l_receiptdate": "1996-07-07", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "deposits around the quickly regular packa" }, { "l_orderkey": 676i32, "l_partkey": 76i32, "l_suppkey": 7i32, "l_linenumber": 6i32, "l_quantity": 33.0d, "l_extendedprice": 32210.31d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-02", "l_commitdate": "1997-02-22", "l_receiptdate": "1997-03-19", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "as wake slyly furiously close pinto b" }, { "l_orderkey": 804i32, "l_partkey": 76i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 44.0d, "l_extendedprice": 42947.08d, "l_discount": 0.04d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-07-06", "l_commitdate": "1993-04-13", "l_receiptdate": "1993-07-28", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "ly final deposits? special " }, { "l_orderkey": 805i32, "l_partkey": 76i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 26.0d, "l_extendedprice": 25377.82d, "l_discount": 0.08d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-28", "l_commitdate": "1995-09-24", "l_receiptdate": "1995-09-11", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": ". ironic deposits sleep across " }, { "l_orderkey": 1120i32, "l_partkey": 76i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 21.0d, "l_extendedprice": 20497.47d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-11", "l_commitdate": "1998-02-04", "l_receiptdate": "1998-01-19", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "s: fluffily even packages c" }, { "l_orderkey": 1408i32, "l_partkey": 76i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 11.0d, "l_extendedprice": 10736.77d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-04", "l_commitdate": "1998-01-29", "l_receiptdate": "1998-04-18", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "y even accounts thrash care" }, { "l_orderkey": 1607i32, "l_partkey": 76i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 34.0d, "l_extendedprice": 33186.38d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-06", "l_commitdate": "1996-02-24", "l_receiptdate": "1996-01-10", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": " quickly above the " }, { "l_orderkey": 1634i32, "l_partkey": 76i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 2.0d, "l_extendedprice": 1952.14d, "l_discount": 0.07d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-22", "l_commitdate": "1996-10-28", "l_receiptdate": "1996-12-17", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "ly. carefully regular asymptotes wake" }, { "l_orderkey": 1924i32, "l_partkey": 76i32, "l_suppkey": 4i32, "l_linenumber": 6i32, "l_quantity": 15.0d, "l_extendedprice": 14641.05d, "l_discount": 0.02d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-04", "l_commitdate": "1996-11-13", "l_receiptdate": "1997-01-27", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "he package" }, { "l_orderkey": 2214i32, "l_partkey": 76i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 27.0d, "l_extendedprice": 26353.89d, "l_discount": 0.04d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-31", "l_commitdate": "1998-06-07", "l_receiptdate": "1998-06-19", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "x fluffily along the even packages-- " }, { "l_orderkey": 2245i32, "l_partkey": 76i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 44.0d, "l_extendedprice": 42947.08d, "l_discount": 0.03d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-06-12", "l_commitdate": "1993-06-10", "l_receiptdate": "1993-06-16", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "refully even sheaves" }, { "l_orderkey": 2272i32, "l_partkey": 76i32, "l_suppkey": 4i32, "l_linenumber": 5i32, "l_quantity": 12.0d, "l_extendedprice": 11712.84d, "l_discount": 0.03d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-04-19", "l_commitdate": "1993-05-14", "l_receiptdate": "1993-04-23", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": " accounts cajole. quickly b" }, { "l_orderkey": 2565i32, "l_partkey": 76i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 26.0d, "l_extendedprice": 25377.82d, "l_discount": 0.08d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-05", "l_commitdate": "1998-04-11", "l_receiptdate": "1998-03-11", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "ites wake. ironic acco" }, { "l_orderkey": 3649i32, "l_partkey": 76i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 40.0d, "l_extendedprice": 39042.8d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-07-20", "l_commitdate": "1994-08-30", "l_receiptdate": "1994-08-14", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "luffy somas sleep quickly-- ironic de" }, { "l_orderkey": 3751i32, "l_partkey": 76i32, "l_suppkey": 5i32, "l_linenumber": 6i32, "l_quantity": 39.0d, "l_extendedprice": 38066.73d, "l_discount": 0.02d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-08-01", "l_commitdate": "1994-06-01", "l_receiptdate": "1994-08-26", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "to beans. pending, express packages c" }, { "l_orderkey": 4066i32, "l_partkey": 76i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 8.0d, "l_extendedprice": 7808.56d, "l_discount": 0.03d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-24", "l_commitdate": "1997-03-11", "l_receiptdate": "1997-05-20", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "accounts. special pinto beans" }, { "l_orderkey": 4262i32, "l_partkey": 76i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 30.0d, "l_extendedprice": 29282.1d, "l_discount": 0.01d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-11", "l_commitdate": "1996-10-11", "l_receiptdate": "1996-09-09", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "tes after the carefully" }, { "l_orderkey": 4836i32, "l_partkey": 76i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 14.0d, "l_extendedprice": 13664.98d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-21", "l_commitdate": "1997-02-06", "l_receiptdate": "1997-03-08", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "lites. unusual, bold dolphins ar" }, { "l_orderkey": 4963i32, "l_partkey": 76i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 16.0d, "l_extendedprice": 15617.12d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-20", "l_commitdate": "1997-01-13", "l_receiptdate": "1996-12-06", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": " carefully slyly u" }, { "l_orderkey": 4966i32, "l_partkey": 76i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 10.0d, "l_extendedprice": 9760.7d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-23", "l_commitdate": "1996-11-02", "l_receiptdate": "1996-10-07", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": " requests. carefully pending requests" }, { "l_orderkey": 5408i32, "l_partkey": 76i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 34.0d, "l_extendedprice": 33186.38d, "l_discount": 0.1d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-10-22", "l_commitdate": "1992-08-25", "l_receiptdate": "1992-11-16", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "requests detect blithely a" } ] }
+{ "partkey": 77i32, "lines": [ { "l_orderkey": 451i32, "l_partkey": 77i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 28.0d, "l_extendedprice": 27357.96d, "l_discount": 0.04d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-16", "l_commitdate": "1998-07-09", "l_receiptdate": "1998-06-17", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": " theodolites. even cou" }, { "l_orderkey": 484i32, "l_partkey": 77i32, "l_suppkey": 6i32, "l_linenumber": 5i32, "l_quantity": 48.0d, "l_extendedprice": 46899.36d, "l_discount": 0.0d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-05", "l_commitdate": "1997-02-08", "l_receiptdate": "1997-03-22", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "l, bold packages? even mult" }, { "l_orderkey": 1157i32, "l_partkey": 77i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 46.0d, "l_extendedprice": 44945.22d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-19", "l_commitdate": "1998-03-13", "l_receiptdate": "1998-04-23", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "slyly regular excuses. accounts" }, { "l_orderkey": 1411i32, "l_partkey": 77i32, "l_suppkey": 6i32, "l_linenumber": 6i32, "l_quantity": 30.0d, "l_extendedprice": 29312.1d, "l_discount": 0.09d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-01-12", "l_commitdate": "1995-02-01", "l_receiptdate": "1995-01-23", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "ious foxes wake courts. caref" }, { "l_orderkey": 1635i32, "l_partkey": 77i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 40.0d, "l_extendedprice": 39082.8d, "l_discount": 0.01d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-25", "l_commitdate": "1997-03-20", "l_receiptdate": "1997-03-12", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "uriously up the ironic deposits. slyly i" }, { "l_orderkey": 1891i32, "l_partkey": 77i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 45.0d, "l_extendedprice": 43968.15d, "l_discount": 0.07d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-12-20", "l_commitdate": "1995-01-16", "l_receiptdate": "1995-01-05", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "ests along" }, { "l_orderkey": 2497i32, "l_partkey": 77i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 15.0d, "l_extendedprice": 14656.05d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-12-23", "l_commitdate": "1992-11-20", "l_receiptdate": "1993-01-18", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "sly against the" }, { "l_orderkey": 3494i32, "l_partkey": 77i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 30.0d, "l_extendedprice": 29312.1d, "l_discount": 0.04d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-07-01", "l_commitdate": "1993-06-08", "l_receiptdate": "1993-07-15", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "ns are quickly regular, " }, { "l_orderkey": 3815i32, "l_partkey": 77i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 3.0d, "l_extendedprice": 2931.21d, "l_discount": 0.07d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-11-16", "l_commitdate": "1997-11-15", "l_receiptdate": "1997-11-30", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "egular, express ideas. ironic, final dep" }, { "l_orderkey": 4166i32, "l_partkey": 77i32, "l_suppkey": 6i32, "l_linenumber": 5i32, "l_quantity": 5.0d, "l_extendedprice": 4885.35d, "l_discount": 0.08d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-06-19", "l_commitdate": "1993-04-24", "l_receiptdate": "1993-06-27", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "hely unusual packages are above the f" }, { "l_orderkey": 4293i32, "l_partkey": 77i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 50.0d, "l_extendedprice": 48853.5d, "l_discount": 0.01d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-27", "l_commitdate": "1996-10-30", "l_receiptdate": "1996-12-22", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": " special deposits. furiousl" }, { "l_orderkey": 4546i32, "l_partkey": 77i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 4.0d, "l_extendedprice": 3908.28d, "l_discount": 0.06d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-14", "l_commitdate": "1995-10-07", "l_receiptdate": "1995-08-16", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "kly pending dependencies along the furio" }, { "l_orderkey": 4708i32, "l_partkey": 77i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 32.0d, "l_extendedprice": 31266.24d, "l_discount": 0.04d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-11-12", "l_commitdate": "1994-11-14", "l_receiptdate": "1994-11-23", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "the accounts. e" }, { "l_orderkey": 4900i32, "l_partkey": 77i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 33.0d, "l_extendedprice": 32243.31d, "l_discount": 0.06d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-08-18", "l_commitdate": "1992-09-20", "l_receiptdate": "1992-08-19", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "nto beans nag slyly reg" }, { "l_orderkey": 4929i32, "l_partkey": 77i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 32.0d, "l_extendedprice": 31266.24d, "l_discount": 0.08d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-04-28", "l_commitdate": "1996-05-23", "l_receiptdate": "1996-04-30", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "usly at the blithely pending pl" }, { "l_orderkey": 5059i32, "l_partkey": 77i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 45.0d, "l_extendedprice": 43968.15d, "l_discount": 0.02d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-01-28", "l_commitdate": "1994-01-08", "l_receiptdate": "1994-02-18", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "enly. requests doze. express, close pa" }, { "l_orderkey": 5477i32, "l_partkey": 77i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 21.0d, "l_extendedprice": 20518.47d, "l_discount": 0.03d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-28", "l_commitdate": "1998-02-15", "l_receiptdate": "1998-02-24", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "blate slyly. silent" }, { "l_orderkey": 5702i32, "l_partkey": 77i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 44.0d, "l_extendedprice": 42991.08d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-01-04", "l_commitdate": "1993-11-25", "l_receiptdate": "1994-01-22", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "lites. carefully final requests doze b" }, { "l_orderkey": 5824i32, "l_partkey": 77i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 40.0d, "l_extendedprice": 39082.8d, "l_discount": 0.06d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-14", "l_commitdate": "1997-01-17", "l_receiptdate": "1997-02-02", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "he final packag" }, { "l_orderkey": 5889i32, "l_partkey": 77i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 17.0d, "l_extendedprice": 16610.19d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-01", "l_commitdate": "1995-08-12", "l_receiptdate": "1995-07-25", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "blithely pending packages. flu" } ] }
+{ "partkey": 78i32, "lines": [ { "l_orderkey": 97i32, "l_partkey": 78i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 19.0d, "l_extendedprice": 18583.33d, "l_discount": 0.06d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-05-14", "l_commitdate": "1993-03-05", "l_receiptdate": "1993-05-25", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "gifts. furiously ironic packages cajole. " }, { "l_orderkey": 129i32, "l_partkey": 78i32, "l_suppkey": 6i32, "l_linenumber": 6i32, "l_quantity": 22.0d, "l_extendedprice": 21517.54d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-02-15", "l_commitdate": "1993-01-31", "l_receiptdate": "1993-02-24", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "e. fluffily regular " }, { "l_orderkey": 353i32, "l_partkey": 78i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 46.0d, "l_extendedprice": 44991.22d, "l_discount": 0.0d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-04-14", "l_commitdate": "1994-01-31", "l_receiptdate": "1994-05-05", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": " ironic dolphins " }, { "l_orderkey": 676i32, "l_partkey": 78i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 20.0d, "l_extendedprice": 19561.4d, "l_discount": 0.07d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-02", "l_commitdate": "1997-02-01", "l_receiptdate": "1997-02-11", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "riously around the blithely " }, { "l_orderkey": 771i32, "l_partkey": 78i32, "l_suppkey": 6i32, "l_linenumber": 5i32, "l_quantity": 13.0d, "l_extendedprice": 12714.91d, "l_discount": 0.09d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-10", "l_commitdate": "1995-08-21", "l_receiptdate": "1995-08-30", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "packages affix slyly about the quickly " }, { "l_orderkey": 1187i32, "l_partkey": 78i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 40.0d, "l_extendedprice": 39122.8d, "l_discount": 0.08d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-03-05", "l_commitdate": "1992-12-31", "l_receiptdate": "1993-03-12", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "ar, brave deposits nag blithe" }, { "l_orderkey": 1251i32, "l_partkey": 78i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 36.0d, "l_extendedprice": 35210.52d, "l_discount": 0.07d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-11-29", "l_commitdate": "1998-01-07", "l_receiptdate": "1997-12-03", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "y ironic Tiresias are slyly furio" }, { "l_orderkey": 1281i32, "l_partkey": 78i32, "l_suppkey": 6i32, "l_linenumber": 7i32, "l_quantity": 43.0d, "l_extendedprice": 42057.01d, "l_discount": 0.1d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-01-28", "l_commitdate": "1995-02-08", "l_receiptdate": "1995-02-10", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "final accounts. final packages slee" }, { "l_orderkey": 1380i32, "l_partkey": 78i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 15.0d, "l_extendedprice": 14671.05d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-14", "l_commitdate": "1996-08-12", "l_receiptdate": "1996-08-03", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "riously ironic foxes aff" }, { "l_orderkey": 1665i32, "l_partkey": 78i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 1.0d, "l_extendedprice": 978.07d, "l_discount": 0.03d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-05-22", "l_commitdate": "1994-07-06", "l_receiptdate": "1994-05-24", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "sly final p" }, { "l_orderkey": 1764i32, "l_partkey": 78i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 27.0d, "l_extendedprice": 26407.89d, "l_discount": 0.07d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-05-06", "l_commitdate": "1992-05-11", "l_receiptdate": "1992-05-23", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "ly final foxes wake blithely even requests" }, { "l_orderkey": 2022i32, "l_partkey": 78i32, "l_suppkey": 9i32, "l_linenumber": 7i32, "l_quantity": 13.0d, "l_extendedprice": 12714.91d, "l_discount": 0.06d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-04-04", "l_commitdate": "1992-05-30", "l_receiptdate": "1992-04-21", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": " orbits haggle fluffily fl" }, { "l_orderkey": 2145i32, "l_partkey": 78i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 13.0d, "l_extendedprice": 12714.91d, "l_discount": 0.04d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-11-12", "l_commitdate": "1992-12-13", "l_receiptdate": "1992-12-07", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "alongside of the slyly final" }, { "l_orderkey": 2150i32, "l_partkey": 78i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 26.0d, "l_extendedprice": 25429.82d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-06-21", "l_commitdate": "1994-08-05", "l_receiptdate": "1994-06-23", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": ". always unusual packages" }, { "l_orderkey": 2178i32, "l_partkey": 78i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 3.0d, "l_extendedprice": 2934.21d, "l_discount": 0.07d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-07", "l_commitdate": "1997-01-23", "l_receiptdate": "1997-04-18", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": " permanentl" }, { "l_orderkey": 2210i32, "l_partkey": 78i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 36.0d, "l_extendedprice": 35210.52d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-03-04", "l_commitdate": "1992-03-24", "l_receiptdate": "1992-03-21", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": " requests wake enticingly final" }, { "l_orderkey": 2240i32, "l_partkey": 78i32, "l_suppkey": 7i32, "l_linenumber": 7i32, "l_quantity": 24.0d, "l_extendedprice": 23473.68d, "l_discount": 0.04d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-05-13", "l_commitdate": "1992-04-09", "l_receiptdate": "1992-05-14", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "ng the silent accounts. slyly ironic t" }, { "l_orderkey": 2532i32, "l_partkey": 78i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 50.0d, "l_extendedprice": 48903.5d, "l_discount": 0.02d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-13", "l_commitdate": "1996-01-01", "l_receiptdate": "1995-11-26", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "yly after the fluffily regul" }, { "l_orderkey": 2657i32, "l_partkey": 78i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 42.0d, "l_extendedprice": 41078.94d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-23", "l_commitdate": "1995-11-22", "l_receiptdate": "1996-01-25", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "ckly slyly even accounts. platelets x-ray" }, { "l_orderkey": 2882i32, "l_partkey": 78i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 27.0d, "l_extendedprice": 26407.89d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-04", "l_commitdate": "1995-11-11", "l_receiptdate": "1995-09-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "rding to the regu" }, { "l_orderkey": 2918i32, "l_partkey": 78i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 24.0d, "l_extendedprice": 23473.68d, "l_discount": 0.1d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-20", "l_commitdate": "1996-10-28", "l_receiptdate": "1996-12-26", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": " quickly. express requests haggle careful" }, { "l_orderkey": 3077i32, "l_partkey": 78i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 13.0d, "l_extendedprice": 12714.91d, "l_discount": 0.03d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-09", "l_commitdate": "1997-10-15", "l_receiptdate": "1997-09-19", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "luffily close depende" }, { "l_orderkey": 3078i32, "l_partkey": 78i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 21.0d, "l_extendedprice": 20539.47d, "l_discount": 0.09d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-03-20", "l_commitdate": "1993-03-21", "l_receiptdate": "1993-04-01", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "e fluffily. " }, { "l_orderkey": 3719i32, "l_partkey": 78i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 19.0d, "l_extendedprice": 18583.33d, "l_discount": 0.06d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-22", "l_commitdate": "1997-03-20", "l_receiptdate": "1997-06-12", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "he regular ideas integrate acros" }, { "l_orderkey": 4359i32, "l_partkey": 78i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 1.0d, "l_extendedprice": 978.07d, "l_discount": 0.05d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-04-27", "l_commitdate": "1993-05-09", "l_receiptdate": "1993-05-08", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": " fluffily ironic, bold pac" }, { "l_orderkey": 4514i32, "l_partkey": 78i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 10.0d, "l_extendedprice": 9780.7d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-06-19", "l_commitdate": "1994-06-25", "l_receiptdate": "1994-07-01", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "ake furiously. carefully regular requests" }, { "l_orderkey": 4704i32, "l_partkey": 78i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 14.0d, "l_extendedprice": 13692.98d, "l_discount": 0.04d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-27", "l_commitdate": "1996-11-02", "l_receiptdate": "1996-11-07", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": " above the slyly final requests. quickly " }, { "l_orderkey": 5025i32, "l_partkey": 78i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 10.0d, "l_extendedprice": 9780.7d, "l_discount": 0.07d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-04", "l_commitdate": "1997-04-29", "l_receiptdate": "1997-06-28", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "lly silent deposits boost busily again" }, { "l_orderkey": 5088i32, "l_partkey": 78i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 23.0d, "l_extendedprice": 22495.61d, "l_discount": 0.06d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-03-03", "l_commitdate": "1993-03-07", "l_receiptdate": "1993-03-08", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "cording to the fluffily expr" }, { "l_orderkey": 5091i32, "l_partkey": 78i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 50.0d, "l_extendedprice": 48903.5d, "l_discount": 0.05d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-21", "l_commitdate": "1998-06-22", "l_receiptdate": "1998-07-26", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "al dependencies. r" }, { "l_orderkey": 5126i32, "l_partkey": 78i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 23.0d, "l_extendedprice": 22495.61d, "l_discount": 0.08d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-01-02", "l_commitdate": "1993-01-02", "l_receiptdate": "1993-01-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "egular, blithe packages." }, { "l_orderkey": 5538i32, "l_partkey": 78i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 9.0d, "l_extendedprice": 8802.63d, "l_discount": 0.0d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-12-26", "l_commitdate": "1994-01-31", "l_receiptdate": "1994-01-03", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "encies across the blithely fina" }, { "l_orderkey": 5604i32, "l_partkey": 78i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 10.0d, "l_extendedprice": 9780.7d, "l_discount": 0.07d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-03", "l_commitdate": "1998-06-23", "l_receiptdate": "1998-08-04", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "ly final realms wake blit" }, { "l_orderkey": 5829i32, "l_partkey": 78i32, "l_suppkey": 9i32, "l_linenumber": 7i32, "l_quantity": 27.0d, "l_extendedprice": 26407.89d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-25", "l_commitdate": "1997-03-31", "l_receiptdate": "1997-03-03", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "ns about the excuses are c" }, { "l_orderkey": 5895i32, "l_partkey": 78i32, "l_suppkey": 7i32, "l_linenumber": 6i32, "l_quantity": 15.0d, "l_extendedprice": 14671.05d, "l_discount": 0.08d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-19", "l_commitdate": "1997-03-09", "l_receiptdate": "1997-05-13", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "silent package" } ] }
+{ "partkey": 79i32, "lines": [ { "l_orderkey": 229i32, "l_partkey": 79i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 28.0d, "l_extendedprice": 27413.96d, "l_discount": 0.02d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-02-10", "l_commitdate": "1994-02-02", "l_receiptdate": "1994-03-10", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": " final, regular requests. platel" }, { "l_orderkey": 288i32, "l_partkey": 79i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 19.0d, "l_extendedprice": 18602.33d, "l_discount": 0.07d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-14", "l_commitdate": "1997-04-04", "l_receiptdate": "1997-03-26", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "deposits. blithely quick courts ar" }, { "l_orderkey": 450i32, "l_partkey": 79i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 2.0d, "l_extendedprice": 1958.14d, "l_discount": 0.09d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-03-11", "l_commitdate": "1995-05-21", "l_receiptdate": "1995-03-16", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "y even pinto beans; qui" }, { "l_orderkey": 482i32, "l_partkey": 79i32, "l_suppkey": 10i32, "l_linenumber": 6i32, "l_quantity": 19.0d, "l_extendedprice": 18602.33d, "l_discount": 0.04d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-27", "l_commitdate": "1996-04-25", "l_receiptdate": "1996-04-15", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "ts hinder carefully silent requests" }, { "l_orderkey": 514i32, "l_partkey": 79i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 21.0d, "l_extendedprice": 20560.47d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-09", "l_commitdate": "1996-05-15", "l_receiptdate": "1996-07-07", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "s sleep quickly blithely" }, { "l_orderkey": 613i32, "l_partkey": 79i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 6.0d, "l_extendedprice": 5874.42d, "l_discount": 0.05d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-05", "l_commitdate": "1995-08-09", "l_receiptdate": "1995-08-08", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "y ironic deposits eat " }, { "l_orderkey": 1252i32, "l_partkey": 79i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 26.0d, "l_extendedprice": 25455.82d, "l_discount": 0.05d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-05", "l_commitdate": "1997-10-24", "l_receiptdate": "1997-08-07", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "onic pinto beans haggle furiously " }, { "l_orderkey": 1316i32, "l_partkey": 79i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 15.0d, "l_extendedprice": 14686.05d, "l_discount": 0.02d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-03-12", "l_commitdate": "1994-03-02", "l_receiptdate": "1994-03-14", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "se. furiously final depo" }, { "l_orderkey": 1669i32, "l_partkey": 79i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 24.0d, "l_extendedprice": 23497.68d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-04", "l_commitdate": "1997-07-30", "l_receiptdate": "1997-09-20", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": " regular, final deposits use quick" }, { "l_orderkey": 1828i32, "l_partkey": 79i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 14.0d, "l_extendedprice": 13706.98d, "l_discount": 0.01d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-05-20", "l_commitdate": "1994-06-02", "l_receiptdate": "1994-05-25", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": ". final packages along the carefully bold" }, { "l_orderkey": 1957i32, "l_partkey": 79i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 50.0d, "l_extendedprice": 48953.5d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-08", "l_commitdate": "1998-09-28", "l_receiptdate": "1998-08-27", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "gainst the re" }, { "l_orderkey": 1988i32, "l_partkey": 79i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 26.0d, "l_extendedprice": 25455.82d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-25", "l_commitdate": "1995-12-15", "l_receiptdate": "1996-01-26", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": " ironic dolphins haggl" }, { "l_orderkey": 2211i32, "l_partkey": 79i32, "l_suppkey": 9i32, "l_linenumber": 7i32, "l_quantity": 3.0d, "l_extendedprice": 2937.21d, "l_discount": 0.06d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-09-21", "l_commitdate": "1994-08-10", "l_receiptdate": "1994-10-19", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "y slyly final" }, { "l_orderkey": 2466i32, "l_partkey": 79i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 30.0d, "l_extendedprice": 29372.1d, "l_discount": 0.02d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-04-11", "l_commitdate": "1994-05-02", "l_receiptdate": "1994-05-02", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": ". fluffily even pinto beans are idly. f" }, { "l_orderkey": 2657i32, "l_partkey": 79i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 25.0d, "l_extendedprice": 24476.75d, "l_discount": 0.02d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-21", "l_commitdate": "1995-12-12", "l_receiptdate": "1995-11-09", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "lly pinto beans. final " }, { "l_orderkey": 2690i32, "l_partkey": 79i32, "l_suppkey": 7i32, "l_linenumber": 7i32, "l_quantity": 35.0d, "l_extendedprice": 34267.45d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-25", "l_commitdate": "1996-05-14", "l_receiptdate": "1996-08-03", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "y silent pinto be" }, { "l_orderkey": 3109i32, "l_partkey": 79i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 26.0d, "l_extendedprice": 25455.82d, "l_discount": 0.01d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-11-16", "l_commitdate": "1993-10-18", "l_receiptdate": "1993-12-06", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": " sleep slyly according to t" }, { "l_orderkey": 3141i32, "l_partkey": 79i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 9.0d, "l_extendedprice": 8811.63d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-11", "l_commitdate": "1995-12-10", "l_receiptdate": "1995-12-02", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "uickly ironic, pendi" }, { "l_orderkey": 3234i32, "l_partkey": 79i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 45.0d, "l_extendedprice": 44058.15d, "l_discount": 0.01d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-15", "l_commitdate": "1996-05-09", "l_receiptdate": "1996-06-02", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": " express packages are carefully. f" }, { "l_orderkey": 3425i32, "l_partkey": 79i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 37.0d, "l_extendedprice": 36225.59d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-04", "l_commitdate": "1996-05-09", "l_receiptdate": "1996-06-12", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "as sleep carefully into the caref" }, { "l_orderkey": 3425i32, "l_partkey": 79i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 48.0d, "l_extendedprice": 46995.36d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-04-14", "l_commitdate": "1996-05-25", "l_receiptdate": "1996-04-23", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "uctions wake fluffily. care" }, { "l_orderkey": 3555i32, "l_partkey": 79i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 15.0d, "l_extendedprice": 14686.05d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-13", "l_commitdate": "1996-09-01", "l_receiptdate": "1996-08-02", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "y across the pending a" }, { "l_orderkey": 3969i32, "l_partkey": 79i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 46.0d, "l_extendedprice": 45037.22d, "l_discount": 0.04d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-29", "l_commitdate": "1997-06-15", "l_receiptdate": "1997-06-10", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "fully final requests sleep stealthily. care" }, { "l_orderkey": 4038i32, "l_partkey": 79i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 24.0d, "l_extendedprice": 23497.68d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-04-01", "l_commitdate": "1996-04-05", "l_receiptdate": "1996-04-28", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "ake quickly after the final, ironic ac" }, { "l_orderkey": 4069i32, "l_partkey": 79i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 22.0d, "l_extendedprice": 21539.54d, "l_discount": 0.1d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-08-05", "l_commitdate": "1992-08-04", "l_receiptdate": "1992-08-25", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "ts. slyly special instruction" }, { "l_orderkey": 4293i32, "l_partkey": 79i32, "l_suppkey": 7i32, "l_linenumber": 6i32, "l_quantity": 45.0d, "l_extendedprice": 44058.15d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-04", "l_commitdate": "1996-11-06", "l_receiptdate": "1996-11-23", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "lar ideas use carefully" }, { "l_orderkey": 4389i32, "l_partkey": 79i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 39.0d, "l_extendedprice": 38183.73d, "l_discount": 0.04d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-06-08", "l_commitdate": "1994-06-04", "l_receiptdate": "1994-06-10", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": " unusual, final excuses cajole carefully " }, { "l_orderkey": 4418i32, "l_partkey": 79i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 3.0d, "l_extendedprice": 2937.21d, "l_discount": 0.0d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-04-08", "l_commitdate": "1993-06-04", "l_receiptdate": "1993-05-02", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "luffily across the unusual ideas. reque" }, { "l_orderkey": 4608i32, "l_partkey": 79i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 50.0d, "l_extendedprice": 48953.5d, "l_discount": 0.03d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-08-04", "l_commitdate": "1994-09-10", "l_receiptdate": "1994-08-13", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": " wake closely. even decoys haggle above" }, { "l_orderkey": 4929i32, "l_partkey": 79i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 40.0d, "l_extendedprice": 39162.8d, "l_discount": 0.08d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-30", "l_commitdate": "1996-04-13", "l_receiptdate": "1996-06-22", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "unts against " }, { "l_orderkey": 4997i32, "l_partkey": 79i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 44.0d, "l_extendedprice": 43079.08d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-09", "l_commitdate": "1998-06-12", "l_receiptdate": "1998-07-07", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "r escapades ca" }, { "l_orderkey": 5094i32, "l_partkey": 79i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 21.0d, "l_extendedprice": 20560.47d, "l_discount": 0.09d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-07-26", "l_commitdate": "1993-05-03", "l_receiptdate": "1993-08-16", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": " blithely furiously final re" }, { "l_orderkey": 5155i32, "l_partkey": 79i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 39.0d, "l_extendedprice": 38183.73d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-08-25", "l_commitdate": "1994-09-01", "l_receiptdate": "1994-09-18", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "l dolphins nag caref" }, { "l_orderkey": 5344i32, "l_partkey": 79i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 37.0d, "l_extendedprice": 36225.59d, "l_discount": 0.03d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-10-09", "l_commitdate": "1998-07-26", "l_receiptdate": "1998-11-08", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "thely express packages" }, { "l_orderkey": 5377i32, "l_partkey": 79i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 40.0d, "l_extendedprice": 39162.8d, "l_discount": 0.0d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-21", "l_commitdate": "1997-06-15", "l_receiptdate": "1997-05-26", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "lithely ironic theodolites are care" }, { "l_orderkey": 5894i32, "l_partkey": 79i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 48.0d, "l_extendedprice": 46995.36d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-09-04", "l_commitdate": "1994-11-03", "l_receiptdate": "1994-09-17", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": " asymptotes among the blithely silent " }, { "l_orderkey": 5986i32, "l_partkey": 79i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 26.0d, "l_extendedprice": 25455.82d, "l_discount": 0.0d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-08-10", "l_commitdate": "1992-05-23", "l_receiptdate": "1992-08-24", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "e fluffily ironic ideas. silent " } ] }
+{ "partkey": 80i32, "lines": [ { "l_orderkey": 7i32, "l_partkey": 80i32, "l_suppkey": 10i32, "l_linenumber": 6i32, "l_quantity": 35.0d, "l_extendedprice": 34302.8d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-16", "l_commitdate": "1996-02-23", "l_receiptdate": "1996-01-22", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "jole. excuses wake carefully alongside of " }, { "l_orderkey": 483i32, "l_partkey": 80i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 23.0d, "l_extendedprice": 22541.84d, "l_discount": 0.04d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-20", "l_commitdate": "1995-08-11", "l_receiptdate": "1995-08-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "requests was quickly against th" }, { "l_orderkey": 644i32, "l_partkey": 80i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 7.0d, "l_extendedprice": 6860.56d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-05-18", "l_commitdate": "1992-07-01", "l_receiptdate": "1992-06-07", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": " regular requests are blithely. slyly" }, { "l_orderkey": 736i32, "l_partkey": 80i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 23.0d, "l_extendedprice": 22541.84d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-10-08", "l_commitdate": "1998-08-27", "l_receiptdate": "1998-10-19", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "k accounts are carefully" }, { "l_orderkey": 807i32, "l_partkey": 80i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 10.0d, "l_extendedprice": 9800.8d, "l_discount": 0.09d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-01-19", "l_commitdate": "1994-02-12", "l_receiptdate": "1994-01-28", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "furiously final depths sleep a" }, { "l_orderkey": 864i32, "l_partkey": 80i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 34.0d, "l_extendedprice": 33322.72d, "l_discount": 0.03d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-14", "l_commitdate": "1997-11-04", "l_receiptdate": "1997-09-21", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "to the furiously ironic platelets! " }, { "l_orderkey": 962i32, "l_partkey": 80i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 3.0d, "l_extendedprice": 2940.24d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-05-08", "l_commitdate": "1994-07-06", "l_receiptdate": "1994-06-02", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "ag furiously. even pa" }, { "l_orderkey": 1121i32, "l_partkey": 80i32, "l_suppkey": 8i32, "l_linenumber": 7i32, "l_quantity": 37.0d, "l_extendedprice": 36262.96d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-27", "l_commitdate": "1997-03-04", "l_receiptdate": "1997-03-02", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "special packages. fluffily final requests s" }, { "l_orderkey": 1827i32, "l_partkey": 80i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 24.0d, "l_extendedprice": 23521.92d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-07", "l_commitdate": "1996-09-01", "l_receiptdate": "1996-09-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "al gifts! re" }, { "l_orderkey": 1888i32, "l_partkey": 80i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 49.0d, "l_extendedprice": 48023.92d, "l_discount": 0.07d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-02-27", "l_commitdate": "1994-01-14", "l_receiptdate": "1994-03-28", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "lar accounts haggle carefu" }, { "l_orderkey": 2245i32, "l_partkey": 80i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 33.0d, "l_extendedprice": 32342.64d, "l_discount": 0.03d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-06-16", "l_commitdate": "1993-06-05", "l_receiptdate": "1993-07-07", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": " across the express reques" }, { "l_orderkey": 2500i32, "l_partkey": 80i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 41.0d, "l_extendedprice": 40183.28d, "l_discount": 0.02d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-09-02", "l_commitdate": "1992-11-11", "l_receiptdate": "1992-09-06", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "s could have to integrate after the " }, { "l_orderkey": 2756i32, "l_partkey": 80i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 47.0d, "l_extendedprice": 46063.76d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-05-10", "l_commitdate": "1994-05-25", "l_receiptdate": "1994-05-13", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "e final, f" }, { "l_orderkey": 3136i32, "l_partkey": 80i32, "l_suppkey": 1i32, "l_linenumber": 6i32, "l_quantity": 29.0d, "l_extendedprice": 28422.32d, "l_discount": 0.08d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-11-16", "l_commitdate": "1994-10-03", "l_receiptdate": "1994-12-14", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "latelets. final " }, { "l_orderkey": 3623i32, "l_partkey": 80i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 32.0d, "l_extendedprice": 31362.56d, "l_discount": 0.05d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-18", "l_commitdate": "1997-03-15", "l_receiptdate": "1997-05-09", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": " courts. furiously regular ideas b" }, { "l_orderkey": 3652i32, "l_partkey": 80i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 1.0d, "l_extendedprice": 980.08d, "l_discount": 0.01d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-20", "l_commitdate": "1997-05-03", "l_receiptdate": "1997-05-18", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": " bold dependencies sublate. r" }, { "l_orderkey": 3750i32, "l_partkey": 80i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 20.0d, "l_extendedprice": 19601.6d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "F", "l_shipdate": "1995-06-17", "l_commitdate": "1995-06-06", "l_receiptdate": "1995-06-28", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "ss, ironic requests! fur" }, { "l_orderkey": 3877i32, "l_partkey": 80i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 44.0d, "l_extendedprice": 43123.52d, "l_discount": 0.09d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-06-07", "l_commitdate": "1993-07-15", "l_receiptdate": "1993-07-06", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "elets. quickly regular accounts caj" }, { "l_orderkey": 4295i32, "l_partkey": 80i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 30.0d, "l_extendedprice": 29402.4d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-22", "l_commitdate": "1996-04-23", "l_receiptdate": "1996-04-20", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "yly ironic frets. pending foxes after " }, { "l_orderkey": 4422i32, "l_partkey": 80i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 20.0d, "l_extendedprice": 19601.6d, "l_discount": 0.07d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-17", "l_commitdate": "1995-07-16", "l_receiptdate": "1995-09-13", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "ructions wake slyly al" }, { "l_orderkey": 4868i32, "l_partkey": 80i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 34.0d, "l_extendedprice": 33322.72d, "l_discount": 0.04d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-19", "l_commitdate": "1997-04-27", "l_receiptdate": "1997-06-15", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "en instructions about th" }, { "l_orderkey": 4994i32, "l_partkey": 80i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 47.0d, "l_extendedprice": 46063.76d, "l_discount": 0.04d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-20", "l_commitdate": "1996-08-04", "l_receiptdate": "1996-10-15", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "sts. blithely close ideas sleep quic" }, { "l_orderkey": 5030i32, "l_partkey": 80i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 50.0d, "l_extendedprice": 49004.0d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-22", "l_commitdate": "1998-07-25", "l_receiptdate": "1998-09-18", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "ss excuses serve bli" }, { "l_orderkey": 5090i32, "l_partkey": 80i32, "l_suppkey": 9i32, "l_linenumber": 6i32, "l_quantity": 30.0d, "l_extendedprice": 29402.4d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-04", "l_commitdate": "1997-04-14", "l_receiptdate": "1997-05-30", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "osits nag slyly. fluffily ex" }, { "l_orderkey": 5184i32, "l_partkey": 80i32, "l_suppkey": 9i32, "l_linenumber": 6i32, "l_quantity": 49.0d, "l_extendedprice": 48023.92d, "l_discount": 0.02d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-09-18", "l_commitdate": "1998-08-28", "l_receiptdate": "1998-10-14", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "thlessly closely even reque" }, { "l_orderkey": 5217i32, "l_partkey": 80i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 50.0d, "l_extendedprice": 49004.0d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-26", "l_commitdate": "1995-11-21", "l_receiptdate": "1996-01-24", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "s. express, express accounts c" }, { "l_orderkey": 5346i32, "l_partkey": 80i32, "l_suppkey": 9i32, "l_linenumber": 7i32, "l_quantity": 41.0d, "l_extendedprice": 40183.28d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-01-10", "l_commitdate": "1994-02-15", "l_receiptdate": "1994-01-26", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "fully close instructi" }, { "l_orderkey": 5477i32, "l_partkey": 80i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 20.0d, "l_extendedprice": 19601.6d, "l_discount": 0.03d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-21", "l_commitdate": "1998-02-09", "l_receiptdate": "1998-04-07", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "platelets about the ironic" }, { "l_orderkey": 5543i32, "l_partkey": 80i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 32.0d, "l_extendedprice": 31362.56d, "l_discount": 0.03d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-10-04", "l_commitdate": "1993-11-14", "l_receiptdate": "1993-11-03", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "ully around the " } ] }
+{ "partkey": 81i32, "lines": [ { "l_orderkey": 611i32, "l_partkey": 81i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 1.0d, "l_extendedprice": 981.08d, "l_discount": 0.08d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-05-17", "l_commitdate": "1993-02-26", "l_receiptdate": "1993-06-15", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "ts. pending platelets aff" }, { "l_orderkey": 1221i32, "l_partkey": 81i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 43.0d, "l_extendedprice": 42186.44d, "l_discount": 0.05d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-06-22", "l_commitdate": "1992-07-15", "l_receiptdate": "1992-07-20", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "y slyly above the slyly unusual ideas" }, { "l_orderkey": 1312i32, "l_partkey": 81i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 9.0d, "l_extendedprice": 8829.72d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-07-19", "l_commitdate": "1994-06-29", "l_receiptdate": "1994-07-24", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": ". furiously " }, { "l_orderkey": 1347i32, "l_partkey": 81i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 45.0d, "l_extendedprice": 44148.6d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-24", "l_commitdate": "1997-09-03", "l_receiptdate": "1997-09-08", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "ages wake around t" }, { "l_orderkey": 2177i32, "l_partkey": 81i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 23.0d, "l_extendedprice": 22564.84d, "l_discount": 0.07d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-28", "l_commitdate": "1997-03-02", "l_receiptdate": "1997-02-13", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "he silent foxes. iro" }, { "l_orderkey": 2240i32, "l_partkey": 81i32, "l_suppkey": 2i32, "l_linenumber": 6i32, "l_quantity": 32.0d, "l_extendedprice": 31394.56d, "l_discount": 0.06d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-04-11", "l_commitdate": "1992-04-18", "l_receiptdate": "1992-04-22", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "ss thinly deposits. blithely bold package" }, { "l_orderkey": 2567i32, "l_partkey": 81i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 46.0d, "l_extendedprice": 45129.68d, "l_discount": 0.07d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-02", "l_commitdate": "1998-04-30", "l_receiptdate": "1998-06-13", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "efully pending epitaphs. carefully reg" }, { "l_orderkey": 2915i32, "l_partkey": 81i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 43.0d, "l_extendedprice": 42186.44d, "l_discount": 0.06d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-06-02", "l_commitdate": "1994-05-24", "l_receiptdate": "1994-06-06", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "into beans dazzle alongside of" }, { "l_orderkey": 3238i32, "l_partkey": 81i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 1.0d, "l_extendedprice": 981.08d, "l_discount": 0.0d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-05-17", "l_commitdate": "1993-04-18", "l_receiptdate": "1993-05-27", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "wake alongs" }, { "l_orderkey": 3364i32, "l_partkey": 81i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 3.0d, "l_extendedprice": 2943.24d, "l_discount": 0.01d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-10-19", "l_commitdate": "1997-08-15", "l_receiptdate": "1997-10-28", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "c theodolites. blithely ir" }, { "l_orderkey": 3394i32, "l_partkey": 81i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 14.0d, "l_extendedprice": 13735.12d, "l_discount": 0.08d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-02", "l_commitdate": "1996-07-02", "l_receiptdate": "1996-06-19", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "e furiously final theodolites. furio" }, { "l_orderkey": 3430i32, "l_partkey": 81i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 32.0d, "l_extendedprice": 31394.56d, "l_discount": 0.08d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-01-17", "l_commitdate": "1995-01-28", "l_receiptdate": "1995-02-06", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "egular instruction" }, { "l_orderkey": 3687i32, "l_partkey": 81i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 2.0d, "l_extendedprice": 1962.16d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-02-23", "l_commitdate": "1993-03-25", "l_receiptdate": "1993-03-11", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": " express requests. slyly regular depend" }, { "l_orderkey": 3875i32, "l_partkey": 81i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 24.0d, "l_extendedprice": 23545.92d, "l_discount": 0.02d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-10-15", "l_commitdate": "1997-11-27", "l_receiptdate": "1997-11-09", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "ecial packages. " }, { "l_orderkey": 4514i32, "l_partkey": 81i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 9.0d, "l_extendedprice": 8829.72d, "l_discount": 0.1d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-08-04", "l_commitdate": "1994-07-01", "l_receiptdate": "1994-09-01", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "wly. quick" }, { "l_orderkey": 4675i32, "l_partkey": 81i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 18.0d, "l_extendedprice": 17659.44d, "l_discount": 0.01d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-02-23", "l_commitdate": "1994-01-18", "l_receiptdate": "1994-03-05", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "cajole unusual dep" }, { "l_orderkey": 4995i32, "l_partkey": 81i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 43.0d, "l_extendedprice": 42186.44d, "l_discount": 0.0d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-02-24", "l_commitdate": "1996-02-20", "l_receiptdate": "1996-03-07", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "ts. blithely silent ideas after t" }, { "l_orderkey": 5027i32, "l_partkey": 81i32, "l_suppkey": 2i32, "l_linenumber": 7i32, "l_quantity": 50.0d, "l_extendedprice": 49054.0d, "l_discount": 0.07d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-18", "l_commitdate": "1997-11-07", "l_receiptdate": "1997-10-05", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": " beans dazzle according to the fluffi" }, { "l_orderkey": 5217i32, "l_partkey": 81i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 47.0d, "l_extendedprice": 46110.76d, "l_discount": 0.04d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-24", "l_commitdate": "1995-12-25", "l_receiptdate": "1995-11-25", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "ronic packages i" }, { "l_orderkey": 5248i32, "l_partkey": 81i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 39.0d, "l_extendedprice": 38262.12d, "l_discount": 0.05d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-10", "l_commitdate": "1995-07-04", "l_receiptdate": "1995-09-09", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "yly even accounts. spe" }, { "l_orderkey": 5954i32, "l_partkey": 81i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 40.0d, "l_extendedprice": 39243.2d, "l_discount": 0.02d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-12-30", "l_commitdate": "1993-01-16", "l_receiptdate": "1993-01-09", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "iously ironic deposits after" } ] }
+{ "partkey": 82i32, "lines": [ { "l_orderkey": 481i32, "l_partkey": 82i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 11.0d, "l_extendedprice": 10802.88d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-01-12", "l_commitdate": "1992-11-17", "l_receiptdate": "1993-02-05", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "eful attai" }, { "l_orderkey": 771i32, "l_partkey": 82i32, "l_suppkey": 3i32, "l_linenumber": 6i32, "l_quantity": 23.0d, "l_extendedprice": 22587.84d, "l_discount": 0.08d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-06-19", "l_commitdate": "1995-09-07", "l_receiptdate": "1995-07-09", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "cajole besides the quickly ironic pin" }, { "l_orderkey": 931i32, "l_partkey": 82i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 38.0d, "l_extendedprice": 37319.04d, "l_discount": 0.08d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-03-06", "l_commitdate": "1993-02-24", "l_receiptdate": "1993-03-27", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "usly final packages integrate carefully" }, { "l_orderkey": 1444i32, "l_partkey": 82i32, "l_suppkey": 3i32, "l_linenumber": 7i32, "l_quantity": 12.0d, "l_extendedprice": 11784.96d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-12-23", "l_commitdate": "1995-01-15", "l_receiptdate": "1995-01-13", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "ly among the bol" }, { "l_orderkey": 1504i32, "l_partkey": 82i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 42.0d, "l_extendedprice": 41247.36d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-10-18", "l_commitdate": "1992-10-14", "l_receiptdate": "1992-11-10", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "ep. carefully ironic excuses haggle quickl" }, { "l_orderkey": 1830i32, "l_partkey": 82i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 36.0d, "l_extendedprice": 35354.88d, "l_discount": 0.07d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-04-21", "l_commitdate": "1995-04-14", "l_receiptdate": "1995-05-10", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": " slowly unusual orbits. carefull" }, { "l_orderkey": 2241i32, "l_partkey": 82i32, "l_suppkey": 3i32, "l_linenumber": 5i32, "l_quantity": 2.0d, "l_extendedprice": 1964.16d, "l_discount": 0.04d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-08-16", "l_commitdate": "1993-08-02", "l_receiptdate": "1993-08-24", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": ", express deposits. pear" }, { "l_orderkey": 2468i32, "l_partkey": 82i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 5.0d, "l_extendedprice": 4910.4d, "l_discount": 0.08d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-28", "l_commitdate": "1997-08-02", "l_receiptdate": "1997-07-22", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": " sleep fluffily acc" }, { "l_orderkey": 2595i32, "l_partkey": 82i32, "l_suppkey": 3i32, "l_linenumber": 6i32, "l_quantity": 31.0d, "l_extendedprice": 30444.48d, "l_discount": 0.06d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-02-07", "l_commitdate": "1996-02-10", "l_receiptdate": "1996-03-05", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "tipliers w" }, { "l_orderkey": 2723i32, "l_partkey": 82i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 12.0d, "l_extendedprice": 11784.96d, "l_discount": 0.01d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-24", "l_commitdate": "1995-11-15", "l_receiptdate": "1996-01-17", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "bold foxes are bold packages. regular, fin" }, { "l_orderkey": 2976i32, "l_partkey": 82i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 22.0d, "l_extendedprice": 21605.76d, "l_discount": 0.0d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-02-08", "l_commitdate": "1994-03-03", "l_receiptdate": "1994-02-12", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "ncies kindle furiously. carefull" }, { "l_orderkey": 3360i32, "l_partkey": 82i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 39.0d, "l_extendedprice": 38301.12d, "l_discount": 0.08d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-09", "l_commitdate": "1998-04-20", "l_receiptdate": "1998-05-05", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "s. blithely express pinto bean" }, { "l_orderkey": 4261i32, "l_partkey": 82i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 4.0d, "l_extendedprice": 3928.32d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-12-11", "l_commitdate": "1992-12-18", "l_receiptdate": "1992-12-24", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "ackages unwind furiously fluff" }, { "l_orderkey": 4324i32, "l_partkey": 82i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 14.0d, "l_extendedprice": 13749.12d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-12", "l_commitdate": "1995-08-26", "l_receiptdate": "1995-11-21", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": " packages nag express excuses. qui" }, { "l_orderkey": 4387i32, "l_partkey": 82i32, "l_suppkey": 3i32, "l_linenumber": 5i32, "l_quantity": 3.0d, "l_extendedprice": 2946.24d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-17", "l_commitdate": "1995-12-28", "l_receiptdate": "1995-11-25", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": " pinto beans " }, { "l_orderkey": 4611i32, "l_partkey": 82i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 50.0d, "l_extendedprice": 49104.0d, "l_discount": 0.08d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-01-22", "l_commitdate": "1993-03-30", "l_receiptdate": "1993-02-16", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "l platelets. " }, { "l_orderkey": 4867i32, "l_partkey": 82i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 7.0d, "l_extendedprice": 6874.56d, "l_discount": 0.09d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-07-17", "l_commitdate": "1992-08-17", "l_receiptdate": "1992-07-22", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "e carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie carefully even packages. slyly ironic ie careful" }, { "l_orderkey": 4933i32, "l_partkey": 82i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 2.0d, "l_extendedprice": 1964.16d, "l_discount": 0.09d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-01", "l_commitdate": "1995-09-29", "l_receiptdate": "1995-10-19", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "ctions nag final instructions. accou" }, { "l_orderkey": 5122i32, "l_partkey": 82i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 43.0d, "l_extendedprice": 42229.44d, "l_discount": 0.09d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-31", "l_commitdate": "1996-04-12", "l_receiptdate": "1996-06-13", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "ut the carefully special foxes. idle," }, { "l_orderkey": 5186i32, "l_partkey": 82i32, "l_suppkey": 3i32, "l_linenumber": 6i32, "l_quantity": 35.0d, "l_extendedprice": 34372.8d, "l_discount": 0.0d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-20", "l_commitdate": "1996-10-12", "l_receiptdate": "1996-11-12", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "sly silent pack" }, { "l_orderkey": 5317i32, "l_partkey": 82i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 29.0d, "l_extendedprice": 28480.32d, "l_discount": 0.02d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-11-28", "l_commitdate": "1994-11-27", "l_receiptdate": "1994-12-16", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "oss the carefull" }, { "l_orderkey": 5606i32, "l_partkey": 82i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 30.0d, "l_extendedprice": 29462.4d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-06", "l_commitdate": "1997-01-26", "l_receiptdate": "1997-02-16", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": " nag always. blithely express packages " }, { "l_orderkey": 5831i32, "l_partkey": 82i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 6.0d, "l_extendedprice": 5892.48d, "l_discount": 0.05d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-29", "l_commitdate": "1997-01-14", "l_receiptdate": "1997-02-09", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "ly ironic accounts nag pendin" } ] }
+{ "partkey": 83i32, "lines": [ { "l_orderkey": 32i32, "l_partkey": 83i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 28.0d, "l_extendedprice": 27526.24d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-23", "l_commitdate": "1995-08-27", "l_receiptdate": "1995-10-26", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "sleep quickly. req" }, { "l_orderkey": 68i32, "l_partkey": 83i32, "l_suppkey": 4i32, "l_linenumber": 5i32, "l_quantity": 27.0d, "l_extendedprice": 26543.16d, "l_discount": 0.03d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-19", "l_commitdate": "1998-06-25", "l_receiptdate": "1998-06-29", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "ccounts. deposits use. furiously" }, { "l_orderkey": 192i32, "l_partkey": 83i32, "l_suppkey": 4i32, "l_linenumber": 5i32, "l_quantity": 25.0d, "l_extendedprice": 24577.0d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-02-15", "l_commitdate": "1998-01-11", "l_receiptdate": "1998-03-17", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": ". carefully regular" }, { "l_orderkey": 226i32, "l_partkey": 83i32, "l_suppkey": 4i32, "l_linenumber": 6i32, "l_quantity": 48.0d, "l_extendedprice": 47187.84d, "l_discount": 0.02d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-06-11", "l_commitdate": "1993-05-15", "l_receiptdate": "1993-06-19", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "efully silent packages. final deposit" }, { "l_orderkey": 358i32, "l_partkey": 83i32, "l_suppkey": 4i32, "l_linenumber": 7i32, "l_quantity": 45.0d, "l_extendedprice": 44238.6d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-12-08", "l_commitdate": "1993-10-29", "l_receiptdate": "1993-12-30", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "to beans. regular, unusual deposits sl" }, { "l_orderkey": 487i32, "l_partkey": 83i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 2.0d, "l_extendedprice": 1966.16d, "l_discount": 0.02d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-10-19", "l_commitdate": "1992-11-04", "l_receiptdate": "1992-11-11", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "oss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. regoss the unusual pinto beans. reg" }, { "l_orderkey": 512i32, "l_partkey": 83i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 10.0d, "l_extendedprice": 9830.8d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-16", "l_commitdate": "1995-07-29", "l_receiptdate": "1995-10-07", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "xes. pinto beans cajole carefully; " }, { "l_orderkey": 1120i32, "l_partkey": 83i32, "l_suppkey": 4i32, "l_linenumber": 5i32, "l_quantity": 10.0d, "l_extendedprice": 9830.8d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-11-10", "l_commitdate": "1998-02-01", "l_receiptdate": "1997-11-28", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "ages haggle furiously " }, { "l_orderkey": 1157i32, "l_partkey": 83i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 4.0d, "l_extendedprice": 3932.32d, "l_discount": 0.1d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-02-24", "l_commitdate": "1998-03-30", "l_receiptdate": "1998-03-24", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "ounts. ironic deposits" }, { "l_orderkey": 1411i32, "l_partkey": 83i32, "l_suppkey": 4i32, "l_linenumber": 5i32, "l_quantity": 46.0d, "l_extendedprice": 45221.68d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-04-03", "l_commitdate": "1995-01-20", "l_receiptdate": "1995-04-05", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "ly daring instructions" }, { "l_orderkey": 1573i32, "l_partkey": 83i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 16.0d, "l_extendedprice": 15729.28d, "l_discount": 0.04d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-03-15", "l_commitdate": "1993-03-16", "l_receiptdate": "1993-03-31", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "ely. furiously final requests wake slyl" }, { "l_orderkey": 1575i32, "l_partkey": 83i32, "l_suppkey": 4i32, "l_linenumber": 5i32, "l_quantity": 10.0d, "l_extendedprice": 9830.8d, "l_discount": 0.09d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-10", "l_commitdate": "1995-11-20", "l_receiptdate": "1996-01-13", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "k excuses. pinto beans wake a" }, { "l_orderkey": 1958i32, "l_partkey": 83i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 38.0d, "l_extendedprice": 37357.04d, "l_discount": 0.09d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-09", "l_commitdate": "1995-11-26", "l_receiptdate": "1995-11-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "yly. slyly regular courts use silentl" }, { "l_orderkey": 2403i32, "l_partkey": 83i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 34.0d, "l_extendedprice": 33424.72d, "l_discount": 0.04d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-30", "l_commitdate": "1998-06-19", "l_receiptdate": "1998-06-05", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": " slyly bold re" }, { "l_orderkey": 2916i32, "l_partkey": 83i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 21.0d, "l_extendedprice": 20644.68d, "l_discount": 0.06d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-11", "l_commitdate": "1996-02-21", "l_receiptdate": "1996-03-30", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "uickly express ideas over the slyly even " }, { "l_orderkey": 3040i32, "l_partkey": 83i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 14.0d, "l_extendedprice": 13763.12d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-05-13", "l_commitdate": "1993-05-18", "l_receiptdate": "1993-05-19", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": " haggle carefully. express hocke" }, { "l_orderkey": 3072i32, "l_partkey": 83i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 39.0d, "l_extendedprice": 38340.12d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-05-27", "l_commitdate": "1994-04-20", "l_receiptdate": "1994-06-14", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "es; slyly spe" }, { "l_orderkey": 3207i32, "l_partkey": 83i32, "l_suppkey": 4i32, "l_linenumber": 5i32, "l_quantity": 8.0d, "l_extendedprice": 7864.64d, "l_discount": 0.0d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-13", "l_commitdate": "1998-04-26", "l_receiptdate": "1998-07-11", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "y. final pint" }, { "l_orderkey": 3269i32, "l_partkey": 83i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 37.0d, "l_extendedprice": 36373.96d, "l_discount": 0.07d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-14", "l_commitdate": "1996-04-27", "l_receiptdate": "1996-07-07", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "egular requests. carefully un" }, { "l_orderkey": 3750i32, "l_partkey": 83i32, "l_suppkey": 4i32, "l_linenumber": 5i32, "l_quantity": 1.0d, "l_extendedprice": 983.08d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-24", "l_commitdate": "1995-06-25", "l_receiptdate": "1995-08-21", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "l dolphins against the slyly" }, { "l_orderkey": 3814i32, "l_partkey": 83i32, "l_suppkey": 4i32, "l_linenumber": 6i32, "l_quantity": 47.0d, "l_extendedprice": 46204.76d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-04-16", "l_commitdate": "1995-04-03", "l_receiptdate": "1995-05-14", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "nusual requests. bli" }, { "l_orderkey": 3936i32, "l_partkey": 83i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 42.0d, "l_extendedprice": 41289.36d, "l_discount": 0.0d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-03", "l_commitdate": "1997-01-29", "l_receiptdate": "1997-01-14", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "elets wake amo" }, { "l_orderkey": 4067i32, "l_partkey": 83i32, "l_suppkey": 4i32, "l_linenumber": 7i32, "l_quantity": 17.0d, "l_extendedprice": 16712.36d, "l_discount": 0.01d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-12-12", "l_commitdate": "1992-12-23", "l_receiptdate": "1992-12-30", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "ts affix. regular, regular requests s" }, { "l_orderkey": 4738i32, "l_partkey": 83i32, "l_suppkey": 4i32, "l_linenumber": 7i32, "l_quantity": 28.0d, "l_extendedprice": 27526.24d, "l_discount": 0.05d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-06-09", "l_commitdate": "1992-07-05", "l_receiptdate": "1992-06-25", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "e furiously ironic excuses. care" }, { "l_orderkey": 4902i32, "l_partkey": 83i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 1.0d, "l_extendedprice": 983.08d, "l_discount": 0.09d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-10-12", "l_commitdate": "1998-08-20", "l_receiptdate": "1998-11-08", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "daring foxes? even, bold requests wake f" }, { "l_orderkey": 5187i32, "l_partkey": 83i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 1.0d, "l_extendedprice": 983.08d, "l_discount": 0.1d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-08", "l_commitdate": "1997-08-24", "l_receiptdate": "1997-08-22", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "aggle never bold " }, { "l_orderkey": 5218i32, "l_partkey": 83i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 43.0d, "l_extendedprice": 42272.44d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-08-04", "l_commitdate": "1992-09-12", "l_receiptdate": "1992-08-17", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "k theodolites. express, even id" }, { "l_orderkey": 5220i32, "l_partkey": 83i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 27.0d, "l_extendedprice": 26543.16d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-09-21", "l_commitdate": "1992-08-29", "l_receiptdate": "1992-10-16", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "s cajole blithely furiously iron" }, { "l_orderkey": 5345i32, "l_partkey": 83i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 3.0d, "l_extendedprice": 2949.24d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-10", "l_commitdate": "1997-10-03", "l_receiptdate": "1998-01-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "ites wake carefully unusual " }, { "l_orderkey": 5347i32, "l_partkey": 83i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 48.0d, "l_extendedprice": 47187.84d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-02-25", "l_commitdate": "1995-04-26", "l_receiptdate": "1995-03-26", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "equests are slyly. blithely regu" }, { "l_orderkey": 5443i32, "l_partkey": 83i32, "l_suppkey": 4i32, "l_linenumber": 5i32, "l_quantity": 40.0d, "l_extendedprice": 39323.2d, "l_discount": 0.03d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-28", "l_commitdate": "1996-12-10", "l_receiptdate": "1997-02-13", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "n courts. special re" }, { "l_orderkey": 5635i32, "l_partkey": 83i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 43.0d, "l_extendedprice": 42272.44d, "l_discount": 0.03d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-10-12", "l_commitdate": "1992-09-29", "l_receiptdate": "1992-11-01", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "cross the d" }, { "l_orderkey": 5765i32, "l_partkey": 83i32, "l_suppkey": 4i32, "l_linenumber": 6i32, "l_quantity": 41.0d, "l_extendedprice": 40306.28d, "l_discount": 0.04d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-12-31", "l_commitdate": "1995-02-11", "l_receiptdate": "1995-01-17", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": " furiously. slyly sile" } ] }
+{ "partkey": 84i32, "lines": [ { "l_orderkey": 229i32, "l_partkey": 84i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 20.0d, "l_extendedprice": 19681.6d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-01-11", "l_commitdate": "1994-01-31", "l_receiptdate": "1994-01-26", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "le. instructions use across the quickly fin" }, { "l_orderkey": 231i32, "l_partkey": 84i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 46.0d, "l_extendedprice": 45267.68d, "l_discount": 0.04d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-12-13", "l_commitdate": "1994-12-02", "l_receiptdate": "1994-12-14", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "affix blithely. bold requests among the f" }, { "l_orderkey": 518i32, "l_partkey": 84i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 23.0d, "l_extendedprice": 22633.84d, "l_discount": 0.05d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-02-20", "l_commitdate": "1998-05-05", "l_receiptdate": "1998-03-11", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": " special requests. fluffily ironic re" }, { "l_orderkey": 772i32, "l_partkey": 84i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 10.0d, "l_extendedprice": 9840.8d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-05-20", "l_commitdate": "1993-05-19", "l_receiptdate": "1993-06-15", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": " deposits cajole carefully instructions. t" }, { "l_orderkey": 836i32, "l_partkey": 84i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 18.0d, "l_extendedprice": 17713.44d, "l_discount": 0.03d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-27", "l_commitdate": "1997-02-11", "l_receiptdate": "1997-03-22", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "y pending packages use alon" }, { "l_orderkey": 1190i32, "l_partkey": 84i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 32.0d, "l_extendedprice": 31490.56d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-08", "l_commitdate": "1997-04-17", "l_receiptdate": "1997-06-01", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "y final packages? slyly even" }, { "l_orderkey": 1285i32, "l_partkey": 84i32, "l_suppkey": 5i32, "l_linenumber": 5i32, "l_quantity": 33.0d, "l_extendedprice": 32474.64d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-09-08", "l_commitdate": "1992-08-25", "l_receiptdate": "1992-09-16", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "ites affix" }, { "l_orderkey": 1377i32, "l_partkey": 84i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 26.0d, "l_extendedprice": 25586.08d, "l_discount": 0.07d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-28", "l_commitdate": "1998-06-11", "l_receiptdate": "1998-06-25", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "egular deposits. quickly regular acco" }, { "l_orderkey": 1510i32, "l_partkey": 84i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 24.0d, "l_extendedprice": 23617.92d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-07", "l_commitdate": "1996-10-22", "l_receiptdate": "1996-11-03", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "yly brave theod" }, { "l_orderkey": 1920i32, "l_partkey": 84i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 50.0d, "l_extendedprice": 49204.0d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-10-03", "l_commitdate": "1998-08-04", "l_receiptdate": "1998-10-29", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "e blithely unusual foxes. brave packages" }, { "l_orderkey": 2017i32, "l_partkey": 84i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 11.0d, "l_extendedprice": 10824.88d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-22", "l_commitdate": "1998-07-13", "l_receiptdate": "1998-05-26", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "gside of the slyly dogged dolp" }, { "l_orderkey": 2049i32, "l_partkey": 84i32, "l_suppkey": 5i32, "l_linenumber": 6i32, "l_quantity": 17.0d, "l_extendedprice": 16729.36d, "l_discount": 0.07d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-02-04", "l_commitdate": "1996-03-01", "l_receiptdate": "1996-02-24", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "al, regular foxes. pending, " }, { "l_orderkey": 2086i32, "l_partkey": 84i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 27.0d, "l_extendedprice": 26570.16d, "l_discount": 0.02d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-11-04", "l_commitdate": "1995-01-14", "l_receiptdate": "1994-11-25", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "theodolites haggle blithely blithe p" }, { "l_orderkey": 2471i32, "l_partkey": 84i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 37.0d, "l_extendedprice": 36410.96d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-28", "l_commitdate": "1998-04-17", "l_receiptdate": "1998-06-08", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "ounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mold blithely carefully express depoounts mo" }, { "l_orderkey": 2501i32, "l_partkey": 84i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 4.0d, "l_extendedprice": 3936.32d, "l_discount": 0.1d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-17", "l_commitdate": "1997-07-27", "l_receiptdate": "1997-07-22", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "quests. furiously final" }, { "l_orderkey": 2597i32, "l_partkey": 84i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 24.0d, "l_extendedprice": 23617.92d, "l_discount": 0.07d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-05-15", "l_commitdate": "1993-03-06", "l_receiptdate": "1993-05-25", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "pending packages. enticingly fi" }, { "l_orderkey": 3170i32, "l_partkey": 84i32, "l_suppkey": 5i32, "l_linenumber": 7i32, "l_quantity": 26.0d, "l_extendedprice": 25586.08d, "l_discount": 0.1d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-02-12", "l_commitdate": "1997-12-22", "l_receiptdate": "1998-02-28", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "s engage furiously. " }, { "l_orderkey": 3234i32, "l_partkey": 84i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 23.0d, "l_extendedprice": 22633.84d, "l_discount": 0.03d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-29", "l_commitdate": "1996-05-15", "l_receiptdate": "1996-06-17", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "d-- fluffily special packag" }, { "l_orderkey": 3296i32, "l_partkey": 84i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 12.0d, "l_extendedprice": 11808.96d, "l_discount": 0.06d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-12-08", "l_commitdate": "1994-12-14", "l_receiptdate": "1994-12-24", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "y about the slyly bold pinto bea" }, { "l_orderkey": 3332i32, "l_partkey": 84i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 28.0d, "l_extendedprice": 27554.24d, "l_discount": 0.1d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-12-30", "l_commitdate": "1995-01-16", "l_receiptdate": "1995-01-16", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "s against the carefully special multipl" }, { "l_orderkey": 3586i32, "l_partkey": 84i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 29.0d, "l_extendedprice": 28538.32d, "l_discount": 0.04d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-03-06", "l_commitdate": "1994-03-02", "l_receiptdate": "1994-03-13", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": " slyly unusual i" }, { "l_orderkey": 3586i32, "l_partkey": 84i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 33.0d, "l_extendedprice": 32474.64d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-01-24", "l_commitdate": "1994-02-09", "l_receiptdate": "1994-02-07", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "refully across the fur" }, { "l_orderkey": 3936i32, "l_partkey": 84i32, "l_suppkey": 5i32, "l_linenumber": 5i32, "l_quantity": 35.0d, "l_extendedprice": 34442.8d, "l_discount": 0.02d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-04", "l_commitdate": "1997-01-06", "l_receiptdate": "1996-12-22", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "lly ironic requ" }, { "l_orderkey": 4324i32, "l_partkey": 84i32, "l_suppkey": 5i32, "l_linenumber": 5i32, "l_quantity": 22.0d, "l_extendedprice": 21649.76d, "l_discount": 0.07d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-13", "l_commitdate": "1995-10-04", "l_receiptdate": "1995-09-23", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "ke express, special ideas." }, { "l_orderkey": 4357i32, "l_partkey": 84i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 50.0d, "l_extendedprice": 49204.0d, "l_discount": 0.04d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-11-25", "l_commitdate": "1997-12-03", "l_receiptdate": "1997-12-17", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "s. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, es. final, " }, { "l_orderkey": 4388i32, "l_partkey": 84i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 28.0d, "l_extendedprice": 27554.24d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-08", "l_commitdate": "1996-06-20", "l_receiptdate": "1996-05-12", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "ove the ide" }, { "l_orderkey": 4774i32, "l_partkey": 84i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 45.0d, "l_extendedprice": 44283.6d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-07-07", "l_commitdate": "1993-06-08", "l_receiptdate": "1993-07-31", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": " haggle busily afte" }, { "l_orderkey": 5895i32, "l_partkey": 84i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 49.0d, "l_extendedprice": 48219.92d, "l_discount": 0.03d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-15", "l_commitdate": "1997-02-17", "l_receiptdate": "1997-04-04", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "permanent foxes. packages" } ] }
+{ "partkey": 85i32, "lines": [ { "l_orderkey": 195i32, "l_partkey": 85i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 6.0d, "l_extendedprice": 5910.48d, "l_discount": 0.04d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-01-09", "l_commitdate": "1994-03-27", "l_receiptdate": "1994-01-28", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "y, even deposits haggle carefully. bli" }, { "l_orderkey": 263i32, "l_partkey": 85i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 9.0d, "l_extendedprice": 8865.72d, "l_discount": 0.08d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-07-21", "l_commitdate": "1994-07-16", "l_receiptdate": "1994-08-08", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "lms wake bl" }, { "l_orderkey": 326i32, "l_partkey": 85i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 5.0d, "l_extendedprice": 4925.4d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-29", "l_commitdate": "1995-07-13", "l_receiptdate": "1995-08-12", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "deas sleep according to the sometimes spe" }, { "l_orderkey": 390i32, "l_partkey": 85i32, "l_suppkey": 6i32, "l_linenumber": 7i32, "l_quantity": 24.0d, "l_extendedprice": 23641.92d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-18", "l_commitdate": "1998-05-19", "l_receiptdate": "1998-04-28", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "y. enticingly final depos" }, { "l_orderkey": 546i32, "l_partkey": 85i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 16.0d, "l_extendedprice": 15761.28d, "l_discount": 0.08d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-04", "l_commitdate": "1996-12-30", "l_receiptdate": "1997-02-25", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "de of the orbits. sometimes regula" }, { "l_orderkey": 580i32, "l_partkey": 85i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 33.0d, "l_extendedprice": 32507.64d, "l_discount": 0.03d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-10-11", "l_commitdate": "1997-09-19", "l_receiptdate": "1997-10-16", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "y express theodolites cajole carefully " }, { "l_orderkey": 644i32, "l_partkey": 85i32, "l_suppkey": 6i32, "l_linenumber": 6i32, "l_quantity": 33.0d, "l_extendedprice": 32507.64d, "l_discount": 0.0d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-08-26", "l_commitdate": "1992-07-27", "l_receiptdate": "1992-08-28", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "ages sleep. bold, bo" }, { "l_orderkey": 739i32, "l_partkey": 85i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 28.0d, "l_extendedprice": 27582.24d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-03", "l_commitdate": "1998-08-04", "l_receiptdate": "1998-06-29", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "elets about the pe" }, { "l_orderkey": 800i32, "l_partkey": 85i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 21.0d, "l_extendedprice": 20686.68d, "l_discount": 0.04d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-23", "l_commitdate": "1998-10-01", "l_receiptdate": "1998-08-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "ckly even requests after the carefully r" }, { "l_orderkey": 899i32, "l_partkey": 85i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 4.0d, "l_extendedprice": 3940.32d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-02", "l_commitdate": "1998-06-28", "l_receiptdate": "1998-06-14", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "ter the carefully regular deposits are agai" }, { "l_orderkey": 967i32, "l_partkey": 85i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 4.0d, "l_extendedprice": 3940.32d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-07-15", "l_commitdate": "1992-07-27", "l_receiptdate": "1992-07-18", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "platelets hang carefully along " }, { "l_orderkey": 1057i32, "l_partkey": 85i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 21.0d, "l_extendedprice": 20686.68d, "l_discount": 0.03d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-02-28", "l_commitdate": "1992-05-01", "l_receiptdate": "1992-03-10", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "ar orbits boost bli" }, { "l_orderkey": 1221i32, "l_partkey": 85i32, "l_suppkey": 6i32, "l_linenumber": 6i32, "l_quantity": 7.0d, "l_extendedprice": 6895.56d, "l_discount": 0.08d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-06-27", "l_commitdate": "1992-06-16", "l_receiptdate": "1992-07-23", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "xpress accounts " }, { "l_orderkey": 1636i32, "l_partkey": 85i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 2.0d, "l_extendedprice": 1970.16d, "l_discount": 0.09d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-26", "l_commitdate": "1997-08-22", "l_receiptdate": "1997-10-05", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "nal foxes cajole above the blithely reg" }, { "l_orderkey": 1794i32, "l_partkey": 85i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 34.0d, "l_extendedprice": 33492.72d, "l_discount": 0.06d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-29", "l_commitdate": "1997-11-13", "l_receiptdate": "1997-10-07", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "rs above the accoun" }, { "l_orderkey": 2021i32, "l_partkey": 85i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 7.0d, "l_extendedprice": 6895.56d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-17", "l_commitdate": "1995-09-29", "l_receiptdate": "1995-10-20", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": " accounts boost blithely. blithely reg" }, { "l_orderkey": 2081i32, "l_partkey": 85i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 23.0d, "l_extendedprice": 22656.84d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-06", "l_commitdate": "1997-09-11", "l_receiptdate": "1997-07-21", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "ual requests wake blithely above the" }, { "l_orderkey": 2211i32, "l_partkey": 85i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 23.0d, "l_extendedprice": 22656.84d, "l_discount": 0.03d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-10-05", "l_commitdate": "1994-09-13", "l_receiptdate": "1994-10-17", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "ependencies " }, { "l_orderkey": 2273i32, "l_partkey": 85i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 35.0d, "l_extendedprice": 34477.8d, "l_discount": 0.0d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-02", "l_commitdate": "1997-01-19", "l_receiptdate": "1997-01-14", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "arefully f" }, { "l_orderkey": 3076i32, "l_partkey": 85i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 44.0d, "l_extendedprice": 43343.52d, "l_discount": 0.0d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-09-14", "l_commitdate": "1993-10-04", "l_receiptdate": "1993-09-17", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": " instructions h" }, { "l_orderkey": 3175i32, "l_partkey": 85i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 14.0d, "l_extendedprice": 13791.12d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-10-21", "l_commitdate": "1994-09-05", "l_receiptdate": "1994-11-15", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "nt dependencies are quietly even " }, { "l_orderkey": 3783i32, "l_partkey": 85i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 50.0d, "l_extendedprice": 49254.0d, "l_discount": 0.04d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-03-14", "l_commitdate": "1994-01-09", "l_receiptdate": "1994-04-10", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "he furiously regular deposits. " }, { "l_orderkey": 4032i32, "l_partkey": 85i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 10.0d, "l_extendedprice": 9850.8d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-31", "l_commitdate": "1998-04-22", "l_receiptdate": "1998-04-07", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": " carefully bol" }, { "l_orderkey": 4067i32, "l_partkey": 85i32, "l_suppkey": 6i32, "l_linenumber": 5i32, "l_quantity": 17.0d, "l_extendedprice": 16746.36d, "l_discount": 0.08d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-01-20", "l_commitdate": "1992-12-29", "l_receiptdate": "1993-02-03", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "r accounts. slyly special pa" }, { "l_orderkey": 4224i32, "l_partkey": 85i32, "l_suppkey": 6i32, "l_linenumber": 5i32, "l_quantity": 48.0d, "l_extendedprice": 47283.84d, "l_discount": 0.0d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-10-03", "l_commitdate": "1997-08-31", "l_receiptdate": "1997-10-10", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": " final, regular asymptotes use alway" }, { "l_orderkey": 5158i32, "l_partkey": 85i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 18.0d, "l_extendedprice": 17731.44d, "l_discount": 0.04d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-30", "l_commitdate": "1997-03-28", "l_receiptdate": "1997-05-12", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "hely regular pa" }, { "l_orderkey": 5574i32, "l_partkey": 85i32, "l_suppkey": 6i32, "l_linenumber": 5i32, "l_quantity": 19.0d, "l_extendedprice": 18716.52d, "l_discount": 0.05d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-05-28", "l_commitdate": "1992-04-24", "l_receiptdate": "1992-06-11", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "old deposits int" }, { "l_orderkey": 5891i32, "l_partkey": 85i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 22.0d, "l_extendedprice": 21671.76d, "l_discount": 0.0d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-01-01", "l_commitdate": "1993-02-18", "l_receiptdate": "1993-01-14", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "iresias cajole deposits. special, ir" } ] }
+{ "partkey": 86i32, "lines": [ { "l_orderkey": 32i32, "l_partkey": 86i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 44.0d, "l_extendedprice": 43387.52d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-28", "l_commitdate": "1995-08-20", "l_receiptdate": "1995-09-14", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "symptotes nag according to the ironic depo" }, { "l_orderkey": 35i32, "l_partkey": 86i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 25.0d, "l_extendedprice": 24652.0d, "l_discount": 0.06d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-26", "l_commitdate": "1995-12-25", "l_receiptdate": "1995-12-21", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": " quickly unti" }, { "l_orderkey": 64i32, "l_partkey": 86i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 21.0d, "l_extendedprice": 20707.68d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-09-30", "l_commitdate": "1994-09-18", "l_receiptdate": "1994-10-26", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "ch slyly final, thin platelets." }, { "l_orderkey": 195i32, "l_partkey": 86i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 34.0d, "l_extendedprice": 33526.72d, "l_discount": 0.08d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-01-31", "l_commitdate": "1994-02-11", "l_receiptdate": "1994-02-12", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": " cajole furiously bold i" }, { "l_orderkey": 195i32, "l_partkey": 86i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 41.0d, "l_extendedprice": 40429.28d, "l_discount": 0.06d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-03-14", "l_commitdate": "1994-03-13", "l_receiptdate": "1994-04-09", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "ggle fluffily foxes. fluffily ironic ex" }, { "l_orderkey": 772i32, "l_partkey": 86i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 35.0d, "l_extendedprice": 34512.8d, "l_discount": 0.03d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-04-18", "l_commitdate": "1993-06-13", "l_receiptdate": "1993-05-01", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "ng ideas. special packages haggle alon" }, { "l_orderkey": 1092i32, "l_partkey": 86i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 2.0d, "l_extendedprice": 1972.16d, "l_discount": 0.05d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-04-09", "l_commitdate": "1995-05-12", "l_receiptdate": "1995-05-03", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "ans. slyly eve" }, { "l_orderkey": 1153i32, "l_partkey": 86i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 15.0d, "l_extendedprice": 14791.2d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-04-24", "l_commitdate": "1996-07-17", "l_receiptdate": "1996-04-29", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "uctions boost fluffily according to" }, { "l_orderkey": 1507i32, "l_partkey": 86i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 39.0d, "l_extendedprice": 38457.12d, "l_discount": 0.03d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-11-04", "l_commitdate": "1993-12-16", "l_receiptdate": "1993-12-03", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "ly even instructions." }, { "l_orderkey": 1539i32, "l_partkey": 86i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 11.0d, "l_extendedprice": 10846.88d, "l_discount": 0.01d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-05-27", "l_commitdate": "1995-04-13", "l_receiptdate": "1995-06-10", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "ly express requests. furiously " }, { "l_orderkey": 1570i32, "l_partkey": 86i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 7.0d, "l_extendedprice": 6902.56d, "l_discount": 0.05d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-10", "l_commitdate": "1998-06-01", "l_receiptdate": "1998-07-23", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "requests boost quickly re" }, { "l_orderkey": 1637i32, "l_partkey": 86i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 49.0d, "l_extendedprice": 48317.92d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "F", "l_shipdate": "1995-06-08", "l_commitdate": "1995-04-19", "l_receiptdate": "1995-07-01", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": ". blithely i" }, { "l_orderkey": 1988i32, "l_partkey": 86i32, "l_suppkey": 7i32, "l_linenumber": 6i32, "l_quantity": 9.0d, "l_extendedprice": 8874.72d, "l_discount": 0.08d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-26", "l_commitdate": "1996-01-02", "l_receiptdate": "1996-01-25", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "lar platelets. slyly ironic packa" }, { "l_orderkey": 2240i32, "l_partkey": 86i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 10.0d, "l_extendedprice": 9860.8d, "l_discount": 0.09d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-05-25", "l_commitdate": "1992-04-14", "l_receiptdate": "1992-06-23", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "are across the ironic packages." }, { "l_orderkey": 2245i32, "l_partkey": 86i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 33.0d, "l_extendedprice": 32540.64d, "l_discount": 0.03d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-06-26", "l_commitdate": "1993-06-11", "l_receiptdate": "1993-07-17", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "ing to the carefully ruthless accounts" }, { "l_orderkey": 2371i32, "l_partkey": 86i32, "l_suppkey": 7i32, "l_linenumber": 6i32, "l_quantity": 39.0d, "l_extendedprice": 38457.12d, "l_discount": 0.05d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-01", "l_commitdate": "1998-03-13", "l_receiptdate": "1998-04-27", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "tructions. regular, stealthy packages wak" }, { "l_orderkey": 2402i32, "l_partkey": 86i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 43.0d, "l_extendedprice": 42401.44d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-17", "l_commitdate": "1996-11-20", "l_receiptdate": "1996-09-22", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "slyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly slyly blithe sheavesslyly sl" }, { "l_orderkey": 2531i32, "l_partkey": 86i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 20.0d, "l_extendedprice": 19721.6d, "l_discount": 0.06d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-18", "l_commitdate": "1996-06-25", "l_receiptdate": "1996-07-29", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "into beans. furious" }, { "l_orderkey": 2595i32, "l_partkey": 86i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 30.0d, "l_extendedprice": 29582.4d, "l_discount": 0.09d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-16", "l_commitdate": "1996-01-31", "l_receiptdate": "1996-04-05", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": ". final orbits cajole " }, { "l_orderkey": 2690i32, "l_partkey": 86i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 30.0d, "l_extendedprice": 29582.4d, "l_discount": 0.01d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-20", "l_commitdate": "1996-06-01", "l_receiptdate": "1996-06-04", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "d accounts above the express req" }, { "l_orderkey": 2695i32, "l_partkey": 86i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 40.0d, "l_extendedprice": 39443.2d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-02", "l_commitdate": "1996-10-26", "l_receiptdate": "1996-11-14", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "ructions. pending" }, { "l_orderkey": 2823i32, "l_partkey": 86i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 45.0d, "l_extendedprice": 44373.6d, "l_discount": 0.03d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-28", "l_commitdate": "1995-11-27", "l_receiptdate": "1996-01-02", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "furiously special idea" }, { "l_orderkey": 2823i32, "l_partkey": 86i32, "l_suppkey": 7i32, "l_linenumber": 7i32, "l_quantity": 12.0d, "l_extendedprice": 11832.96d, "l_discount": 0.02d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-22", "l_commitdate": "1995-11-20", "l_receiptdate": "1996-01-13", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "the slyly ironic dolphins; fin" }, { "l_orderkey": 3106i32, "l_partkey": 86i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 22.0d, "l_extendedprice": 21693.76d, "l_discount": 0.03d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-28", "l_commitdate": "1997-02-12", "l_receiptdate": "1997-03-03", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "structions atop the blithely" }, { "l_orderkey": 3111i32, "l_partkey": 86i32, "l_suppkey": 7i32, "l_linenumber": 6i32, "l_quantity": 5.0d, "l_extendedprice": 4930.4d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-30", "l_commitdate": "1995-10-16", "l_receiptdate": "1995-09-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": ". carefully even ideas" }, { "l_orderkey": 3397i32, "l_partkey": 86i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 33.0d, "l_extendedprice": 32540.64d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-09-04", "l_commitdate": "1994-08-06", "l_receiptdate": "1994-09-22", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "gular accounts. blithely re" }, { "l_orderkey": 3490i32, "l_partkey": 86i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 50.0d, "l_extendedprice": 49304.0d, "l_discount": 0.05d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-27", "l_commitdate": "1997-08-15", "l_receiptdate": "1997-06-28", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": " haggle carefu" }, { "l_orderkey": 4166i32, "l_partkey": 86i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 36.0d, "l_extendedprice": 35498.88d, "l_discount": 0.06d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-03-01", "l_commitdate": "1993-05-25", "l_receiptdate": "1993-03-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "unts. furiously express accounts w" }, { "l_orderkey": 4354i32, "l_partkey": 86i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 36.0d, "l_extendedprice": 35498.88d, "l_discount": 0.05d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-11-20", "l_commitdate": "1994-12-06", "l_receiptdate": "1994-12-06", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": " wake slyly eve" }, { "l_orderkey": 4835i32, "l_partkey": 86i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 27.0d, "l_extendedprice": 26624.16d, "l_discount": 0.05d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-12-10", "l_commitdate": "1994-12-13", "l_receiptdate": "1995-01-02", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": " accounts after the car" }, { "l_orderkey": 4896i32, "l_partkey": 86i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 21.0d, "l_extendedprice": 20707.68d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-11-18", "l_commitdate": "1992-11-18", "l_receiptdate": "1992-11-29", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "ly express deposits. carefully pending depo" }, { "l_orderkey": 4999i32, "l_partkey": 86i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 30.0d, "l_extendedprice": 29582.4d, "l_discount": 0.09d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-07-21", "l_commitdate": "1993-08-11", "l_receiptdate": "1993-08-20", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "s cajole among the blithel" }, { "l_orderkey": 5088i32, "l_partkey": 86i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 36.0d, "l_extendedprice": 35498.88d, "l_discount": 0.1d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-04-16", "l_commitdate": "1993-04-03", "l_receiptdate": "1993-05-14", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "the furiously final deposits. furiously re" }, { "l_orderkey": 5702i32, "l_partkey": 86i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 37.0d, "l_extendedprice": 36484.96d, "l_discount": 0.1d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-12-14", "l_commitdate": "1993-10-21", "l_receiptdate": "1994-01-08", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "ix slyly. regular instructions slee" }, { "l_orderkey": 5861i32, "l_partkey": 86i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 6.0d, "l_extendedprice": 5916.48d, "l_discount": 0.1d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-28", "l_commitdate": "1997-05-18", "l_receiptdate": "1997-08-24", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "olites. slyly" }, { "l_orderkey": 5985i32, "l_partkey": 86i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 4.0d, "l_extendedprice": 3944.32d, "l_discount": 0.02d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-05-04", "l_commitdate": "1995-04-01", "l_receiptdate": "1995-05-17", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "ole along the quickly slow d" } ] }
+{ "partkey": 87i32, "lines": [ { "l_orderkey": 160i32, "l_partkey": 87i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 22.0d, "l_extendedprice": 21715.76d, "l_discount": 0.0d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-18", "l_commitdate": "1997-03-05", "l_receiptdate": "1997-03-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "ncies about the request" }, { "l_orderkey": 451i32, "l_partkey": 87i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 1.0d, "l_extendedprice": 987.08d, "l_discount": 0.07d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-13", "l_commitdate": "1998-07-03", "l_receiptdate": "1998-08-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": " carefully ironic packages solve furiously " }, { "l_orderkey": 576i32, "l_partkey": 87i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 2.0d, "l_extendedprice": 1974.16d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-15", "l_commitdate": "1997-06-30", "l_receiptdate": "1997-05-28", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "ccounts along the ac" }, { "l_orderkey": 709i32, "l_partkey": 87i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 7.0d, "l_extendedprice": 6909.56d, "l_discount": 0.0d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-14", "l_commitdate": "1998-06-08", "l_receiptdate": "1998-06-18", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": " special orbits cajole " }, { "l_orderkey": 865i32, "l_partkey": 87i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 15.0d, "l_extendedprice": 14806.2d, "l_discount": 0.0d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-07-05", "l_commitdate": "1993-06-25", "l_receiptdate": "1993-07-26", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": " deposits sleep quickl" }, { "l_orderkey": 1093i32, "l_partkey": 87i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 7.0d, "l_extendedprice": 6909.56d, "l_discount": 0.04d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-11-24", "l_commitdate": "1997-09-23", "l_receiptdate": "1997-11-25", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "bold deposits. blithely ironic depos" }, { "l_orderkey": 1156i32, "l_partkey": 87i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 15.0d, "l_extendedprice": 14806.2d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-21", "l_commitdate": "1997-01-03", "l_receiptdate": "1997-01-10", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "the furiously pen" }, { "l_orderkey": 1252i32, "l_partkey": 87i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 13.0d, "l_extendedprice": 12832.04d, "l_discount": 0.1d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-07", "l_commitdate": "1997-09-12", "l_receiptdate": "1997-10-01", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "sts dazzle" }, { "l_orderkey": 1540i32, "l_partkey": 87i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 27.0d, "l_extendedprice": 26651.16d, "l_discount": 0.1d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-12-02", "l_commitdate": "1992-10-18", "l_receiptdate": "1992-12-31", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "carefully final packages; b" }, { "l_orderkey": 1766i32, "l_partkey": 87i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 32.0d, "l_extendedprice": 31586.56d, "l_discount": 0.08d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-08", "l_commitdate": "1996-11-11", "l_receiptdate": "1997-01-31", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "ess accounts. stealthily ironic accou" }, { "l_orderkey": 2433i32, "l_partkey": 87i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 39.0d, "l_extendedprice": 38496.12d, "l_discount": 0.01d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-11-20", "l_commitdate": "1994-09-23", "l_receiptdate": "1994-12-10", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "ly final asy" }, { "l_orderkey": 2882i32, "l_partkey": 87i32, "l_suppkey": 8i32, "l_linenumber": 6i32, "l_quantity": 47.0d, "l_extendedprice": 46392.76d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-13", "l_commitdate": "1995-09-21", "l_receiptdate": "1995-09-14", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "l, special" }, { "l_orderkey": 3073i32, "l_partkey": 87i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 10.0d, "l_extendedprice": 9870.8d, "l_discount": 0.03d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-02-11", "l_commitdate": "1994-03-24", "l_receiptdate": "1994-02-26", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": " furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref furiously caref" }, { "l_orderkey": 3107i32, "l_partkey": 87i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 27.0d, "l_extendedprice": 26651.16d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-11-15", "l_commitdate": "1997-10-31", "l_receiptdate": "1997-11-28", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "furiously final " }, { "l_orderkey": 3522i32, "l_partkey": 87i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 48.0d, "l_extendedprice": 47379.84d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-12-05", "l_commitdate": "1994-10-30", "l_receiptdate": "1994-12-26", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "ve the quickly special packages" }, { "l_orderkey": 3556i32, "l_partkey": 87i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 28.0d, "l_extendedprice": 27638.24d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-01-06", "l_commitdate": "1992-11-27", "l_receiptdate": "1993-01-16", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "refully final instructions? ironic packa" }, { "l_orderkey": 3558i32, "l_partkey": 87i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 8.0d, "l_extendedprice": 7896.64d, "l_discount": 0.01d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-31", "l_commitdate": "1996-05-26", "l_receiptdate": "1996-06-25", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "? even requests sle" }, { "l_orderkey": 4132i32, "l_partkey": 87i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 18.0d, "l_extendedprice": 17767.44d, "l_discount": 0.09d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-06-01", "l_commitdate": "1995-08-01", "l_receiptdate": "1995-06-02", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "y final de" }, { "l_orderkey": 4167i32, "l_partkey": 87i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 17.0d, "l_extendedprice": 16780.36d, "l_discount": 0.06d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-09-18", "l_commitdate": "1998-09-06", "l_receiptdate": "1998-10-07", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "ly around the even instr" }, { "l_orderkey": 4196i32, "l_partkey": 87i32, "l_suppkey": 8i32, "l_linenumber": 6i32, "l_quantity": 43.0d, "l_extendedprice": 42444.44d, "l_discount": 0.01d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-12", "l_commitdate": "1998-07-12", "l_receiptdate": "1998-08-22", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "es. slyly even " }, { "l_orderkey": 4294i32, "l_partkey": 87i32, "l_suppkey": 8i32, "l_linenumber": 6i32, "l_quantity": 42.0d, "l_extendedprice": 41457.36d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-09-30", "l_commitdate": "1992-11-13", "l_receiptdate": "1992-10-15", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": " carefully; furiously ex" }, { "l_orderkey": 4545i32, "l_partkey": 87i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 9.0d, "l_extendedprice": 8883.72d, "l_discount": 0.1d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-03-20", "l_commitdate": "1993-02-23", "l_receiptdate": "1993-04-11", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "xpress accounts" }, { "l_orderkey": 4583i32, "l_partkey": 87i32, "l_suppkey": 8i32, "l_linenumber": 7i32, "l_quantity": 32.0d, "l_extendedprice": 31586.56d, "l_discount": 0.04d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-01-13", "l_commitdate": "1994-10-29", "l_receiptdate": "1995-02-08", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "across the pinto beans-- quickly" }, { "l_orderkey": 4610i32, "l_partkey": 87i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 21.0d, "l_extendedprice": 20728.68d, "l_discount": 0.07d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-08-10", "l_commitdate": "1993-08-05", "l_receiptdate": "1993-08-27", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "ly special theodolites. even," }, { "l_orderkey": 4644i32, "l_partkey": 87i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 10.0d, "l_extendedprice": 9870.8d, "l_discount": 0.08d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-12", "l_commitdate": "1998-03-11", "l_receiptdate": "1998-03-19", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": " the slow, final fo" }, { "l_orderkey": 4772i32, "l_partkey": 87i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 1.0d, "l_extendedprice": 987.08d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-11-13", "l_commitdate": "1994-10-25", "l_receiptdate": "1994-11-15", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "ans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly even accans. slyly e" }, { "l_orderkey": 4932i32, "l_partkey": 87i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 5.0d, "l_extendedprice": 4935.4d, "l_discount": 0.06d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-10-01", "l_commitdate": "1993-09-13", "l_receiptdate": "1993-10-04", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": " haggle furiously. slyly ironic packages sl" }, { "l_orderkey": 5027i32, "l_partkey": 87i32, "l_suppkey": 8i32, "l_linenumber": 6i32, "l_quantity": 25.0d, "l_extendedprice": 24677.0d, "l_discount": 0.06d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-16", "l_commitdate": "1997-11-25", "l_receiptdate": "1997-10-08", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "ic ideas. requests sleep fluffily am" }, { "l_orderkey": 5056i32, "l_partkey": 87i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 14.0d, "l_extendedprice": 13819.12d, "l_discount": 0.08d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-09", "l_commitdate": "1997-04-13", "l_receiptdate": "1997-07-06", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "sts haggle carefully along the slyl" }, { "l_orderkey": 5252i32, "l_partkey": 87i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 48.0d, "l_extendedprice": 47379.84d, "l_discount": 0.01d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-04-17", "l_commitdate": "1996-03-19", "l_receiptdate": "1996-05-03", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "bold requests. furious" }, { "l_orderkey": 5281i32, "l_partkey": 87i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 48.0d, "l_extendedprice": 47379.84d, "l_discount": 0.03d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-31", "l_commitdate": "1995-12-23", "l_receiptdate": "1996-02-08", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "ss the furiously " }, { "l_orderkey": 5572i32, "l_partkey": 87i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 19.0d, "l_extendedprice": 18754.52d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-08-12", "l_commitdate": "1994-10-07", "l_receiptdate": "1994-09-01", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "es. final, final requests wake blithely ag" }, { "l_orderkey": 5605i32, "l_partkey": 87i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 50.0d, "l_extendedprice": 49354.0d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-26", "l_commitdate": "1996-10-15", "l_receiptdate": "1996-09-04", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "instructions sleep carefully ironic req" }, { "l_orderkey": 5925i32, "l_partkey": 87i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 42.0d, "l_extendedprice": 41457.36d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-05", "l_commitdate": "1996-01-13", "l_receiptdate": "1996-03-10", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "to the furiously" } ] }
+{ "partkey": 88i32, "lines": [ { "l_orderkey": 67i32, "l_partkey": 88i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 44.0d, "l_extendedprice": 43475.52d, "l_discount": 0.08d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-18", "l_commitdate": "1997-01-29", "l_receiptdate": "1997-04-13", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "se quickly above the even, express reques" }, { "l_orderkey": 99i32, "l_partkey": 88i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 10.0d, "l_extendedprice": 9880.8d, "l_discount": 0.02d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-05-18", "l_commitdate": "1994-06-03", "l_receiptdate": "1994-05-23", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "kages. requ" }, { "l_orderkey": 483i32, "l_partkey": 88i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 9.0d, "l_extendedprice": 8892.72d, "l_discount": 0.04d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-10", "l_commitdate": "1995-09-02", "l_receiptdate": "1995-09-13", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": " carefully express ins" }, { "l_orderkey": 612i32, "l_partkey": 88i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 1.0d, "l_extendedprice": 988.08d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-12-18", "l_commitdate": "1992-12-13", "l_receiptdate": "1992-12-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": " requests." }, { "l_orderkey": 837i32, "l_partkey": 88i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 24.0d, "l_extendedprice": 23713.92d, "l_discount": 0.08d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-06-27", "l_commitdate": "1994-09-02", "l_receiptdate": "1994-07-27", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "p carefully. theodolites use. bold courts a" }, { "l_orderkey": 1031i32, "l_partkey": 88i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 7.0d, "l_extendedprice": 6916.56d, "l_discount": 0.03d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-12-07", "l_commitdate": "1994-11-11", "l_receiptdate": "1994-12-30", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "r instructions. car" }, { "l_orderkey": 1059i32, "l_partkey": 88i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 45.0d, "l_extendedprice": 44463.6d, "l_discount": 0.0d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-06-10", "l_commitdate": "1994-05-08", "l_receiptdate": "1994-06-21", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "riously even theodolites. slyly regula" }, { "l_orderkey": 1792i32, "l_partkey": 88i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 9.0d, "l_extendedprice": 8892.72d, "l_discount": 0.09d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-02-28", "l_commitdate": "1993-12-11", "l_receiptdate": "1994-03-12", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "final packages s" }, { "l_orderkey": 2181i32, "l_partkey": 88i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 46.0d, "l_extendedprice": 45451.68d, "l_discount": 0.0d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-28", "l_commitdate": "1995-10-17", "l_receiptdate": "1995-12-26", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "osits. final packages sleep" }, { "l_orderkey": 2375i32, "l_partkey": 88i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 42.0d, "l_extendedprice": 41499.36d, "l_discount": 0.01d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-24", "l_commitdate": "1997-02-15", "l_receiptdate": "1997-02-07", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "apades. idea" }, { "l_orderkey": 2469i32, "l_partkey": 88i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 35.0d, "l_extendedprice": 34582.8d, "l_discount": 0.06d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-04", "l_commitdate": "1997-02-02", "l_receiptdate": "1997-02-17", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "ld packages haggle regular frets. fluffily " }, { "l_orderkey": 2595i32, "l_partkey": 88i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 30.0d, "l_extendedprice": 29642.4d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-05", "l_commitdate": "1996-02-23", "l_receiptdate": "1996-03-19", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "ctions. regula" }, { "l_orderkey": 2854i32, "l_partkey": 88i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 29.0d, "l_extendedprice": 28654.32d, "l_discount": 0.09d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-07-06", "l_commitdate": "1994-08-26", "l_receiptdate": "1994-07-09", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "y slyly ironic accounts. foxes haggle slyl" }, { "l_orderkey": 3045i32, "l_partkey": 88i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 41.0d, "l_extendedprice": 40511.28d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-30", "l_commitdate": "1995-11-24", "l_receiptdate": "1995-10-03", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "ely final foxes. carefully ironic pinto b" }, { "l_orderkey": 3072i32, "l_partkey": 88i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 1.0d, "l_extendedprice": 988.08d, "l_discount": 0.01d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-02-26", "l_commitdate": "1994-03-14", "l_receiptdate": "1994-03-19", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": " slyly ironic attainments. car" }, { "l_orderkey": 3394i32, "l_partkey": 88i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 26.0d, "l_extendedprice": 25690.08d, "l_discount": 0.01d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-08", "l_commitdate": "1996-06-12", "l_receiptdate": "1996-09-05", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "its use furiously. even, even account" }, { "l_orderkey": 3588i32, "l_partkey": 88i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 6.0d, "l_extendedprice": 5928.48d, "l_discount": 0.06d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-04-09", "l_commitdate": "1995-05-30", "l_receiptdate": "1995-04-10", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "s. fluffily fluf" }, { "l_orderkey": 3623i32, "l_partkey": 88i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 30.0d, "l_extendedprice": 29642.4d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-04", "l_commitdate": "1997-03-03", "l_receiptdate": "1997-05-01", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": " ironic somas sleep fluffily" }, { "l_orderkey": 3842i32, "l_partkey": 88i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 15.0d, "l_extendedprice": 14821.2d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-06-26", "l_commitdate": "1992-06-23", "l_receiptdate": "1992-07-09", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "ave packages are slyl" }, { "l_orderkey": 3878i32, "l_partkey": 88i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 13.0d, "l_extendedprice": 12845.04d, "l_discount": 0.01d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-08", "l_commitdate": "1997-06-03", "l_receiptdate": "1997-06-25", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "leep ruthlessly about the carefu" }, { "l_orderkey": 3970i32, "l_partkey": 88i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 2.0d, "l_extendedprice": 1976.16d, "l_discount": 0.01d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-04-24", "l_commitdate": "1992-06-03", "l_receiptdate": "1992-05-16", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "carefully pending foxes wake blithely " }, { "l_orderkey": 4293i32, "l_partkey": 88i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 25.0d, "l_extendedprice": 24702.0d, "l_discount": 0.04d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-11", "l_commitdate": "1996-11-14", "l_receiptdate": "1996-09-22", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "inal asympt" }, { "l_orderkey": 4640i32, "l_partkey": 88i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 5.0d, "l_extendedprice": 4940.4d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-02-05", "l_commitdate": "1996-02-14", "l_receiptdate": "1996-02-15", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": " warthogs against the regular" }, { "l_orderkey": 4640i32, "l_partkey": 88i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 9.0d, "l_extendedprice": 8892.72d, "l_discount": 0.03d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-02-12", "l_commitdate": "1996-02-14", "l_receiptdate": "1996-02-29", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": " accounts. unu" }, { "l_orderkey": 5158i32, "l_partkey": 88i32, "l_suppkey": 9i32, "l_linenumber": 6i32, "l_quantity": 39.0d, "l_extendedprice": 38535.12d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-15", "l_commitdate": "1997-04-04", "l_receiptdate": "1997-06-02", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "lithely fina" }, { "l_orderkey": 5184i32, "l_partkey": 88i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 39.0d, "l_extendedprice": 38535.12d, "l_discount": 0.03d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-10-27", "l_commitdate": "1998-10-17", "l_receiptdate": "1998-11-19", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "es above the care" }, { "l_orderkey": 5442i32, "l_partkey": 88i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 45.0d, "l_extendedprice": 44463.6d, "l_discount": 0.08d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-30", "l_commitdate": "1998-02-24", "l_receiptdate": "1998-04-18", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "old slyly after " }, { "l_orderkey": 5703i32, "l_partkey": 88i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 2.0d, "l_extendedprice": 1976.16d, "l_discount": 0.09d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-05-29", "l_commitdate": "1993-07-26", "l_receiptdate": "1993-06-05", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "nts against the blithely sile" }, { "l_orderkey": 5957i32, "l_partkey": 88i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 40.0d, "l_extendedprice": 39523.2d, "l_discount": 0.04d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-01-07", "l_commitdate": "1994-02-05", "l_receiptdate": "1994-01-26", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "ironic asymptotes sleep blithely again" } ] }
+{ "partkey": 89i32, "lines": [ { "l_orderkey": 4i32, "l_partkey": 89i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 30.0d, "l_extendedprice": 29672.4d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-10", "l_commitdate": "1995-12-14", "l_receiptdate": "1996-01-18", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "- quickly regular packages sleep. idly" }, { "l_orderkey": 34i32, "l_partkey": 89i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 13.0d, "l_extendedprice": 12858.04d, "l_discount": 0.0d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-10-23", "l_commitdate": "1998-09-14", "l_receiptdate": "1998-11-06", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "nic accounts. deposits are alon" }, { "l_orderkey": 102i32, "l_partkey": 89i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 37.0d, "l_extendedprice": 36595.96d, "l_discount": 0.06d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-24", "l_commitdate": "1997-08-02", "l_receiptdate": "1997-08-07", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "ully across the ideas. final deposit" }, { "l_orderkey": 256i32, "l_partkey": 89i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 22.0d, "l_extendedprice": 21759.76d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-01-12", "l_commitdate": "1993-12-28", "l_receiptdate": "1994-01-26", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "ke quickly ironic, ironic deposits. reg" }, { "l_orderkey": 1058i32, "l_partkey": 89i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 5.0d, "l_extendedprice": 4945.4d, "l_discount": 0.04d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-05-11", "l_commitdate": "1993-05-29", "l_receiptdate": "1993-05-27", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "refully even requests boost along" }, { "l_orderkey": 1702i32, "l_partkey": 89i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 34.0d, "l_extendedprice": 33628.72d, "l_discount": 0.01d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-04", "l_commitdate": "1995-06-08", "l_receiptdate": "1995-07-28", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "y careful packages; dogged acco" }, { "l_orderkey": 2081i32, "l_partkey": 89i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 26.0d, "l_extendedprice": 25716.08d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-10-21", "l_commitdate": "1997-10-03", "l_receiptdate": "1997-11-10", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "among the slyly express accounts. silen" }, { "l_orderkey": 2405i32, "l_partkey": 89i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 18.0d, "l_extendedprice": 17803.44d, "l_discount": 0.09d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-23", "l_commitdate": "1997-03-10", "l_receiptdate": "1997-02-03", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "carefully ironic accounts. slyly " }, { "l_orderkey": 2688i32, "l_partkey": 89i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 30.0d, "l_extendedprice": 29672.4d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-04-18", "l_commitdate": "1992-03-18", "l_receiptdate": "1992-05-18", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "ithely final " }, { "l_orderkey": 2753i32, "l_partkey": 89i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 30.0d, "l_extendedprice": 29672.4d, "l_discount": 0.0d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-01-26", "l_commitdate": "1994-01-29", "l_receiptdate": "1994-02-02", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "ans wake fluffily blithely iro" }, { "l_orderkey": 3110i32, "l_partkey": 89i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 1.0d, "l_extendedprice": 989.08d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-01-15", "l_commitdate": "1995-01-20", "l_receiptdate": "1995-01-30", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "c theodolites a" }, { "l_orderkey": 3140i32, "l_partkey": 89i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 10.0d, "l_extendedprice": 9890.8d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-05-30", "l_commitdate": "1992-05-09", "l_receiptdate": "1992-06-09", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "accounts. expres" }, { "l_orderkey": 3170i32, "l_partkey": 89i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 27.0d, "l_extendedprice": 26705.16d, "l_discount": 0.0d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-02-25", "l_commitdate": "1998-01-29", "l_receiptdate": "1998-02-27", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "efully bold foxes. regular, ev" }, { "l_orderkey": 3429i32, "l_partkey": 89i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 28.0d, "l_extendedprice": 27694.24d, "l_discount": 0.1d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-30", "l_commitdate": "1997-03-18", "l_receiptdate": "1997-02-17", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "nstructions boost. thin" }, { "l_orderkey": 3622i32, "l_partkey": 89i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 4.0d, "l_extendedprice": 3956.32d, "l_discount": 0.04d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-02-03", "l_commitdate": "1996-02-19", "l_receiptdate": "1996-02-16", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "lithely brave foxes. furi" }, { "l_orderkey": 3649i32, "l_partkey": 89i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 23.0d, "l_extendedprice": 22748.84d, "l_discount": 0.08d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-09-26", "l_commitdate": "1994-10-01", "l_receiptdate": "1994-09-28", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "rs promise blithe" }, { "l_orderkey": 3940i32, "l_partkey": 89i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 8.0d, "l_extendedprice": 7912.64d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-04-04", "l_commitdate": "1996-04-12", "l_receiptdate": "1996-04-18", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "ions cajole furiously regular pinto beans. " }, { "l_orderkey": 4384i32, "l_partkey": 89i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 38.0d, "l_extendedprice": 37585.04d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-10-18", "l_commitdate": "1992-09-24", "l_receiptdate": "1992-11-04", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "ly final requests. regu" }, { "l_orderkey": 4384i32, "l_partkey": 89i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 11.0d, "l_extendedprice": 10879.88d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-08-31", "l_commitdate": "1992-10-04", "l_receiptdate": "1992-09-28", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "deposits promise carefully even, regular e" }, { "l_orderkey": 4416i32, "l_partkey": 89i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 3.0d, "l_extendedprice": 2967.24d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-10-22", "l_commitdate": "1992-08-06", "l_receiptdate": "1992-11-13", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": " requests sleep along the " }, { "l_orderkey": 4549i32, "l_partkey": 89i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 1.0d, "l_extendedprice": 989.08d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-04", "l_commitdate": "1998-04-11", "l_receiptdate": "1998-05-14", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": " requests wake. furiously even " }, { "l_orderkey": 4705i32, "l_partkey": 89i32, "l_suppkey": 10i32, "l_linenumber": 7i32, "l_quantity": 40.0d, "l_extendedprice": 39563.2d, "l_discount": 0.08d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-04-19", "l_commitdate": "1992-04-28", "l_receiptdate": "1992-05-07", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "blithely. sly" }, { "l_orderkey": 5121i32, "l_partkey": 89i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 46.0d, "l_extendedprice": 45497.68d, "l_discount": 0.03d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-05-27", "l_commitdate": "1992-07-19", "l_receiptdate": "1992-05-28", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "use express foxes. slyly " }, { "l_orderkey": 5186i32, "l_partkey": 89i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 26.0d, "l_extendedprice": 25716.08d, "l_discount": 0.03d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-08", "l_commitdate": "1996-10-05", "l_receiptdate": "1996-08-21", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "capades. accounts sublate. pinto" }, { "l_orderkey": 5190i32, "l_partkey": 89i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 45.0d, "l_extendedprice": 44508.6d, "l_discount": 0.04d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-07-23", "l_commitdate": "1992-06-16", "l_receiptdate": "1992-08-04", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "y carefully final ideas. f" }, { "l_orderkey": 5568i32, "l_partkey": 89i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 35.0d, "l_extendedprice": 34617.8d, "l_discount": 0.08d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-17", "l_commitdate": "1995-09-04", "l_receiptdate": "1995-10-14", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "lyly. blit" }, { "l_orderkey": 5762i32, "l_partkey": 89i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 40.0d, "l_extendedprice": 39563.2d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-30", "l_commitdate": "1997-05-09", "l_receiptdate": "1997-05-08", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "al instructions. furiousl" }, { "l_orderkey": 5925i32, "l_partkey": 89i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 50.0d, "l_extendedprice": 49454.0d, "l_discount": 0.03d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-02-14", "l_commitdate": "1996-01-10", "l_receiptdate": "1996-02-15", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "es. stealthily express pains print bli" } ] }
+{ "partkey": 90i32, "lines": [ { "l_orderkey": 34i32, "l_partkey": 90i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 22.0d, "l_extendedprice": 21781.98d, "l_discount": 0.08d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-10-09", "l_commitdate": "1998-10-16", "l_receiptdate": "1998-10-12", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "thely slyly p" }, { "l_orderkey": 133i32, "l_partkey": 90i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 11.0d, "l_extendedprice": 10890.99d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-21", "l_commitdate": "1998-01-15", "l_receiptdate": "1998-04-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "e quickly across the dolphins" }, { "l_orderkey": 359i32, "l_partkey": 90i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 38.0d, "l_extendedprice": 37623.42d, "l_discount": 0.1d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-03-30", "l_commitdate": "1995-01-20", "l_receiptdate": "1995-04-25", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "g furiously. regular, sile" }, { "l_orderkey": 646i32, "l_partkey": 90i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 17.0d, "l_extendedprice": 16831.53d, "l_discount": 0.04d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-12-31", "l_commitdate": "1994-12-26", "l_receiptdate": "1995-01-01", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "inal packages haggle carefully " }, { "l_orderkey": 710i32, "l_partkey": 90i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 25.0d, "l_extendedprice": 24752.25d, "l_discount": 0.0d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-03-31", "l_commitdate": "1993-02-05", "l_receiptdate": "1993-04-22", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "eas detect do" }, { "l_orderkey": 1058i32, "l_partkey": 90i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 44.0d, "l_extendedprice": 43563.96d, "l_discount": 0.1d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-06-26", "l_commitdate": "1993-06-21", "l_receiptdate": "1993-07-20", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "uriously f" }, { "l_orderkey": 1509i32, "l_partkey": 90i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 37.0d, "l_extendedprice": 36633.33d, "l_discount": 0.01d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-08-31", "l_commitdate": "1993-09-10", "l_receiptdate": "1993-09-24", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "he slyly even deposits wake a" }, { "l_orderkey": 1568i32, "l_partkey": 90i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 36.0d, "l_extendedprice": 35643.24d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-31", "l_commitdate": "1997-04-22", "l_receiptdate": "1997-06-21", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "platelets-- furiously sly excu" }, { "l_orderkey": 1601i32, "l_partkey": 90i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 14.0d, "l_extendedprice": 13861.26d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-09-17", "l_commitdate": "1994-11-22", "l_receiptdate": "1994-10-03", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "he special, fin" }, { "l_orderkey": 1635i32, "l_partkey": 90i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 8.0d, "l_extendedprice": 7920.72d, "l_discount": 0.04d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-30", "l_commitdate": "1997-04-21", "l_receiptdate": "1997-05-09", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "ravely carefully express " }, { "l_orderkey": 1827i32, "l_partkey": 90i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 47.0d, "l_extendedprice": 46534.23d, "l_discount": 0.0d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-01", "l_commitdate": "1996-08-07", "l_receiptdate": "1996-08-23", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": ". pending courts about the even e" }, { "l_orderkey": 2272i32, "l_partkey": 90i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 18.0d, "l_extendedprice": 17821.62d, "l_discount": 0.04d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-08-01", "l_commitdate": "1993-07-06", "l_receiptdate": "1993-08-25", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "ons along the blithely e" }, { "l_orderkey": 2311i32, "l_partkey": 90i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 42.0d, "l_extendedprice": 41583.78d, "l_discount": 0.01d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-06-03", "l_commitdate": "1995-06-27", "l_receiptdate": "1995-06-11", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "gle furiously. bold " }, { "l_orderkey": 2400i32, "l_partkey": 90i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 1.0d, "l_extendedprice": 990.09d, "l_discount": 0.04d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-18", "l_commitdate": "1998-09-12", "l_receiptdate": "1998-09-11", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "silent deposits serve furious" }, { "l_orderkey": 2563i32, "l_partkey": 90i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 50.0d, "l_extendedprice": 49504.5d, "l_discount": 0.01d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-01-26", "l_commitdate": "1994-01-03", "l_receiptdate": "1994-02-09", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "ly regular, regular excuses. bold plate" }, { "l_orderkey": 2592i32, "l_partkey": 90i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 7.0d, "l_extendedprice": 6930.63d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-03-13", "l_commitdate": "1993-04-25", "l_receiptdate": "1993-04-01", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": " carefully special theodolites integrate " }, { "l_orderkey": 2593i32, "l_partkey": 90i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 28.0d, "l_extendedprice": 27722.52d, "l_discount": 0.08d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-10-30", "l_commitdate": "1993-10-18", "l_receiptdate": "1993-11-06", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "y even escapades shall" }, { "l_orderkey": 2628i32, "l_partkey": 90i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 50.0d, "l_extendedprice": 49504.5d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-01-13", "l_commitdate": "1993-12-11", "l_receiptdate": "1994-01-14", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "posits serve carefully toward " }, { "l_orderkey": 2917i32, "l_partkey": 90i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 4.0d, "l_extendedprice": 3960.36d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-10", "l_commitdate": "1998-01-18", "l_receiptdate": "1998-02-08", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "s. unusual instruct" }, { "l_orderkey": 2944i32, "l_partkey": 90i32, "l_suppkey": 1i32, "l_linenumber": 7i32, "l_quantity": 7.0d, "l_extendedprice": 6930.63d, "l_discount": 0.01d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-10-30", "l_commitdate": "1997-11-03", "l_receiptdate": "1997-11-03", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "fluffily blithely express pea" }, { "l_orderkey": 2978i32, "l_partkey": 90i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 29.0d, "l_extendedprice": 28712.61d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-06-03", "l_commitdate": "1995-07-25", "l_receiptdate": "1995-06-06", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "ecial ideas promise slyly" }, { "l_orderkey": 3105i32, "l_partkey": 90i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 8.0d, "l_extendedprice": 7920.72d, "l_discount": 0.07d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-28", "l_commitdate": "1996-12-28", "l_receiptdate": "1997-01-25", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "s. blithely unusual ideas was after" }, { "l_orderkey": 3143i32, "l_partkey": 90i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 22.0d, "l_extendedprice": 21781.98d, "l_discount": 0.02d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-05-11", "l_commitdate": "1993-03-26", "l_receiptdate": "1993-05-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "l, special instructions nag " }, { "l_orderkey": 3170i32, "l_partkey": 90i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 32.0d, "l_extendedprice": 31682.88d, "l_discount": 0.02d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-11-24", "l_commitdate": "1997-12-12", "l_receiptdate": "1997-12-15", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "ggle about the furiously r" }, { "l_orderkey": 3335i32, "l_partkey": 90i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 47.0d, "l_extendedprice": 46534.23d, "l_discount": 0.1d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-02", "l_commitdate": "1995-11-19", "l_receiptdate": "1995-12-27", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": " quickly special ideas." }, { "l_orderkey": 3364i32, "l_partkey": 90i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 49.0d, "l_extendedprice": 48514.41d, "l_discount": 0.03d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-17", "l_commitdate": "1997-08-23", "l_receiptdate": "1997-10-06", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "d accounts? caref" }, { "l_orderkey": 3461i32, "l_partkey": 90i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 16.0d, "l_extendedprice": 15841.44d, "l_discount": 0.08d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-05-09", "l_commitdate": "1993-04-29", "l_receiptdate": "1993-05-26", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": " pending deposi" }, { "l_orderkey": 3552i32, "l_partkey": 90i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 44.0d, "l_extendedprice": 43563.96d, "l_discount": 0.01d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-08", "l_commitdate": "1997-06-15", "l_receiptdate": "1997-08-29", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "ns after the blithely reg" }, { "l_orderkey": 3559i32, "l_partkey": 90i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 29.0d, "l_extendedprice": 28712.61d, "l_discount": 0.0d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-12-10", "l_commitdate": "1992-12-03", "l_receiptdate": "1992-12-20", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "l, regular accounts wake flu" }, { "l_orderkey": 3713i32, "l_partkey": 90i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 46.0d, "l_extendedprice": 45544.14d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-22", "l_commitdate": "1998-06-27", "l_receiptdate": "1998-08-31", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "totes. carefully special theodolites s" }, { "l_orderkey": 3719i32, "l_partkey": 90i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 13.0d, "l_extendedprice": 12871.17d, "l_discount": 0.02d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-03", "l_commitdate": "1997-04-16", "l_receiptdate": "1997-05-27", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "iously. regular dep" }, { "l_orderkey": 4067i32, "l_partkey": 90i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 40.0d, "l_extendedprice": 39603.6d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-01-09", "l_commitdate": "1992-11-21", "l_receiptdate": "1993-01-16", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "lar theodolites nag blithely above the" }, { "l_orderkey": 4162i32, "l_partkey": 90i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 29.0d, "l_extendedprice": 28712.61d, "l_discount": 0.0d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-02-25", "l_commitdate": "1992-04-25", "l_receiptdate": "1992-03-17", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "nding pinto beans haggle blithe" }, { "l_orderkey": 4386i32, "l_partkey": 90i32, "l_suppkey": 1i32, "l_linenumber": 6i32, "l_quantity": 18.0d, "l_extendedprice": 17821.62d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-12", "l_commitdate": "1998-04-09", "l_receiptdate": "1998-05-12", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": " deposits use according to the pending, " }, { "l_orderkey": 4576i32, "l_partkey": 90i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 5.0d, "l_extendedprice": 4950.45d, "l_discount": 0.09d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-23", "l_commitdate": "1996-11-08", "l_receiptdate": "1996-09-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "ly express, special asymptote" }, { "l_orderkey": 5056i32, "l_partkey": 90i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 23.0d, "l_extendedprice": 22772.07d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-12", "l_commitdate": "1997-04-28", "l_receiptdate": "1997-05-25", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "ickly regular requests cajole. depos" }, { "l_orderkey": 5186i32, "l_partkey": 90i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 8.0d, "l_extendedprice": 7920.72d, "l_discount": 0.1d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-23", "l_commitdate": "1996-09-29", "l_receiptdate": "1996-09-30", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "y regular notornis k" }, { "l_orderkey": 5445i32, "l_partkey": 90i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 33.0d, "l_extendedprice": 32672.97d, "l_discount": 0.08d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-10-21", "l_commitdate": "1993-10-14", "l_receiptdate": "1993-10-28", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "ests. final instructions" }, { "l_orderkey": 5474i32, "l_partkey": 90i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 46.0d, "l_extendedprice": 45544.14d, "l_discount": 0.03d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-06-07", "l_commitdate": "1992-07-11", "l_receiptdate": "1992-06-22", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "nstructions. furio" }, { "l_orderkey": 5536i32, "l_partkey": 90i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 14.0d, "l_extendedprice": 13861.26d, "l_discount": 0.08d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-18", "l_commitdate": "1998-05-08", "l_receiptdate": "1998-06-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "instructions sleep " }, { "l_orderkey": 5636i32, "l_partkey": 90i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 21.0d, "l_extendedprice": 20791.89d, "l_discount": 0.03d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-03-13", "l_commitdate": "1995-05-11", "l_receiptdate": "1995-03-24", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": " are furiously unusual " }, { "l_orderkey": 5669i32, "l_partkey": 90i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 31.0d, "l_extendedprice": 30692.79d, "l_discount": 0.04d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-05", "l_commitdate": "1996-06-10", "l_receiptdate": "1996-08-29", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "to beans against the regular depo" }, { "l_orderkey": 5670i32, "l_partkey": 90i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 27.0d, "l_extendedprice": 26732.43d, "l_discount": 0.1d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-05-09", "l_commitdate": "1993-05-30", "l_receiptdate": "1993-06-06", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": " ideas promise bli" }, { "l_orderkey": 5829i32, "l_partkey": 90i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 42.0d, "l_extendedprice": 41583.78d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-26", "l_commitdate": "1997-04-01", "l_receiptdate": "1997-03-30", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "pearls. slyly bold deposits solve final" }, { "l_orderkey": 5922i32, "l_partkey": 90i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 35.0d, "l_extendedprice": 34653.15d, "l_discount": 0.08d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-12", "l_commitdate": "1997-01-21", "l_receiptdate": "1997-01-01", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "accounts. regu" }, { "l_orderkey": 5926i32, "l_partkey": 90i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 8.0d, "l_extendedprice": 7920.72d, "l_discount": 0.02d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-07-17", "l_commitdate": "1994-07-20", "l_receiptdate": "1994-08-11", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "gle furiously express foxes. bo" }, { "l_orderkey": 5927i32, "l_partkey": 90i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 44.0d, "l_extendedprice": 43563.96d, "l_discount": 0.04d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-11-29", "l_commitdate": "1997-11-21", "l_receiptdate": "1997-12-13", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "rding to the special, final decoy" }, { "l_orderkey": 5986i32, "l_partkey": 90i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 31.0d, "l_extendedprice": 30692.79d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-08-21", "l_commitdate": "1992-06-29", "l_receiptdate": "1992-09-14", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "structions! furiously pending instructi" } ] }
+{ "partkey": 91i32, "lines": [ { "l_orderkey": 613i32, "l_partkey": 91i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 17.0d, "l_extendedprice": 16848.53d, "l_discount": 0.06d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-23", "l_commitdate": "1995-08-04", "l_receiptdate": "1995-10-15", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "ar dependencie" }, { "l_orderkey": 741i32, "l_partkey": 91i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 22.0d, "l_extendedprice": 21803.98d, "l_discount": 0.09d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-09-07", "l_commitdate": "1998-09-28", "l_receiptdate": "1998-09-12", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "ven deposits about the regular, ironi" }, { "l_orderkey": 806i32, "l_partkey": 91i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 4.0d, "l_extendedprice": 3964.36d, "l_discount": 0.04d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-09", "l_commitdate": "1996-09-18", "l_receiptdate": "1996-08-13", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "eans. quickly ironic ideas " }, { "l_orderkey": 897i32, "l_partkey": 91i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 15.0d, "l_extendedprice": 14866.35d, "l_discount": 0.07d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-05-25", "l_commitdate": "1995-05-09", "l_receiptdate": "1995-06-07", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "r ideas. slyly spec" }, { "l_orderkey": 961i32, "l_partkey": 91i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 18.0d, "l_extendedprice": 17839.62d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-01", "l_commitdate": "1995-08-14", "l_receiptdate": "1995-07-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "rmanent foxes haggle speci" }, { "l_orderkey": 1794i32, "l_partkey": 91i32, "l_suppkey": 3i32, "l_linenumber": 6i32, "l_quantity": 37.0d, "l_extendedprice": 36670.33d, "l_discount": 0.01d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-12", "l_commitdate": "1997-12-21", "l_receiptdate": "1998-01-17", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "ackages. pinto" }, { "l_orderkey": 2117i32, "l_partkey": 91i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 24.0d, "l_extendedprice": 23786.16d, "l_discount": 0.0d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-15", "l_commitdate": "1997-05-27", "l_receiptdate": "1997-06-18", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "thely slyly pending platelets. ironic, " }, { "l_orderkey": 2181i32, "l_partkey": 91i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 15.0d, "l_extendedprice": 14866.35d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-05", "l_commitdate": "1995-10-27", "l_receiptdate": "1995-11-03", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "e above the fluffily regul" }, { "l_orderkey": 2275i32, "l_partkey": 91i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 11.0d, "l_extendedprice": 10901.99d, "l_discount": 0.08d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-01-16", "l_commitdate": "1992-12-10", "l_receiptdate": "1993-01-25", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "ost across the never express instruction" }, { "l_orderkey": 2373i32, "l_partkey": 91i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 5.0d, "l_extendedprice": 4955.45d, "l_discount": 0.1d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-06-02", "l_commitdate": "1994-05-03", "l_receiptdate": "1994-06-21", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "uffily blithely ironic requests" }, { "l_orderkey": 2407i32, "l_partkey": 91i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 10.0d, "l_extendedprice": 9910.9d, "l_discount": 0.01d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-14", "l_commitdate": "1998-09-10", "l_receiptdate": "1998-08-29", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": " pending instructions. theodolites x-" }, { "l_orderkey": 2503i32, "l_partkey": 91i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 27.0d, "l_extendedprice": 26759.43d, "l_discount": 0.09d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-07-12", "l_commitdate": "1993-07-24", "l_receiptdate": "1993-07-22", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "lly even p" }, { "l_orderkey": 2691i32, "l_partkey": 91i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 11.0d, "l_extendedprice": 10901.99d, "l_discount": 0.04d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-06-21", "l_commitdate": "1992-06-08", "l_receiptdate": "1992-07-09", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "leep alongside of the accounts. slyly ironi" }, { "l_orderkey": 2818i32, "l_partkey": 91i32, "l_suppkey": 5i32, "l_linenumber": 6i32, "l_quantity": 7.0d, "l_extendedprice": 6937.63d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-03-24", "l_commitdate": "1995-03-09", "l_receiptdate": "1995-04-06", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "ly according to the r" }, { "l_orderkey": 3015i32, "l_partkey": 91i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 23.0d, "l_extendedprice": 22795.07d, "l_discount": 0.03d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-12-03", "l_commitdate": "1992-11-19", "l_receiptdate": "1992-12-23", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "s are slyly carefully special pinto bea" }, { "l_orderkey": 3043i32, "l_partkey": 91i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 5.0d, "l_extendedprice": 4955.45d, "l_discount": 0.1d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-05-22", "l_commitdate": "1992-07-02", "l_receiptdate": "1992-06-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "ake blithely re" }, { "l_orderkey": 3077i32, "l_partkey": 91i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 40.0d, "l_extendedprice": 39643.6d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-10-22", "l_commitdate": "1997-09-19", "l_receiptdate": "1997-11-19", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "to the enticing packag" }, { "l_orderkey": 3105i32, "l_partkey": 91i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 23.0d, "l_extendedprice": 22795.07d, "l_discount": 0.04d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-08", "l_commitdate": "1996-12-14", "l_receiptdate": "1997-03-18", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": " detect slyly. blithely unusual requests ar" }, { "l_orderkey": 3360i32, "l_partkey": 91i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 29.0d, "l_extendedprice": 28741.61d, "l_discount": 0.0d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-15", "l_commitdate": "1998-02-25", "l_receiptdate": "1998-05-13", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "press asymptotes. furiously final " }, { "l_orderkey": 3558i32, "l_partkey": 91i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 22.0d, "l_extendedprice": 21803.98d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-04-27", "l_commitdate": "1996-04-19", "l_receiptdate": "1996-04-30", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "refully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are furefully ironic theodolites are f" }, { "l_orderkey": 3588i32, "l_partkey": 91i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 28.0d, "l_extendedprice": 27750.52d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-05-03", "l_commitdate": "1995-05-03", "l_receiptdate": "1995-05-14", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "special pinto beans cajole slyly. slyly " }, { "l_orderkey": 4321i32, "l_partkey": 91i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 4.0d, "l_extendedprice": 3964.36d, "l_discount": 0.02d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-09-10", "l_commitdate": "1994-10-06", "l_receiptdate": "1994-09-11", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "ironic deposi" }, { "l_orderkey": 4448i32, "l_partkey": 91i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 41.0d, "l_extendedprice": 40634.69d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-30", "l_commitdate": "1998-08-09", "l_receiptdate": "1998-08-03", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "pon the permanently even excuses nag " }, { "l_orderkey": 4486i32, "l_partkey": 91i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 28.0d, "l_extendedprice": 27750.52d, "l_discount": 0.07d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-21", "l_commitdate": "1998-04-19", "l_receiptdate": "1998-04-26", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "to the furious, regular foxes play abov" }, { "l_orderkey": 4835i32, "l_partkey": 91i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 3.0d, "l_extendedprice": 2973.27d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-01-24", "l_commitdate": "1995-01-12", "l_receiptdate": "1995-02-16", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "etimes final pac" }, { "l_orderkey": 5158i32, "l_partkey": 91i32, "l_suppkey": 5i32, "l_linenumber": 7i32, "l_quantity": 38.0d, "l_extendedprice": 37661.42d, "l_discount": 0.1d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-09", "l_commitdate": "1997-03-03", "l_receiptdate": "1997-06-04", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "uffily regular ac" }, { "l_orderkey": 5186i32, "l_partkey": 91i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 31.0d, "l_extendedprice": 30723.79d, "l_discount": 0.09d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-19", "l_commitdate": "1996-09-26", "l_receiptdate": "1996-10-25", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": " accounts use furiously slyly spe" }, { "l_orderkey": 5376i32, "l_partkey": 91i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 44.0d, "l_extendedprice": 43607.96d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-08-30", "l_commitdate": "1994-08-05", "l_receiptdate": "1994-09-07", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "ithe packages detect final theodolites. f" } ] }
+{ "partkey": 92i32, "lines": [ { "l_orderkey": 164i32, "l_partkey": 92i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 26.0d, "l_extendedprice": 25794.34d, "l_discount": 0.09d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-01-04", "l_commitdate": "1992-11-21", "l_receiptdate": "1993-01-07", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "s. blithely special courts are blithel" }, { "l_orderkey": 295i32, "l_partkey": 92i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 26.0d, "l_extendedprice": 25794.34d, "l_discount": 0.04d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-12-13", "l_commitdate": "1994-11-30", "l_receiptdate": "1995-01-06", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "ts above the slyly regular requests x-ray q" }, { "l_orderkey": 487i32, "l_partkey": 92i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 47.0d, "l_extendedprice": 46628.23d, "l_discount": 0.06d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-09-30", "l_commitdate": "1992-10-08", "l_receiptdate": "1992-10-24", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "tions. blithely reg" }, { "l_orderkey": 992i32, "l_partkey": 92i32, "l_suppkey": 4i32, "l_linenumber": 5i32, "l_quantity": 7.0d, "l_extendedprice": 6944.63d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-11-30", "l_commitdate": "1997-12-24", "l_receiptdate": "1997-12-16", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "ideas haggle. special theodolit" }, { "l_orderkey": 1122i32, "l_partkey": 92i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 8.0d, "l_extendedprice": 7936.72d, "l_discount": 0.1d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-02", "l_commitdate": "1997-04-03", "l_receiptdate": "1997-02-22", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "c foxes are along the slyly r" }, { "l_orderkey": 1153i32, "l_partkey": 92i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 43.0d, "l_extendedprice": 42659.87d, "l_discount": 0.01d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-09", "l_commitdate": "1996-06-01", "l_receiptdate": "1996-07-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "special instructions are. unusual, final du" }, { "l_orderkey": 1186i32, "l_partkey": 92i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 11.0d, "l_extendedprice": 10912.99d, "l_discount": 0.07d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-03", "l_commitdate": "1996-10-21", "l_receiptdate": "1996-10-17", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "s haggle furiously; slyl" }, { "l_orderkey": 1252i32, "l_partkey": 92i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 11.0d, "l_extendedprice": 10912.99d, "l_discount": 0.1d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-10-16", "l_commitdate": "1997-09-22", "l_receiptdate": "1997-10-28", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "s are. slyly final requests among the" }, { "l_orderkey": 1280i32, "l_partkey": 92i32, "l_suppkey": 6i32, "l_linenumber": 7i32, "l_quantity": 19.0d, "l_extendedprice": 18849.71d, "l_discount": 0.02d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-02-07", "l_commitdate": "1993-02-28", "l_receiptdate": "1993-02-12", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "lyly along the furiously regular " }, { "l_orderkey": 1474i32, "l_partkey": 92i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 18.0d, "l_extendedprice": 17857.62d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-01-23", "l_commitdate": "1995-03-28", "l_receiptdate": "1995-02-03", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "after the special" }, { "l_orderkey": 1986i32, "l_partkey": 92i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 12.0d, "l_extendedprice": 11905.08d, "l_discount": 0.06d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-08-17", "l_commitdate": "1994-06-28", "l_receiptdate": "1994-09-02", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "sleep furiously fluffily final" }, { "l_orderkey": 2144i32, "l_partkey": 92i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 33.0d, "l_extendedprice": 32738.97d, "l_discount": 0.0d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-04-04", "l_commitdate": "1994-06-20", "l_receiptdate": "1994-04-23", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": " ironic excuses haggle final dependencies. " }, { "l_orderkey": 2658i32, "l_partkey": 92i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 22.0d, "l_extendedprice": 21825.98d, "l_discount": 0.04d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-02", "l_commitdate": "1995-11-03", "l_receiptdate": "1995-12-26", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": " dependencies. blithely pending foxes abou" }, { "l_orderkey": 2724i32, "l_partkey": 92i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 47.0d, "l_extendedprice": 46628.23d, "l_discount": 0.09d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-11-23", "l_commitdate": "1994-11-13", "l_receiptdate": "1994-12-03", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "unusual patterns nag. special p" }, { "l_orderkey": 2755i32, "l_partkey": 92i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 19.0d, "l_extendedprice": 18849.71d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-02-11", "l_commitdate": "1992-03-15", "l_receiptdate": "1992-02-14", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "furiously special deposits" }, { "l_orderkey": 2948i32, "l_partkey": 92i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 49.0d, "l_extendedprice": 48612.41d, "l_discount": 0.04d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-12-16", "l_commitdate": "1994-11-08", "l_receiptdate": "1995-01-07", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "ress requests. furiously blithe foxes " }, { "l_orderkey": 3010i32, "l_partkey": 92i32, "l_suppkey": 3i32, "l_linenumber": 6i32, "l_quantity": 38.0d, "l_extendedprice": 37699.42d, "l_discount": 0.05d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-04-15", "l_commitdate": "1996-03-16", "l_receiptdate": "1996-04-21", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "accounts ar" }, { "l_orderkey": 3174i32, "l_partkey": 92i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 21.0d, "l_extendedprice": 20833.89d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-02-20", "l_commitdate": "1995-12-28", "l_receiptdate": "1996-03-17", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "iously. idly bold theodolites a" }, { "l_orderkey": 3490i32, "l_partkey": 92i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 43.0d, "l_extendedprice": 42659.87d, "l_discount": 0.05d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-04", "l_commitdate": "1997-08-06", "l_receiptdate": "1997-08-14", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": ". even requests cajol" }, { "l_orderkey": 3776i32, "l_partkey": 92i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 49.0d, "l_extendedprice": 48612.41d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-02-11", "l_commitdate": "1993-01-06", "l_receiptdate": "1993-02-27", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "es: careful warthogs haggle fluffi" }, { "l_orderkey": 3908i32, "l_partkey": 92i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 50.0d, "l_extendedprice": 49604.5d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-06-19", "l_commitdate": "1993-04-27", "l_receiptdate": "1993-07-05", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": " even accounts wake " }, { "l_orderkey": 3911i32, "l_partkey": 92i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 12.0d, "l_extendedprice": 11905.08d, "l_discount": 0.1d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-04-04", "l_commitdate": "1995-04-16", "l_receiptdate": "1995-04-10", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "uctions. blithely regula" }, { "l_orderkey": 4580i32, "l_partkey": 92i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 22.0d, "l_extendedprice": 21825.98d, "l_discount": 0.01d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-01-16", "l_commitdate": "1994-01-26", "l_receiptdate": "1994-02-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "nticingly final packag" }, { "l_orderkey": 4615i32, "l_partkey": 92i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 10.0d, "l_extendedprice": 9920.9d, "l_discount": 0.02d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-11-20", "l_commitdate": "1993-10-05", "l_receiptdate": "1993-12-08", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "sits. slyly express deposits are" }, { "l_orderkey": 4801i32, "l_partkey": 92i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 39.0d, "l_extendedprice": 38691.51d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-19", "l_commitdate": "1996-03-21", "l_receiptdate": "1996-04-17", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "warhorses wake never for the care" }, { "l_orderkey": 5094i32, "l_partkey": 92i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 11.0d, "l_extendedprice": 10912.99d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-06-25", "l_commitdate": "1993-06-24", "l_receiptdate": "1993-07-18", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "s cajole quickly against the furiously ex" }, { "l_orderkey": 5571i32, "l_partkey": 92i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 18.0d, "l_extendedprice": 17857.62d, "l_discount": 0.1d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-03-11", "l_commitdate": "1993-02-28", "l_receiptdate": "1993-04-03", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "uests haggle furiously pending d" }, { "l_orderkey": 5606i32, "l_partkey": 92i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 34.0d, "l_extendedprice": 33731.06d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-23", "l_commitdate": "1997-02-08", "l_receiptdate": "1997-03-09", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "uses. slyly final " }, { "l_orderkey": 5824i32, "l_partkey": 92i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 32.0d, "l_extendedprice": 31746.88d, "l_discount": 0.03d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-16", "l_commitdate": "1997-01-24", "l_receiptdate": "1997-02-20", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "ven requests. " }, { "l_orderkey": 5987i32, "l_partkey": 92i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 43.0d, "l_extendedprice": 42659.87d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-30", "l_commitdate": "1996-10-13", "l_receiptdate": "1996-11-12", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "theodolites wake above the furiously b" } ] }
+{ "partkey": 93i32, "lines": [ { "l_orderkey": 69i32, "l_partkey": 93i32, "l_suppkey": 6i32, "l_linenumber": 5i32, "l_quantity": 42.0d, "l_extendedprice": 41709.78d, "l_discount": 0.07d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-07-31", "l_commitdate": "1994-07-26", "l_receiptdate": "1994-08-28", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "tect regular, speci" }, { "l_orderkey": 193i32, "l_partkey": 93i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 9.0d, "l_extendedprice": 8937.81d, "l_discount": 0.06d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-09-17", "l_commitdate": "1993-10-08", "l_receiptdate": "1993-09-30", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "against the fluffily regular d" }, { "l_orderkey": 384i32, "l_partkey": 93i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 11.0d, "l_extendedprice": 10923.99d, "l_discount": 0.0d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-06-24", "l_commitdate": "1992-05-29", "l_receiptdate": "1992-07-22", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "nic excuses are furiously above the blith" }, { "l_orderkey": 548i32, "l_partkey": 93i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 19.0d, "l_extendedprice": 18868.71d, "l_discount": 0.0d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-09-24", "l_commitdate": "1994-11-24", "l_receiptdate": "1994-10-01", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "courts boost care" }, { "l_orderkey": 581i32, "l_partkey": 93i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 14.0d, "l_extendedprice": 13903.26d, "l_discount": 0.06d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-17", "l_commitdate": "1997-04-14", "l_receiptdate": "1997-06-08", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": ". deposits s" }, { "l_orderkey": 640i32, "l_partkey": 93i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 49.0d, "l_extendedprice": 48661.41d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-03-27", "l_commitdate": "1993-04-17", "l_receiptdate": "1993-04-15", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "s haggle slyly" }, { "l_orderkey": 1124i32, "l_partkey": 93i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 35.0d, "l_extendedprice": 34758.15d, "l_discount": 0.1d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-11-25", "l_commitdate": "1998-10-08", "l_receiptdate": "1998-12-25", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "ut the slyly bold pinto beans; fi" }, { "l_orderkey": 1283i32, "l_partkey": 93i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 47.0d, "l_extendedprice": 46675.23d, "l_discount": 0.05d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-21", "l_commitdate": "1996-10-29", "l_receiptdate": "1996-11-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "even instructions boost slyly blithely " }, { "l_orderkey": 1508i32, "l_partkey": 93i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 43.0d, "l_extendedprice": 42702.87d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-01", "l_commitdate": "1998-06-24", "l_receiptdate": "1998-06-03", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "ndencies h" }, { "l_orderkey": 1572i32, "l_partkey": 93i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 10.0d, "l_extendedprice": 9930.9d, "l_discount": 0.04d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-17", "l_commitdate": "1996-03-26", "l_receiptdate": "1996-05-19", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": " accounts affix slyly. " }, { "l_orderkey": 1637i32, "l_partkey": 93i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 42.0d, "l_extendedprice": 41709.78d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-03-18", "l_commitdate": "1995-04-24", "l_receiptdate": "1995-03-31", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "blithely a" }, { "l_orderkey": 1698i32, "l_partkey": 93i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 6.0d, "l_extendedprice": 5958.54d, "l_discount": 0.08d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-21", "l_commitdate": "1997-06-08", "l_receiptdate": "1997-09-03", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": " pending packages affix ne" }, { "l_orderkey": 1702i32, "l_partkey": 93i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 28.0d, "l_extendedprice": 27806.52d, "l_discount": 0.07d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-06-10", "l_commitdate": "1995-07-26", "l_receiptdate": "1995-06-16", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "nts haggle along the packa" }, { "l_orderkey": 2530i32, "l_partkey": 93i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 42.0d, "l_extendedprice": 41709.78d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-03-27", "l_commitdate": "1994-05-20", "l_receiptdate": "1994-03-29", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "ng platelets wake s" }, { "l_orderkey": 2881i32, "l_partkey": 93i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 21.0d, "l_extendedprice": 20854.89d, "l_discount": 0.07d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-05-28", "l_commitdate": "1992-07-03", "l_receiptdate": "1992-06-02", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "hely express Tiresias. final dependencies " }, { "l_orderkey": 2917i32, "l_partkey": 93i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 36.0d, "l_extendedprice": 35751.24d, "l_discount": 0.1d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-07", "l_commitdate": "1998-02-23", "l_receiptdate": "1998-05-01", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "usly ironic d" }, { "l_orderkey": 3138i32, "l_partkey": 93i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 7.0d, "l_extendedprice": 6951.63d, "l_discount": 0.05d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-03-04", "l_commitdate": "1994-03-14", "l_receiptdate": "1994-03-20", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "lithely quickly even packages. packages" }, { "l_orderkey": 3269i32, "l_partkey": 93i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 42.0d, "l_extendedprice": 41709.78d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-19", "l_commitdate": "1996-04-24", "l_receiptdate": "1996-04-18", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": " the special packages. " }, { "l_orderkey": 3490i32, "l_partkey": 93i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 8.0d, "l_extendedprice": 7944.72d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-11", "l_commitdate": "1997-07-25", "l_receiptdate": "1997-08-28", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "inal deposits use furiousl" }, { "l_orderkey": 3493i32, "l_partkey": 93i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 31.0d, "l_extendedprice": 30785.79d, "l_discount": 0.06d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-10-22", "l_commitdate": "1993-10-12", "l_receiptdate": "1993-11-07", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "ructions. slyly regular accounts across the" }, { "l_orderkey": 3619i32, "l_partkey": 93i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 18.0d, "l_extendedprice": 17875.62d, "l_discount": 0.04d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-18", "l_commitdate": "1996-12-24", "l_receiptdate": "1997-03-21", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "eodolites " }, { "l_orderkey": 3621i32, "l_partkey": 93i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 13.0d, "l_extendedprice": 12910.17d, "l_discount": 0.09d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-08-30", "l_commitdate": "1993-06-30", "l_receiptdate": "1993-09-01", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "r the unusual packages. brave theodoli" }, { "l_orderkey": 3654i32, "l_partkey": 93i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 29.0d, "l_extendedprice": 28799.61d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-09-11", "l_commitdate": "1992-07-20", "l_receiptdate": "1992-10-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "odolites detect. quickly r" }, { "l_orderkey": 4066i32, "l_partkey": 93i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 19.0d, "l_extendedprice": 18868.71d, "l_discount": 0.05d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-13", "l_commitdate": "1997-04-17", "l_receiptdate": "1997-06-08", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "quests. slyly regu" }, { "l_orderkey": 4166i32, "l_partkey": 93i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 8.0d, "l_extendedprice": 7944.72d, "l_discount": 0.06d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-06-07", "l_commitdate": "1993-04-17", "l_receiptdate": "1993-06-16", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "es along the furiously regular acc" }, { "l_orderkey": 4487i32, "l_partkey": 93i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 25.0d, "l_extendedprice": 24827.25d, "l_discount": 0.07d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-03-09", "l_commitdate": "1993-04-27", "l_receiptdate": "1993-03-30", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "g the final instructions. slyly c" }, { "l_orderkey": 4647i32, "l_partkey": 93i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 16.0d, "l_extendedprice": 15889.44d, "l_discount": 0.09d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-09-07", "l_commitdate": "1994-07-15", "l_receiptdate": "1994-10-06", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "o beans about the fluffily special the" }, { "l_orderkey": 4928i32, "l_partkey": 93i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 20.0d, "l_extendedprice": 19861.8d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-01-19", "l_commitdate": "1993-11-29", "l_receiptdate": "1994-02-13", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "quiet theodolites ca" }, { "l_orderkey": 5509i32, "l_partkey": 93i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 30.0d, "l_extendedprice": 29792.7d, "l_discount": 0.04d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-07-23", "l_commitdate": "1994-06-01", "l_receiptdate": "1994-08-08", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "counts haggle pinto beans. furiously " }, { "l_orderkey": 5857i32, "l_partkey": 93i32, "l_suppkey": 5i32, "l_linenumber": 6i32, "l_quantity": 49.0d, "l_extendedprice": 48661.41d, "l_discount": 0.0d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-23", "l_commitdate": "1997-12-12", "l_receiptdate": "1998-01-28", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "egular pinto beans" }, { "l_orderkey": 5859i32, "l_partkey": 93i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 40.0d, "l_extendedprice": 39723.6d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-05", "l_commitdate": "1997-06-17", "l_receiptdate": "1997-08-20", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "l dependenci" } ] }
+{ "partkey": 94i32, "lines": [ { "l_orderkey": 193i32, "l_partkey": 94i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 23.0d, "l_extendedprice": 22864.07d, "l_discount": 0.06d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-08-21", "l_commitdate": "1993-10-11", "l_receiptdate": "1993-09-02", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "ly even accounts wake blithely bold" }, { "l_orderkey": 195i32, "l_partkey": 94i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 41.0d, "l_extendedprice": 40757.69d, "l_discount": 0.05d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-02-24", "l_commitdate": "1994-02-11", "l_receiptdate": "1994-03-20", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "rts detect in place of t" }, { "l_orderkey": 224i32, "l_partkey": 94i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 45.0d, "l_extendedprice": 44734.05d, "l_discount": 0.07d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-08-14", "l_commitdate": "1994-09-02", "l_receiptdate": "1994-08-27", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "leep furiously regular requests. furiousl" }, { "l_orderkey": 416i32, "l_partkey": 94i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 25.0d, "l_extendedprice": 24852.25d, "l_discount": 0.0d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-10-11", "l_commitdate": "1993-11-26", "l_receiptdate": "1993-10-21", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "y final theodolites about" }, { "l_orderkey": 1218i32, "l_partkey": 94i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 41.0d, "l_extendedprice": 40757.69d, "l_discount": 0.06d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-08-04", "l_commitdate": "1994-08-05", "l_receiptdate": "1994-08-11", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "dolphins. theodolites beyond th" }, { "l_orderkey": 1281i32, "l_partkey": 94i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 2.0d, "l_extendedprice": 1988.18d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-12-27", "l_commitdate": "1995-01-26", "l_receiptdate": "1995-01-21", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "ly unusual requests. final reques" }, { "l_orderkey": 1696i32, "l_partkey": 94i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 43.0d, "l_extendedprice": 42745.87d, "l_discount": 0.03d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-02-14", "l_commitdate": "1998-03-29", "l_receiptdate": "1998-02-20", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "arefully regular dep" }, { "l_orderkey": 1697i32, "l_partkey": 94i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 49.0d, "l_extendedprice": 48710.41d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-07", "l_commitdate": "1997-01-02", "l_receiptdate": "1996-12-31", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "lar foxes. fluffily furious ideas doubt qu" }, { "l_orderkey": 1762i32, "l_partkey": 94i32, "l_suppkey": 7i32, "l_linenumber": 6i32, "l_quantity": 35.0d, "l_extendedprice": 34793.15d, "l_discount": 0.05d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-11-25", "l_commitdate": "1994-10-21", "l_receiptdate": "1994-11-28", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "ind quickly. accounts ca" }, { "l_orderkey": 2084i32, "l_partkey": 94i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 9.0d, "l_extendedprice": 8946.81d, "l_discount": 0.02d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-03-18", "l_commitdate": "1993-06-08", "l_receiptdate": "1993-03-30", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "heaves boost slyly after the pla" }, { "l_orderkey": 2182i32, "l_partkey": 94i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 34.0d, "l_extendedprice": 33799.06d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-05-28", "l_commitdate": "1994-06-02", "l_receiptdate": "1994-06-10", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": " slow tithes. ironi" }, { "l_orderkey": 2437i32, "l_partkey": 94i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 46.0d, "l_extendedprice": 45728.14d, "l_discount": 0.07d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-08-12", "l_commitdate": "1993-06-16", "l_receiptdate": "1993-08-29", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "e of the bold, dogged requests" }, { "l_orderkey": 2468i32, "l_partkey": 94i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 46.0d, "l_extendedprice": 45728.14d, "l_discount": 0.0d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-16", "l_commitdate": "1997-08-09", "l_receiptdate": "1997-08-07", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "unusual theodolites su" }, { "l_orderkey": 2533i32, "l_partkey": 94i32, "l_suppkey": 7i32, "l_linenumber": 7i32, "l_quantity": 14.0d, "l_extendedprice": 13917.26d, "l_discount": 0.06d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-06", "l_commitdate": "1997-05-08", "l_receiptdate": "1997-08-03", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "ut the pending, special depos" }, { "l_orderkey": 2915i32, "l_partkey": 94i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 12.0d, "l_extendedprice": 11929.08d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-07-18", "l_commitdate": "1994-06-11", "l_receiptdate": "1994-07-27", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "accounts. slyly final" }, { "l_orderkey": 2946i32, "l_partkey": 94i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 48.0d, "l_extendedprice": 47716.32d, "l_discount": 0.03d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-02", "l_commitdate": "1996-03-31", "l_receiptdate": "1996-06-16", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "oss the platelets. furi" }, { "l_orderkey": 3013i32, "l_partkey": 94i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 31.0d, "l_extendedprice": 30816.79d, "l_discount": 0.08d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-03", "l_commitdate": "1997-04-05", "l_receiptdate": "1997-05-25", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "y furious depen" }, { "l_orderkey": 3173i32, "l_partkey": 94i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 2.0d, "l_extendedprice": 1988.18d, "l_discount": 0.0d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-15", "l_commitdate": "1996-11-06", "l_receiptdate": "1996-10-18", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "ular pearls" }, { "l_orderkey": 3585i32, "l_partkey": 94i32, "l_suppkey": 7i32, "l_linenumber": 6i32, "l_quantity": 7.0d, "l_extendedprice": 6958.63d, "l_discount": 0.1d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-12-13", "l_commitdate": "1995-01-20", "l_receiptdate": "1995-01-05", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "dependencies sleep un" }, { "l_orderkey": 3650i32, "l_partkey": 94i32, "l_suppkey": 8i32, "l_linenumber": 6i32, "l_quantity": 27.0d, "l_extendedprice": 26840.43d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-07-03", "l_commitdate": "1992-07-23", "l_receiptdate": "1992-07-13", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "ular requests snooze fluffily regular pi" }, { "l_orderkey": 3654i32, "l_partkey": 94i32, "l_suppkey": 5i32, "l_linenumber": 5i32, "l_quantity": 34.0d, "l_extendedprice": 33799.06d, "l_discount": 0.04d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-07-26", "l_commitdate": "1992-08-26", "l_receiptdate": "1992-08-12", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": " the quick" }, { "l_orderkey": 3778i32, "l_partkey": 94i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 41.0d, "l_extendedprice": 40757.69d, "l_discount": 0.05d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-06-21", "l_commitdate": "1993-07-27", "l_receiptdate": "1993-07-15", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "e the furiously ironi" }, { "l_orderkey": 4001i32, "l_partkey": 94i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 18.0d, "l_extendedprice": 17893.62d, "l_discount": 0.07d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-04", "l_commitdate": "1997-06-22", "l_receiptdate": "1997-06-13", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "lithely ironic d" }, { "l_orderkey": 4039i32, "l_partkey": 94i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 38.0d, "l_extendedprice": 37775.42d, "l_discount": 0.03d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-09", "l_commitdate": "1997-12-31", "l_receiptdate": "1998-03-21", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "sual asymptotes. ironic deposits nag aft" }, { "l_orderkey": 4353i32, "l_partkey": 94i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 22.0d, "l_extendedprice": 21869.98d, "l_discount": 0.05d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-19", "l_commitdate": "1998-01-23", "l_receiptdate": "1998-02-10", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "ent packages. accounts are slyly. " }, { "l_orderkey": 4416i32, "l_partkey": 94i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 37.0d, "l_extendedprice": 36781.33d, "l_discount": 0.08d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-10-23", "l_commitdate": "1992-08-23", "l_receiptdate": "1992-11-16", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "fluffily ironic " }, { "l_orderkey": 4642i32, "l_partkey": 94i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 18.0d, "l_extendedprice": 17893.62d, "l_discount": 0.0d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "F", "l_shipdate": "1995-06-16", "l_commitdate": "1995-04-16", "l_receiptdate": "1995-06-21", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "ily pending accounts hag" }, { "l_orderkey": 5189i32, "l_partkey": 94i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 49.0d, "l_extendedprice": 48710.41d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-01-22", "l_commitdate": "1994-01-19", "l_receiptdate": "1994-02-04", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": " requests " }, { "l_orderkey": 5474i32, "l_partkey": 94i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 10.0d, "l_extendedprice": 9940.9d, "l_discount": 0.06d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-08-08", "l_commitdate": "1992-08-10", "l_receiptdate": "1992-08-24", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "pinto bean" }, { "l_orderkey": 5571i32, "l_partkey": 94i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 31.0d, "l_extendedprice": 30816.79d, "l_discount": 0.09d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-01-05", "l_commitdate": "1993-01-18", "l_receiptdate": "1993-02-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "uffily even accounts. quickly re" }, { "l_orderkey": 5574i32, "l_partkey": 94i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 14.0d, "l_extendedprice": 13917.26d, "l_discount": 0.09d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-05-20", "l_commitdate": "1992-04-09", "l_receiptdate": "1992-05-23", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": " use slyly carefully special requests? slyl" }, { "l_orderkey": 5954i32, "l_partkey": 94i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 20.0d, "l_extendedprice": 19881.8d, "l_discount": 0.09d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-12-25", "l_commitdate": "1993-02-05", "l_receiptdate": "1992-12-31", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": " accounts wake carefu" } ] }
+{ "partkey": 95i32, "lines": [ { "l_orderkey": 7i32, "l_partkey": 95i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 46.0d, "l_extendedprice": 45774.14d, "l_discount": 0.1d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-15", "l_commitdate": "1996-03-27", "l_receiptdate": "1996-02-03", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": " unusual reques" }, { "l_orderkey": 39i32, "l_partkey": 95i32, "l_suppkey": 7i32, "l_linenumber": 6i32, "l_quantity": 40.0d, "l_extendedprice": 39803.6d, "l_discount": 0.06d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-08", "l_commitdate": "1996-10-22", "l_receiptdate": "1997-01-01", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "quickly ironic fox" }, { "l_orderkey": 68i32, "l_partkey": 95i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 20.0d, "l_extendedprice": 19901.8d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-27", "l_commitdate": "1998-05-23", "l_receiptdate": "1998-07-02", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": " excuses integrate fluffily " }, { "l_orderkey": 453i32, "l_partkey": 95i32, "l_suppkey": 7i32, "l_linenumber": 6i32, "l_quantity": 28.0d, "l_extendedprice": 27862.52d, "l_discount": 0.07d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-16", "l_commitdate": "1997-08-12", "l_receiptdate": "1997-08-27", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "final dependencies. slyly special pl" }, { "l_orderkey": 610i32, "l_partkey": 95i32, "l_suppkey": 7i32, "l_linenumber": 6i32, "l_quantity": 5.0d, "l_extendedprice": 4975.45d, "l_discount": 0.0d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-11", "l_commitdate": "1995-10-22", "l_receiptdate": "1995-08-26", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "n pinto beans. iro" }, { "l_orderkey": 641i32, "l_partkey": 95i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 40.0d, "l_extendedprice": 39803.6d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-11-22", "l_commitdate": "1993-10-20", "l_receiptdate": "1993-12-11", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "lets. furiously regular requests cajo" }, { "l_orderkey": 801i32, "l_partkey": 95i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 21.0d, "l_extendedprice": 20896.89d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-03-14", "l_commitdate": "1992-04-01", "l_receiptdate": "1992-04-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "wake silently furiously idle deposits. " }, { "l_orderkey": 838i32, "l_partkey": 95i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 23.0d, "l_extendedprice": 22887.07d, "l_discount": 0.1d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-26", "l_commitdate": "1998-04-17", "l_receiptdate": "1998-04-02", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "ets haggle furiously furiously regular r" }, { "l_orderkey": 1124i32, "l_partkey": 95i32, "l_suppkey": 6i32, "l_linenumber": 7i32, "l_quantity": 1.0d, "l_extendedprice": 995.09d, "l_discount": 0.09d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-10-07", "l_commitdate": "1998-08-31", "l_receiptdate": "1998-10-12", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "ly bold accou" }, { "l_orderkey": 1287i32, "l_partkey": 95i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 10.0d, "l_extendedprice": 9950.9d, "l_discount": 0.08d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-07-08", "l_commitdate": "1994-08-28", "l_receiptdate": "1994-07-10", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "thely alongside of the unusual, ironic pa" }, { "l_orderkey": 1348i32, "l_partkey": 95i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 13.0d, "l_extendedprice": 12936.17d, "l_discount": 0.01d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-28", "l_commitdate": "1998-06-05", "l_receiptdate": "1998-05-12", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": " blithely r" }, { "l_orderkey": 1667i32, "l_partkey": 95i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 48.0d, "l_extendedprice": 47764.32d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-27", "l_commitdate": "1998-01-06", "l_receiptdate": "1998-02-09", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "tes sleep furiously. carefully eve" }, { "l_orderkey": 1794i32, "l_partkey": 95i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 3.0d, "l_extendedprice": 2985.27d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-11-15", "l_commitdate": "1997-12-16", "l_receiptdate": "1997-11-20", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": " sentiments according to the q" }, { "l_orderkey": 1831i32, "l_partkey": 95i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 23.0d, "l_extendedprice": 22887.07d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-12-21", "l_commitdate": "1994-02-08", "l_receiptdate": "1994-01-04", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "ests. express pinto beans abou" }, { "l_orderkey": 2176i32, "l_partkey": 95i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 14.0d, "l_extendedprice": 13931.26d, "l_discount": 0.0d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-11-17", "l_commitdate": "1993-01-07", "l_receiptdate": "1992-12-03", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "ely ironic platelets " }, { "l_orderkey": 2273i32, "l_partkey": 95i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 8.0d, "l_extendedprice": 7960.72d, "l_discount": 0.0d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-15", "l_commitdate": "1997-02-27", "l_receiptdate": "1997-01-10", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "dependencies. slyly ir" }, { "l_orderkey": 2434i32, "l_partkey": 95i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 1.0d, "l_extendedprice": 995.09d, "l_discount": 0.01d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-02", "l_commitdate": "1997-05-28", "l_receiptdate": "1997-08-19", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": " furiously express packages. ironic, pend" }, { "l_orderkey": 2628i32, "l_partkey": 95i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 23.0d, "l_extendedprice": 22887.07d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-10-27", "l_commitdate": "1994-01-08", "l_receiptdate": "1993-11-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "usual packages sleep about the fina" }, { "l_orderkey": 3235i32, "l_partkey": 95i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 43.0d, "l_extendedprice": 42788.87d, "l_discount": 0.1d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-25", "l_commitdate": "1996-01-23", "l_receiptdate": "1996-01-09", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "ckly final instru" }, { "l_orderkey": 3271i32, "l_partkey": 95i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 14.0d, "l_extendedprice": 13931.26d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-02-24", "l_commitdate": "1992-02-14", "l_receiptdate": "1992-03-23", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "ending, even packa" }, { "l_orderkey": 3328i32, "l_partkey": 95i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 42.0d, "l_extendedprice": 41793.78d, "l_discount": 0.01d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-11-24", "l_commitdate": "1992-12-20", "l_receiptdate": "1992-12-06", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "ronic requests" }, { "l_orderkey": 3430i32, "l_partkey": 95i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 5.0d, "l_extendedprice": 4975.45d, "l_discount": 0.05d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-04-02", "l_commitdate": "1995-02-12", "l_receiptdate": "1995-04-08", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "even accounts haggle slyly bol" }, { "l_orderkey": 3460i32, "l_partkey": 95i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 50.0d, "l_extendedprice": 49754.5d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-30", "l_commitdate": "1995-12-10", "l_receiptdate": "1996-02-06", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "e slyly about the sly" }, { "l_orderkey": 3461i32, "l_partkey": 95i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 41.0d, "l_extendedprice": 40798.69d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-02-19", "l_commitdate": "1993-04-20", "l_receiptdate": "1993-02-21", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "heodolites. blithely ironi" }, { "l_orderkey": 3590i32, "l_partkey": 95i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 19.0d, "l_extendedprice": 18906.71d, "l_discount": 0.03d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-02", "l_commitdate": "1995-06-20", "l_receiptdate": "1995-08-08", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "special pinto beans. blithely reg" }, { "l_orderkey": 4327i32, "l_partkey": 95i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 18.0d, "l_extendedprice": 17911.62d, "l_discount": 0.08d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "F", "l_shipdate": "1995-06-16", "l_commitdate": "1995-04-20", "l_receiptdate": "1995-07-12", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "y final excuses. ironic, special requests a" }, { "l_orderkey": 4484i32, "l_partkey": 95i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 4.0d, "l_extendedprice": 3980.36d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-09", "l_commitdate": "1997-02-11", "l_receiptdate": "1997-04-12", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "packages de" }, { "l_orderkey": 4641i32, "l_partkey": 95i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 39.0d, "l_extendedprice": 38808.51d, "l_discount": 0.06d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-02-10", "l_commitdate": "1993-03-06", "l_receiptdate": "1993-02-15", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": " the bold reque" }, { "l_orderkey": 4772i32, "l_partkey": 95i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 31.0d, "l_extendedprice": 30847.79d, "l_discount": 0.02d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-10-02", "l_commitdate": "1994-10-21", "l_receiptdate": "1994-10-13", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "ests are thinly. furiously unusua" }, { "l_orderkey": 5317i32, "l_partkey": 95i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 19.0d, "l_extendedprice": 18906.71d, "l_discount": 0.07d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-12-15", "l_commitdate": "1994-10-18", "l_receiptdate": "1994-12-27", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "onic requests boost bli" }, { "l_orderkey": 5799i32, "l_partkey": 95i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 41.0d, "l_extendedprice": 40798.69d, "l_discount": 0.04d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-13", "l_commitdate": "1995-10-31", "l_receiptdate": "1995-11-16", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "al accounts sleep ruthlessl" } ] }
+{ "partkey": 96i32, "lines": [ { "l_orderkey": 260i32, "l_partkey": 96i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 44.0d, "l_extendedprice": 43827.96d, "l_discount": 0.01d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-26", "l_commitdate": "1997-02-03", "l_receiptdate": "1997-04-19", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "above the blithely ironic instr" }, { "l_orderkey": 323i32, "l_partkey": 96i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 18.0d, "l_extendedprice": 17929.62d, "l_discount": 0.06d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-04-13", "l_commitdate": "1994-06-02", "l_receiptdate": "1994-05-10", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "posits cajole furiously pinto beans. " }, { "l_orderkey": 453i32, "l_partkey": 96i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 45.0d, "l_extendedprice": 44824.05d, "l_discount": 0.1d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-18", "l_commitdate": "1997-06-29", "l_receiptdate": "1997-10-14", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "ironic foxes. slyly pending depos" }, { "l_orderkey": 645i32, "l_partkey": 96i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 49.0d, "l_extendedprice": 48808.41d, "l_discount": 0.05d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-01-24", "l_commitdate": "1995-01-06", "l_receiptdate": "1995-02-17", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "y. slyly iron" }, { "l_orderkey": 742i32, "l_partkey": 96i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 15.0d, "l_extendedprice": 14941.35d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-02-26", "l_commitdate": "1995-03-20", "l_receiptdate": "1995-03-03", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "blithely unusual pinto" }, { "l_orderkey": 1063i32, "l_partkey": 96i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 42.0d, "l_extendedprice": 41835.78d, "l_discount": 0.03d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-07-10", "l_commitdate": "1994-05-25", "l_receiptdate": "1994-07-26", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "tructions about the blithely ex" }, { "l_orderkey": 1159i32, "l_partkey": 96i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 7.0d, "l_extendedprice": 6972.63d, "l_discount": 0.08d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-11-25", "l_commitdate": "1992-10-27", "l_receiptdate": "1992-12-20", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "olve somet" }, { "l_orderkey": 1315i32, "l_partkey": 96i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 27.0d, "l_extendedprice": 26894.43d, "l_discount": 0.01d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-04", "l_commitdate": "1998-06-13", "l_receiptdate": "1998-07-28", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "latelets. fluffily ironic account" }, { "l_orderkey": 1441i32, "l_partkey": 96i32, "l_suppkey": 10i32, "l_linenumber": 7i32, "l_quantity": 50.0d, "l_extendedprice": 49804.5d, "l_discount": 0.03d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-07", "l_commitdate": "1997-05-12", "l_receiptdate": "1997-06-08", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": " requests. blithely e" }, { "l_orderkey": 1671i32, "l_partkey": 96i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 4.0d, "l_extendedprice": 3984.36d, "l_discount": 0.05d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-30", "l_commitdate": "1996-09-19", "l_receiptdate": "1996-09-23", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "lyly regular ac" }, { "l_orderkey": 1760i32, "l_partkey": 96i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 38.0d, "l_extendedprice": 37851.42d, "l_discount": 0.09d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-15", "l_commitdate": "1996-06-29", "l_receiptdate": "1996-07-11", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "tions. blithely regular orbits against the " }, { "l_orderkey": 1920i32, "l_partkey": 96i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 24.0d, "l_extendedprice": 23906.16d, "l_discount": 0.04d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-09-27", "l_commitdate": "1998-08-23", "l_receiptdate": "1998-10-15", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "thely. bold, pend" }, { "l_orderkey": 2052i32, "l_partkey": 96i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 47.0d, "l_extendedprice": 46816.23d, "l_discount": 0.08d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-06-18", "l_commitdate": "1992-05-16", "l_receiptdate": "1992-07-02", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "final requests. stealt" }, { "l_orderkey": 2181i32, "l_partkey": 96i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 9.0d, "l_extendedprice": 8964.81d, "l_discount": 0.06d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-05", "l_commitdate": "1995-12-05", "l_receiptdate": "1996-01-08", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "ward the quietly even requests. ir" }, { "l_orderkey": 3172i32, "l_partkey": 96i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 4.0d, "l_extendedprice": 3984.36d, "l_discount": 0.06d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-09-26", "l_commitdate": "1992-08-15", "l_receiptdate": "1992-10-20", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "s are slyly thin package" }, { "l_orderkey": 3268i32, "l_partkey": 96i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 1.0d, "l_extendedprice": 996.09d, "l_discount": 0.06d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-09-12", "l_commitdate": "1994-08-31", "l_receiptdate": "1994-09-16", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": ". ironic, bold requests use carefull" }, { "l_orderkey": 3590i32, "l_partkey": 96i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 43.0d, "l_extendedprice": 42831.87d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-12", "l_commitdate": "1995-07-25", "l_receiptdate": "1995-07-16", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "s could have to use" }, { "l_orderkey": 3619i32, "l_partkey": 96i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 49.0d, "l_extendedprice": 48808.41d, "l_discount": 0.01d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-22", "l_commitdate": "1996-12-21", "l_receiptdate": "1997-02-17", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": " waters. furiously even deposits " }, { "l_orderkey": 3943i32, "l_partkey": 96i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 9.0d, "l_extendedprice": 8964.81d, "l_discount": 0.0d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-27", "l_commitdate": "1997-01-03", "l_receiptdate": "1996-12-17", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "refully ironic " }, { "l_orderkey": 3971i32, "l_partkey": 96i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 47.0d, "l_extendedprice": 46816.23d, "l_discount": 0.06d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-07", "l_commitdate": "1996-08-08", "l_receiptdate": "1996-08-01", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "e slyly final dependencies x-ray " }, { "l_orderkey": 4067i32, "l_partkey": 96i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 14.0d, "l_extendedprice": 13945.26d, "l_discount": 0.0d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-02-03", "l_commitdate": "1992-12-02", "l_receiptdate": "1993-02-07", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "ructions. quickly ironic accounts detect " }, { "l_orderkey": 4067i32, "l_partkey": 96i32, "l_suppkey": 8i32, "l_linenumber": 6i32, "l_quantity": 12.0d, "l_extendedprice": 11953.08d, "l_discount": 0.04d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-12-12", "l_commitdate": "1992-11-28", "l_receiptdate": "1992-12-15", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "lly slyly even theodol" }, { "l_orderkey": 4134i32, "l_partkey": 96i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 34.0d, "l_extendedprice": 33867.06d, "l_discount": 0.01d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-05-06", "l_commitdate": "1995-03-28", "l_receiptdate": "1995-05-13", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "ual asymptotes wake carefully alo" }, { "l_orderkey": 4197i32, "l_partkey": 96i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 23.0d, "l_extendedprice": 22910.07d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-10", "l_commitdate": "1996-10-10", "l_receiptdate": "1996-09-25", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "l instructions print slyly past the reg" }, { "l_orderkey": 4225i32, "l_partkey": 96i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 23.0d, "l_extendedprice": 22910.07d, "l_discount": 0.02d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-18", "l_commitdate": "1997-08-31", "l_receiptdate": "1997-10-11", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": ". quickly b" }, { "l_orderkey": 4229i32, "l_partkey": 96i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 44.0d, "l_extendedprice": 43827.96d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-29", "l_commitdate": "1998-05-12", "l_receiptdate": "1998-06-16", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "s. carefully e" }, { "l_orderkey": 4262i32, "l_partkey": 96i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 5.0d, "l_extendedprice": 4980.45d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-27", "l_commitdate": "1996-09-05", "l_receiptdate": "1996-10-25", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "blithely final asymptotes integrate" }, { "l_orderkey": 4450i32, "l_partkey": 96i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 45.0d, "l_extendedprice": 44824.05d, "l_discount": 0.08d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-01", "l_commitdate": "1997-10-06", "l_receiptdate": "1997-09-19", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "express ideas are furiously regular" }, { "l_orderkey": 4482i32, "l_partkey": 96i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 32.0d, "l_extendedprice": 31874.88d, "l_discount": 0.01d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-16", "l_commitdate": "1995-06-26", "l_receiptdate": "1995-09-10", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "eans wake according " }, { "l_orderkey": 4486i32, "l_partkey": 96i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 47.0d, "l_extendedprice": 46816.23d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-09", "l_commitdate": "1998-05-24", "l_receiptdate": "1998-05-07", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "ts around the quiet packages ar" }, { "l_orderkey": 4678i32, "l_partkey": 96i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 13.0d, "l_extendedprice": 12949.17d, "l_discount": 0.1d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-11-03", "l_commitdate": "1998-10-17", "l_receiptdate": "1998-11-06", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "its. carefully final fr" }, { "l_orderkey": 5026i32, "l_partkey": 96i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 13.0d, "l_extendedprice": 12949.17d, "l_discount": 0.02d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-23", "l_commitdate": "1997-11-02", "l_receiptdate": "1998-01-03", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "endencies sleep carefully alongs" }, { "l_orderkey": 5185i32, "l_partkey": 96i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 30.0d, "l_extendedprice": 29882.7d, "l_discount": 0.09d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-10-17", "l_commitdate": "1997-09-16", "l_receiptdate": "1997-10-23", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "ress packages are furiously" }, { "l_orderkey": 5383i32, "l_partkey": 96i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 12.0d, "l_extendedprice": 11953.08d, "l_discount": 0.04d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-02", "l_commitdate": "1995-08-16", "l_receiptdate": "1995-08-01", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "y regular instructi" }, { "l_orderkey": 5411i32, "l_partkey": 96i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 17.0d, "l_extendedprice": 16933.53d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-22", "l_commitdate": "1997-07-14", "l_receiptdate": "1997-07-30", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": " slyly slyly even deposits. carefully b" }, { "l_orderkey": 5477i32, "l_partkey": 96i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 23.0d, "l_extendedprice": 22910.07d, "l_discount": 0.0d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-04", "l_commitdate": "1998-02-23", "l_receiptdate": "1998-01-24", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "telets wake blithely ab" }, { "l_orderkey": 5541i32, "l_partkey": 96i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 39.0d, "l_extendedprice": 38847.51d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-11-17", "l_commitdate": "1997-12-27", "l_receiptdate": "1997-12-11", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "ding theodolites haggle against the slyly " }, { "l_orderkey": 5637i32, "l_partkey": 96i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 22.0d, "l_extendedprice": 21913.98d, "l_discount": 0.01d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-28", "l_commitdate": "1996-07-30", "l_receiptdate": "1996-09-17", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "nding requests are ca" } ] }
+{ "partkey": 97i32, "lines": [ { "l_orderkey": 71i32, "l_partkey": 97i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 33.0d, "l_extendedprice": 32903.97d, "l_discount": 0.0d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-12", "l_commitdate": "1998-03-20", "l_receiptdate": "1998-04-15", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": " serve quickly fluffily bold deposi" }, { "l_orderkey": 226i32, "l_partkey": 97i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 4.0d, "l_extendedprice": 3988.36d, "l_discount": 0.0d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-03-31", "l_commitdate": "1993-04-30", "l_receiptdate": "1993-04-10", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "c foxes integrate carefully against th" }, { "l_orderkey": 261i32, "l_partkey": 97i32, "l_suppkey": 9i32, "l_linenumber": 6i32, "l_quantity": 20.0d, "l_extendedprice": 19941.8d, "l_discount": 0.06d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-10-15", "l_commitdate": "1993-09-05", "l_receiptdate": "1993-11-07", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "ing to the special, ironic deposi" }, { "l_orderkey": 355i32, "l_partkey": 97i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 41.0d, "l_extendedprice": 40880.69d, "l_discount": 0.05d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-08-15", "l_commitdate": "1994-07-19", "l_receiptdate": "1994-09-06", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": " deposits. carefully r" }, { "l_orderkey": 358i32, "l_partkey": 97i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 15.0d, "l_extendedprice": 14956.35d, "l_discount": 0.08d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-10-04", "l_commitdate": "1993-12-17", "l_receiptdate": "1993-10-23", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "out the blithely ironic deposits slee" }, { "l_orderkey": 387i32, "l_partkey": 97i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 40.0d, "l_extendedprice": 39883.6d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-08", "l_commitdate": "1997-04-18", "l_receiptdate": "1997-03-31", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": " quickly ironic platelets are slyly. fluff" }, { "l_orderkey": 484i32, "l_partkey": 97i32, "l_suppkey": 9i32, "l_linenumber": 6i32, "l_quantity": 10.0d, "l_extendedprice": 9970.9d, "l_discount": 0.01d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-06", "l_commitdate": "1997-02-14", "l_receiptdate": "1997-04-16", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "x fluffily carefully regular" }, { "l_orderkey": 871i32, "l_partkey": 97i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 48.0d, "l_extendedprice": 47860.32d, "l_discount": 0.1d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-02-25", "l_commitdate": "1996-02-09", "l_receiptdate": "1996-03-18", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "coys dazzle slyly slow notornis. f" }, { "l_orderkey": 961i32, "l_partkey": 97i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 42.0d, "l_extendedprice": 41877.78d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-24", "l_commitdate": "1995-08-21", "l_receiptdate": "1995-09-10", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "ests do cajole blithely. furiously bo" }, { "l_orderkey": 1057i32, "l_partkey": 97i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 7.0d, "l_extendedprice": 6979.63d, "l_discount": 0.06d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-06-05", "l_commitdate": "1992-04-30", "l_receiptdate": "1992-06-20", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "y slyly express theodolites. slyly bo" }, { "l_orderkey": 1154i32, "l_partkey": 97i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 5.0d, "l_extendedprice": 4985.45d, "l_discount": 0.09d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-06-07", "l_commitdate": "1992-05-07", "l_receiptdate": "1992-07-05", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "the furiously " }, { "l_orderkey": 1216i32, "l_partkey": 97i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 8.0d, "l_extendedprice": 7976.72d, "l_discount": 0.03d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-02-01", "l_commitdate": "1993-03-06", "l_receiptdate": "1993-02-08", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": " of the carefully express" }, { "l_orderkey": 1606i32, "l_partkey": 97i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 20.0d, "l_extendedprice": 19941.8d, "l_discount": 0.02d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-01", "l_commitdate": "1997-05-26", "l_receiptdate": "1997-05-28", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "fily carefu" }, { "l_orderkey": 1698i32, "l_partkey": 97i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 44.0d, "l_extendedprice": 43871.96d, "l_discount": 0.05d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-16", "l_commitdate": "1997-07-05", "l_receiptdate": "1997-05-27", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "ts wake slyly after t" }, { "l_orderkey": 1856i32, "l_partkey": 97i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 47.0d, "l_extendedprice": 46863.23d, "l_discount": 0.07d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-03-22", "l_commitdate": "1992-06-09", "l_receiptdate": "1992-04-17", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "ingly blithe theodolites. slyly pending " }, { "l_orderkey": 2048i32, "l_partkey": 97i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 11.0d, "l_extendedprice": 10967.99d, "l_discount": 0.1d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-12-20", "l_commitdate": "1994-01-19", "l_receiptdate": "1994-01-04", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "totes. idly ironic packages nag" }, { "l_orderkey": 2208i32, "l_partkey": 97i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 11.0d, "l_extendedprice": 10967.99d, "l_discount": 0.08d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-05-06", "l_commitdate": "1995-07-19", "l_receiptdate": "1995-05-22", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "ding waters lose. furiously regu" }, { "l_orderkey": 2241i32, "l_partkey": 97i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 48.0d, "l_extendedprice": 47860.32d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-05-14", "l_commitdate": "1993-07-30", "l_receiptdate": "1993-05-26", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "ss accounts engage furiously. slyly even re" }, { "l_orderkey": 2278i32, "l_partkey": 97i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 22.0d, "l_extendedprice": 21935.98d, "l_discount": 0.03d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-15", "l_commitdate": "1998-07-14", "l_receiptdate": "1998-06-04", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "ep regular accounts. blithely even" }, { "l_orderkey": 2850i32, "l_partkey": 97i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 43.0d, "l_extendedprice": 42874.87d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-11", "l_commitdate": "1996-11-03", "l_receiptdate": "1997-02-01", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "unusual accounts" }, { "l_orderkey": 2945i32, "l_partkey": 97i32, "l_suppkey": 9i32, "l_linenumber": 6i32, "l_quantity": 45.0d, "l_extendedprice": 44869.05d, "l_discount": 0.07d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-01", "l_commitdate": "1996-03-25", "l_receiptdate": "1996-03-08", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "ainst the final packages" }, { "l_orderkey": 3072i32, "l_partkey": 97i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 7.0d, "l_extendedprice": 6979.63d, "l_discount": 0.04d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-05-09", "l_commitdate": "1994-03-31", "l_receiptdate": "1994-05-19", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "uests. ironic, ironic depos" }, { "l_orderkey": 3393i32, "l_partkey": 97i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 25.0d, "l_extendedprice": 24927.25d, "l_discount": 0.07d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-17", "l_commitdate": "1995-08-12", "l_receiptdate": "1995-11-11", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "ng excuses" }, { "l_orderkey": 3430i32, "l_partkey": 97i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 41.0d, "l_extendedprice": 40880.69d, "l_discount": 0.06d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-02-18", "l_commitdate": "1995-02-21", "l_receiptdate": "1995-03-11", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "cuses. silent excuses h" }, { "l_orderkey": 3655i32, "l_partkey": 97i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 1.0d, "l_extendedprice": 997.09d, "l_discount": 0.1d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-10-24", "l_commitdate": "1992-12-18", "l_receiptdate": "1992-11-07", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "arefully slow pinto beans are" }, { "l_orderkey": 3715i32, "l_partkey": 97i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 13.0d, "l_extendedprice": 12962.17d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-11", "l_commitdate": "1996-04-25", "l_receiptdate": "1996-06-09", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "e quickly ironic" }, { "l_orderkey": 4035i32, "l_partkey": 97i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 4.0d, "l_extendedprice": 3988.36d, "l_discount": 0.08d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-04-21", "l_commitdate": "1992-04-23", "l_receiptdate": "1992-04-25", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "ilent, even pear" }, { "l_orderkey": 4065i32, "l_partkey": 97i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 33.0d, "l_extendedprice": 32903.97d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-09-03", "l_commitdate": "1994-08-16", "l_receiptdate": "1994-09-13", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "ain blithely " }, { "l_orderkey": 4644i32, "l_partkey": 97i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 16.0d, "l_extendedprice": 15953.44d, "l_discount": 0.03d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-13", "l_commitdate": "1998-02-21", "l_receiptdate": "1998-04-03", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "lar excuses across the " }, { "l_orderkey": 4800i32, "l_partkey": 97i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 11.0d, "l_extendedprice": 10967.99d, "l_discount": 0.03d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-01-27", "l_commitdate": "1992-03-16", "l_receiptdate": "1992-02-19", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "ic dependenc" }, { "l_orderkey": 4934i32, "l_partkey": 97i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 48.0d, "l_extendedprice": 47860.32d, "l_discount": 0.0d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-20", "l_commitdate": "1997-04-22", "l_receiptdate": "1997-06-02", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": " ideas cajol" }, { "l_orderkey": 5029i32, "l_partkey": 97i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 2.0d, "l_extendedprice": 1994.18d, "l_discount": 0.0d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-11-25", "l_commitdate": "1993-01-04", "l_receiptdate": "1992-12-20", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "packages. furiously ironi" }, { "l_orderkey": 5095i32, "l_partkey": 97i32, "l_suppkey": 8i32, "l_linenumber": 6i32, "l_quantity": 15.0d, "l_extendedprice": 14956.35d, "l_discount": 0.01d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-07-11", "l_commitdate": "1992-07-12", "l_receiptdate": "1992-08-09", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": " to the packages wake sly" }, { "l_orderkey": 5121i32, "l_partkey": 97i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 27.0d, "l_extendedprice": 26921.43d, "l_discount": 0.08d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-06-17", "l_commitdate": "1992-06-11", "l_receiptdate": "1992-06-19", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "ly silent theodolit" }, { "l_orderkey": 5280i32, "l_partkey": 97i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 16.0d, "l_extendedprice": 15953.44d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-29", "l_commitdate": "1998-01-28", "l_receiptdate": "1998-04-03", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": " foxes are furiously. theodoli" }, { "l_orderkey": 5286i32, "l_partkey": 97i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 7.0d, "l_extendedprice": 6979.63d, "l_discount": 0.06d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-10-23", "l_commitdate": "1997-12-10", "l_receiptdate": "1997-11-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "y express instructions sleep carefull" }, { "l_orderkey": 5412i32, "l_partkey": 97i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 26.0d, "l_extendedprice": 25924.34d, "l_discount": 0.02d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-22", "l_commitdate": "1998-04-19", "l_receiptdate": "1998-02-17", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": " the blithel" }, { "l_orderkey": 5537i32, "l_partkey": 97i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 38.0d, "l_extendedprice": 37889.42d, "l_discount": 0.01d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-06", "l_commitdate": "1996-11-23", "l_receiptdate": "1996-11-12", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "s above the carefully ironic deposits " }, { "l_orderkey": 5987i32, "l_partkey": 97i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 37.0d, "l_extendedprice": 36892.33d, "l_discount": 0.08d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-15", "l_commitdate": "1996-10-27", "l_receiptdate": "1996-11-09", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "le furiously carefully special " } ] }
+{ "partkey": 98i32, "lines": [ { "l_orderkey": 192i32, "l_partkey": 98i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 23.0d, "l_extendedprice": 22956.07d, "l_discount": 0.0d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-02-05", "l_commitdate": "1998-02-06", "l_receiptdate": "1998-03-07", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "ly pending theodolites haggle quickly fluf" }, { "l_orderkey": 678i32, "l_partkey": 98i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 16.0d, "l_extendedprice": 15969.44d, "l_discount": 0.06d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-03-09", "l_commitdate": "1993-04-18", "l_receiptdate": "1993-04-07", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": " about the " }, { "l_orderkey": 736i32, "l_partkey": 98i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 14.0d, "l_extendedprice": 13973.26d, "l_discount": 0.06d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-10-04", "l_commitdate": "1998-08-14", "l_receiptdate": "1998-10-16", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "nstructions." }, { "l_orderkey": 864i32, "l_partkey": 98i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 7.0d, "l_extendedprice": 6986.63d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-11-13", "l_commitdate": "1997-10-07", "l_receiptdate": "1997-12-13", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "ven requests should sleep along " }, { "l_orderkey": 963i32, "l_partkey": 98i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 48.0d, "l_extendedprice": 47908.32d, "l_discount": 0.1d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-08-25", "l_commitdate": "1994-08-12", "l_receiptdate": "1994-09-21", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "ages. quickly express deposits cajole pe" }, { "l_orderkey": 1125i32, "l_partkey": 98i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 29.0d, "l_extendedprice": 28944.61d, "l_discount": 0.06d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-11-29", "l_commitdate": "1994-12-20", "l_receiptdate": "1994-12-10", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": " platelets wake against the carefully i" }, { "l_orderkey": 1159i32, "l_partkey": 98i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 11.0d, "l_extendedprice": 10978.99d, "l_discount": 0.1d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-12-09", "l_commitdate": "1992-12-07", "l_receiptdate": "1992-12-18", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "h furiousl" }, { "l_orderkey": 1348i32, "l_partkey": 98i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 2.0d, "l_extendedprice": 1996.18d, "l_discount": 0.01d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-30", "l_commitdate": "1998-06-20", "l_receiptdate": "1998-06-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "lly final packages use fluffily express ac" }, { "l_orderkey": 1510i32, "l_partkey": 98i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 11.0d, "l_extendedprice": 10978.99d, "l_discount": 0.09d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-23", "l_commitdate": "1996-12-03", "l_receiptdate": "1996-10-01", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "e of the unusual accounts. stealthy deposit" }, { "l_orderkey": 1511i32, "l_partkey": 98i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 29.0d, "l_extendedprice": 28944.61d, "l_discount": 0.01d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-17", "l_commitdate": "1997-02-11", "l_receiptdate": "1997-03-27", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "s cajole furiously against " }, { "l_orderkey": 1888i32, "l_partkey": 98i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 27.0d, "l_extendedprice": 26948.43d, "l_discount": 0.03d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-02-13", "l_commitdate": "1994-01-16", "l_receiptdate": "1994-02-25", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": ". carefully special dolphins sle" }, { "l_orderkey": 2561i32, "l_partkey": 98i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 5.0d, "l_extendedprice": 4990.45d, "l_discount": 0.07d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-27", "l_commitdate": "1998-01-23", "l_receiptdate": "1998-01-13", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "p ironic, regular pinto beans." }, { "l_orderkey": 2883i32, "l_partkey": 98i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 23.0d, "l_extendedprice": 22956.07d, "l_discount": 0.0d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-02-03", "l_commitdate": "1995-03-17", "l_receiptdate": "1995-02-19", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": " even requests cajole. special, regular " }, { "l_orderkey": 3463i32, "l_partkey": 98i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 43.0d, "l_extendedprice": 42917.87d, "l_discount": 0.04d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-10-28", "l_commitdate": "1993-09-24", "l_receiptdate": "1993-11-03", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": " across the " }, { "l_orderkey": 3526i32, "l_partkey": 98i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 11.0d, "l_extendedprice": 10978.99d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-05-23", "l_commitdate": "1995-05-28", "l_receiptdate": "1995-05-24", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "ges. furiously regular d" }, { "l_orderkey": 3617i32, "l_partkey": 98i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 16.0d, "l_extendedprice": 15969.44d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-08", "l_commitdate": "1996-06-03", "l_receiptdate": "1996-05-19", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": " slyly on th" }, { "l_orderkey": 3617i32, "l_partkey": 98i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 32.0d, "l_extendedprice": 31938.88d, "l_discount": 0.0d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-04-20", "l_commitdate": "1996-06-07", "l_receiptdate": "1996-05-19", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "uriously against the express accounts. ex" }, { "l_orderkey": 3777i32, "l_partkey": 98i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 14.0d, "l_extendedprice": 13973.26d, "l_discount": 0.04d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-05-06", "l_commitdate": "1994-06-24", "l_receiptdate": "1994-05-31", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "ording to the iro" }, { "l_orderkey": 3778i32, "l_partkey": 98i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 28.0d, "l_extendedprice": 27946.52d, "l_discount": 0.01d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-09-02", "l_commitdate": "1993-08-08", "l_receiptdate": "1993-10-02", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "r deposits. theodol" }, { "l_orderkey": 4225i32, "l_partkey": 98i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 28.0d, "l_extendedprice": 27946.52d, "l_discount": 0.08d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-11", "l_commitdate": "1997-09-01", "l_receiptdate": "1997-08-03", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "ts are requests. even, bold depos" }, { "l_orderkey": 4390i32, "l_partkey": 98i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 32.0d, "l_extendedprice": 31938.88d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-15", "l_commitdate": "1995-08-12", "l_receiptdate": "1995-10-05", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "ctions across" }, { "l_orderkey": 4417i32, "l_partkey": 98i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 35.0d, "l_extendedprice": 34933.15d, "l_discount": 0.06d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-08", "l_commitdate": "1998-09-23", "l_receiptdate": "1998-09-02", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "slyly regular, silent courts. even packag" }, { "l_orderkey": 4421i32, "l_partkey": 98i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 37.0d, "l_extendedprice": 36929.33d, "l_discount": 0.09d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-22", "l_commitdate": "1997-06-27", "l_receiptdate": "1997-07-25", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "l accounts. ironic request" }, { "l_orderkey": 4932i32, "l_partkey": 98i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 11.0d, "l_extendedprice": 10978.99d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-09-21", "l_commitdate": "1993-09-30", "l_receiptdate": "1993-09-23", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "as. special depende" }, { "l_orderkey": 4960i32, "l_partkey": 98i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 8.0d, "l_extendedprice": 7984.72d, "l_discount": 0.07d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-03-14", "l_commitdate": "1995-04-18", "l_receiptdate": "1995-04-09", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "as. busily regular packages nag. " }, { "l_orderkey": 5027i32, "l_partkey": 98i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 6.0d, "l_extendedprice": 5988.54d, "l_discount": 0.04d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-28", "l_commitdate": "1997-11-24", "l_receiptdate": "1997-10-25", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "ar, ironic deposi" }, { "l_orderkey": 5414i32, "l_partkey": 98i32, "l_suppkey": 1i32, "l_linenumber": 6i32, "l_quantity": 28.0d, "l_extendedprice": 27946.52d, "l_discount": 0.1d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-03-27", "l_commitdate": "1993-06-04", "l_receiptdate": "1993-04-07", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "ts sleep sl" }, { "l_orderkey": 5603i32, "l_partkey": 98i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 50.0d, "l_extendedprice": 49904.5d, "l_discount": 0.03d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-10-06", "l_commitdate": "1992-08-20", "l_receiptdate": "1992-10-08", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "final theodolites accor" }, { "l_orderkey": 5696i32, "l_partkey": 98i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 20.0d, "l_extendedprice": 19961.8d, "l_discount": 0.08d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-06-25", "l_commitdate": "1995-07-18", "l_receiptdate": "1995-07-16", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "silent, pending ideas sleep fluffil" } ] }
+{ "partkey": 99i32, "lines": [ { "l_orderkey": 197i32, "l_partkey": 99i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 39.0d, "l_extendedprice": 38964.51d, "l_discount": 0.02d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-21", "l_commitdate": "1995-07-01", "l_receiptdate": "1995-08-14", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "press accounts. daringly sp" }, { "l_orderkey": 259i32, "l_partkey": 99i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 14.0d, "l_extendedprice": 13987.26d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-12-17", "l_commitdate": "1993-12-09", "l_receiptdate": "1993-12-31", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "ons against the express acco" }, { "l_orderkey": 288i32, "l_partkey": 99i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 36.0d, "l_extendedprice": 35967.24d, "l_discount": 0.02d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-22", "l_commitdate": "1997-05-07", "l_receiptdate": "1997-03-07", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "yly pending excu" }, { "l_orderkey": 646i32, "l_partkey": 99i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 34.0d, "l_extendedprice": 33969.06d, "l_discount": 0.01d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-12-28", "l_commitdate": "1994-12-27", "l_receiptdate": "1994-12-31", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "slow accounts. fluffily idle instructions" }, { "l_orderkey": 803i32, "l_partkey": 99i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 21.0d, "l_extendedprice": 20980.89d, "l_discount": 0.08d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-25", "l_commitdate": "1997-06-30", "l_receiptdate": "1997-09-10", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "ironic packages cajole slyly. un" }, { "l_orderkey": 1251i32, "l_partkey": 99i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 37.0d, "l_extendedprice": 36966.33d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-11", "l_commitdate": "1997-12-01", "l_receiptdate": "1998-01-23", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "finally bold requests" }, { "l_orderkey": 1409i32, "l_partkey": 99i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 23.0d, "l_extendedprice": 22979.07d, "l_discount": 0.01d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-04-18", "l_commitdate": "1993-02-25", "l_receiptdate": "1993-05-06", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "ions. slyly ironic packages wake quick" }, { "l_orderkey": 1732i32, "l_partkey": 99i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 36.0d, "l_extendedprice": 35967.24d, "l_discount": 0.01d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-03-15", "l_commitdate": "1994-02-09", "l_receiptdate": "1994-04-02", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "ve the accounts. slowly ironic multip" }, { "l_orderkey": 1893i32, "l_partkey": 99i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 43.0d, "l_extendedprice": 42960.87d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-25", "l_commitdate": "1998-01-06", "l_receiptdate": "1998-02-14", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "he carefully regular " }, { "l_orderkey": 2149i32, "l_partkey": 99i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 10.0d, "l_extendedprice": 9990.9d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-06-09", "l_commitdate": "1993-04-17", "l_receiptdate": "1993-06-16", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "eposits sleep above" }, { "l_orderkey": 2599i32, "l_partkey": 99i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 29.0d, "l_extendedprice": 28973.61d, "l_discount": 0.09d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-10", "l_commitdate": "1996-12-10", "l_receiptdate": "1997-02-02", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "ly express dolphins. special, " }, { "l_orderkey": 2823i32, "l_partkey": 99i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 18.0d, "l_extendedprice": 17983.62d, "l_discount": 0.04d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-09", "l_commitdate": "1995-10-30", "l_receiptdate": "1995-11-19", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "eas. decoys cajole deposi" }, { "l_orderkey": 2982i32, "l_partkey": 99i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 13.0d, "l_extendedprice": 12988.17d, "l_discount": 0.02d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-03-31", "l_commitdate": "1995-05-07", "l_receiptdate": "1995-04-18", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "regular deposits unwind alongside " }, { "l_orderkey": 3303i32, "l_partkey": 99i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 37.0d, "l_extendedprice": 36966.33d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-02-16", "l_commitdate": "1998-03-07", "l_receiptdate": "1998-02-18", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": " carefully ironic asympt" }, { "l_orderkey": 3462i32, "l_partkey": 99i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 2.0d, "l_extendedprice": 1998.18d, "l_discount": 0.09d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-10", "l_commitdate": "1997-08-08", "l_receiptdate": "1997-09-19", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "nic packages. even accounts alongside " }, { "l_orderkey": 3586i32, "l_partkey": 99i32, "l_suppkey": 1i32, "l_linenumber": 6i32, "l_quantity": 8.0d, "l_extendedprice": 7992.72d, "l_discount": 0.09d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-03-18", "l_commitdate": "1994-01-17", "l_receiptdate": "1994-04-06", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": " ironic pinto beans cajole carefully theo" }, { "l_orderkey": 4002i32, "l_partkey": 99i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 4.0d, "l_extendedprice": 3996.36d, "l_discount": 0.08d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-06", "l_commitdate": "1997-06-15", "l_receiptdate": "1997-05-24", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "ccording to the careful" }, { "l_orderkey": 4290i32, "l_partkey": 99i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 3.0d, "l_extendedprice": 2997.27d, "l_discount": 0.09d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-03-25", "l_commitdate": "1995-03-07", "l_receiptdate": "1995-04-11", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "lar platelets cajole" }, { "l_orderkey": 4998i32, "l_partkey": 99i32, "l_suppkey": 1i32, "l_linenumber": 6i32, "l_quantity": 8.0d, "l_extendedprice": 7992.72d, "l_discount": 0.03d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-05-01", "l_commitdate": "1992-03-03", "l_receiptdate": "1992-05-24", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "ions nag quickly according to the theodolit" }, { "l_orderkey": 5447i32, "l_partkey": 99i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 31.0d, "l_extendedprice": 30971.79d, "l_discount": 0.09d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-14", "l_commitdate": "1996-05-07", "l_receiptdate": "1996-07-17", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": " foxes sleep. blithely unusual accounts det" }, { "l_orderkey": 5509i32, "l_partkey": 99i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 17.0d, "l_extendedprice": 16984.53d, "l_discount": 0.03d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-07-01", "l_commitdate": "1994-06-30", "l_receiptdate": "1994-07-31", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "ccounts wake ar" }, { "l_orderkey": 5921i32, "l_partkey": 99i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 44.0d, "l_extendedprice": 43959.96d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-07-14", "l_commitdate": "1994-06-30", "l_receiptdate": "1994-07-15", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "ain about the special" } ] }
+{ "partkey": 100i32, "lines": [ { "l_orderkey": 166i32, "l_partkey": 100i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 41.0d, "l_extendedprice": 41004.1d, "l_discount": 0.07d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-13", "l_commitdate": "1995-11-07", "l_receiptdate": "1995-12-08", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "hily along the blithely pending fo" }, { "l_orderkey": 292i32, "l_partkey": 100i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 24.0d, "l_extendedprice": 24002.4d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-03-24", "l_commitdate": "1992-03-06", "l_receiptdate": "1992-04-20", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": " bold, pending theodolites u" }, { "l_orderkey": 641i32, "l_partkey": 100i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 1.0d, "l_extendedprice": 1000.1d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-12-03", "l_commitdate": "1993-10-28", "l_receiptdate": "1993-12-26", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": " nag across the regular foxes." }, { "l_orderkey": 675i32, "l_partkey": 100i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 15.0d, "l_extendedprice": 15001.5d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-10-18", "l_commitdate": "1997-09-28", "l_receiptdate": "1997-11-13", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "posits after the furio" }, { "l_orderkey": 773i32, "l_partkey": 100i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 5.0d, "l_extendedprice": 5000.5d, "l_discount": 0.06d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-11-21", "l_commitdate": "1993-12-19", "l_receiptdate": "1993-12-21", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "ar requests. regular, thin packages u" }, { "l_orderkey": 930i32, "l_partkey": 100i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 21.0d, "l_extendedprice": 21002.1d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-02-16", "l_commitdate": "1995-03-03", "l_receiptdate": "1995-03-13", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "foxes. regular deposits integrate carefu" }, { "l_orderkey": 933i32, "l_partkey": 100i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 26.0d, "l_extendedprice": 26002.6d, "l_discount": 0.05d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-11-09", "l_commitdate": "1992-11-03", "l_receiptdate": "1992-11-16", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": " the deposits affix slyly after t" }, { "l_orderkey": 1027i32, "l_partkey": 100i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 13.0d, "l_extendedprice": 13001.3d, "l_discount": 0.08d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-08-22", "l_commitdate": "1992-07-10", "l_receiptdate": "1992-09-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "ily ironic ideas use" }, { "l_orderkey": 1028i32, "l_partkey": 100i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 8.0d, "l_extendedprice": 8000.8d, "l_discount": 0.03d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-02-14", "l_commitdate": "1994-03-28", "l_receiptdate": "1994-02-22", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "e carefully final packages. furiously fi" }, { "l_orderkey": 1152i32, "l_partkey": 100i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 25.0d, "l_extendedprice": 25002.5d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-10-20", "l_commitdate": "1994-09-18", "l_receiptdate": "1994-10-28", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "efully ironic accounts. sly instructions wa" }, { "l_orderkey": 1223i32, "l_partkey": 100i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 28.0d, "l_extendedprice": 28002.8d, "l_discount": 0.1d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-07", "l_commitdate": "1996-07-24", "l_receiptdate": "1996-08-13", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": " quickly ironic requests. furious" }, { "l_orderkey": 1445i32, "l_partkey": 100i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 24.0d, "l_extendedprice": 24002.4d, "l_discount": 0.01d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-02-21", "l_commitdate": "1995-02-22", "l_receiptdate": "1995-03-18", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "al accounts use furiously a" }, { "l_orderkey": 1606i32, "l_partkey": 100i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 23.0d, "l_extendedprice": 23002.3d, "l_discount": 0.0d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-19", "l_commitdate": "1997-06-26", "l_receiptdate": "1997-04-30", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "ously final requests. slowly ironic ex" }, { "l_orderkey": 1828i32, "l_partkey": 100i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 33.0d, "l_extendedprice": 33003.3d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-06-27", "l_commitdate": "1994-06-10", "l_receiptdate": "1994-07-24", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "s boost carefully. pending d" }, { "l_orderkey": 1857i32, "l_partkey": 100i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 41.0d, "l_extendedprice": 41004.1d, "l_discount": 0.07d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-04-16", "l_commitdate": "1993-02-16", "l_receiptdate": "1993-04-18", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": " the slyly" }, { "l_orderkey": 1890i32, "l_partkey": 100i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 43.0d, "l_extendedprice": 43004.3d, "l_discount": 0.07d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-30", "l_commitdate": "1997-01-31", "l_receiptdate": "1997-01-19", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "p ironic, express accounts. fu" }, { "l_orderkey": 2022i32, "l_partkey": 100i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 36.0d, "l_extendedprice": 36003.6d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-03-24", "l_commitdate": "1992-05-07", "l_receiptdate": "1992-04-13", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "ly after the foxes. regular, final inst" }, { "l_orderkey": 2470i32, "l_partkey": 100i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 50.0d, "l_extendedprice": 50005.0d, "l_discount": 0.03d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-02", "l_commitdate": "1997-06-01", "l_receiptdate": "1997-06-09", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": " packages " }, { "l_orderkey": 2567i32, "l_partkey": 100i32, "l_suppkey": 3i32, "l_linenumber": 6i32, "l_quantity": 32.0d, "l_extendedprice": 32003.2d, "l_discount": 0.01d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-24", "l_commitdate": "1998-04-30", "l_receiptdate": "1998-06-14", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": " the even, iro" }, { "l_orderkey": 2785i32, "l_partkey": 100i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 34.0d, "l_extendedprice": 34003.4d, "l_discount": 0.08d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-07", "l_commitdate": "1995-09-09", "l_receiptdate": "1995-09-05", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "ly final packages haggl" }, { "l_orderkey": 2852i32, "l_partkey": 100i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 12.0d, "l_extendedprice": 12001.2d, "l_discount": 0.08d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-02-25", "l_commitdate": "1993-03-24", "l_receiptdate": "1993-03-07", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "le. request" }, { "l_orderkey": 3170i32, "l_partkey": 100i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 21.0d, "l_extendedprice": 21002.1d, "l_discount": 0.01d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-09", "l_commitdate": "1998-01-31", "l_receiptdate": "1997-12-21", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "o beans. carefully final requests dou" }, { "l_orderkey": 3233i32, "l_partkey": 100i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 2.0d, "l_extendedprice": 2000.2d, "l_discount": 0.04d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-01-03", "l_commitdate": "1995-01-02", "l_receiptdate": "1995-01-21", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": " across the bold packages" }, { "l_orderkey": 3461i32, "l_partkey": 100i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 49.0d, "l_extendedprice": 49004.9d, "l_discount": 0.06d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-03-09", "l_commitdate": "1993-04-16", "l_receiptdate": "1993-03-13", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "ual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual requestual reques" }, { "l_orderkey": 3649i32, "l_partkey": 100i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 24.0d, "l_extendedprice": 24002.4d, "l_discount": 0.05d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-07-07", "l_commitdate": "1994-08-20", "l_receiptdate": "1994-07-27", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "c accounts. quickly final theodo" }, { "l_orderkey": 3683i32, "l_partkey": 100i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 23.0d, "l_extendedprice": 23002.3d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-07-02", "l_commitdate": "1993-05-16", "l_receiptdate": "1993-07-30", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "xpress accounts sleep slyly re" }, { "l_orderkey": 3777i32, "l_partkey": 100i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 11.0d, "l_extendedprice": 11001.1d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-04-09", "l_commitdate": "1994-06-05", "l_receiptdate": "1994-04-14", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "ld ideas. even theodolites" }, { "l_orderkey": 3808i32, "l_partkey": 100i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 34.0d, "l_extendedprice": 34003.4d, "l_discount": 0.07d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-08-13", "l_commitdate": "1994-07-22", "l_receiptdate": "1994-08-31", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": " pearls will have to " }, { "l_orderkey": 4134i32, "l_partkey": 100i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 45.0d, "l_extendedprice": 45004.5d, "l_discount": 0.08d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-04-11", "l_commitdate": "1995-03-27", "l_receiptdate": "1995-04-17", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "ironic pin" }, { "l_orderkey": 4262i32, "l_partkey": 100i32, "l_suppkey": 3i32, "l_linenumber": 5i32, "l_quantity": 28.0d, "l_extendedprice": 28002.8d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-22", "l_commitdate": "1996-09-06", "l_receiptdate": "1996-11-13", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "ironic, regular depend" }, { "l_orderkey": 4738i32, "l_partkey": 100i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 50.0d, "l_extendedprice": 50005.0d, "l_discount": 0.04d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-06-18", "l_commitdate": "1992-07-04", "l_receiptdate": "1992-07-07", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "the blithely ironic braids sleep slyly" }, { "l_orderkey": 4739i32, "l_partkey": 100i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 30.0d, "l_extendedprice": 30003.0d, "l_discount": 0.09d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-05-29", "l_commitdate": "1993-04-12", "l_receiptdate": "1993-06-18", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "ly even packages use across th" }, { "l_orderkey": 4742i32, "l_partkey": 100i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 45.0d, "l_extendedprice": 45004.5d, "l_discount": 0.05d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-05-12", "l_commitdate": "1995-05-14", "l_receiptdate": "1995-06-07", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "ke carefully. do" }, { "l_orderkey": 4839i32, "l_partkey": 100i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 19.0d, "l_extendedprice": 19001.9d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-05-20", "l_commitdate": "1994-07-14", "l_receiptdate": "1994-05-30", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": " deposits sublate furiously ir" }, { "l_orderkey": 4928i32, "l_partkey": 100i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 4.0d, "l_extendedprice": 4000.4d, "l_discount": 0.04d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-10-25", "l_commitdate": "1993-12-24", "l_receiptdate": "1993-11-16", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "bout the slyly final accounts. carefull" }, { "l_orderkey": 4961i32, "l_partkey": 100i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 10.0d, "l_extendedprice": 10001.0d, "l_discount": 0.02d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-15", "l_commitdate": "1998-07-03", "l_receiptdate": "1998-04-18", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "quests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. regular, ironic ideas at the ironiquests. " }, { "l_orderkey": 5509i32, "l_partkey": 100i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 45.0d, "l_extendedprice": 45004.5d, "l_discount": 0.0d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-07-24", "l_commitdate": "1994-05-28", "l_receiptdate": "1994-08-20", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "counts sleep. f" }, { "l_orderkey": 5633i32, "l_partkey": 100i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 48.0d, "l_extendedprice": 48004.8d, "l_discount": 0.01d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-24", "l_commitdate": "1998-07-22", "l_receiptdate": "1998-07-18", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "even courts haggle slyly at the requ" }, { "l_orderkey": 5799i32, "l_partkey": 100i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 30.0d, "l_extendedprice": 30003.0d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-12", "l_commitdate": "1995-09-13", "l_receiptdate": "1995-09-19", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": " furiously s" }, { "l_orderkey": 5920i32, "l_partkey": 100i32, "l_suppkey": 4i32, "l_linenumber": 5i32, "l_quantity": 42.0d, "l_extendedprice": 42004.2d, "l_discount": 0.09d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-12-18", "l_commitdate": "1995-01-07", "l_receiptdate": "1995-01-14", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "lar, ironic dependencies sno" }, { "l_orderkey": 5954i32, "l_partkey": 100i32, "l_suppkey": 4i32, "l_linenumber": 5i32, "l_quantity": 35.0d, "l_extendedprice": 35003.5d, "l_discount": 0.04d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-03-17", "l_commitdate": "1993-02-06", "l_receiptdate": "1993-04-10", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "tions maintain slyly. furious" } ] }
+{ "partkey": 101i32, "lines": [ { "l_orderkey": 420i32, "l_partkey": 101i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 5.0d, "l_extendedprice": 5005.5d, "l_discount": 0.04d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-04", "l_commitdate": "1996-01-02", "l_receiptdate": "1995-11-30", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "cajole blit" }, { "l_orderkey": 581i32, "l_partkey": 101i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 49.0d, "l_extendedprice": 49053.9d, "l_discount": 0.1d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-27", "l_commitdate": "1997-04-24", "l_receiptdate": "1997-03-10", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": ". slyly regular pinto beans acr" }, { "l_orderkey": 644i32, "l_partkey": 101i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 44.0d, "l_extendedprice": 44048.4d, "l_discount": 0.04d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-08-17", "l_commitdate": "1992-07-26", "l_receiptdate": "1992-08-20", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "iously ironic pinto beans. bold packa" }, { "l_orderkey": 742i32, "l_partkey": 101i32, "l_suppkey": 4i32, "l_linenumber": 5i32, "l_quantity": 48.0d, "l_extendedprice": 48052.8d, "l_discount": 0.09d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-03-24", "l_commitdate": "1995-01-23", "l_receiptdate": "1995-04-08", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": " platelets " }, { "l_orderkey": 1123i32, "l_partkey": 101i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 38.0d, "l_extendedprice": 38041.8d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-23", "l_commitdate": "1996-10-04", "l_receiptdate": "1996-09-27", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": " blithely carefully unusual reques" }, { "l_orderkey": 1186i32, "l_partkey": 101i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 20.0d, "l_extendedprice": 20022.0d, "l_discount": 0.07d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-20", "l_commitdate": "1996-10-23", "l_receiptdate": "1996-09-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "ely alongside of the blithel" }, { "l_orderkey": 1571i32, "l_partkey": 101i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 48.0d, "l_extendedprice": 48052.8d, "l_discount": 0.05d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-12-28", "l_commitdate": "1993-01-04", "l_receiptdate": "1993-01-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "slyly pending p" }, { "l_orderkey": 1893i32, "l_partkey": 101i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 18.0d, "l_extendedprice": 18019.8d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-24", "l_commitdate": "1998-01-12", "l_receiptdate": "1998-02-13", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "g packages. fluffily final reques" }, { "l_orderkey": 1958i32, "l_partkey": 101i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 31.0d, "l_extendedprice": 31034.1d, "l_discount": 0.08d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-31", "l_commitdate": "1995-11-12", "l_receiptdate": "1995-11-07", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "r deposits c" }, { "l_orderkey": 1990i32, "l_partkey": 101i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 46.0d, "l_extendedprice": 46050.6d, "l_discount": 0.01d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-12-29", "l_commitdate": "1995-03-14", "l_receiptdate": "1995-01-13", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "ar sentiments." }, { "l_orderkey": 2048i32, "l_partkey": 101i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 12.0d, "l_extendedprice": 12013.2d, "l_discount": 0.01d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-01-28", "l_commitdate": "1994-01-19", "l_receiptdate": "1994-02-08", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": " even theodoli" }, { "l_orderkey": 2053i32, "l_partkey": 101i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 20.0d, "l_extendedprice": 20022.0d, "l_discount": 0.09d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-04-25", "l_commitdate": "1995-04-12", "l_receiptdate": "1995-05-13", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "ly ironic foxes haggle slyly speci" }, { "l_orderkey": 2147i32, "l_partkey": 101i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 4.0d, "l_extendedprice": 4004.4d, "l_discount": 0.01d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-09-27", "l_commitdate": "1992-11-15", "l_receiptdate": "1992-10-22", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "mong the blithely special" }, { "l_orderkey": 2371i32, "l_partkey": 101i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 11.0d, "l_extendedprice": 11012.1d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-02-25", "l_commitdate": "1998-04-06", "l_receiptdate": "1998-03-23", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "requests. regular pinto beans wake. car" }, { "l_orderkey": 2464i32, "l_partkey": 101i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 20.0d, "l_extendedprice": 20022.0d, "l_discount": 0.01d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-26", "l_commitdate": "1998-01-02", "l_receiptdate": "1998-01-24", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "sts. slyly close ideas shall h" }, { "l_orderkey": 2599i32, "l_partkey": 101i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 11.0d, "l_extendedprice": 11012.1d, "l_discount": 0.08d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-01", "l_commitdate": "1996-12-14", "l_receiptdate": "1997-02-27", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": " express accoun" }, { "l_orderkey": 3044i32, "l_partkey": 101i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 10.0d, "l_extendedprice": 10011.0d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-13", "l_commitdate": "1996-05-06", "l_receiptdate": "1996-07-21", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": " slyly ironic requests. s" }, { "l_orderkey": 3683i32, "l_partkey": 101i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 35.0d, "l_extendedprice": 35038.5d, "l_discount": 0.05d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-05-31", "l_commitdate": "1993-04-17", "l_receiptdate": "1993-06-14", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": " the furiously expr" }, { "l_orderkey": 3905i32, "l_partkey": 101i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 43.0d, "l_extendedprice": 43047.3d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-03-30", "l_commitdate": "1994-02-18", "l_receiptdate": "1994-04-09", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "uses are care" }, { "l_orderkey": 4355i32, "l_partkey": 101i32, "l_suppkey": 4i32, "l_linenumber": 7i32, "l_quantity": 47.0d, "l_extendedprice": 47051.7d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-28", "l_commitdate": "1996-12-29", "l_receiptdate": "1997-01-09", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "e. realms integrate " }, { "l_orderkey": 4390i32, "l_partkey": 101i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 42.0d, "l_extendedprice": 42046.2d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-06-12", "l_commitdate": "1995-07-16", "l_receiptdate": "1995-06-17", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "arefully even accoun" }, { "l_orderkey": 4673i32, "l_partkey": 101i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 44.0d, "l_extendedprice": 44048.4d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-11", "l_commitdate": "1996-10-31", "l_receiptdate": "1997-01-08", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": " gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts cajole dari gifts c" }, { "l_orderkey": 4965i32, "l_partkey": 101i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 27.0d, "l_extendedprice": 27029.7d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-11-06", "l_commitdate": "1993-12-24", "l_receiptdate": "1993-11-30", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "efully final foxes" }, { "l_orderkey": 5062i32, "l_partkey": 101i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 9.0d, "l_extendedprice": 9009.9d, "l_discount": 0.08d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-01-02", "l_commitdate": "1992-12-01", "l_receiptdate": "1993-01-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": " silent theodolites wake. c" }, { "l_orderkey": 5126i32, "l_partkey": 101i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 43.0d, "l_extendedprice": 43047.3d, "l_discount": 0.09d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-01-07", "l_commitdate": "1992-12-19", "l_receiptdate": "1993-01-16", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "e silently. ironic, unusual accounts" }, { "l_orderkey": 5572i32, "l_partkey": 101i32, "l_suppkey": 2i32, "l_linenumber": 6i32, "l_quantity": 14.0d, "l_extendedprice": 14015.4d, "l_discount": 0.04d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-11-02", "l_commitdate": "1994-09-20", "l_receiptdate": "1994-11-03", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "he fluffily express packages. fluffily fina" }, { "l_orderkey": 5665i32, "l_partkey": 101i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 32.0d, "l_extendedprice": 32035.2d, "l_discount": 0.0d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-08-11", "l_commitdate": "1993-08-01", "l_receiptdate": "1993-09-07", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "f the slyly even requests! regular request" }, { "l_orderkey": 5764i32, "l_partkey": 101i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 28.0d, "l_extendedprice": 28030.8d, "l_discount": 0.04d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-12-07", "l_commitdate": "1993-12-20", "l_receiptdate": "1993-12-26", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "sleep furi" } ] }
+{ "partkey": 102i32, "lines": [ { "l_orderkey": 167i32, "l_partkey": 102i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 28.0d, "l_extendedprice": 28058.8d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-02-19", "l_commitdate": "1993-02-16", "l_receiptdate": "1993-03-03", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "sly during the u" }, { "l_orderkey": 198i32, "l_partkey": 102i32, "l_suppkey": 3i32, "l_linenumber": 5i32, "l_quantity": 33.0d, "l_extendedprice": 33069.3d, "l_discount": 0.02d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-22", "l_commitdate": "1998-03-12", "l_receiptdate": "1998-04-14", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "ending foxes acr" }, { "l_orderkey": 674i32, "l_partkey": 102i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 23.0d, "l_extendedprice": 23048.3d, "l_discount": 0.06d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-10-25", "l_commitdate": "1992-10-15", "l_receiptdate": "1992-11-03", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "ve the quickly even deposits. blithe" }, { "l_orderkey": 742i32, "l_partkey": 102i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 46.0d, "l_extendedprice": 46096.6d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-03-12", "l_commitdate": "1995-03-20", "l_receiptdate": "1995-03-16", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "e slyly bold deposits cajole according to" }, { "l_orderkey": 742i32, "l_partkey": 102i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 24.0d, "l_extendedprice": 24050.4d, "l_discount": 0.08d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-02-12", "l_commitdate": "1995-03-12", "l_receiptdate": "1995-02-14", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "affix slyly. furiously i" }, { "l_orderkey": 897i32, "l_partkey": 102i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 2.0d, "l_extendedprice": 2004.2d, "l_discount": 0.08d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-05-22", "l_commitdate": "1995-05-07", "l_receiptdate": "1995-06-16", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "into beans. slyly special fox" }, { "l_orderkey": 929i32, "l_partkey": 102i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 7.0d, "l_extendedprice": 7014.7d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-12-24", "l_commitdate": "1992-12-19", "l_receiptdate": "1993-01-08", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "ithely. slyly c" }, { "l_orderkey": 1538i32, "l_partkey": 102i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 32.0d, "l_extendedprice": 32067.2d, "l_discount": 0.05d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-08", "l_commitdate": "1995-07-29", "l_receiptdate": "1995-08-01", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "uses maintain blithely. fluffily" }, { "l_orderkey": 1958i32, "l_partkey": 102i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 4.0d, "l_extendedprice": 4008.4d, "l_discount": 0.04d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-24", "l_commitdate": "1995-12-09", "l_receiptdate": "1995-10-28", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "he slyly even dependencies " }, { "l_orderkey": 2119i32, "l_partkey": 102i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 36.0d, "l_extendedprice": 36075.6d, "l_discount": 0.04d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-10", "l_commitdate": "1996-10-25", "l_receiptdate": "1996-12-03", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "ly bold foxes. ironic accoun" }, { "l_orderkey": 2305i32, "l_partkey": 102i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 32.0d, "l_extendedprice": 32067.2d, "l_discount": 0.03d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-04-02", "l_commitdate": "1993-03-18", "l_receiptdate": "1993-04-03", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": " haggle caref" }, { "l_orderkey": 2662i32, "l_partkey": 102i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 43.0d, "l_extendedprice": 43090.3d, "l_discount": 0.09d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-24", "l_commitdate": "1996-11-04", "l_receiptdate": "1996-12-08", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": ". slyly specia" }, { "l_orderkey": 2693i32, "l_partkey": 102i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 43.0d, "l_extendedprice": 43090.3d, "l_discount": 0.03d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-24", "l_commitdate": "1996-10-24", "l_receiptdate": "1996-11-03", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "as are according to th" }, { "l_orderkey": 2854i32, "l_partkey": 102i32, "l_suppkey": 3i32, "l_linenumber": 5i32, "l_quantity": 7.0d, "l_extendedprice": 7014.7d, "l_discount": 0.03d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-09-23", "l_commitdate": "1994-08-14", "l_receiptdate": "1994-10-10", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": " the pending" }, { "l_orderkey": 2919i32, "l_partkey": 102i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 2.0d, "l_extendedprice": 2004.2d, "l_discount": 0.03d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-12-28", "l_commitdate": "1994-02-23", "l_receiptdate": "1994-01-18", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "re slyly. regular ideas detect furiousl" }, { "l_orderkey": 2919i32, "l_partkey": 102i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 44.0d, "l_extendedprice": 44092.4d, "l_discount": 0.0d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-02-04", "l_commitdate": "1994-02-03", "l_receiptdate": "1994-03-02", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "es doze around the furiously " }, { "l_orderkey": 3042i32, "l_partkey": 102i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 28.0d, "l_extendedprice": 28058.8d, "l_discount": 0.05d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-11-24", "l_commitdate": "1995-01-02", "l_receiptdate": "1994-12-06", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "ng the furiously r" }, { "l_orderkey": 3527i32, "l_partkey": 102i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 47.0d, "l_extendedprice": 47098.7d, "l_discount": 0.07d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-14", "l_commitdate": "1997-07-29", "l_receiptdate": "1997-07-21", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "unts. express re" }, { "l_orderkey": 3844i32, "l_partkey": 102i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 5.0d, "l_extendedprice": 5010.5d, "l_discount": 0.1d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-04-29", "l_commitdate": "1995-02-24", "l_receiptdate": "1995-05-05", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": " unwind quickly about the pending, i" }, { "l_orderkey": 4007i32, "l_partkey": 102i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 5.0d, "l_extendedprice": 5010.5d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-09-17", "l_commitdate": "1993-08-29", "l_receiptdate": "1993-10-12", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "y unusual packa" }, { "l_orderkey": 4032i32, "l_partkey": 102i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 8.0d, "l_extendedprice": 8016.8d, "l_discount": 0.06d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-04", "l_commitdate": "1998-05-17", "l_receiptdate": "1998-07-03", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "ometimes even cou" }, { "l_orderkey": 4131i32, "l_partkey": 102i32, "l_suppkey": 7i32, "l_linenumber": 6i32, "l_quantity": 47.0d, "l_extendedprice": 47098.7d, "l_discount": 0.02d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-09", "l_commitdate": "1998-04-05", "l_receiptdate": "1998-03-13", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "ges. ironic pinto be" }, { "l_orderkey": 4166i32, "l_partkey": 102i32, "l_suppkey": 5i32, "l_linenumber": 6i32, "l_quantity": 6.0d, "l_extendedprice": 6012.6d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-04-30", "l_commitdate": "1993-04-17", "l_receiptdate": "1993-05-08", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "ily ironic deposits print furiously. iron" }, { "l_orderkey": 4322i32, "l_partkey": 102i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 10.0d, "l_extendedprice": 10021.0d, "l_discount": 0.0d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-31", "l_commitdate": "1998-04-27", "l_receiptdate": "1998-06-25", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": " regular ideas engage carefully quick" }, { "l_orderkey": 4453i32, "l_partkey": 102i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 26.0d, "l_extendedprice": 26054.6d, "l_discount": 0.06d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-07", "l_commitdate": "1997-06-07", "l_receiptdate": "1997-05-22", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "express packages are" }, { "l_orderkey": 4835i32, "l_partkey": 102i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 23.0d, "l_extendedprice": 23048.3d, "l_discount": 0.08d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-02-05", "l_commitdate": "1995-01-04", "l_receiptdate": "1995-02-28", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "e carefully regular foxes. deposits are sly" }, { "l_orderkey": 4866i32, "l_partkey": 102i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 1.0d, "l_extendedprice": 1002.1d, "l_discount": 0.06d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-10-15", "l_commitdate": "1997-10-01", "l_receiptdate": "1997-11-14", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "latelets nag. q" }, { "l_orderkey": 5030i32, "l_partkey": 102i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 22.0d, "l_extendedprice": 22046.2d, "l_discount": 0.04d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-09-01", "l_commitdate": "1998-08-15", "l_receiptdate": "1998-09-30", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": ". quickly regular foxes believe" }, { "l_orderkey": 5217i32, "l_partkey": 102i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 23.0d, "l_extendedprice": 23048.3d, "l_discount": 0.03d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-15", "l_commitdate": "1995-12-17", "l_receiptdate": "1995-11-27", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "pending packages cajole ne" }, { "l_orderkey": 5408i32, "l_partkey": 102i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 2.0d, "l_extendedprice": 2004.2d, "l_discount": 0.07d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-08-21", "l_commitdate": "1992-10-03", "l_receiptdate": "1992-08-28", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "cross the dolphins h" }, { "l_orderkey": 5415i32, "l_partkey": 102i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 44.0d, "l_extendedprice": 44092.4d, "l_discount": 0.0d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-08-19", "l_commitdate": "1992-10-26", "l_receiptdate": "1992-09-17", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": " requests. unusual theodolites sleep agains" }, { "l_orderkey": 5415i32, "l_partkey": 102i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 6.0d, "l_extendedprice": 6012.6d, "l_discount": 0.1d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-10-28", "l_commitdate": "1992-09-09", "l_receiptdate": "1992-11-20", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "ges around the fur" }, { "l_orderkey": 5540i32, "l_partkey": 102i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 2.0d, "l_extendedprice": 2004.2d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-12", "l_commitdate": "1997-01-09", "l_receiptdate": "1996-12-25", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "nic asymptotes could hav" }, { "l_orderkey": 5633i32, "l_partkey": 102i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 10.0d, "l_extendedprice": 10021.0d, "l_discount": 0.09d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-15", "l_commitdate": "1998-08-03", "l_receiptdate": "1998-08-03", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "its cajole fluffily fluffily special pinto" }, { "l_orderkey": 5696i32, "l_partkey": 102i32, "l_suppkey": 9i32, "l_linenumber": 7i32, "l_quantity": 6.0d, "l_extendedprice": 6012.6d, "l_discount": 0.07d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-03", "l_commitdate": "1995-07-15", "l_receiptdate": "1995-09-01", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "n patterns lose slyly fina" }, { "l_orderkey": 5762i32, "l_partkey": 102i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 27.0d, "l_extendedprice": 27056.7d, "l_discount": 0.02d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-21", "l_commitdate": "1997-05-08", "l_receiptdate": "1997-03-23", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "across the bold ideas. carefully sp" }, { "l_orderkey": 5792i32, "l_partkey": 102i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 31.0d, "l_extendedprice": 31065.1d, "l_discount": 0.02d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-06-17", "l_commitdate": "1993-05-05", "l_receiptdate": "1993-07-01", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "s? furiously even instructions " }, { "l_orderkey": 5984i32, "l_partkey": 102i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 25.0d, "l_extendedprice": 25052.5d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-10-06", "l_commitdate": "1994-07-21", "l_receiptdate": "1994-10-28", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "gular accounts. even packages nag slyly" } ] }
+{ "partkey": 103i32, "lines": [ { "l_orderkey": 68i32, "l_partkey": 103i32, "l_suppkey": 6i32, "l_linenumber": 6i32, "l_quantity": 30.0d, "l_extendedprice": 30093.0d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-11", "l_commitdate": "1998-07-11", "l_receiptdate": "1998-08-14", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "oxes are slyly blithely fin" }, { "l_orderkey": 161i32, "l_partkey": 103i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 19.0d, "l_extendedprice": 19058.9d, "l_discount": 0.01d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-12-13", "l_commitdate": "1994-11-19", "l_receiptdate": "1994-12-26", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": ", regular sheaves sleep along" }, { "l_orderkey": 353i32, "l_partkey": 103i32, "l_suppkey": 4i32, "l_linenumber": 6i32, "l_quantity": 39.0d, "l_extendedprice": 39120.9d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-01-15", "l_commitdate": "1994-03-30", "l_receiptdate": "1994-02-01", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "losely quickly even accounts. c" }, { "l_orderkey": 711i32, "l_partkey": 103i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 27.0d, "l_extendedprice": 27083.7d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-10-02", "l_commitdate": "1993-10-26", "l_receiptdate": "1993-10-08", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "slyly. ironic asy" }, { "l_orderkey": 832i32, "l_partkey": 103i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 45.0d, "l_extendedprice": 45139.5d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-05-08", "l_commitdate": "1992-06-06", "l_receiptdate": "1992-06-04", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "foxes engage slyly alon" }, { "l_orderkey": 1504i32, "l_partkey": 103i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 22.0d, "l_extendedprice": 22068.2d, "l_discount": 0.04d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-09-09", "l_commitdate": "1992-10-29", "l_receiptdate": "1992-09-10", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": " accounts sleep. furiou" }, { "l_orderkey": 1956i32, "l_partkey": 103i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 16.0d, "l_extendedprice": 16049.6d, "l_discount": 0.0d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-11-11", "l_commitdate": "1992-11-11", "l_receiptdate": "1992-11-30", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "es cajole blithely. pen" }, { "l_orderkey": 2017i32, "l_partkey": 103i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 49.0d, "l_extendedprice": 49151.9d, "l_discount": 0.1d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-26", "l_commitdate": "1998-07-01", "l_receiptdate": "1998-06-06", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": " after the unusual instructions. sly" }, { "l_orderkey": 2209i32, "l_partkey": 103i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 10.0d, "l_extendedprice": 10031.0d, "l_discount": 0.0d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-09-02", "l_commitdate": "1992-09-24", "l_receiptdate": "1992-09-21", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "players. carefully reg" }, { "l_orderkey": 2400i32, "l_partkey": 103i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 48.0d, "l_extendedprice": 48148.8d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-10-07", "l_commitdate": "1998-08-30", "l_receiptdate": "1998-11-03", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "fore the car" }, { "l_orderkey": 2661i32, "l_partkey": 103i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 22.0d, "l_extendedprice": 22068.2d, "l_discount": 0.08d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-14", "l_commitdate": "1997-03-17", "l_receiptdate": "1997-04-08", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": " foxes affix quickly ironic request" }, { "l_orderkey": 3136i32, "l_partkey": 103i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 7.0d, "l_extendedprice": 7021.7d, "l_discount": 0.05d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-10-08", "l_commitdate": "1994-09-14", "l_receiptdate": "1994-10-11", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "ic pinto beans are slyly. f" }, { "l_orderkey": 3205i32, "l_partkey": 103i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 38.0d, "l_extendedprice": 38117.8d, "l_discount": 0.1d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-07-31", "l_commitdate": "1992-06-03", "l_receiptdate": "1992-08-20", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "usly quiet accounts. slyly pending pinto " }, { "l_orderkey": 3936i32, "l_partkey": 103i32, "l_suppkey": 6i32, "l_linenumber": 6i32, "l_quantity": 26.0d, "l_extendedprice": 26080.6d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-27", "l_commitdate": "1997-01-16", "l_receiptdate": "1997-03-22", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "quickly pen" }, { "l_orderkey": 4422i32, "l_partkey": 103i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 39.0d, "l_extendedprice": 39120.9d, "l_discount": 0.0d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-02", "l_commitdate": "1995-06-24", "l_receiptdate": "1995-09-14", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "en hockey players engage" }, { "l_orderkey": 4484i32, "l_partkey": 103i32, "l_suppkey": 8i32, "l_linenumber": 7i32, "l_quantity": 50.0d, "l_extendedprice": 50155.0d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-17", "l_commitdate": "1997-03-16", "l_receiptdate": "1997-03-21", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "the ironic, final theodo" }, { "l_orderkey": 4515i32, "l_partkey": 103i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 50.0d, "l_extendedprice": 50155.0d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-03-28", "l_commitdate": "1992-05-16", "l_receiptdate": "1992-04-20", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "ding instructions again" }, { "l_orderkey": 4869i32, "l_partkey": 103i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 24.0d, "l_extendedprice": 24074.4d, "l_discount": 0.1d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-11-23", "l_commitdate": "1994-11-18", "l_receiptdate": "1994-12-11", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "se deposits above the sly, q" }, { "l_orderkey": 4900i32, "l_partkey": 103i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 48.0d, "l_extendedprice": 48148.8d, "l_discount": 0.02d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-09-18", "l_commitdate": "1992-08-14", "l_receiptdate": "1992-09-28", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "uickly ironic ideas kindle s" }, { "l_orderkey": 4900i32, "l_partkey": 103i32, "l_suppkey": 6i32, "l_linenumber": 6i32, "l_quantity": 46.0d, "l_extendedprice": 46142.6d, "l_discount": 0.06d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-07-11", "l_commitdate": "1992-09-19", "l_receiptdate": "1992-07-16", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "ly final acco" }, { "l_orderkey": 4931i32, "l_partkey": 103i32, "l_suppkey": 6i32, "l_linenumber": 6i32, "l_quantity": 8.0d, "l_extendedprice": 8024.8d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-02-16", "l_commitdate": "1994-12-30", "l_receiptdate": "1995-03-15", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "dependencies are slyly" }, { "l_orderkey": 4932i32, "l_partkey": 103i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 15.0d, "l_extendedprice": 15046.5d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-11-15", "l_commitdate": "1993-10-25", "l_receiptdate": "1993-11-29", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "yly. unusu" }, { "l_orderkey": 5377i32, "l_partkey": 103i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 23.0d, "l_extendedprice": 23071.3d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-26", "l_commitdate": "1997-07-13", "l_receiptdate": "1997-07-08", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": " silent wa" }, { "l_orderkey": 5445i32, "l_partkey": 103i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 46.0d, "l_extendedprice": 46142.6d, "l_discount": 0.04d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-10-06", "l_commitdate": "1993-09-15", "l_receiptdate": "1993-10-28", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "old depend" }, { "l_orderkey": 5827i32, "l_partkey": 103i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 23.0d, "l_extendedprice": 23071.3d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-11-16", "l_commitdate": "1998-09-14", "l_receiptdate": "1998-11-17", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "ans. furiously special instruct" } ] }
+{ "partkey": 104i32, "lines": [ { "l_orderkey": 71i32, "l_partkey": 104i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 39.0d, "l_extendedprice": 39159.9d, "l_discount": 0.08d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-29", "l_commitdate": "1998-04-07", "l_receiptdate": "1998-02-18", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "l accounts sleep across the pack" }, { "l_orderkey": 133i32, "l_partkey": 104i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 27.0d, "l_extendedprice": 27110.7d, "l_discount": 0.0d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-21", "l_commitdate": "1998-02-23", "l_receiptdate": "1997-12-27", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "yly even gifts after the sl" }, { "l_orderkey": 1538i32, "l_partkey": 104i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 28.0d, "l_extendedprice": 28114.8d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-19", "l_commitdate": "1995-08-27", "l_receiptdate": "1995-10-10", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "bout the fluffily unusual" }, { "l_orderkey": 1697i32, "l_partkey": 104i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 24.0d, "l_extendedprice": 24098.4d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-29", "l_commitdate": "1996-12-19", "l_receiptdate": "1997-01-10", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "ts cajole carefully above the carefully" }, { "l_orderkey": 1829i32, "l_partkey": 104i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 49.0d, "l_extendedprice": 49200.9d, "l_discount": 0.09d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-08-26", "l_commitdate": "1994-08-01", "l_receiptdate": "1994-09-16", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "ound the quickly " }, { "l_orderkey": 1862i32, "l_partkey": 104i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 26.0d, "l_extendedprice": 26106.6d, "l_discount": 0.02d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-25", "l_commitdate": "1998-05-17", "l_receiptdate": "1998-04-17", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "g carefully: thinly ironic deposits af" }, { "l_orderkey": 2179i32, "l_partkey": 104i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 5.0d, "l_extendedprice": 5020.5d, "l_discount": 0.03d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-09", "l_commitdate": "1996-10-08", "l_receiptdate": "1996-11-11", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "ts haggle blithely. ironic, careful theodol" }, { "l_orderkey": 2246i32, "l_partkey": 104i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 43.0d, "l_extendedprice": 43176.3d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-25", "l_commitdate": "1996-08-23", "l_receiptdate": "1996-09-19", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "ainst the ironic theodolites haggle fi" }, { "l_orderkey": 2469i32, "l_partkey": 104i32, "l_suppkey": 5i32, "l_linenumber": 6i32, "l_quantity": 49.0d, "l_extendedprice": 49200.9d, "l_discount": 0.02d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-03", "l_commitdate": "1996-12-26", "l_receiptdate": "1997-03-13", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": " requests are car" }, { "l_orderkey": 2598i32, "l_partkey": 104i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 4.0d, "l_extendedprice": 4016.4d, "l_discount": 0.03d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-23", "l_commitdate": "1996-05-13", "l_receiptdate": "1996-05-25", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": " across the furiously fi" }, { "l_orderkey": 3010i32, "l_partkey": 104i32, "l_suppkey": 5i32, "l_linenumber": 5i32, "l_quantity": 9.0d, "l_extendedprice": 9036.9d, "l_discount": 0.02d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-04-28", "l_commitdate": "1996-03-17", "l_receiptdate": "1996-05-18", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "inal packages. quickly even pinto" }, { "l_orderkey": 3047i32, "l_partkey": 104i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 17.0d, "l_extendedprice": 17069.7d, "l_discount": 0.08d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-14", "l_commitdate": "1997-04-20", "l_receiptdate": "1997-06-23", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "onic instruction" }, { "l_orderkey": 3488i32, "l_partkey": 104i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 48.0d, "l_extendedprice": 48196.8d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-03-29", "l_commitdate": "1995-03-26", "l_receiptdate": "1995-04-28", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "sly? final requests " }, { "l_orderkey": 3748i32, "l_partkey": 104i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 12.0d, "l_extendedprice": 12049.2d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-17", "l_commitdate": "1998-04-15", "l_receiptdate": "1998-05-12", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "old reques" }, { "l_orderkey": 4897i32, "l_partkey": 104i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 19.0d, "l_extendedprice": 19077.9d, "l_discount": 0.03d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-11-08", "l_commitdate": "1992-12-14", "l_receiptdate": "1992-12-03", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "! ironic, pending dependencies doze furiou" }, { "l_orderkey": 5221i32, "l_partkey": 104i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 24.0d, "l_extendedprice": 24098.4d, "l_discount": 0.07d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-04", "l_commitdate": "1995-08-11", "l_receiptdate": "1995-10-30", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "s pinto beans sleep. sly" }, { "l_orderkey": 5377i32, "l_partkey": 104i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 12.0d, "l_extendedprice": 12049.2d, "l_discount": 0.05d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-08", "l_commitdate": "1997-06-15", "l_receiptdate": "1997-05-15", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": " ironic, final" }, { "l_orderkey": 5409i32, "l_partkey": 104i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 38.0d, "l_extendedprice": 38155.8d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-03-17", "l_commitdate": "1992-03-29", "l_receiptdate": "1992-04-13", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "onic, regular accounts! blithely even" }, { "l_orderkey": 5479i32, "l_partkey": 104i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 19.0d, "l_extendedprice": 19077.9d, "l_discount": 0.05d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-01-22", "l_commitdate": "1994-03-07", "l_receiptdate": "1994-02-11", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "arefully bo" } ] }
+{ "partkey": 105i32, "lines": [ { "l_orderkey": 69i32, "l_partkey": 105i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 32.0d, "l_extendedprice": 32163.2d, "l_discount": 0.08d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-08-24", "l_commitdate": "1994-08-17", "l_receiptdate": "1994-08-31", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "s sleep carefully bold, " }, { "l_orderkey": 515i32, "l_partkey": 105i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 10.0d, "l_extendedprice": 10051.0d, "l_discount": 0.03d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-10-04", "l_commitdate": "1993-11-03", "l_receiptdate": "1993-10-08", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "ar deposits th" }, { "l_orderkey": 615i32, "l_partkey": 105i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 36.0d, "l_extendedprice": 36183.6d, "l_discount": 0.1d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-06-01", "l_commitdate": "1992-07-14", "l_receiptdate": "1992-06-27", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": " packages. carefully final pinto bea" }, { "l_orderkey": 806i32, "l_partkey": 105i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 1.0d, "l_extendedprice": 1005.1d, "l_discount": 0.04d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-14", "l_commitdate": "1996-09-12", "l_receiptdate": "1996-07-25", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "ar accounts? pending, pending foxes a" }, { "l_orderkey": 992i32, "l_partkey": 105i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 30.0d, "l_extendedprice": 30153.0d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-15", "l_commitdate": "1998-02-02", "l_receiptdate": "1998-01-12", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "nic instructions n" }, { "l_orderkey": 1027i32, "l_partkey": 105i32, "l_suppkey": 8i32, "l_linenumber": 6i32, "l_quantity": 10.0d, "l_extendedprice": 10051.0d, "l_discount": 0.06d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-08-28", "l_commitdate": "1992-08-06", "l_receiptdate": "1992-09-03", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "ilent, express foxes near the blithely sp" }, { "l_orderkey": 1189i32, "l_partkey": 105i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 32.0d, "l_extendedprice": 32163.2d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-05-06", "l_commitdate": "1994-07-03", "l_receiptdate": "1994-05-15", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "e regular deposits. quickly quiet deposi" }, { "l_orderkey": 1728i32, "l_partkey": 105i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 23.0d, "l_extendedprice": 23117.3d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-08", "l_commitdate": "1996-07-24", "l_receiptdate": "1996-09-20", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "ns. pending, final ac" }, { "l_orderkey": 1859i32, "l_partkey": 105i32, "l_suppkey": 8i32, "l_linenumber": 6i32, "l_quantity": 12.0d, "l_extendedprice": 12061.2d, "l_discount": 0.08d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-22", "l_commitdate": "1997-06-08", "l_receiptdate": "1997-06-07", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "es. unusual, silent request" }, { "l_orderkey": 1986i32, "l_partkey": 105i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 10.0d, "l_extendedprice": 10051.0d, "l_discount": 0.1d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-05-14", "l_commitdate": "1994-06-21", "l_receiptdate": "1994-06-02", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "yly into the carefully even " }, { "l_orderkey": 2082i32, "l_partkey": 105i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 12.0d, "l_extendedprice": 12061.2d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-01-27", "l_commitdate": "1995-02-11", "l_receiptdate": "1995-02-07", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": " ironic instructions. carefull" }, { "l_orderkey": 2086i32, "l_partkey": 105i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 44.0d, "l_extendedprice": 44224.4d, "l_discount": 0.02d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-12-04", "l_commitdate": "1994-11-30", "l_receiptdate": "1994-12-21", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "latelets s" }, { "l_orderkey": 2466i32, "l_partkey": 105i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 10.0d, "l_extendedprice": 10051.0d, "l_discount": 0.0d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-05-08", "l_commitdate": "1994-04-06", "l_receiptdate": "1994-06-05", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "sly regular deposits. regular, regula" }, { "l_orderkey": 2593i32, "l_partkey": 105i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 37.0d, "l_extendedprice": 37188.7d, "l_discount": 0.08d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-12-14", "l_commitdate": "1993-10-08", "l_receiptdate": "1994-01-04", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "s wake bravel" }, { "l_orderkey": 2596i32, "l_partkey": 105i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 10.0d, "l_extendedprice": 10051.0d, "l_discount": 0.06d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-25", "l_commitdate": "1996-11-05", "l_receiptdate": "1996-09-13", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": " instructions shall have" }, { "l_orderkey": 2756i32, "l_partkey": 105i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 31.0d, "l_extendedprice": 31158.1d, "l_discount": 0.01d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-07-27", "l_commitdate": "1994-07-06", "l_receiptdate": "1994-08-22", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "en instructions use quickly." }, { "l_orderkey": 2791i32, "l_partkey": 105i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 8.0d, "l_extendedprice": 8040.8d, "l_discount": 0.02d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-01-30", "l_commitdate": "1994-11-24", "l_receiptdate": "1995-02-13", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "se. close ideas alongs" }, { "l_orderkey": 2850i32, "l_partkey": 105i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 49.0d, "l_extendedprice": 49249.9d, "l_discount": 0.09d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-07", "l_commitdate": "1996-12-12", "l_receiptdate": "1996-10-12", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": " slyly unusual req" }, { "l_orderkey": 3008i32, "l_partkey": 105i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 31.0d, "l_extendedprice": 31158.1d, "l_discount": 0.03d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-01", "l_commitdate": "1996-01-20", "l_receiptdate": "1995-12-28", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "nts use thinly around the carefully iro" }, { "l_orderkey": 3042i32, "l_partkey": 105i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 30.0d, "l_extendedprice": 30153.0d, "l_discount": 0.08d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-01-12", "l_commitdate": "1995-02-15", "l_receiptdate": "1995-01-24", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "the requests detect fu" }, { "l_orderkey": 3169i32, "l_partkey": 105i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 26.0d, "l_extendedprice": 26132.6d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-04-08", "l_commitdate": "1994-03-21", "l_receiptdate": "1994-04-29", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "ter the regular ideas. slyly iro" }, { "l_orderkey": 3335i32, "l_partkey": 105i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 13.0d, "l_extendedprice": 13066.3d, "l_discount": 0.06d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-20", "l_commitdate": "1995-12-20", "l_receiptdate": "1996-02-09", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "out the special asymptotes" }, { "l_orderkey": 3648i32, "l_partkey": 105i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 30.0d, "l_extendedprice": 30153.0d, "l_discount": 0.0d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-08-31", "l_commitdate": "1993-09-06", "l_receiptdate": "1993-09-06", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": " above the somas boost furious" }, { "l_orderkey": 3778i32, "l_partkey": 105i32, "l_suppkey": 6i32, "l_linenumber": 7i32, "l_quantity": 49.0d, "l_extendedprice": 49249.9d, "l_discount": 0.02d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-06-13", "l_commitdate": "1993-08-08", "l_receiptdate": "1993-07-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "ans. furiously " }, { "l_orderkey": 3809i32, "l_partkey": 105i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 46.0d, "l_extendedprice": 46234.6d, "l_discount": 0.1d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-20", "l_commitdate": "1996-06-01", "l_receiptdate": "1996-08-24", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "l asymptotes. special " }, { "l_orderkey": 3845i32, "l_partkey": 105i32, "l_suppkey": 8i32, "l_linenumber": 6i32, "l_quantity": 30.0d, "l_extendedprice": 30153.0d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-08-21", "l_commitdate": "1992-07-07", "l_receiptdate": "1992-08-25", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "counts do wake blithely. ironic requests " }, { "l_orderkey": 3969i32, "l_partkey": 105i32, "l_suppkey": 8i32, "l_linenumber": 6i32, "l_quantity": 4.0d, "l_extendedprice": 4020.4d, "l_discount": 0.02d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-04", "l_commitdate": "1997-07-31", "l_receiptdate": "1997-06-13", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "dencies wake blithely? quickly even theodo" }, { "l_orderkey": 4288i32, "l_partkey": 105i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 39.0d, "l_extendedprice": 39198.9d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-03-25", "l_commitdate": "1993-02-06", "l_receiptdate": "1993-03-28", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "uffy theodolites run" }, { "l_orderkey": 4294i32, "l_partkey": 105i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 19.0d, "l_extendedprice": 19096.9d, "l_discount": 0.03d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-10-16", "l_commitdate": "1992-11-13", "l_receiptdate": "1992-10-26", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "nt dependencies. furiously regular ideas d" }, { "l_orderkey": 4294i32, "l_partkey": 105i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 34.0d, "l_extendedprice": 34173.4d, "l_discount": 0.02d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-09-09", "l_commitdate": "1992-11-06", "l_receiptdate": "1992-10-04", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "pendencies!" }, { "l_orderkey": 4900i32, "l_partkey": 105i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 40.0d, "l_extendedprice": 40204.0d, "l_discount": 0.03d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-07-14", "l_commitdate": "1992-09-05", "l_receiptdate": "1992-07-20", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "luffily final dol" }, { "l_orderkey": 5152i32, "l_partkey": 105i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 9.0d, "l_extendedprice": 9045.9d, "l_discount": 0.04d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-11", "l_commitdate": "1997-02-11", "l_receiptdate": "1997-04-18", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": " cajole furiously alongside of the bo" }, { "l_orderkey": 5281i32, "l_partkey": 105i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 38.0d, "l_extendedprice": 38193.8d, "l_discount": 0.0d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-02-17", "l_commitdate": "1995-12-19", "l_receiptdate": "1996-02-29", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "n asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about thn asymptotes could wake about th" }, { "l_orderkey": 5382i32, "l_partkey": 105i32, "l_suppkey": 2i32, "l_linenumber": 7i32, "l_quantity": 48.0d, "l_extendedprice": 48244.8d, "l_discount": 0.05d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-02-14", "l_commitdate": "1992-03-19", "l_receiptdate": "1992-02-25", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "nts integrate quickly ca" }, { "l_orderkey": 5410i32, "l_partkey": 105i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 41.0d, "l_extendedprice": 41209.1d, "l_discount": 0.01d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-25", "l_commitdate": "1998-10-20", "l_receiptdate": "1998-09-01", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "sly. slyly ironic theodolites" }, { "l_orderkey": 5731i32, "l_partkey": 105i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 11.0d, "l_extendedprice": 11056.1d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-06", "l_commitdate": "1997-07-08", "l_receiptdate": "1997-06-25", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": " furiously final accounts wake. d" } ] }
+{ "partkey": 106i32, "lines": [ { "l_orderkey": 197i32, "l_partkey": 106i32, "l_suppkey": 1i32, "l_linenumber": 6i32, "l_quantity": 1.0d, "l_extendedprice": 1006.1d, "l_discount": 0.07d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-15", "l_commitdate": "1995-06-21", "l_receiptdate": "1995-08-11", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": " even, thin dependencies sno" }, { "l_orderkey": 229i32, "l_partkey": 106i32, "l_suppkey": 9i32, "l_linenumber": 6i32, "l_quantity": 29.0d, "l_extendedprice": 29176.9d, "l_discount": 0.04d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-01-14", "l_commitdate": "1994-02-16", "l_receiptdate": "1994-01-22", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "uriously pending " }, { "l_orderkey": 519i32, "l_partkey": 106i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 19.0d, "l_extendedprice": 19115.9d, "l_discount": 0.0d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-09", "l_commitdate": "1998-01-03", "l_receiptdate": "1998-02-06", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "asymptotes. p" }, { "l_orderkey": 967i32, "l_partkey": 106i32, "l_suppkey": 9i32, "l_linenumber": 6i32, "l_quantity": 17.0d, "l_extendedprice": 17103.7d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-10-02", "l_commitdate": "1992-08-19", "l_receiptdate": "1992-10-25", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "y ironic foxes caj" }, { "l_orderkey": 1122i32, "l_partkey": 106i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 40.0d, "l_extendedprice": 40244.0d, "l_discount": 0.08d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-07", "l_commitdate": "1997-03-25", "l_receiptdate": "1997-02-25", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "packages sleep after the asym" }, { "l_orderkey": 1186i32, "l_partkey": 106i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 27.0d, "l_extendedprice": 27164.7d, "l_discount": 0.06d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-08", "l_commitdate": "1996-11-06", "l_receiptdate": "1996-10-09", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "accounts. express, e" }, { "l_orderkey": 1283i32, "l_partkey": 106i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 1.0d, "l_extendedprice": 1006.1d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-07", "l_commitdate": "1996-10-12", "l_receiptdate": "1996-10-08", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "d the sauternes. slyly ev" }, { "l_orderkey": 1317i32, "l_partkey": 106i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 35.0d, "l_extendedprice": 35213.5d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-16", "l_commitdate": "1995-07-07", "l_receiptdate": "1995-07-22", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "r packages impress blithely car" }, { "l_orderkey": 1926i32, "l_partkey": 106i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 29.0d, "l_extendedprice": 29176.9d, "l_discount": 0.09d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-02-26", "l_commitdate": "1996-03-14", "l_receiptdate": "1996-03-14", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "es. dependencies according to the fl" }, { "l_orderkey": 2501i32, "l_partkey": 106i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 33.0d, "l_extendedprice": 33201.3d, "l_discount": 0.01d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-14", "l_commitdate": "1997-08-09", "l_receiptdate": "1997-07-26", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "leep furiously packages. even sauternes " }, { "l_orderkey": 2598i32, "l_partkey": 106i32, "l_suppkey": 3i32, "l_linenumber": 5i32, "l_quantity": 12.0d, "l_extendedprice": 12073.2d, "l_discount": 0.01d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-04-14", "l_commitdate": "1996-04-24", "l_receiptdate": "1996-04-21", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "eposits cajol" }, { "l_orderkey": 2628i32, "l_partkey": 106i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 44.0d, "l_extendedprice": 44268.4d, "l_discount": 0.07d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-01-11", "l_commitdate": "1994-01-14", "l_receiptdate": "1994-01-13", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "lyly final, pending ide" }, { "l_orderkey": 2628i32, "l_partkey": 106i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 14.0d, "l_extendedprice": 14085.4d, "l_discount": 0.01d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-01-28", "l_commitdate": "1993-11-30", "l_receiptdate": "1994-02-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "g the furiously unusual pi" }, { "l_orderkey": 3014i32, "l_partkey": 106i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 36.0d, "l_extendedprice": 36219.6d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-12-28", "l_commitdate": "1992-12-29", "l_receiptdate": "1993-01-24", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "iously ironic r" }, { "l_orderkey": 3076i32, "l_partkey": 106i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 22.0d, "l_extendedprice": 22134.2d, "l_discount": 0.08d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-09-05", "l_commitdate": "1993-09-10", "l_receiptdate": "1993-09-27", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "packages wake furiou" }, { "l_orderkey": 3457i32, "l_partkey": 106i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 22.0d, "l_extendedprice": 22134.2d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-06-23", "l_commitdate": "1995-06-16", "l_receiptdate": "1995-06-29", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "packages nag furiously against" }, { "l_orderkey": 3520i32, "l_partkey": 106i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 5.0d, "l_extendedprice": 5030.5d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-11-13", "l_commitdate": "1997-09-22", "l_receiptdate": "1997-12-09", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "ly even ideas haggle " }, { "l_orderkey": 3681i32, "l_partkey": 106i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 35.0d, "l_extendedprice": 35213.5d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-07-31", "l_commitdate": "1992-05-18", "l_receiptdate": "1992-08-07", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "lyly special pinto " }, { "l_orderkey": 3717i32, "l_partkey": 106i32, "l_suppkey": 7i32, "l_linenumber": 7i32, "l_quantity": 28.0d, "l_extendedprice": 28170.8d, "l_discount": 0.03d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-25", "l_commitdate": "1998-08-12", "l_receiptdate": "1998-08-16", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "ts sleep q" }, { "l_orderkey": 4001i32, "l_partkey": 106i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 26.0d, "l_extendedprice": 26158.6d, "l_discount": 0.0d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-26", "l_commitdate": "1997-06-18", "l_receiptdate": "1997-08-08", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "tegrate blithely" }, { "l_orderkey": 4327i32, "l_partkey": 106i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 40.0d, "l_extendedprice": 40244.0d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "F", "l_shipdate": "1995-05-26", "l_commitdate": "1995-04-17", "l_receiptdate": "1995-06-18", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "quests. packages are after th" }, { "l_orderkey": 4352i32, "l_partkey": 106i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 18.0d, "l_extendedprice": 18109.8d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-02-27", "l_commitdate": "1998-02-02", "l_receiptdate": "1998-03-01", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "ding to th" }, { "l_orderkey": 4836i32, "l_partkey": 106i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 15.0d, "l_extendedprice": 15091.5d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-08", "l_commitdate": "1997-03-14", "l_receiptdate": "1997-03-30", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "eep slyly. even requests cajole" }, { "l_orderkey": 5095i32, "l_partkey": 106i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 2.0d, "l_extendedprice": 2012.2d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-07-09", "l_commitdate": "1992-05-25", "l_receiptdate": "1992-07-21", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "detect car" }, { "l_orderkey": 5155i32, "l_partkey": 106i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 28.0d, "l_extendedprice": 28170.8d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-07-01", "l_commitdate": "1994-07-19", "l_receiptdate": "1994-07-18", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "s cajole. accounts wake. thinly quiet pla" }, { "l_orderkey": 5351i32, "l_partkey": 106i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 2.0d, "l_extendedprice": 2012.2d, "l_discount": 0.0d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-12", "l_commitdate": "1998-07-15", "l_receiptdate": "1998-05-24", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "g accounts wake furiously slyly even dolph" }, { "l_orderkey": 5632i32, "l_partkey": 106i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 21.0d, "l_extendedprice": 21128.1d, "l_discount": 0.02d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-22", "l_commitdate": "1996-03-10", "l_receiptdate": "1996-04-10", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "refully regular pinto beans. ironic reques" } ] }
+{ "partkey": 107i32, "lines": [ { "l_orderkey": 2i32, "l_partkey": 107i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 38.0d, "l_extendedprice": 38269.8d, "l_discount": 0.0d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-28", "l_commitdate": "1997-01-14", "l_receiptdate": "1997-02-02", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "ven requests. deposits breach a" }, { "l_orderkey": 128i32, "l_partkey": 107i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 38.0d, "l_extendedprice": 38269.8d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-09-01", "l_commitdate": "1992-08-27", "l_receiptdate": "1992-10-01", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": " cajole careful" }, { "l_orderkey": 258i32, "l_partkey": 107i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 8.0d, "l_extendedprice": 8056.8d, "l_discount": 0.0d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-01-20", "l_commitdate": "1994-03-21", "l_receiptdate": "1994-02-09", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "ully about the fluffily silent dependencies" }, { "l_orderkey": 354i32, "l_partkey": 107i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 7.0d, "l_extendedprice": 7049.7d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-07", "l_commitdate": "1996-04-18", "l_receiptdate": "1996-05-24", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "ously idly ironic accounts-- quickl" }, { "l_orderkey": 390i32, "l_partkey": 107i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 10.0d, "l_extendedprice": 10071.0d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-26", "l_commitdate": "1998-07-06", "l_receiptdate": "1998-06-23", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": " requests. final accounts x-ray beside the" }, { "l_orderkey": 450i32, "l_partkey": 107i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 5.0d, "l_extendedprice": 5035.5d, "l_discount": 0.03d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-04-02", "l_commitdate": "1995-05-06", "l_receiptdate": "1995-04-13", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "the pinto bea" }, { "l_orderkey": 835i32, "l_partkey": 107i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 33.0d, "l_extendedprice": 33234.3d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-01", "l_commitdate": "1995-12-02", "l_receiptdate": "1995-11-24", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "onic instructions among the carefully iro" }, { "l_orderkey": 960i32, "l_partkey": 107i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 1.0d, "l_extendedprice": 1007.1d, "l_discount": 0.07d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-12-24", "l_commitdate": "1994-10-26", "l_receiptdate": "1995-01-20", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "y ironic packages. quickly even " }, { "l_orderkey": 1088i32, "l_partkey": 107i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 30.0d, "l_extendedprice": 30213.0d, "l_discount": 0.07d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-05-22", "l_commitdate": "1992-06-25", "l_receiptdate": "1992-06-11", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "long the packages snooze careful" }, { "l_orderkey": 1411i32, "l_partkey": 107i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 26.0d, "l_extendedprice": 26184.6d, "l_discount": 0.02d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-04-12", "l_commitdate": "1995-01-24", "l_receiptdate": "1995-05-03", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "c packages. " }, { "l_orderkey": 1414i32, "l_partkey": 107i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 4.0d, "l_extendedprice": 4028.4d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-16", "l_commitdate": "1995-11-01", "l_receiptdate": "1995-10-02", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": " haggle quickly" }, { "l_orderkey": 1477i32, "l_partkey": 107i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 32.0d, "l_extendedprice": 32227.2d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-12", "l_commitdate": "1997-10-26", "l_receiptdate": "1997-10-12", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "; quickly regula" }, { "l_orderkey": 1509i32, "l_partkey": 107i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 17.0d, "l_extendedprice": 17120.7d, "l_discount": 0.06d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-07-25", "l_commitdate": "1993-08-28", "l_receiptdate": "1993-08-19", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": " furiously. blithely regular ideas haggle c" }, { "l_orderkey": 2150i32, "l_partkey": 107i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 29.0d, "l_extendedprice": 29205.9d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-06-10", "l_commitdate": "1994-07-31", "l_receiptdate": "1994-06-26", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "arefully final att" }, { "l_orderkey": 3587i32, "l_partkey": 107i32, "l_suppkey": 2i32, "l_linenumber": 6i32, "l_quantity": 16.0d, "l_extendedprice": 16113.6d, "l_discount": 0.01d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-11", "l_commitdate": "1996-06-19", "l_receiptdate": "1996-06-04", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "y ruthless dolphins to " }, { "l_orderkey": 3654i32, "l_partkey": 107i32, "l_suppkey": 4i32, "l_linenumber": 6i32, "l_quantity": 20.0d, "l_extendedprice": 20142.0d, "l_discount": 0.03d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-07-30", "l_commitdate": "1992-07-05", "l_receiptdate": "1992-08-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "s sleep about the slyly " }, { "l_orderkey": 3716i32, "l_partkey": 107i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 42.0d, "l_extendedprice": 42298.2d, "l_discount": 0.02d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-03", "l_commitdate": "1997-10-12", "l_receiptdate": "1997-12-15", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": " of the pend" }, { "l_orderkey": 3814i32, "l_partkey": 107i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 15.0d, "l_extendedprice": 15106.5d, "l_discount": 0.03d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-06-23", "l_commitdate": "1995-03-25", "l_receiptdate": "1995-07-09", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": " carefully final deposits haggle slyly" }, { "l_orderkey": 3840i32, "l_partkey": 107i32, "l_suppkey": 8i32, "l_linenumber": 6i32, "l_quantity": 33.0d, "l_extendedprice": 33234.3d, "l_discount": 0.1d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-29", "l_commitdate": "1998-10-06", "l_receiptdate": "1998-08-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "hely silent deposits w" }, { "l_orderkey": 3842i32, "l_partkey": 107i32, "l_suppkey": 4i32, "l_linenumber": 6i32, "l_quantity": 24.0d, "l_extendedprice": 24170.4d, "l_discount": 0.08d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-08-05", "l_commitdate": "1992-06-29", "l_receiptdate": "1992-08-16", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "phins are quickly" }, { "l_orderkey": 4065i32, "l_partkey": 107i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 8.0d, "l_extendedprice": 8056.8d, "l_discount": 0.0d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-10-04", "l_commitdate": "1994-08-05", "l_receiptdate": "1994-10-25", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "ages haggle carefully" }, { "l_orderkey": 4833i32, "l_partkey": 107i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 31.0d, "l_extendedprice": 31220.1d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-24", "l_commitdate": "1996-07-15", "l_receiptdate": "1996-07-02", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "ven instructions cajole against the caref" }, { "l_orderkey": 5380i32, "l_partkey": 107i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 48.0d, "l_extendedprice": 48340.8d, "l_discount": 0.04d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-01", "l_commitdate": "1997-12-28", "l_receiptdate": "1997-12-05", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "encies haggle car" }, { "l_orderkey": 5633i32, "l_partkey": 107i32, "l_suppkey": 2i32, "l_linenumber": 6i32, "l_quantity": 1.0d, "l_extendedprice": 1007.1d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-09-29", "l_commitdate": "1998-08-28", "l_receiptdate": "1998-10-19", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "thely notornis: " }, { "l_orderkey": 5729i32, "l_partkey": 107i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 39.0d, "l_extendedprice": 39276.9d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-01-22", "l_commitdate": "1994-11-21", "l_receiptdate": "1995-02-13", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": ". special pl" }, { "l_orderkey": 5824i32, "l_partkey": 107i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 44.0d, "l_extendedprice": 44312.4d, "l_discount": 0.08d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-24", "l_commitdate": "1997-01-31", "l_receiptdate": "1997-02-11", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "fily fluffily bold" }, { "l_orderkey": 5829i32, "l_partkey": 107i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 40.0d, "l_extendedprice": 40284.0d, "l_discount": 0.04d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-21", "l_commitdate": "1997-02-12", "l_receiptdate": "1997-05-04", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": " the carefully ironic accounts. a" } ] }
+{ "partkey": 108i32, "lines": [ { "l_orderkey": 356i32, "l_partkey": 108i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 48.0d, "l_extendedprice": 48388.8d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-08-12", "l_commitdate": "1994-07-31", "l_receiptdate": "1994-08-26", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "unusual packages. furiously " }, { "l_orderkey": 709i32, "l_partkey": 108i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 40.0d, "l_extendedprice": 40324.0d, "l_discount": 0.1d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-12", "l_commitdate": "1998-06-20", "l_receiptdate": "1998-08-20", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "ggle fluffily carefully ironic" }, { "l_orderkey": 775i32, "l_partkey": 108i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 20.0d, "l_extendedprice": 20162.0d, "l_discount": 0.01d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "F", "l_shipdate": "1995-06-17", "l_commitdate": "1995-05-22", "l_receiptdate": "1995-07-13", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "en dependencies nag slowly " }, { "l_orderkey": 871i32, "l_partkey": 108i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 13.0d, "l_extendedprice": 13105.3d, "l_discount": 0.09d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-25", "l_commitdate": "1996-01-24", "l_receiptdate": "1996-02-03", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": " haggle furiou" }, { "l_orderkey": 965i32, "l_partkey": 108i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 20.0d, "l_extendedprice": 20162.0d, "l_discount": 0.04d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "F", "l_shipdate": "1995-06-16", "l_commitdate": "1995-07-20", "l_receiptdate": "1995-07-06", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "kly. carefully pending requ" }, { "l_orderkey": 1221i32, "l_partkey": 108i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 13.0d, "l_extendedprice": 13105.3d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-08-01", "l_commitdate": "1992-06-29", "l_receiptdate": "1992-08-27", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "ajole furiously. blithely expres" }, { "l_orderkey": 1351i32, "l_partkey": 108i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 25.0d, "l_extendedprice": 25202.5d, "l_discount": 0.06d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-02", "l_commitdate": "1998-05-25", "l_receiptdate": "1998-06-22", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "iously regul" }, { "l_orderkey": 1636i32, "l_partkey": 108i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 24.0d, "l_extendedprice": 24194.4d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-10-07", "l_commitdate": "1997-08-12", "l_receiptdate": "1997-11-04", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "e carefully unusual ideas are f" }, { "l_orderkey": 1826i32, "l_partkey": 108i32, "l_suppkey": 3i32, "l_linenumber": 6i32, "l_quantity": 43.0d, "l_extendedprice": 43348.3d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-07-28", "l_commitdate": "1992-06-14", "l_receiptdate": "1992-08-03", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "ss tithes use even ideas. fluffily final t" }, { "l_orderkey": 2179i32, "l_partkey": 108i32, "l_suppkey": 5i32, "l_linenumber": 5i32, "l_quantity": 7.0d, "l_extendedprice": 7056.7d, "l_discount": 0.0d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-24", "l_commitdate": "1996-11-14", "l_receiptdate": "1996-11-21", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "gular dependencies. ironic packages haggle" }, { "l_orderkey": 2433i32, "l_partkey": 108i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 3.0d, "l_extendedprice": 3024.3d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-11-08", "l_commitdate": "1994-09-24", "l_receiptdate": "1994-11-17", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "usly pending depos" }, { "l_orderkey": 2530i32, "l_partkey": 108i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 8.0d, "l_extendedprice": 8064.8d, "l_discount": 0.1d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-05-02", "l_commitdate": "1994-05-08", "l_receiptdate": "1994-05-24", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "ial asymptotes snooze slyly regular " }, { "l_orderkey": 2560i32, "l_partkey": 108i32, "l_suppkey": 9i32, "l_linenumber": 6i32, "l_quantity": 13.0d, "l_extendedprice": 13105.3d, "l_discount": 0.03d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-09-07", "l_commitdate": "1992-10-21", "l_receiptdate": "1992-09-24", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "slyly final accoun" }, { "l_orderkey": 2561i32, "l_partkey": 108i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 39.0d, "l_extendedprice": 39315.9d, "l_discount": 0.08d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-20", "l_commitdate": "1997-12-16", "l_receiptdate": "1998-02-05", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "equests are furiously against the" }, { "l_orderkey": 2694i32, "l_partkey": 108i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 10.0d, "l_extendedprice": 10081.0d, "l_discount": 0.08d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-23", "l_commitdate": "1996-05-28", "l_receiptdate": "1996-06-27", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "fluffily fluffy accounts. even packages hi" }, { "l_orderkey": 3072i32, "l_partkey": 108i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 36.0d, "l_extendedprice": 36291.6d, "l_discount": 0.07d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-04-14", "l_commitdate": "1994-04-22", "l_receiptdate": "1994-05-06", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": " theodolites. blithely e" }, { "l_orderkey": 3169i32, "l_partkey": 108i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 6.0d, "l_extendedprice": 6048.6d, "l_discount": 0.09d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-03-24", "l_commitdate": "1994-02-22", "l_receiptdate": "1994-04-04", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "ular instructions. ca" }, { "l_orderkey": 3333i32, "l_partkey": 108i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 38.0d, "l_extendedprice": 38307.8d, "l_discount": 0.05d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-10-30", "l_commitdate": "1992-11-03", "l_receiptdate": "1992-11-04", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "ccounts promise bl" }, { "l_orderkey": 3586i32, "l_partkey": 108i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 8.0d, "l_extendedprice": 8064.8d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-03-29", "l_commitdate": "1994-02-26", "l_receiptdate": "1994-04-02", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "theodolites hagg" }, { "l_orderkey": 4354i32, "l_partkey": 108i32, "l_suppkey": 3i32, "l_linenumber": 6i32, "l_quantity": 36.0d, "l_extendedprice": 36291.6d, "l_discount": 0.03d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-12-03", "l_commitdate": "1994-12-05", "l_receiptdate": "1995-01-02", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "efully special packages use fluffily" }, { "l_orderkey": 4357i32, "l_partkey": 108i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 17.0d, "l_extendedprice": 17137.7d, "l_discount": 0.1d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-02-01", "l_commitdate": "1997-12-08", "l_receiptdate": "1998-02-09", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "e carefully furiou" }, { "l_orderkey": 4419i32, "l_partkey": 108i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 45.0d, "l_extendedprice": 45364.5d, "l_discount": 0.01d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-20", "l_commitdate": "1996-09-07", "l_receiptdate": "1996-08-18", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "s doze sometimes fluffily regular a" }, { "l_orderkey": 4480i32, "l_partkey": 108i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 30.0d, "l_extendedprice": 30243.0d, "l_discount": 0.08d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-07-29", "l_commitdate": "1994-06-22", "l_receiptdate": "1994-08-01", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "ven braids us" }, { "l_orderkey": 4613i32, "l_partkey": 108i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 25.0d, "l_extendedprice": 25202.5d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-22", "l_commitdate": "1998-04-11", "l_receiptdate": "1998-05-27", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "y pending platelets x-ray ironically! pend" }, { "l_orderkey": 5094i32, "l_partkey": 108i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 23.0d, "l_extendedprice": 23186.3d, "l_discount": 0.05d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-06-13", "l_commitdate": "1993-05-19", "l_receiptdate": "1993-07-06", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "st furiously above the fluffily care" }, { "l_orderkey": 5316i32, "l_partkey": 108i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 29.0d, "l_extendedprice": 29234.9d, "l_discount": 0.1d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-03-28", "l_commitdate": "1994-04-29", "l_receiptdate": "1994-04-09", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "ckly unusual foxes bo" }, { "l_orderkey": 5761i32, "l_partkey": 108i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 36.0d, "l_extendedprice": 36291.6d, "l_discount": 0.0d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-09-07", "l_commitdate": "1998-09-21", "l_receiptdate": "1998-09-11", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": " pinto beans thrash alongside of the pendi" }, { "l_orderkey": 5923i32, "l_partkey": 108i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 2.0d, "l_extendedprice": 2016.2d, "l_discount": 0.06d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-19", "l_commitdate": "1997-07-31", "l_receiptdate": "1997-06-28", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "express patterns. even deposits" } ] }
+{ "partkey": 109i32, "lines": [ { "l_orderkey": 5i32, "l_partkey": 109i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 15.0d, "l_extendedprice": 15136.5d, "l_discount": 0.02d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-10-31", "l_commitdate": "1994-08-31", "l_receiptdate": "1994-11-20", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "ts wake furiously " }, { "l_orderkey": 99i32, "l_partkey": 109i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 36.0d, "l_extendedprice": 36327.6d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-07-04", "l_commitdate": "1994-04-17", "l_receiptdate": "1994-07-30", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "slyly. slyly e" }, { "l_orderkey": 135i32, "l_partkey": 109i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 47.0d, "l_extendedprice": 47427.7d, "l_discount": 0.06d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-02-18", "l_commitdate": "1996-01-01", "l_receiptdate": "1996-02-25", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "ctions wake slyly abo" }, { "l_orderkey": 164i32, "l_partkey": 109i32, "l_suppkey": 10i32, "l_linenumber": 6i32, "l_quantity": 27.0d, "l_extendedprice": 27245.7d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-12-23", "l_commitdate": "1993-01-16", "l_receiptdate": "1993-01-10", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "ayers wake carefully a" }, { "l_orderkey": 224i32, "l_partkey": 109i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 34.0d, "l_extendedprice": 34309.4d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-07-13", "l_commitdate": "1994-08-25", "l_receiptdate": "1994-07-31", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": " carefully. final platelets " }, { "l_orderkey": 449i32, "l_partkey": 109i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 4.0d, "l_extendedprice": 4036.4d, "l_discount": 0.1d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-27", "l_commitdate": "1995-09-14", "l_receiptdate": "1995-11-21", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "are fluffily. requests are furiously" }, { "l_orderkey": 515i32, "l_partkey": 109i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 34.0d, "l_extendedprice": 34309.4d, "l_discount": 0.09d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-10-03", "l_commitdate": "1993-10-26", "l_receiptdate": "1993-10-15", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "ic dependencie" }, { "l_orderkey": 515i32, "l_partkey": 109i32, "l_suppkey": 4i32, "l_linenumber": 6i32, "l_quantity": 25.0d, "l_extendedprice": 25227.5d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-11-14", "l_commitdate": "1993-11-07", "l_receiptdate": "1993-12-03", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "e packages engag" }, { "l_orderkey": 646i32, "l_partkey": 109i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 31.0d, "l_extendedprice": 31282.1d, "l_discount": 0.0d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-12-17", "l_commitdate": "1995-02-16", "l_receiptdate": "1995-01-04", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "ag furiousl" }, { "l_orderkey": 896i32, "l_partkey": 109i32, "l_suppkey": 2i32, "l_linenumber": 7i32, "l_quantity": 11.0d, "l_extendedprice": 11100.1d, "l_discount": 0.01d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-05-01", "l_commitdate": "1993-04-09", "l_receiptdate": "1993-05-06", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "rding to the pinto beans wa" }, { "l_orderkey": 1159i32, "l_partkey": 109i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 39.0d, "l_extendedprice": 39354.9d, "l_discount": 0.01d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-11-20", "l_commitdate": "1992-10-28", "l_receiptdate": "1992-12-18", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": " blithely express reques" }, { "l_orderkey": 1410i32, "l_partkey": 109i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 37.0d, "l_extendedprice": 37336.7d, "l_discount": 0.02d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-17", "l_commitdate": "1997-06-18", "l_receiptdate": "1997-04-19", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "to beans b" }, { "l_orderkey": 1574i32, "l_partkey": 109i32, "l_suppkey": 4i32, "l_linenumber": 5i32, "l_quantity": 6.0d, "l_extendedprice": 6054.6d, "l_discount": 0.05d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-09", "l_commitdate": "1997-03-02", "l_receiptdate": "1997-02-14", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "nic, final ideas snooze. " }, { "l_orderkey": 1637i32, "l_partkey": 109i32, "l_suppkey": 4i32, "l_linenumber": 6i32, "l_quantity": 38.0d, "l_extendedprice": 38345.8d, "l_discount": 0.02d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-03-20", "l_commitdate": "1995-05-05", "l_receiptdate": "1995-04-14", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "even, pending foxes nod regular" }, { "l_orderkey": 1798i32, "l_partkey": 109i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 43.0d, "l_extendedprice": 43391.3d, "l_discount": 0.01d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-27", "l_commitdate": "1997-10-23", "l_receiptdate": "1997-09-09", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "ld packages sleep furiously. depend" }, { "l_orderkey": 2276i32, "l_partkey": 109i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 38.0d, "l_extendedprice": 38345.8d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-07", "l_commitdate": "1996-06-28", "l_receiptdate": "1996-07-17", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "ans. pinto beans boost c" }, { "l_orderkey": 2432i32, "l_partkey": 109i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 13.0d, "l_extendedprice": 13118.3d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-03", "l_commitdate": "1996-10-10", "l_receiptdate": "1996-10-03", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "arefully about the caref" }, { "l_orderkey": 2720i32, "l_partkey": 109i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 49.0d, "l_extendedprice": 49445.9d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-07-09", "l_commitdate": "1993-07-14", "l_receiptdate": "1993-07-13", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": " accounts. fluffily bold pack" }, { "l_orderkey": 2976i32, "l_partkey": 109i32, "l_suppkey": 2i32, "l_linenumber": 6i32, "l_quantity": 30.0d, "l_extendedprice": 30273.0d, "l_discount": 0.08d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-03-27", "l_commitdate": "1994-02-01", "l_receiptdate": "1994-04-26", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "c ideas! unusual" }, { "l_orderkey": 2980i32, "l_partkey": 109i32, "l_suppkey": 4i32, "l_linenumber": 6i32, "l_quantity": 43.0d, "l_extendedprice": 43391.3d, "l_discount": 0.01d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-07", "l_commitdate": "1996-11-10", "l_receiptdate": "1997-01-02", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "sts. slyly regu" }, { "l_orderkey": 3108i32, "l_partkey": 109i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 37.0d, "l_extendedprice": 37336.7d, "l_discount": 0.06d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-10-16", "l_commitdate": "1993-10-01", "l_receiptdate": "1993-11-09", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": " final requests. " }, { "l_orderkey": 3235i32, "l_partkey": 109i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 9.0d, "l_extendedprice": 9081.9d, "l_discount": 0.07d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-17", "l_commitdate": "1995-12-24", "l_receiptdate": "1995-11-30", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "l courts sleep quickly slyly " }, { "l_orderkey": 3264i32, "l_partkey": 109i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 24.0d, "l_extendedprice": 24218.4d, "l_discount": 0.09d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-07", "l_commitdate": "1996-12-13", "l_receiptdate": "1997-01-11", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "ctions. quick" }, { "l_orderkey": 3457i32, "l_partkey": 109i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 7.0d, "l_extendedprice": 7063.7d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-14", "l_commitdate": "1995-07-06", "l_receiptdate": "1995-08-18", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": " pending accounts along the" }, { "l_orderkey": 3457i32, "l_partkey": 109i32, "l_suppkey": 4i32, "l_linenumber": 5i32, "l_quantity": 42.0d, "l_extendedprice": 42382.2d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-06-12", "l_commitdate": "1995-06-14", "l_receiptdate": "1995-06-14", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "riously final instruc" }, { "l_orderkey": 3492i32, "l_partkey": 109i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 34.0d, "l_extendedprice": 34309.4d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-12-07", "l_commitdate": "1994-12-29", "l_receiptdate": "1994-12-24", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": " unusual requests. ir" }, { "l_orderkey": 3970i32, "l_partkey": 109i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 18.0d, "l_extendedprice": 18163.8d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-06-06", "l_commitdate": "1992-06-18", "l_receiptdate": "1992-07-05", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": " maintain slyly. ir" }, { "l_orderkey": 4066i32, "l_partkey": 109i32, "l_suppkey": 2i32, "l_linenumber": 6i32, "l_quantity": 44.0d, "l_extendedprice": 44400.4d, "l_discount": 0.01d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-01", "l_commitdate": "1997-04-27", "l_receiptdate": "1997-03-29", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "express accounts nag bli" }, { "l_orderkey": 4545i32, "l_partkey": 109i32, "l_suppkey": 2i32, "l_linenumber": 6i32, "l_quantity": 8.0d, "l_extendedprice": 8072.8d, "l_discount": 0.03d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-05-01", "l_commitdate": "1993-03-12", "l_receiptdate": "1993-05-15", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": " boost slyly. slyly" }, { "l_orderkey": 4929i32, "l_partkey": 109i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 26.0d, "l_extendedprice": 26236.6d, "l_discount": 0.0d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-10", "l_commitdate": "1996-05-29", "l_receiptdate": "1996-06-26", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": " slyly. fl" }, { "l_orderkey": 5088i32, "l_partkey": 109i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 10.0d, "l_extendedprice": 10091.0d, "l_discount": 0.04d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-04-07", "l_commitdate": "1993-02-06", "l_receiptdate": "1993-04-26", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "beans. special requests af" }, { "l_orderkey": 5346i32, "l_partkey": 109i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 7.0d, "l_extendedprice": 7063.7d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-01-30", "l_commitdate": "1994-03-26", "l_receiptdate": "1994-01-31", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "equests use carefully care" }, { "l_orderkey": 5634i32, "l_partkey": 109i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 16.0d, "l_extendedprice": 16145.6d, "l_discount": 0.08d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-15", "l_commitdate": "1996-09-14", "l_receiptdate": "1996-12-04", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "ess ideas are carefully pending, even re" }, { "l_orderkey": 5636i32, "l_partkey": 109i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 15.0d, "l_extendedprice": 15136.5d, "l_discount": 0.03d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-04-21", "l_commitdate": "1995-04-30", "l_receiptdate": "1995-05-05", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "efully special" }, { "l_orderkey": 5666i32, "l_partkey": 109i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 36.0d, "l_extendedprice": 36327.6d, "l_discount": 0.07d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-03-15", "l_commitdate": "1994-03-16", "l_receiptdate": "1994-03-18", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "accounts. furiousl" } ] }
+{ "partkey": 110i32, "lines": [ { "l_orderkey": 98i32, "l_partkey": 110i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 1.0d, "l_extendedprice": 1010.11d, "l_discount": 0.0d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-12-01", "l_commitdate": "1994-12-12", "l_receiptdate": "1994-12-15", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": ". unusual instructions against" }, { "l_orderkey": 1059i32, "l_partkey": 110i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 26.0d, "l_extendedprice": 26262.86d, "l_discount": 0.09d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-03-17", "l_commitdate": "1994-04-18", "l_receiptdate": "1994-03-26", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "ar pinto beans at the furiously " }, { "l_orderkey": 1060i32, "l_partkey": 110i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 16.0d, "l_extendedprice": 16161.76d, "l_discount": 0.03d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-06-15", "l_commitdate": "1993-04-18", "l_receiptdate": "1993-07-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "ccounts. foxes maintain care" }, { "l_orderkey": 1127i32, "l_partkey": 110i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 38.0d, "l_extendedprice": 38384.18d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-07", "l_commitdate": "1995-11-11", "l_receiptdate": "1995-11-26", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": ". never final packages boost acro" }, { "l_orderkey": 1314i32, "l_partkey": 110i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 39.0d, "l_extendedprice": 39394.29d, "l_discount": 0.01d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-08-09", "l_commitdate": "1994-06-14", "l_receiptdate": "1994-08-31", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": " unusual accounts slee" }, { "l_orderkey": 1477i32, "l_partkey": 110i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 8.0d, "l_extendedprice": 8080.88d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-10-25", "l_commitdate": "1997-10-18", "l_receiptdate": "1997-11-16", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "ironic realms wake unusual, even ac" }, { "l_orderkey": 1991i32, "l_partkey": 110i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 39.0d, "l_extendedprice": 39394.29d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-01-01", "l_commitdate": "1992-11-29", "l_receiptdate": "1993-01-10", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "ckages? carefully bold depos" }, { "l_orderkey": 2343i32, "l_partkey": 110i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 27.0d, "l_extendedprice": 27272.97d, "l_discount": 0.0d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-10", "l_commitdate": "1995-11-17", "l_receiptdate": "1995-12-10", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "old theodolites." }, { "l_orderkey": 2470i32, "l_partkey": 110i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 12.0d, "l_extendedprice": 12121.32d, "l_discount": 0.06d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-12", "l_commitdate": "1997-05-24", "l_receiptdate": "1997-07-17", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "l accounts. deposits nag daringly. express," }, { "l_orderkey": 2656i32, "l_partkey": 110i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 40.0d, "l_extendedprice": 40404.4d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-06-09", "l_commitdate": "1993-07-24", "l_receiptdate": "1993-06-21", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "refully final pearls. final ideas wake. qu" }, { "l_orderkey": 2785i32, "l_partkey": 110i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 37.0d, "l_extendedprice": 37374.07d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-25", "l_commitdate": "1995-09-12", "l_receiptdate": "1995-08-06", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "tructions. furiously " }, { "l_orderkey": 2850i32, "l_partkey": 110i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 30.0d, "l_extendedprice": 30303.3d, "l_discount": 0.09d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-14", "l_commitdate": "1996-11-29", "l_receiptdate": "1997-01-03", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "even ideas. busy pinto beans sleep above t" }, { "l_orderkey": 3170i32, "l_partkey": 110i32, "l_suppkey": 5i32, "l_linenumber": 6i32, "l_quantity": 43.0d, "l_extendedprice": 43434.73d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-05", "l_commitdate": "1998-01-04", "l_receiptdate": "1998-01-14", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": ". express dolphins use sly" }, { "l_orderkey": 3426i32, "l_partkey": 110i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 20.0d, "l_extendedprice": 20202.2d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-10", "l_commitdate": "1996-12-24", "l_receiptdate": "1996-12-01", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "sits cajole blit" }, { "l_orderkey": 3588i32, "l_partkey": 110i32, "l_suppkey": 3i32, "l_linenumber": 6i32, "l_quantity": 37.0d, "l_extendedprice": 37374.07d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "F", "l_shipdate": "1995-06-17", "l_commitdate": "1995-05-25", "l_receiptdate": "1995-06-24", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "xcuses sleep quickly along th" }, { "l_orderkey": 3651i32, "l_partkey": 110i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 27.0d, "l_extendedprice": 27272.97d, "l_discount": 0.05d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-03", "l_commitdate": "1998-06-30", "l_receiptdate": "1998-05-05", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": " sleep blithely furiously do" }, { "l_orderkey": 3779i32, "l_partkey": 110i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 5.0d, "l_extendedprice": 5050.55d, "l_discount": 0.07d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-07", "l_commitdate": "1997-03-26", "l_receiptdate": "1997-02-05", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "heodolites. slyly regular a" }, { "l_orderkey": 3907i32, "l_partkey": 110i32, "l_suppkey": 5i32, "l_linenumber": 7i32, "l_quantity": 8.0d, "l_extendedprice": 8080.88d, "l_discount": 0.1d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-09-18", "l_commitdate": "1992-10-29", "l_receiptdate": "1992-09-27", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "furiously final packages." }, { "l_orderkey": 3941i32, "l_partkey": 110i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 29.0d, "l_extendedprice": 29293.19d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-14", "l_commitdate": "1996-10-04", "l_receiptdate": "1996-09-19", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "g the blithely" }, { "l_orderkey": 4033i32, "l_partkey": 110i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 27.0d, "l_extendedprice": 27272.97d, "l_discount": 0.01d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-08-08", "l_commitdate": "1993-08-14", "l_receiptdate": "1993-08-09", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "pinto beans" }, { "l_orderkey": 4065i32, "l_partkey": 110i32, "l_suppkey": 5i32, "l_linenumber": 6i32, "l_quantity": 16.0d, "l_extendedprice": 16161.76d, "l_discount": 0.05d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-08-25", "l_commitdate": "1994-08-06", "l_receiptdate": "1994-09-09", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "ncies use furiously. quickly un" }, { "l_orderkey": 4068i32, "l_partkey": 110i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 43.0d, "l_extendedprice": 43434.73d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-28", "l_commitdate": "1996-11-16", "l_receiptdate": "1996-12-22", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "ructions. regular, special packag" }, { "l_orderkey": 4261i32, "l_partkey": 110i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 12.0d, "l_extendedprice": 12121.32d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-11-01", "l_commitdate": "1993-01-01", "l_receiptdate": "1992-11-12", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans into beans" }, { "l_orderkey": 4801i32, "l_partkey": 110i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 4.0d, "l_extendedprice": 4040.44d, "l_discount": 0.04d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-23", "l_commitdate": "1996-04-04", "l_receiptdate": "1996-03-25", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "pitaphs. regular, reg" }, { "l_orderkey": 4934i32, "l_partkey": 110i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 41.0d, "l_extendedprice": 41414.51d, "l_discount": 0.06d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-04", "l_commitdate": "1997-04-11", "l_receiptdate": "1997-06-25", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "wake final, ironic f" }, { "l_orderkey": 4995i32, "l_partkey": 110i32, "l_suppkey": 5i32, "l_linenumber": 6i32, "l_quantity": 48.0d, "l_extendedprice": 48485.28d, "l_discount": 0.09d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-04-14", "l_commitdate": "1996-04-04", "l_receiptdate": "1996-05-07", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "nstructions. carefully final depos" }, { "l_orderkey": 5189i32, "l_partkey": 110i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 4.0d, "l_extendedprice": 4040.44d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-12-21", "l_commitdate": "1994-02-23", "l_receiptdate": "1994-01-09", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": ". blithely exp" }, { "l_orderkey": 5413i32, "l_partkey": 110i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 22.0d, "l_extendedprice": 22222.42d, "l_discount": 0.02d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-11-10", "l_commitdate": "1997-11-24", "l_receiptdate": "1997-11-22", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "posits. quick" }, { "l_orderkey": 5575i32, "l_partkey": 110i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 7.0d, "l_extendedprice": 7070.77d, "l_discount": 0.01d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-15", "l_commitdate": "1995-09-14", "l_receiptdate": "1995-10-18", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "special requests. final, final " } ] }
+{ "partkey": 111i32, "lines": [ { "l_orderkey": 192i32, "l_partkey": 111i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 15.0d, "l_extendedprice": 15166.65d, "l_discount": 0.09d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-30", "l_commitdate": "1998-02-10", "l_receiptdate": "1998-02-23", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "he ironic requests haggle about" }, { "l_orderkey": 416i32, "l_partkey": 111i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 22.0d, "l_extendedprice": 22244.42d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-12-27", "l_commitdate": "1993-12-17", "l_receiptdate": "1994-01-09", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "rint blithely above the pending sentim" }, { "l_orderkey": 610i32, "l_partkey": 111i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 49.0d, "l_extendedprice": 49544.39d, "l_discount": 0.1d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-29", "l_commitdate": "1995-10-26", "l_receiptdate": "1995-09-12", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "ular instruc" }, { "l_orderkey": 902i32, "l_partkey": 111i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 3.0d, "l_extendedprice": 3033.33d, "l_discount": 0.06d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-10-01", "l_commitdate": "1994-10-25", "l_receiptdate": "1994-10-28", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "into beans thrash blithely about the flu" }, { "l_orderkey": 1061i32, "l_partkey": 111i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 26.0d, "l_extendedprice": 26288.86d, "l_discount": 0.08d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-18", "l_commitdate": "1998-07-25", "l_receiptdate": "1998-06-24", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "ave to slee" }, { "l_orderkey": 1252i32, "l_partkey": 111i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 27.0d, "l_extendedprice": 27299.97d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-10-22", "l_commitdate": "1997-10-10", "l_receiptdate": "1997-11-10", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "packages hag" }, { "l_orderkey": 1575i32, "l_partkey": 111i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 39.0d, "l_extendedprice": 39433.29d, "l_discount": 0.07d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-23", "l_commitdate": "1995-11-05", "l_receiptdate": "1995-09-25", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": " after the unusual asym" }, { "l_orderkey": 1733i32, "l_partkey": 111i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 41.0d, "l_extendedprice": 41455.51d, "l_discount": 0.08d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-13", "l_commitdate": "1996-07-08", "l_receiptdate": "1996-07-07", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "ess notornis. fur" }, { "l_orderkey": 1766i32, "l_partkey": 111i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 1.0d, "l_extendedprice": 1011.11d, "l_discount": 0.1d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-21", "l_commitdate": "1997-01-07", "l_receiptdate": "1997-02-19", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "ly blithely pending accounts. reg" }, { "l_orderkey": 2180i32, "l_partkey": 111i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 47.0d, "l_extendedprice": 47522.17d, "l_discount": 0.07d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-23", "l_commitdate": "1996-12-08", "l_receiptdate": "1996-10-12", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "pending, regular ideas. iron" }, { "l_orderkey": 2274i32, "l_partkey": 111i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 23.0d, "l_extendedprice": 23255.53d, "l_discount": 0.04d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-10-28", "l_commitdate": "1993-11-03", "l_receiptdate": "1993-11-05", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "kly special warhorse" }, { "l_orderkey": 3206i32, "l_partkey": 111i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 37.0d, "l_extendedprice": 37411.07d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-06", "l_commitdate": "1996-10-31", "l_receiptdate": "1996-09-25", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": " quick theodolites hagg" }, { "l_orderkey": 3364i32, "l_partkey": 111i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 38.0d, "l_extendedprice": 38422.18d, "l_discount": 0.02d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-30", "l_commitdate": "1997-09-12", "l_receiptdate": "1997-09-27", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": " slyly express" }, { "l_orderkey": 3456i32, "l_partkey": 111i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 34.0d, "l_extendedprice": 34377.74d, "l_discount": 0.1d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-08-29", "l_commitdate": "1993-08-26", "l_receiptdate": "1993-09-07", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "usy pinto beans b" }, { "l_orderkey": 4002i32, "l_partkey": 111i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 35.0d, "l_extendedprice": 35388.85d, "l_discount": 0.01d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-16", "l_commitdate": "1997-06-15", "l_receiptdate": "1997-06-02", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "eep. quickly" }, { "l_orderkey": 4385i32, "l_partkey": 111i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 38.0d, "l_extendedprice": 38422.18d, "l_discount": 0.0d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-22", "l_commitdate": "1996-10-30", "l_receiptdate": "1996-12-21", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "inal frays. final, bold exc" }, { "l_orderkey": 4613i32, "l_partkey": 111i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 35.0d, "l_extendedprice": 35388.85d, "l_discount": 0.04d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-04", "l_commitdate": "1998-04-17", "l_receiptdate": "1998-06-20", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "e blithely against the even, bold pi" }, { "l_orderkey": 4674i32, "l_partkey": 111i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 3.0d, "l_extendedprice": 3033.33d, "l_discount": 0.01d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-07-19", "l_commitdate": "1994-05-28", "l_receiptdate": "1994-07-23", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": " regular requests na" }, { "l_orderkey": 4676i32, "l_partkey": 111i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 50.0d, "l_extendedprice": 50555.5d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-20", "l_commitdate": "1995-11-20", "l_receiptdate": "1995-10-18", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "r deposits boost boldly quickly quick asymp" }, { "l_orderkey": 4705i32, "l_partkey": 111i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 22.0d, "l_extendedprice": 22244.42d, "l_discount": 0.04d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-07-05", "l_commitdate": "1992-05-11", "l_receiptdate": "1992-07-29", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": " fluffily pending accounts ca" }, { "l_orderkey": 5121i32, "l_partkey": 111i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 45.0d, "l_extendedprice": 45499.95d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-08-13", "l_commitdate": "1992-07-27", "l_receiptdate": "1992-09-12", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "pecial accounts cajole ca" }, { "l_orderkey": 5254i32, "l_partkey": 111i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 35.0d, "l_extendedprice": 35388.85d, "l_discount": 0.01d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-07-28", "l_commitdate": "1992-09-05", "l_receiptdate": "1992-08-07", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "ntegrate carefully among the pending" }, { "l_orderkey": 5381i32, "l_partkey": 111i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 48.0d, "l_extendedprice": 48533.28d, "l_discount": 0.04d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-04-22", "l_commitdate": "1993-04-17", "l_receiptdate": "1993-05-14", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "luffily spec" }, { "l_orderkey": 5413i32, "l_partkey": 111i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 36.0d, "l_extendedprice": 36399.96d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-12", "l_commitdate": "1997-11-28", "l_receiptdate": "1997-12-25", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "ular, regular ideas mold! final requests" }, { "l_orderkey": 5671i32, "l_partkey": 111i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 42.0d, "l_extendedprice": 42466.62d, "l_discount": 0.0d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-02-17", "l_commitdate": "1998-04-24", "l_receiptdate": "1998-03-17", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "carefully slyly special deposit" }, { "l_orderkey": 5731i32, "l_partkey": 111i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 6.0d, "l_extendedprice": 6066.66d, "l_discount": 0.01d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-02", "l_commitdate": "1997-07-01", "l_receiptdate": "1997-07-08", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "sits integrate slyly close platelets. quick" } ] }
+{ "partkey": 112i32, "lines": [ { "l_orderkey": 289i32, "l_partkey": 112i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 6.0d, "l_extendedprice": 6072.66d, "l_discount": 0.06d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-18", "l_commitdate": "1997-05-08", "l_receiptdate": "1997-03-19", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "d packages use fluffily furiously" }, { "l_orderkey": 481i32, "l_partkey": 112i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 31.0d, "l_extendedprice": 31375.41d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-01-15", "l_commitdate": "1992-12-31", "l_receiptdate": "1993-01-21", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "usly final packages believe. quick" }, { "l_orderkey": 768i32, "l_partkey": 112i32, "l_suppkey": 9i32, "l_linenumber": 6i32, "l_quantity": 43.0d, "l_extendedprice": 43520.73d, "l_discount": 0.1d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-22", "l_commitdate": "1996-11-03", "l_receiptdate": "1996-10-22", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "sual ideas wake quickly" }, { "l_orderkey": 833i32, "l_partkey": 112i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 38.0d, "l_extendedprice": 38460.18d, "l_discount": 0.05d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-04-05", "l_commitdate": "1994-04-21", "l_receiptdate": "1994-05-01", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": " platelets promise furiously. " }, { "l_orderkey": 1028i32, "l_partkey": 112i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 39.0d, "l_extendedprice": 39472.29d, "l_discount": 0.06d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-02-18", "l_commitdate": "1994-03-22", "l_receiptdate": "1994-03-06", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": " final dependencies affix a" }, { "l_orderkey": 1095i32, "l_partkey": 112i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 40.0d, "l_extendedprice": 40484.4d, "l_discount": 0.09d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-18", "l_commitdate": "1995-11-14", "l_receiptdate": "1995-11-09", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": " bold accounts haggle slyly furiously even" }, { "l_orderkey": 1475i32, "l_partkey": 112i32, "l_suppkey": 3i32, "l_linenumber": 7i32, "l_quantity": 23.0d, "l_extendedprice": 23278.53d, "l_discount": 0.02d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-02-13", "l_commitdate": "1998-02-05", "l_receiptdate": "1998-03-08", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "hely regular hocke" }, { "l_orderkey": 1698i32, "l_partkey": 112i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 19.0d, "l_extendedprice": 19230.09d, "l_discount": 0.0d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-04", "l_commitdate": "1997-06-21", "l_receiptdate": "1997-08-01", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": " fluffily e" }, { "l_orderkey": 2113i32, "l_partkey": 112i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 24.0d, "l_extendedprice": 24290.64d, "l_discount": 0.03d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-02-19", "l_commitdate": "1998-01-08", "l_receiptdate": "1998-03-16", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "kly regular accounts hinder about the" }, { "l_orderkey": 2305i32, "l_partkey": 112i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 17.0d, "l_extendedprice": 17205.87d, "l_discount": 0.0d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-02-21", "l_commitdate": "1993-03-30", "l_receiptdate": "1993-03-19", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": " carefully alongside of " }, { "l_orderkey": 2564i32, "l_partkey": 112i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 4.0d, "l_extendedprice": 4048.44d, "l_discount": 0.02d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-11-12", "l_commitdate": "1994-10-29", "l_receiptdate": "1994-12-04", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "y express requests sleep furi" }, { "l_orderkey": 2567i32, "l_partkey": 112i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 50.0d, "l_extendedprice": 50605.5d, "l_discount": 0.06d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-05", "l_commitdate": "1998-04-18", "l_receiptdate": "1998-05-09", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": ". carefully pending foxes are furi" }, { "l_orderkey": 2759i32, "l_partkey": 112i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 11.0d, "l_extendedprice": 11133.21d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-01-24", "l_commitdate": "1994-01-16", "l_receiptdate": "1994-02-21", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "hely regular " }, { "l_orderkey": 2885i32, "l_partkey": 112i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 4.0d, "l_extendedprice": 4048.44d, "l_discount": 0.07d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-10-09", "l_commitdate": "1992-12-17", "l_receiptdate": "1992-11-04", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": " pending packages wake. " }, { "l_orderkey": 2887i32, "l_partkey": 112i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 17.0d, "l_extendedprice": 17205.87d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-31", "l_commitdate": "1997-07-04", "l_receiptdate": "1997-09-17", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "fily final packages. regula" }, { "l_orderkey": 2982i32, "l_partkey": 112i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 21.0d, "l_extendedprice": 21254.31d, "l_discount": 0.0d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-04-03", "l_commitdate": "1995-06-08", "l_receiptdate": "1995-04-18", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "ironic deposits. furiously ex" }, { "l_orderkey": 3585i32, "l_partkey": 112i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 11.0d, "l_extendedprice": 11133.21d, "l_discount": 0.01d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-01-04", "l_commitdate": "1995-02-14", "l_receiptdate": "1995-01-15", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "even packages" }, { "l_orderkey": 3713i32, "l_partkey": 112i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 41.0d, "l_extendedprice": 41496.51d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-11", "l_commitdate": "1998-07-17", "l_receiptdate": "1998-05-22", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "eposits wake blithely fina" }, { "l_orderkey": 3907i32, "l_partkey": 112i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 41.0d, "l_extendedprice": 41496.51d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-09-13", "l_commitdate": "1992-10-23", "l_receiptdate": "1992-09-29", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "ackages wake along the carefully regul" }, { "l_orderkey": 4071i32, "l_partkey": 112i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 22.0d, "l_extendedprice": 22266.42d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-31", "l_commitdate": "1996-12-14", "l_receiptdate": "1996-11-05", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "sits cajole carefully final instructio" }, { "l_orderkey": 4769i32, "l_partkey": 112i32, "l_suppkey": 6i32, "l_linenumber": 5i32, "l_quantity": 15.0d, "l_extendedprice": 15181.65d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "F", "l_shipdate": "1995-06-12", "l_commitdate": "1995-07-07", "l_receiptdate": "1995-07-04", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "egular platelets can cajole across the " }, { "l_orderkey": 5024i32, "l_partkey": 112i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 18.0d, "l_extendedprice": 18217.98d, "l_discount": 0.04d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-02", "l_commitdate": "1997-01-16", "l_receiptdate": "1996-12-05", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "zle carefully sauternes. quickly" }, { "l_orderkey": 5153i32, "l_partkey": 112i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 36.0d, "l_extendedprice": 36435.96d, "l_discount": 0.01d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-15", "l_commitdate": "1995-11-08", "l_receiptdate": "1995-12-30", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": " ironic instru" }, { "l_orderkey": 5313i32, "l_partkey": 112i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 47.0d, "l_extendedprice": 47569.17d, "l_discount": 0.06d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-12", "l_commitdate": "1997-08-18", "l_receiptdate": "1997-08-13", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "pinto beans across the " }, { "l_orderkey": 5664i32, "l_partkey": 112i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 44.0d, "l_extendedprice": 44532.84d, "l_discount": 0.01d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-09-24", "l_commitdate": "1998-09-26", "l_receiptdate": "1998-10-23", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "ang thinly bold pa" }, { "l_orderkey": 5827i32, "l_partkey": 112i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 38.0d, "l_extendedprice": 38460.18d, "l_discount": 0.03d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-10-18", "l_commitdate": "1998-08-27", "l_receiptdate": "1998-10-23", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "ly ruthless accounts" }, { "l_orderkey": 5888i32, "l_partkey": 112i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 24.0d, "l_extendedprice": 24290.64d, "l_discount": 0.03d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-07", "l_commitdate": "1996-11-30", "l_receiptdate": "1996-11-20", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "ing to the spe" }, { "l_orderkey": 5955i32, "l_partkey": 112i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 40.0d, "l_extendedprice": 40484.4d, "l_discount": 0.03d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-04-01", "l_commitdate": "1995-06-11", "l_receiptdate": "1995-04-27", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "oss the fluffily regular" } ] }
+{ "partkey": 113i32, "lines": [ { "l_orderkey": 647i32, "l_partkey": 113i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 5.0d, "l_extendedprice": 5065.55d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-25", "l_commitdate": "1997-09-22", "l_receiptdate": "1997-10-25", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "ly express packages haggle caref" }, { "l_orderkey": 964i32, "l_partkey": 113i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 1.0d, "l_extendedprice": 1013.11d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-20", "l_commitdate": "1995-07-29", "l_receiptdate": "1995-09-10", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "unts. quickly even platelets s" }, { "l_orderkey": 1027i32, "l_partkey": 113i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 20.0d, "l_extendedprice": 20262.2d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-06-08", "l_commitdate": "1992-08-29", "l_receiptdate": "1992-06-14", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "ar excuses eat f" }, { "l_orderkey": 1090i32, "l_partkey": 113i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 28.0d, "l_extendedprice": 28367.08d, "l_discount": 0.08d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-02-20", "l_commitdate": "1998-01-03", "l_receiptdate": "1998-03-19", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "s cajole above the regular" }, { "l_orderkey": 1188i32, "l_partkey": 113i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 9.0d, "l_extendedprice": 9117.99d, "l_discount": 0.01d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-04", "l_commitdate": "1996-06-04", "l_receiptdate": "1996-08-19", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "ow carefully ironic d" }, { "l_orderkey": 1347i32, "l_partkey": 113i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 28.0d, "l_extendedprice": 28367.08d, "l_discount": 0.01d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-30", "l_commitdate": "1997-07-22", "l_receiptdate": "1997-08-18", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "foxes after the blithely special i" }, { "l_orderkey": 1860i32, "l_partkey": 113i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 9.0d, "l_extendedprice": 9117.99d, "l_discount": 0.04d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-03", "l_commitdate": "1996-05-31", "l_receiptdate": "1996-08-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "c realms print carefully car" }, { "l_orderkey": 1892i32, "l_partkey": 113i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 48.0d, "l_extendedprice": 48629.28d, "l_discount": 0.02d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-06-16", "l_commitdate": "1994-06-16", "l_receiptdate": "1994-06-28", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "tornis detect regul" }, { "l_orderkey": 2050i32, "l_partkey": 113i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 41.0d, "l_extendedprice": 41537.51d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-06-08", "l_commitdate": "1994-08-27", "l_receiptdate": "1994-06-23", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": " final theodolites. depende" }, { "l_orderkey": 2054i32, "l_partkey": 113i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 11.0d, "l_extendedprice": 11144.21d, "l_discount": 0.03d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-08-13", "l_commitdate": "1992-08-26", "l_receiptdate": "1992-08-22", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "ular accou" }, { "l_orderkey": 2081i32, "l_partkey": 113i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 19.0d, "l_extendedprice": 19249.09d, "l_discount": 0.02d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-10-01", "l_commitdate": "1997-08-12", "l_receiptdate": "1997-10-18", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "s affix sometimes express requests. quickly" }, { "l_orderkey": 2214i32, "l_partkey": 113i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 42.0d, "l_extendedprice": 42550.62d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-26", "l_commitdate": "1998-07-13", "l_receiptdate": "1998-06-22", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "ons. deposi" }, { "l_orderkey": 2759i32, "l_partkey": 113i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 37.0d, "l_extendedprice": 37485.07d, "l_discount": 0.0d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-03-05", "l_commitdate": "1994-02-22", "l_receiptdate": "1994-03-18", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "lar Tiresias affix ironically carefully sp" }, { "l_orderkey": 3207i32, "l_partkey": 113i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 2.0d, "l_extendedprice": 2026.22d, "l_discount": 0.1d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-15", "l_commitdate": "1998-04-20", "l_receiptdate": "1998-06-21", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "among the ironic, even packages " }, { "l_orderkey": 3328i32, "l_partkey": 113i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 6.0d, "l_extendedprice": 6078.66d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-03-07", "l_commitdate": "1993-01-25", "l_receiptdate": "1993-03-29", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "ffily even instructions detect b" }, { "l_orderkey": 3333i32, "l_partkey": 113i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 49.0d, "l_extendedprice": 49642.39d, "l_discount": 0.07d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-10-02", "l_commitdate": "1992-11-30", "l_receiptdate": "1992-10-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "riously ironic r" }, { "l_orderkey": 3363i32, "l_partkey": 113i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 20.0d, "l_extendedprice": 20262.2d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-11", "l_commitdate": "1995-11-15", "l_receiptdate": "1995-12-21", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "carefully quiet excuses wake. sl" }, { "l_orderkey": 3651i32, "l_partkey": 113i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 41.0d, "l_extendedprice": 41537.51d, "l_discount": 0.0d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-10", "l_commitdate": "1998-07-09", "l_receiptdate": "1998-05-13", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "blithely. furiously " }, { "l_orderkey": 3750i32, "l_partkey": 113i32, "l_suppkey": 7i32, "l_linenumber": 6i32, "l_quantity": 47.0d, "l_extendedprice": 47616.17d, "l_discount": 0.01d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-05-11", "l_commitdate": "1995-06-13", "l_receiptdate": "1995-06-02", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "slowly regular accounts. blithely ev" }, { "l_orderkey": 3875i32, "l_partkey": 113i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 49.0d, "l_extendedprice": 49642.39d, "l_discount": 0.04d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-10-18", "l_commitdate": "1997-10-13", "l_receiptdate": "1997-10-19", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "sleep furiously about the deposits. quickl" }, { "l_orderkey": 3911i32, "l_partkey": 113i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 10.0d, "l_extendedprice": 10131.1d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-06-22", "l_commitdate": "1995-05-30", "l_receiptdate": "1995-06-28", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "ss theodolites are blithely along t" }, { "l_orderkey": 4160i32, "l_partkey": 113i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 25.0d, "l_extendedprice": 25327.75d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-22", "l_commitdate": "1996-10-17", "l_receiptdate": "1996-09-24", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "ar accounts sleep blithe" }, { "l_orderkey": 4263i32, "l_partkey": 113i32, "l_suppkey": 10i32, "l_linenumber": 6i32, "l_quantity": 47.0d, "l_extendedprice": 47616.17d, "l_discount": 0.08d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-28", "l_commitdate": "1998-05-09", "l_receiptdate": "1998-07-02", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "y. theodolites wake idly ironic do" }, { "l_orderkey": 4487i32, "l_partkey": 113i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 49.0d, "l_extendedprice": 49642.39d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-06-13", "l_commitdate": "1993-05-08", "l_receiptdate": "1993-07-10", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "sual packages should ha" }, { "l_orderkey": 4741i32, "l_partkey": 113i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 16.0d, "l_extendedprice": 16209.76d, "l_discount": 0.01d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-08-25", "l_commitdate": "1992-08-10", "l_receiptdate": "1992-08-29", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "final foxes haggle r" }, { "l_orderkey": 5411i32, "l_partkey": 113i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 10.0d, "l_extendedprice": 10131.1d, "l_discount": 0.08d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-19", "l_commitdate": "1997-08-04", "l_receiptdate": "1997-07-26", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "nding, special foxes unw" }, { "l_orderkey": 5862i32, "l_partkey": 113i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 4.0d, "l_extendedprice": 4052.44d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-04", "l_commitdate": "1997-04-26", "l_receiptdate": "1997-06-19", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "yly silent deposit" }, { "l_orderkey": 5890i32, "l_partkey": 113i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 38.0d, "l_extendedprice": 38498.18d, "l_discount": 0.01d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-02-14", "l_commitdate": "1992-12-09", "l_receiptdate": "1993-02-27", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": " accounts. carefully final asymptotes" } ] }
+{ "partkey": 114i32, "lines": [ { "l_orderkey": 355i32, "l_partkey": 114i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 31.0d, "l_extendedprice": 31437.41d, "l_discount": 0.09d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-07-13", "l_commitdate": "1994-08-18", "l_receiptdate": "1994-07-18", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "y unusual, ironic" }, { "l_orderkey": 357i32, "l_partkey": 114i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 26.0d, "l_extendedprice": 26366.86d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-28", "l_commitdate": "1996-11-26", "l_receiptdate": "1997-01-13", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": " carefully pending accounts use a" }, { "l_orderkey": 710i32, "l_partkey": 114i32, "l_suppkey": 4i32, "l_linenumber": 6i32, "l_quantity": 21.0d, "l_extendedprice": 21296.31d, "l_discount": 0.04d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-03-22", "l_commitdate": "1993-03-05", "l_receiptdate": "1993-03-27", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "es. furiously p" }, { "l_orderkey": 1253i32, "l_partkey": 114i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 19.0d, "l_extendedprice": 19268.09d, "l_discount": 0.05d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-04-01", "l_commitdate": "1993-04-22", "l_receiptdate": "1993-04-14", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "al pinto bea" }, { "l_orderkey": 1318i32, "l_partkey": 114i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 24.0d, "l_extendedprice": 24338.64d, "l_discount": 0.08d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-09-27", "l_commitdate": "1998-09-15", "l_receiptdate": "1998-10-12", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "ual, unusual packages. fluffy, iro" }, { "l_orderkey": 1440i32, "l_partkey": 114i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 46.0d, "l_extendedprice": 46649.06d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-21", "l_commitdate": "1995-10-19", "l_receiptdate": "1995-10-19", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "blithely even instructions. " }, { "l_orderkey": 1506i32, "l_partkey": 114i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 30.0d, "l_extendedprice": 30423.3d, "l_discount": 0.07d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-11-22", "l_commitdate": "1992-10-25", "l_receiptdate": "1992-12-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "deposits cajole " }, { "l_orderkey": 1604i32, "l_partkey": 114i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 19.0d, "l_extendedprice": 19268.09d, "l_discount": 0.09d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-10-15", "l_commitdate": "1993-10-04", "l_receiptdate": "1993-11-09", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": " ideas. bol" }, { "l_orderkey": 1635i32, "l_partkey": 114i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 20.0d, "l_extendedprice": 20282.2d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-19", "l_commitdate": "1997-04-01", "l_receiptdate": "1997-06-17", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "oost according to the carefully even accou" }, { "l_orderkey": 1636i32, "l_partkey": 114i32, "l_suppkey": 1i32, "l_linenumber": 7i32, "l_quantity": 7.0d, "l_extendedprice": 7098.77d, "l_discount": 0.04d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-28", "l_commitdate": "1997-09-10", "l_receiptdate": "1997-07-31", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "ronic instructions. final" }, { "l_orderkey": 1795i32, "l_partkey": 114i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 34.0d, "l_extendedprice": 34479.74d, "l_discount": 0.08d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-04-24", "l_commitdate": "1994-06-01", "l_receiptdate": "1994-05-08", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "closely regular instructions wake. " }, { "l_orderkey": 2469i32, "l_partkey": 114i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 16.0d, "l_extendedprice": 16225.76d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-19", "l_commitdate": "1997-02-04", "l_receiptdate": "1997-03-18", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "ing asymptotes " }, { "l_orderkey": 2532i32, "l_partkey": 114i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 9.0d, "l_extendedprice": 9126.99d, "l_discount": 0.09d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-30", "l_commitdate": "1995-11-23", "l_receiptdate": "1995-12-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "cial ideas haggle slyly pending request" }, { "l_orderkey": 2663i32, "l_partkey": 114i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 35.0d, "l_extendedprice": 35493.85d, "l_discount": 0.02d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-11", "l_commitdate": "1995-10-16", "l_receiptdate": "1996-01-07", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "tect. slyly fina" }, { "l_orderkey": 2692i32, "l_partkey": 114i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 21.0d, "l_extendedprice": 21296.31d, "l_discount": 0.03d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-11", "l_commitdate": "1998-02-11", "l_receiptdate": "1998-03-19", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "posits. final, express requests nag furi" }, { "l_orderkey": 3014i32, "l_partkey": 114i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 14.0d, "l_extendedprice": 14197.54d, "l_discount": 0.1d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-11-19", "l_commitdate": "1993-01-01", "l_receiptdate": "1992-12-17", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": ". slyly brave platelets nag. careful," }, { "l_orderkey": 4004i32, "l_partkey": 114i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 39.0d, "l_extendedprice": 39550.29d, "l_discount": 0.1d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-07-12", "l_commitdate": "1993-07-27", "l_receiptdate": "1993-07-18", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "ccounts sleep furious" }, { "l_orderkey": 4006i32, "l_partkey": 114i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 25.0d, "l_extendedprice": 25352.75d, "l_discount": 0.0d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-02-23", "l_commitdate": "1995-02-09", "l_receiptdate": "1995-02-24", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": " requests use depos" }, { "l_orderkey": 4196i32, "l_partkey": 114i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 42.0d, "l_extendedprice": 42592.62d, "l_discount": 0.04d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-13", "l_commitdate": "1998-07-18", "l_receiptdate": "1998-09-07", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": " instructions. courts cajole slyly ev" }, { "l_orderkey": 4452i32, "l_partkey": 114i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 21.0d, "l_extendedprice": 21296.31d, "l_discount": 0.07d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-10-06", "l_commitdate": "1994-08-23", "l_receiptdate": "1994-10-15", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "multipliers x-ray carefully in place of " }, { "l_orderkey": 5090i32, "l_partkey": 114i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 2.0d, "l_extendedprice": 2028.22d, "l_discount": 0.03d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-07", "l_commitdate": "1997-04-23", "l_receiptdate": "1997-05-01", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "tes. slowly iro" }, { "l_orderkey": 5281i32, "l_partkey": 114i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 37.0d, "l_extendedprice": 37522.07d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-10", "l_commitdate": "1996-01-31", "l_receiptdate": "1995-11-22", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "ronic dependencies. fluffily final p" }, { "l_orderkey": 5345i32, "l_partkey": 114i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 37.0d, "l_extendedprice": 37522.07d, "l_discount": 0.01d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-11-01", "l_commitdate": "1997-10-09", "l_receiptdate": "1997-11-26", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": " along the ironically fina" }, { "l_orderkey": 5671i32, "l_partkey": 114i32, "l_suppkey": 1i32, "l_linenumber": 6i32, "l_quantity": 30.0d, "l_extendedprice": 30423.3d, "l_discount": 0.09d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-06", "l_commitdate": "1998-04-15", "l_receiptdate": "1998-07-01", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "fily ironi" } ] }
+{ "partkey": 115i32, "lines": [ { "l_orderkey": 132i32, "l_partkey": 115i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 32.0d, "l_extendedprice": 32483.52d, "l_discount": 0.04d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-07-12", "l_commitdate": "1993-08-05", "l_receiptdate": "1993-08-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "d instructions hagg" }, { "l_orderkey": 135i32, "l_partkey": 115i32, "l_suppkey": 5i32, "l_linenumber": 6i32, "l_quantity": 13.0d, "l_extendedprice": 13196.43d, "l_discount": 0.04d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-12", "l_commitdate": "1995-12-22", "l_receiptdate": "1995-11-17", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "nal ideas. final instr" }, { "l_orderkey": 452i32, "l_partkey": 115i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 2.0d, "l_extendedprice": 2030.22d, "l_discount": 0.04d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-26", "l_commitdate": "1998-01-03", "l_receiptdate": "1998-01-12", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "y express instru" }, { "l_orderkey": 646i32, "l_partkey": 115i32, "l_suppkey": 2i32, "l_linenumber": 6i32, "l_quantity": 40.0d, "l_extendedprice": 40604.4d, "l_discount": 0.1d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-01-01", "l_commitdate": "1995-01-13", "l_receiptdate": "1995-01-11", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "ronic packages sleep across th" }, { "l_orderkey": 900i32, "l_partkey": 115i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 48.0d, "l_extendedprice": 48725.28d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-12-22", "l_commitdate": "1994-11-08", "l_receiptdate": "1995-01-19", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "cial pinto beans nag " }, { "l_orderkey": 1094i32, "l_partkey": 115i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 9.0d, "l_extendedprice": 9135.99d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-28", "l_commitdate": "1998-03-16", "l_receiptdate": "1998-01-18", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "as. slyly pe" }, { "l_orderkey": 1188i32, "l_partkey": 115i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 2.0d, "l_extendedprice": 2030.22d, "l_discount": 0.0d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-22", "l_commitdate": "1996-05-23", "l_receiptdate": "1996-06-06", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "its breach blit" }, { "l_orderkey": 1477i32, "l_partkey": 115i32, "l_suppkey": 6i32, "l_linenumber": 5i32, "l_quantity": 41.0d, "l_extendedprice": 41619.51d, "l_discount": 0.04d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-16", "l_commitdate": "1997-10-31", "l_receiptdate": "1998-01-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "y. final pearls kindle. accounts " }, { "l_orderkey": 1504i32, "l_partkey": 115i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 10.0d, "l_extendedprice": 10151.1d, "l_discount": 0.04d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-09-22", "l_commitdate": "1992-10-22", "l_receiptdate": "1992-10-13", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "final theodolites. furiously e" }, { "l_orderkey": 1543i32, "l_partkey": 115i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 6.0d, "l_extendedprice": 6090.66d, "l_discount": 0.09d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-16", "l_commitdate": "1997-05-20", "l_receiptdate": "1997-05-16", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": " among the carefully bold or" }, { "l_orderkey": 1606i32, "l_partkey": 115i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 21.0d, "l_extendedprice": 21317.31d, "l_discount": 0.04d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-02", "l_commitdate": "1997-07-02", "l_receiptdate": "1997-06-27", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": " pending theodolites prom" }, { "l_orderkey": 1829i32, "l_partkey": 115i32, "l_suppkey": 5i32, "l_linenumber": 6i32, "l_quantity": 36.0d, "l_extendedprice": 36543.96d, "l_discount": 0.09d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-06-10", "l_commitdate": "1994-06-23", "l_receiptdate": "1994-06-22", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "ackages-- express requests sleep; pen" }, { "l_orderkey": 1831i32, "l_partkey": 115i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 17.0d, "l_extendedprice": 17256.87d, "l_discount": 0.02d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-01-18", "l_commitdate": "1994-02-12", "l_receiptdate": "1994-01-30", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "s boost ironic foxe" }, { "l_orderkey": 2084i32, "l_partkey": 115i32, "l_suppkey": 9i32, "l_linenumber": 6i32, "l_quantity": 15.0d, "l_extendedprice": 15226.65d, "l_discount": 0.09d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-06-23", "l_commitdate": "1993-04-25", "l_receiptdate": "1993-07-23", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "tithes. bravely pendi" }, { "l_orderkey": 2565i32, "l_partkey": 115i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 34.0d, "l_extendedprice": 34513.74d, "l_discount": 0.06d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-19", "l_commitdate": "1998-04-12", "l_receiptdate": "1998-04-17", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "nstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstructions was carefunstruction" }, { "l_orderkey": 2657i32, "l_partkey": 115i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 22.0d, "l_extendedprice": 22332.42d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-08", "l_commitdate": "1995-12-28", "l_receiptdate": "1995-12-21", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "r ideas. furiously special dolphins" }, { "l_orderkey": 2880i32, "l_partkey": 115i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 42.0d, "l_extendedprice": 42634.62d, "l_discount": 0.01d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-06-17", "l_commitdate": "1992-05-29", "l_receiptdate": "1992-07-11", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "ions. carefully final accounts are unusual," }, { "l_orderkey": 2912i32, "l_partkey": 115i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 18.0d, "l_extendedprice": 18271.98d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-03-13", "l_commitdate": "1992-04-19", "l_receiptdate": "1992-03-30", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "unts cajole reg" }, { "l_orderkey": 3077i32, "l_partkey": 115i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 23.0d, "l_extendedprice": 23347.53d, "l_discount": 0.03d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-11-05", "l_commitdate": "1997-09-16", "l_receiptdate": "1997-11-20", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "lly. fluffily pending dinos across" }, { "l_orderkey": 3362i32, "l_partkey": 115i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 40.0d, "l_extendedprice": 40604.4d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-19", "l_commitdate": "1995-10-17", "l_receiptdate": "1995-09-05", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "packages haggle furi" }, { "l_orderkey": 3365i32, "l_partkey": 115i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 13.0d, "l_extendedprice": 13196.43d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-02-25", "l_commitdate": "1995-01-31", "l_receiptdate": "1995-03-16", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "pths wake r" }, { "l_orderkey": 3937i32, "l_partkey": 115i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 27.0d, "l_extendedprice": 27407.97d, "l_discount": 0.03d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-02-06", "l_commitdate": "1998-01-12", "l_receiptdate": "1998-02-20", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "ven ideas. slyly expr" }, { "l_orderkey": 3973i32, "l_partkey": 115i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 37.0d, "l_extendedprice": 37559.07d, "l_discount": 0.07d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-05-29", "l_commitdate": "1992-05-04", "l_receiptdate": "1992-06-23", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "inos wake fluffily. pending requests nag " }, { "l_orderkey": 4101i32, "l_partkey": 115i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 22.0d, "l_extendedprice": 22332.42d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-02-02", "l_commitdate": "1994-02-19", "l_receiptdate": "1994-02-12", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "ly express instructions. careful" }, { "l_orderkey": 4644i32, "l_partkey": 115i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 10.0d, "l_extendedprice": 10151.1d, "l_discount": 0.02d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-02-21", "l_commitdate": "1998-02-28", "l_receiptdate": "1998-03-19", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "osits according to the" }, { "l_orderkey": 4930i32, "l_partkey": 115i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 20.0d, "l_extendedprice": 20302.2d, "l_discount": 0.02d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-08-21", "l_commitdate": "1994-06-17", "l_receiptdate": "1994-08-24", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "he carefully" }, { "l_orderkey": 5093i32, "l_partkey": 115i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 30.0d, "l_extendedprice": 30453.3d, "l_discount": 0.06d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-11-22", "l_commitdate": "1993-11-27", "l_receiptdate": "1993-12-14", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "ithely ironic sheaves use fluff" }, { "l_orderkey": 5191i32, "l_partkey": 115i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 41.0d, "l_extendedprice": 41619.51d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-02-05", "l_commitdate": "1995-02-27", "l_receiptdate": "1995-02-15", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "uests! ironic theodolites cajole care" }, { "l_orderkey": 5317i32, "l_partkey": 115i32, "l_suppkey": 9i32, "l_linenumber": 6i32, "l_quantity": 48.0d, "l_extendedprice": 48725.28d, "l_discount": 0.01d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-09-19", "l_commitdate": "1994-11-25", "l_receiptdate": "1994-10-03", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "ts about the packages cajole furio" }, { "l_orderkey": 5440i32, "l_partkey": 115i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 3.0d, "l_extendedprice": 3045.33d, "l_discount": 0.02d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-18", "l_commitdate": "1997-02-28", "l_receiptdate": "1997-03-15", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "y. accounts haggle along the blit" }, { "l_orderkey": 5794i32, "l_partkey": 115i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 14.0d, "l_extendedprice": 14211.54d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-04-19", "l_commitdate": "1993-07-02", "l_receiptdate": "1993-05-18", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "uriously carefully ironic reque" }, { "l_orderkey": 5798i32, "l_partkey": 115i32, "l_suppkey": 9i32, "l_linenumber": 7i32, "l_quantity": 32.0d, "l_extendedprice": 32483.52d, "l_discount": 0.08d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-27", "l_commitdate": "1998-05-03", "l_receiptdate": "1998-05-08", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "ubt blithely above the " }, { "l_orderkey": 5921i32, "l_partkey": 115i32, "l_suppkey": 6i32, "l_linenumber": 6i32, "l_quantity": 5.0d, "l_extendedprice": 5075.55d, "l_discount": 0.02d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-06-01", "l_commitdate": "1994-05-07", "l_receiptdate": "1994-06-10", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "eas cajole across the final, fi" }, { "l_orderkey": 5927i32, "l_partkey": 115i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 8.0d, "l_extendedprice": 8120.88d, "l_discount": 0.04d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-24", "l_commitdate": "1997-11-15", "l_receiptdate": "1997-10-22", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "ilent dependencies nod c" } ] }
+{ "partkey": 116i32, "lines": [ { "l_orderkey": 66i32, "l_partkey": 116i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 31.0d, "l_extendedprice": 31499.41d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-02-19", "l_commitdate": "1994-03-11", "l_receiptdate": "1994-02-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "ut the unusual accounts sleep at the bo" }, { "l_orderkey": 69i32, "l_partkey": 116i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 48.0d, "l_extendedprice": 48773.28d, "l_discount": 0.01d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-08-17", "l_commitdate": "1994-08-11", "l_receiptdate": "1994-09-08", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "regular epitaphs. carefully even ideas hag" }, { "l_orderkey": 100i32, "l_partkey": 116i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 22.0d, "l_extendedprice": 22354.42d, "l_discount": 0.0d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-24", "l_commitdate": "1998-04-12", "l_receiptdate": "1998-06-29", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "nto beans alongside of the fi" }, { "l_orderkey": 130i32, "l_partkey": 116i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 13.0d, "l_extendedprice": 13209.43d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-06-26", "l_commitdate": "1992-07-29", "l_receiptdate": "1992-07-05", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": " pending dolphins sleep furious" }, { "l_orderkey": 514i32, "l_partkey": 116i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 43.0d, "l_extendedprice": 43692.73d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-07", "l_commitdate": "1996-05-14", "l_receiptdate": "1996-07-01", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "thely regular " }, { "l_orderkey": 1861i32, "l_partkey": 116i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 38.0d, "l_extendedprice": 38612.18d, "l_discount": 0.1d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-02-26", "l_commitdate": "1994-02-05", "l_receiptdate": "1994-03-01", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "pending deposits cajole quic" }, { "l_orderkey": 1925i32, "l_partkey": 116i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 40.0d, "l_extendedprice": 40644.4d, "l_discount": 0.08d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-05-17", "l_commitdate": "1992-05-20", "l_receiptdate": "1992-06-08", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "e carefully regul" }, { "l_orderkey": 2148i32, "l_partkey": 116i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 21.0d, "l_extendedprice": 21338.31d, "l_discount": 0.09d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-05-28", "l_commitdate": "1995-05-26", "l_receiptdate": "1995-06-15", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "deposits ag" }, { "l_orderkey": 2241i32, "l_partkey": 116i32, "l_suppkey": 3i32, "l_linenumber": 6i32, "l_quantity": 22.0d, "l_extendedprice": 22354.42d, "l_discount": 0.02d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-08-13", "l_commitdate": "1993-06-15", "l_receiptdate": "1993-08-16", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": ", ironic depen" }, { "l_orderkey": 2437i32, "l_partkey": 116i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 12.0d, "l_extendedprice": 12193.32d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-04-27", "l_commitdate": "1993-07-01", "l_receiptdate": "1993-05-18", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "thely regular deposits. ironic fray" }, { "l_orderkey": 2534i32, "l_partkey": 116i32, "l_suppkey": 10i32, "l_linenumber": 6i32, "l_quantity": 12.0d, "l_extendedprice": 12193.32d, "l_discount": 0.02d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-29", "l_commitdate": "1996-10-12", "l_receiptdate": "1996-08-14", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "sual depos" }, { "l_orderkey": 2755i32, "l_partkey": 116i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 48.0d, "l_extendedprice": 48773.28d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-03-22", "l_commitdate": "1992-03-10", "l_receiptdate": "1992-04-14", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "yly even epitaphs for the " }, { "l_orderkey": 3136i32, "l_partkey": 116i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 26.0d, "l_extendedprice": 26418.86d, "l_discount": 0.04d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-10-13", "l_commitdate": "1994-11-07", "l_receiptdate": "1994-11-05", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "eep fluffily. daringly silent attainments d" }, { "l_orderkey": 3200i32, "l_partkey": 116i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 17.0d, "l_extendedprice": 17273.87d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-06", "l_commitdate": "1996-04-21", "l_receiptdate": "1996-06-14", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "side of the furiously pendin" }, { "l_orderkey": 3619i32, "l_partkey": 116i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 27.0d, "l_extendedprice": 27434.97d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-12", "l_commitdate": "1997-01-18", "l_receiptdate": "1996-12-18", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "pecial accounts haggle care" }, { "l_orderkey": 3682i32, "l_partkey": 116i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 18.0d, "l_extendedprice": 18289.98d, "l_discount": 0.06d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-30", "l_commitdate": "1997-03-21", "l_receiptdate": "1997-05-10", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "regular dependencies" }, { "l_orderkey": 3905i32, "l_partkey": 116i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 7.0d, "l_extendedprice": 7112.77d, "l_discount": 0.03d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-03-01", "l_commitdate": "1994-02-19", "l_receiptdate": "1994-03-11", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "ully furiously furious packag" }, { "l_orderkey": 4007i32, "l_partkey": 116i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 41.0d, "l_extendedprice": 41660.51d, "l_discount": 0.04d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-10-11", "l_commitdate": "1993-08-30", "l_receiptdate": "1993-11-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "eposits. regular epitaphs boost blithely." }, { "l_orderkey": 4421i32, "l_partkey": 116i32, "l_suppkey": 3i32, "l_linenumber": 7i32, "l_quantity": 18.0d, "l_extendedprice": 18289.98d, "l_discount": 0.01d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-07", "l_commitdate": "1997-05-13", "l_receiptdate": "1997-06-10", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": ". regular, s" }, { "l_orderkey": 4547i32, "l_partkey": 116i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 7.0d, "l_extendedprice": 7112.77d, "l_discount": 0.1d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-09-04", "l_commitdate": "1993-09-29", "l_receiptdate": "1993-09-20", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "slyly express a" }, { "l_orderkey": 4706i32, "l_partkey": 116i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 5.0d, "l_extendedprice": 5080.55d, "l_discount": 0.06d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-02-14", "l_commitdate": "1993-01-31", "l_receiptdate": "1993-02-26", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "ptotes haggle ca" }, { "l_orderkey": 4711i32, "l_partkey": 116i32, "l_suppkey": 7i32, "l_linenumber": 6i32, "l_quantity": 45.0d, "l_extendedprice": 45724.95d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-19", "l_commitdate": "1998-07-14", "l_receiptdate": "1998-05-21", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": " ironic theodolites " }, { "l_orderkey": 4900i32, "l_partkey": 116i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 40.0d, "l_extendedprice": 40644.4d, "l_discount": 0.1d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-09-02", "l_commitdate": "1992-09-25", "l_receiptdate": "1992-09-21", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "heodolites. request" }, { "l_orderkey": 4901i32, "l_partkey": 116i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 40.0d, "l_extendedprice": 40644.4d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-08", "l_commitdate": "1998-01-30", "l_receiptdate": "1998-01-15", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "ect across the furiou" }, { "l_orderkey": 5603i32, "l_partkey": 116i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 49.0d, "l_extendedprice": 49789.39d, "l_discount": 0.06d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-06-24", "l_commitdate": "1992-07-28", "l_receiptdate": "1992-07-01", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "fully silent requests. carefully fin" } ] }
+{ "partkey": 117i32, "lines": [ { "l_orderkey": 288i32, "l_partkey": 117i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 49.0d, "l_extendedprice": 49838.39d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-19", "l_commitdate": "1997-05-19", "l_receiptdate": "1997-05-18", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "ic excuses sleep always spe" }, { "l_orderkey": 353i32, "l_partkey": 117i32, "l_suppkey": 4i32, "l_linenumber": 5i32, "l_quantity": 9.0d, "l_extendedprice": 9153.99d, "l_discount": 0.02d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-03-15", "l_commitdate": "1994-03-20", "l_receiptdate": "1994-03-18", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "ual accounts! carefu" }, { "l_orderkey": 705i32, "l_partkey": 117i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 35.0d, "l_extendedprice": 35598.85d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-25", "l_commitdate": "1997-03-20", "l_receiptdate": "1997-04-23", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "carefully ironic accounts" }, { "l_orderkey": 807i32, "l_partkey": 117i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 49.0d, "l_extendedprice": 49838.39d, "l_discount": 0.0d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-12-05", "l_commitdate": "1994-01-13", "l_receiptdate": "1993-12-25", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": " furiously according to the un" }, { "l_orderkey": 960i32, "l_partkey": 117i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 25.0d, "l_extendedprice": 25427.75d, "l_discount": 0.06d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-12-01", "l_commitdate": "1994-10-29", "l_receiptdate": "1994-12-27", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "ts. fluffily regular requests " }, { "l_orderkey": 966i32, "l_partkey": 117i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 42.0d, "l_extendedprice": 42718.62d, "l_discount": 0.02d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-28", "l_commitdate": "1998-06-20", "l_receiptdate": "1998-07-05", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "tions boost furiously car" }, { "l_orderkey": 1508i32, "l_partkey": 117i32, "l_suppkey": 8i32, "l_linenumber": 7i32, "l_quantity": 38.0d, "l_extendedprice": 38650.18d, "l_discount": 0.03d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-30", "l_commitdate": "1998-06-23", "l_receiptdate": "1998-05-18", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "tes wake furiously regular w" }, { "l_orderkey": 1575i32, "l_partkey": 117i32, "l_suppkey": 1i32, "l_linenumber": 7i32, "l_quantity": 48.0d, "l_extendedprice": 48821.28d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-19", "l_commitdate": "1995-10-25", "l_receiptdate": "1995-12-07", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "cies. regu" }, { "l_orderkey": 1794i32, "l_partkey": 117i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 23.0d, "l_extendedprice": 23393.53d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-10-13", "l_commitdate": "1997-11-30", "l_receiptdate": "1997-10-28", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "usly unusual theodolites doze about " }, { "l_orderkey": 1794i32, "l_partkey": 117i32, "l_suppkey": 4i32, "l_linenumber": 5i32, "l_quantity": 47.0d, "l_extendedprice": 47804.17d, "l_discount": 0.1d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-15", "l_commitdate": "1997-11-30", "l_receiptdate": "1998-02-14", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": " haggle slyly. furiously express orbit" }, { "l_orderkey": 1856i32, "l_partkey": 117i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 20.0d, "l_extendedprice": 20342.2d, "l_discount": 0.04d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-05-04", "l_commitdate": "1992-05-06", "l_receiptdate": "1992-05-11", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "ost carefully. slyly bold accounts" }, { "l_orderkey": 2339i32, "l_partkey": 117i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 13.0d, "l_extendedprice": 13222.43d, "l_discount": 0.06d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-03-10", "l_commitdate": "1994-02-18", "l_receiptdate": "1994-03-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "ges. blithely special depend" }, { "l_orderkey": 2342i32, "l_partkey": 117i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 24.0d, "l_extendedprice": 24410.64d, "l_discount": 0.1d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-30", "l_commitdate": "1996-07-22", "l_receiptdate": "1996-10-28", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "nstructions c" }, { "l_orderkey": 2436i32, "l_partkey": 117i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 18.0d, "l_extendedprice": 18307.98d, "l_discount": 0.05d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-14", "l_commitdate": "1995-11-21", "l_receiptdate": "1995-11-12", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "y ironic accounts. furiously even packa" }, { "l_orderkey": 2790i32, "l_partkey": 117i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 50.0d, "l_extendedprice": 50855.5d, "l_discount": 0.0d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-12-08", "l_commitdate": "1994-11-17", "l_receiptdate": "1994-12-19", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "fter the regular ideas. f" }, { "l_orderkey": 3079i32, "l_partkey": 117i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 38.0d, "l_extendedprice": 38650.18d, "l_discount": 0.08d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-11-07", "l_commitdate": "1997-11-25", "l_receiptdate": "1997-12-06", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "e carefully regular realms" }, { "l_orderkey": 3236i32, "l_partkey": 117i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 10.0d, "l_extendedprice": 10171.1d, "l_discount": 0.06d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-15", "l_commitdate": "1996-12-14", "l_receiptdate": "1996-11-29", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "arefully. fluffily reg" }, { "l_orderkey": 3270i32, "l_partkey": 117i32, "l_suppkey": 1i32, "l_linenumber": 7i32, "l_quantity": 9.0d, "l_extendedprice": 9153.99d, "l_discount": 0.06d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-14", "l_commitdate": "1997-08-11", "l_receiptdate": "1997-09-09", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "ual packages" }, { "l_orderkey": 3360i32, "l_partkey": 117i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 29.0d, "l_extendedprice": 29496.19d, "l_discount": 0.1d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-19", "l_commitdate": "1998-03-03", "l_receiptdate": "1998-06-09", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "hely gifts. spe" }, { "l_orderkey": 3393i32, "l_partkey": 117i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 16.0d, "l_extendedprice": 16273.76d, "l_discount": 0.01d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-17", "l_commitdate": "1995-08-19", "l_receiptdate": "1995-08-04", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "uses. instructions after the blithely " }, { "l_orderkey": 3494i32, "l_partkey": 117i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 40.0d, "l_extendedprice": 40684.4d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-07-10", "l_commitdate": "1993-06-01", "l_receiptdate": "1993-07-25", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "lites haggle furiously about the fin" }, { "l_orderkey": 3526i32, "l_partkey": 117i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 23.0d, "l_extendedprice": 23393.53d, "l_discount": 0.03d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-05-01", "l_commitdate": "1995-05-31", "l_receiptdate": "1995-05-25", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "special, regular packages cajole. " }, { "l_orderkey": 3617i32, "l_partkey": 117i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 46.0d, "l_extendedprice": 46787.06d, "l_discount": 0.03d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-19", "l_commitdate": "1996-05-14", "l_receiptdate": "1996-06-11", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "ar theodolites. regu" }, { "l_orderkey": 3623i32, "l_partkey": 117i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 33.0d, "l_extendedprice": 33564.63d, "l_discount": 0.08d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-17", "l_commitdate": "1997-02-13", "l_receiptdate": "1997-04-02", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "odolites. blithely spe" }, { "l_orderkey": 3648i32, "l_partkey": 117i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 25.0d, "l_extendedprice": 25427.75d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-08-15", "l_commitdate": "1993-08-25", "l_receiptdate": "1993-09-09", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "s requests. silent asymp" }, { "l_orderkey": 3686i32, "l_partkey": 117i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 7.0d, "l_extendedprice": 7119.77d, "l_discount": 0.1d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-16", "l_commitdate": "1998-09-02", "l_receiptdate": "1998-07-22", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "ake carefully carefully q" }, { "l_orderkey": 3782i32, "l_partkey": 117i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 34.0d, "l_extendedprice": 34581.74d, "l_discount": 0.02d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-07", "l_commitdate": "1996-10-22", "l_receiptdate": "1996-11-19", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "gage after the even" }, { "l_orderkey": 4193i32, "l_partkey": 117i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 3.0d, "l_extendedprice": 3051.33d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-04-29", "l_commitdate": "1994-03-20", "l_receiptdate": "1994-05-29", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "osits above the depo" }, { "l_orderkey": 4545i32, "l_partkey": 117i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 27.0d, "l_extendedprice": 27461.97d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-03-18", "l_commitdate": "1993-02-22", "l_receiptdate": "1993-03-23", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "ccounts haggle carefully. deposits " }, { "l_orderkey": 4678i32, "l_partkey": 117i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 18.0d, "l_extendedprice": 18307.98d, "l_discount": 0.03d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-10-30", "l_commitdate": "1998-09-22", "l_receiptdate": "1998-11-25", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "usly ironic " }, { "l_orderkey": 4833i32, "l_partkey": 117i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 11.0d, "l_extendedprice": 11188.21d, "l_discount": 0.03d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-24", "l_commitdate": "1996-07-26", "l_receiptdate": "1996-09-19", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "s nag above the busily sile" }, { "l_orderkey": 5156i32, "l_partkey": 117i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 21.0d, "l_extendedprice": 21359.31d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-01", "l_commitdate": "1997-01-30", "l_receiptdate": "1997-01-11", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "ts detect against the furiously reg" }, { "l_orderkey": 5410i32, "l_partkey": 117i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 48.0d, "l_extendedprice": 48821.28d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-09-27", "l_commitdate": "1998-09-11", "l_receiptdate": "1998-10-01", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": " about the slyly even courts. quickly regul" }, { "l_orderkey": 5508i32, "l_partkey": 117i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 4.0d, "l_extendedprice": 4068.44d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-01", "l_commitdate": "1996-08-02", "l_receiptdate": "1996-09-17", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "fluffily about the even " }, { "l_orderkey": 5920i32, "l_partkey": 117i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 2.0d, "l_extendedprice": 2034.22d, "l_discount": 0.08d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-02-18", "l_commitdate": "1995-01-13", "l_receiptdate": "1995-03-04", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": " evenly spe" } ] }
+{ "partkey": 118i32, "lines": [ { "l_orderkey": 133i32, "l_partkey": 118i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 29.0d, "l_extendedprice": 29525.19d, "l_discount": 0.09d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-02-28", "l_commitdate": "1998-01-30", "l_receiptdate": "1998-03-09", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": " the carefully regular theodoli" }, { "l_orderkey": 226i32, "l_partkey": 118i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 2.0d, "l_extendedprice": 2036.22d, "l_discount": 0.07d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-03-26", "l_commitdate": "1993-04-13", "l_receiptdate": "1993-04-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "al platelets. express somas " }, { "l_orderkey": 226i32, "l_partkey": 118i32, "l_suppkey": 8i32, "l_linenumber": 7i32, "l_quantity": 14.0d, "l_extendedprice": 14253.54d, "l_discount": 0.09d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-05-20", "l_commitdate": "1993-06-05", "l_receiptdate": "1993-05-27", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "ep carefully regular accounts. ironic" }, { "l_orderkey": 293i32, "l_partkey": 118i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 13.0d, "l_extendedprice": 13235.43d, "l_discount": 0.04d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-12-17", "l_commitdate": "1992-12-26", "l_receiptdate": "1992-12-22", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": " wake after the quickly even deposits. bli" }, { "l_orderkey": 454i32, "l_partkey": 118i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 24.0d, "l_extendedprice": 24434.64d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-04-26", "l_commitdate": "1996-03-23", "l_receiptdate": "1996-05-20", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "le. deposits after the ideas nag unusual pa" }, { "l_orderkey": 514i32, "l_partkey": 118i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 34.0d, "l_extendedprice": 34615.74d, "l_discount": 0.08d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-04-14", "l_commitdate": "1996-06-03", "l_receiptdate": "1996-04-23", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "ily even patterns. bold, silent instruc" }, { "l_orderkey": 610i32, "l_partkey": 118i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 26.0d, "l_extendedprice": 26470.86d, "l_discount": 0.09d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-22", "l_commitdate": "1995-09-09", "l_receiptdate": "1995-12-04", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "cross the furiously even theodolites sl" }, { "l_orderkey": 902i32, "l_partkey": 118i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 8.0d, "l_extendedprice": 8144.88d, "l_discount": 0.06d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-10-25", "l_commitdate": "1994-09-20", "l_receiptdate": "1994-11-07", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": " orbits al" }, { "l_orderkey": 934i32, "l_partkey": 118i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 18.0d, "l_extendedprice": 18325.98d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-10", "l_commitdate": "1996-09-20", "l_receiptdate": "1996-09-25", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "y unusual requests dazzle above t" }, { "l_orderkey": 961i32, "l_partkey": 118i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 7.0d, "l_extendedprice": 7126.77d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-23", "l_commitdate": "1995-07-20", "l_receiptdate": "1995-08-11", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "usual dolphins. ironic pearls sleep blit" }, { "l_orderkey": 999i32, "l_partkey": 118i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 15.0d, "l_extendedprice": 15271.65d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-12-12", "l_commitdate": "1993-10-18", "l_receiptdate": "1994-01-08", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "y ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reguy ironic requests. carefully reg" }, { "l_orderkey": 1349i32, "l_partkey": 118i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 45.0d, "l_extendedprice": 45814.95d, "l_discount": 0.03d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-24", "l_commitdate": "1998-01-17", "l_receiptdate": "1997-12-28", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": " ironic, unusual deposits wake carefu" }, { "l_orderkey": 1379i32, "l_partkey": 118i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 50.0d, "l_extendedprice": 50905.5d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-31", "l_commitdate": "1998-07-13", "l_receiptdate": "1998-09-02", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "olphins. ca" }, { "l_orderkey": 1441i32, "l_partkey": 118i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 14.0d, "l_extendedprice": 14253.54d, "l_discount": 0.01d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-30", "l_commitdate": "1997-04-29", "l_receiptdate": "1997-07-24", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "special requests ha" }, { "l_orderkey": 1475i32, "l_partkey": 118i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 18.0d, "l_extendedprice": 18325.98d, "l_discount": 0.07d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-08", "l_commitdate": "1998-01-18", "l_receiptdate": "1998-03-10", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "al deposits use. ironic packages along the " }, { "l_orderkey": 1664i32, "l_partkey": 118i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 48.0d, "l_extendedprice": 48869.28d, "l_discount": 0.04d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-21", "l_commitdate": "1996-05-01", "l_receiptdate": "1996-07-19", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": " use. ironic deposits integrate. slyly unu" }, { "l_orderkey": 1734i32, "l_partkey": 118i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 4.0d, "l_extendedprice": 4072.44d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-08-20", "l_commitdate": "1994-07-17", "l_receiptdate": "1994-08-25", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "final warhorses." }, { "l_orderkey": 1793i32, "l_partkey": 118i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 4.0d, "l_extendedprice": 4072.44d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-09-27", "l_commitdate": "1992-09-21", "l_receiptdate": "1992-10-07", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "equests nod ac" }, { "l_orderkey": 2213i32, "l_partkey": 118i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 20.0d, "l_extendedprice": 20362.2d, "l_discount": 0.01d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-01-21", "l_commitdate": "1993-04-14", "l_receiptdate": "1993-01-29", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "iously express accounts; " }, { "l_orderkey": 2308i32, "l_partkey": 118i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 24.0d, "l_extendedprice": 24434.64d, "l_discount": 0.06d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-02-23", "l_commitdate": "1992-12-24", "l_receiptdate": "1993-03-10", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "ts sleep. busy excuses along the s" }, { "l_orderkey": 2374i32, "l_partkey": 118i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 41.0d, "l_extendedprice": 41742.51d, "l_discount": 0.07d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-01-27", "l_commitdate": "1993-12-11", "l_receiptdate": "1994-02-12", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "heodolites. requests" }, { "l_orderkey": 2629i32, "l_partkey": 118i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 6.0d, "l_extendedprice": 6108.66d, "l_discount": 0.06d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-10", "l_commitdate": "1998-05-29", "l_receiptdate": "1998-06-13", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "dolites hinder bli" }, { "l_orderkey": 2631i32, "l_partkey": 118i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 15.0d, "l_extendedprice": 15271.65d, "l_discount": 0.06d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-09-30", "l_commitdate": "1993-11-06", "l_receiptdate": "1993-10-13", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "y. furiously even pinto be" }, { "l_orderkey": 2725i32, "l_partkey": 118i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 23.0d, "l_extendedprice": 23416.53d, "l_discount": 0.1d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-08-25", "l_commitdate": "1994-06-22", "l_receiptdate": "1994-08-28", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "y regular deposits. brave foxes " }, { "l_orderkey": 2756i32, "l_partkey": 118i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 35.0d, "l_extendedprice": 35633.85d, "l_discount": 0.03d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-06-08", "l_commitdate": "1994-06-01", "l_receiptdate": "1994-06-21", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": " deposits grow bold sheaves; iro" }, { "l_orderkey": 2948i32, "l_partkey": 118i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 48.0d, "l_extendedprice": 48869.28d, "l_discount": 0.0d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-08-29", "l_commitdate": "1994-10-23", "l_receiptdate": "1994-09-23", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "unusual excuses use about the " }, { "l_orderkey": 3201i32, "l_partkey": 118i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 27.0d, "l_extendedprice": 27488.97d, "l_discount": 0.08d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-08-31", "l_commitdate": "1993-08-24", "l_receiptdate": "1993-09-08", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "deposits are slyly along" }, { "l_orderkey": 3236i32, "l_partkey": 118i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 7.0d, "l_extendedprice": 7126.77d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-27", "l_commitdate": "1996-12-18", "l_receiptdate": "1997-01-24", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "dolites. slyly unus" }, { "l_orderkey": 3428i32, "l_partkey": 118i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 35.0d, "l_extendedprice": 35633.85d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-01", "l_commitdate": "1996-06-07", "l_receiptdate": "1996-05-20", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "ly regular pinto beans sleep" }, { "l_orderkey": 3747i32, "l_partkey": 118i32, "l_suppkey": 2i32, "l_linenumber": 7i32, "l_quantity": 23.0d, "l_extendedprice": 23416.53d, "l_discount": 0.0d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-08", "l_commitdate": "1996-11-10", "l_receiptdate": "1996-12-03", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "kages are ironic" }, { "l_orderkey": 4035i32, "l_partkey": 118i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 1.0d, "l_extendedprice": 1018.11d, "l_discount": 0.03d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-06-18", "l_commitdate": "1992-05-19", "l_receiptdate": "1992-07-02", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": " requests. quickly " }, { "l_orderkey": 4386i32, "l_partkey": 118i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 28.0d, "l_extendedprice": 28507.08d, "l_discount": 0.03d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-19", "l_commitdate": "1998-05-01", "l_receiptdate": "1998-03-27", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": ". quick packages play slyly " }, { "l_orderkey": 5188i32, "l_partkey": 118i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 18.0d, "l_extendedprice": 18325.98d, "l_discount": 0.04d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-06-19", "l_commitdate": "1995-05-19", "l_receiptdate": "1995-06-25", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "p according to the sometimes regu" }, { "l_orderkey": 5282i32, "l_partkey": 118i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 36.0d, "l_extendedprice": 36651.96d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-20", "l_commitdate": "1998-04-10", "l_receiptdate": "1998-06-14", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "re slyly accor" }, { "l_orderkey": 5314i32, "l_partkey": 118i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 10.0d, "l_extendedprice": 10181.1d, "l_discount": 0.07d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-26", "l_commitdate": "1995-07-24", "l_receiptdate": "1995-10-19", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "latelets haggle final" }, { "l_orderkey": 5408i32, "l_partkey": 118i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 35.0d, "l_extendedprice": 35633.85d, "l_discount": 0.04d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-10-02", "l_commitdate": "1992-10-17", "l_receiptdate": "1992-10-13", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "thely ironic requests alongside of the sl" }, { "l_orderkey": 5766i32, "l_partkey": 118i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 4.0d, "l_extendedprice": 4072.44d, "l_discount": 0.08d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-11-10", "l_commitdate": "1993-10-30", "l_receiptdate": "1993-12-01", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "ly even requests. furiou" }, { "l_orderkey": 5857i32, "l_partkey": 118i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 12.0d, "l_extendedprice": 12217.32d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-24", "l_commitdate": "1997-12-27", "l_receiptdate": "1998-02-10", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "counts. express, final" } ] }
+{ "partkey": 119i32, "lines": [ { "l_orderkey": 101i32, "l_partkey": 119i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 49.0d, "l_extendedprice": 49936.39d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-21", "l_commitdate": "1996-05-27", "l_receiptdate": "1996-06-29", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "ts-- final packages sleep furiousl" }, { "l_orderkey": 256i32, "l_partkey": 119i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 40.0d, "l_extendedprice": 40764.4d, "l_discount": 0.1d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-11-30", "l_commitdate": "1993-12-13", "l_receiptdate": "1993-12-02", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "nal theodolites. deposits cajole s" }, { "l_orderkey": 261i32, "l_partkey": 119i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 49.0d, "l_extendedprice": 49936.39d, "l_discount": 0.04d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-09-12", "l_commitdate": "1993-08-31", "l_receiptdate": "1993-10-07", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "ions. bold accounts " }, { "l_orderkey": 356i32, "l_partkey": 119i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 35.0d, "l_extendedprice": 35668.85d, "l_discount": 0.08d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-10-14", "l_commitdate": "1994-07-31", "l_receiptdate": "1994-10-23", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "s. unusual, final" }, { "l_orderkey": 1061i32, "l_partkey": 119i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 2.0d, "l_extendedprice": 2038.22d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-15", "l_commitdate": "1998-08-05", "l_receiptdate": "1998-08-24", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": ". regular accounts impre" }, { "l_orderkey": 1444i32, "l_partkey": 119i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 6.0d, "l_extendedprice": 6114.66d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-01-07", "l_commitdate": "1995-03-05", "l_receiptdate": "1995-01-17", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "al accounts. br" }, { "l_orderkey": 1607i32, "l_partkey": 119i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 37.0d, "l_extendedprice": 37707.07d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-02-27", "l_commitdate": "1996-02-18", "l_receiptdate": "1996-03-16", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "alongside " }, { "l_orderkey": 1857i32, "l_partkey": 119i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 8.0d, "l_extendedprice": 8152.88d, "l_discount": 0.01d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-01-27", "l_commitdate": "1993-04-04", "l_receiptdate": "1993-02-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "slyly about the fluffily silent req" }, { "l_orderkey": 1957i32, "l_partkey": 119i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 31.0d, "l_extendedprice": 31592.41d, "l_discount": 0.1d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-13", "l_commitdate": "1998-08-31", "l_receiptdate": "1998-08-16", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "express packages maintain fluffi" }, { "l_orderkey": 2276i32, "l_partkey": 119i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 5.0d, "l_extendedprice": 5095.55d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-09", "l_commitdate": "1996-06-18", "l_receiptdate": "1996-05-13", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "ias instea" }, { "l_orderkey": 2279i32, "l_partkey": 119i32, "l_suppkey": 9i32, "l_linenumber": 7i32, "l_quantity": 32.0d, "l_extendedprice": 32611.52d, "l_discount": 0.05d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-04-20", "l_commitdate": "1993-05-22", "l_receiptdate": "1993-05-18", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "re quickly. furiously ironic ide" }, { "l_orderkey": 2306i32, "l_partkey": 119i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 21.0d, "l_extendedprice": 21401.31d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-07", "l_commitdate": "1995-09-18", "l_receiptdate": "1995-10-17", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": " ironic pinto " }, { "l_orderkey": 2499i32, "l_partkey": 119i32, "l_suppkey": 3i32, "l_linenumber": 6i32, "l_quantity": 12.0d, "l_extendedprice": 12229.32d, "l_discount": 0.04d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-18", "l_commitdate": "1995-12-13", "l_receiptdate": "1995-11-23", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "le furiously along the r" }, { "l_orderkey": 2563i32, "l_partkey": 119i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 39.0d, "l_extendedprice": 39745.29d, "l_discount": 0.07d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-02-10", "l_commitdate": "1993-12-31", "l_receiptdate": "1994-02-19", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "lent requests should integrate; carefully e" }, { "l_orderkey": 2659i32, "l_partkey": 119i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 2.0d, "l_extendedprice": 2038.22d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-02-19", "l_commitdate": "1994-03-12", "l_receiptdate": "1994-02-21", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "sts above the fluffily express fo" }, { "l_orderkey": 3201i32, "l_partkey": 119i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 50.0d, "l_extendedprice": 50955.5d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-10-27", "l_commitdate": "1993-09-30", "l_receiptdate": "1993-11-16", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": " deposits. express, ir" }, { "l_orderkey": 3427i32, "l_partkey": 119i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 31.0d, "l_extendedprice": 31592.41d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-12", "l_commitdate": "1997-07-26", "l_receiptdate": "1997-08-25", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "s are carefull" }, { "l_orderkey": 3590i32, "l_partkey": 119i32, "l_suppkey": 10i32, "l_linenumber": 6i32, "l_quantity": 31.0d, "l_extendedprice": 31592.41d, "l_discount": 0.03d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-06-24", "l_commitdate": "1995-07-12", "l_receiptdate": "1995-06-25", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "ve furiously final instructions. slyly regu" }, { "l_orderkey": 3687i32, "l_partkey": 119i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 31.0d, "l_extendedprice": 31592.41d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-05-28", "l_commitdate": "1993-03-20", "l_receiptdate": "1993-06-05", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "foxes cajole quickly about the furiously f" }, { "l_orderkey": 3911i32, "l_partkey": 119i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 14.0d, "l_extendedprice": 14267.54d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-04-28", "l_commitdate": "1995-05-03", "l_receiptdate": "1995-05-22", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "e blithely brave depo" }, { "l_orderkey": 4294i32, "l_partkey": 119i32, "l_suppkey": 3i32, "l_linenumber": 5i32, "l_quantity": 37.0d, "l_extendedprice": 37707.07d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-09-07", "l_commitdate": "1992-10-13", "l_receiptdate": "1992-09-08", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "cial packages nag f" }, { "l_orderkey": 4613i32, "l_partkey": 119i32, "l_suppkey": 3i32, "l_linenumber": 7i32, "l_quantity": 39.0d, "l_extendedprice": 39745.29d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-12", "l_commitdate": "1998-06-01", "l_receiptdate": "1998-07-06", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "ously express" }, { "l_orderkey": 4675i32, "l_partkey": 119i32, "l_suppkey": 10i32, "l_linenumber": 6i32, "l_quantity": 1.0d, "l_extendedprice": 1019.11d, "l_discount": 0.1d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-03-18", "l_commitdate": "1994-02-14", "l_receiptdate": "1994-04-17", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "unts. caref" }, { "l_orderkey": 4775i32, "l_partkey": 119i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 39.0d, "l_extendedprice": 39745.29d, "l_discount": 0.07d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-30", "l_commitdate": "1995-10-12", "l_receiptdate": "1995-09-20", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "eep never with the slyly regular acc" }, { "l_orderkey": 5158i32, "l_partkey": 119i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 20.0d, "l_extendedprice": 20382.2d, "l_discount": 0.01d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-03", "l_commitdate": "1997-02-20", "l_receiptdate": "1997-02-08", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "latelets use accordin" }, { "l_orderkey": 5219i32, "l_partkey": 119i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 20.0d, "l_extendedprice": 20382.2d, "l_discount": 0.05d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-20", "l_commitdate": "1997-05-26", "l_receiptdate": "1997-05-13", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "e along the ironic," }, { "l_orderkey": 5478i32, "l_partkey": 119i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 25.0d, "l_extendedprice": 25477.75d, "l_discount": 0.09d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-08", "l_commitdate": "1996-07-12", "l_receiptdate": "1996-07-07", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "unusual, pending requests haggle accoun" }, { "l_orderkey": 5574i32, "l_partkey": 119i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 27.0d, "l_extendedprice": 27515.97d, "l_discount": 0.1d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-05-08", "l_commitdate": "1992-05-19", "l_receiptdate": "1992-06-05", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "ecial realms. furiously entici" }, { "l_orderkey": 5923i32, "l_partkey": 119i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 42.0d, "l_extendedprice": 42802.62d, "l_discount": 0.01d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-16", "l_commitdate": "1997-07-23", "l_receiptdate": "1997-09-27", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "y regular theodolites w" }, { "l_orderkey": 5959i32, "l_partkey": 119i32, "l_suppkey": 3i32, "l_linenumber": 6i32, "l_quantity": 35.0d, "l_extendedprice": 35668.85d, "l_discount": 0.03d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-05-27", "l_commitdate": "1992-06-19", "l_receiptdate": "1992-06-23", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "ely silent deposits. " } ] }
+{ "partkey": 120i32, "lines": [ { "l_orderkey": 35i32, "l_partkey": 120i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 34.0d, "l_extendedprice": 34684.08d, "l_discount": 0.08d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-08", "l_commitdate": "1996-01-15", "l_receiptdate": "1995-11-26", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": ". silent, unusual deposits boost" }, { "l_orderkey": 36i32, "l_partkey": 120i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 42.0d, "l_extendedprice": 42845.04d, "l_discount": 0.09d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-02-03", "l_commitdate": "1996-01-21", "l_receiptdate": "1996-02-23", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": " careful courts. special " }, { "l_orderkey": 97i32, "l_partkey": 120i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 13.0d, "l_extendedprice": 13261.56d, "l_discount": 0.0d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-04-01", "l_commitdate": "1993-04-04", "l_receiptdate": "1993-04-08", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "ayers cajole against the furiously" }, { "l_orderkey": 132i32, "l_partkey": 120i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 43.0d, "l_extendedprice": 43865.16d, "l_discount": 0.01d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-09-01", "l_commitdate": "1993-08-16", "l_receiptdate": "1993-09-22", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "y pending theodolites" }, { "l_orderkey": 353i32, "l_partkey": 120i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 41.0d, "l_extendedprice": 41824.92d, "l_discount": 0.0d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-03-25", "l_commitdate": "1994-03-31", "l_receiptdate": "1994-03-30", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "refully final theodoli" }, { "l_orderkey": 583i32, "l_partkey": 120i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 47.0d, "l_extendedprice": 47945.64d, "l_discount": 0.1d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-14", "l_commitdate": "1997-05-12", "l_receiptdate": "1997-08-11", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "nts are fluffily. furiously even re" }, { "l_orderkey": 611i32, "l_partkey": 120i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 39.0d, "l_extendedprice": 39784.68d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-03-10", "l_commitdate": "1993-03-10", "l_receiptdate": "1993-03-17", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "the evenly bold requests. furious" }, { "l_orderkey": 774i32, "l_partkey": 120i32, "l_suppkey": 1i32, "l_linenumber": 6i32, "l_quantity": 2.0d, "l_extendedprice": 2040.24d, "l_discount": 0.07d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-11", "l_commitdate": "1996-02-10", "l_receiptdate": "1995-12-14", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "accounts; slyly regular" }, { "l_orderkey": 899i32, "l_partkey": 120i32, "l_suppkey": 4i32, "l_linenumber": 6i32, "l_quantity": 47.0d, "l_extendedprice": 47945.64d, "l_discount": 0.0d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-14", "l_commitdate": "1998-05-30", "l_receiptdate": "1998-05-13", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "furiously final foxes after the s" }, { "l_orderkey": 1221i32, "l_partkey": 120i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 41.0d, "l_extendedprice": 41824.92d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-04-28", "l_commitdate": "1992-07-02", "l_receiptdate": "1992-05-19", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "ns. bold deposit" }, { "l_orderkey": 1477i32, "l_partkey": 120i32, "l_suppkey": 4i32, "l_linenumber": 7i32, "l_quantity": 33.0d, "l_extendedprice": 33663.96d, "l_discount": 0.06d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-11-12", "l_commitdate": "1997-11-06", "l_receiptdate": "1997-11-24", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "yly regular p" }, { "l_orderkey": 1505i32, "l_partkey": 120i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 4.0d, "l_extendedprice": 4080.48d, "l_discount": 0.09d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-12-14", "l_commitdate": "1992-11-11", "l_receiptdate": "1993-01-02", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "side of the s" }, { "l_orderkey": 1733i32, "l_partkey": 120i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 29.0d, "l_extendedprice": 29583.48d, "l_discount": 0.1d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-16", "l_commitdate": "1996-08-08", "l_receiptdate": "1996-07-28", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "ns detect among the special accounts. qu" }, { "l_orderkey": 1824i32, "l_partkey": 120i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 45.0d, "l_extendedprice": 45905.4d, "l_discount": 0.03d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-08-21", "l_commitdate": "1994-06-21", "l_receiptdate": "1994-09-19", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "ent Tiresias. quickly express " }, { "l_orderkey": 1830i32, "l_partkey": 120i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 38.0d, "l_extendedprice": 38764.56d, "l_discount": 0.0d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-04-20", "l_commitdate": "1995-05-22", "l_receiptdate": "1995-04-24", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "ely even a" }, { "l_orderkey": 1959i32, "l_partkey": 120i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 15.0d, "l_extendedprice": 15301.8d, "l_discount": 0.08d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-20", "l_commitdate": "1997-02-18", "l_receiptdate": "1997-02-08", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": " quickly sp" }, { "l_orderkey": 2054i32, "l_partkey": 120i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 31.0d, "l_extendedprice": 31623.72d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-08-18", "l_commitdate": "1992-09-04", "l_receiptdate": "1992-08-24", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "se bold, regular accounts. unusual depos" }, { "l_orderkey": 2720i32, "l_partkey": 120i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 50.0d, "l_extendedprice": 51006.0d, "l_discount": 0.1d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-08-10", "l_commitdate": "1993-07-29", "l_receiptdate": "1993-09-06", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "l requests. deposits nag furiously" }, { "l_orderkey": 2944i32, "l_partkey": 120i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 44.0d, "l_extendedprice": 44885.28d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-25", "l_commitdate": "1997-10-28", "l_receiptdate": "1998-01-21", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "ickly special theodolit" }, { "l_orderkey": 3013i32, "l_partkey": 120i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 35.0d, "l_extendedprice": 35704.2d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-02", "l_commitdate": "1997-05-04", "l_receiptdate": "1997-04-16", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "ely accord" }, { "l_orderkey": 3142i32, "l_partkey": 120i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 15.0d, "l_extendedprice": 15301.8d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-08-15", "l_commitdate": "1992-08-18", "l_receiptdate": "1992-08-22", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "instructions are. ironic packages doz" }, { "l_orderkey": 3174i32, "l_partkey": 120i32, "l_suppkey": 7i32, "l_linenumber": 6i32, "l_quantity": 8.0d, "l_extendedprice": 8160.96d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-07", "l_commitdate": "1996-01-08", "l_receiptdate": "1995-12-29", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "nic deposits among t" }, { "l_orderkey": 3175i32, "l_partkey": 120i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 28.0d, "l_extendedprice": 28563.36d, "l_discount": 0.1d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-09-27", "l_commitdate": "1994-10-05", "l_receiptdate": "1994-10-04", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "ore the even, silent foxes. b" }, { "l_orderkey": 3367i32, "l_partkey": 120i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 38.0d, "l_extendedprice": 38764.56d, "l_discount": 0.03d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-03-13", "l_commitdate": "1993-02-12", "l_receiptdate": "1993-03-31", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "even packages sleep blithely slyly expr" }, { "l_orderkey": 3425i32, "l_partkey": 120i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 11.0d, "l_extendedprice": 11221.32d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-04-24", "l_commitdate": "1996-05-29", "l_receiptdate": "1996-05-23", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "ckly final deposits use quickly?" }, { "l_orderkey": 3619i32, "l_partkey": 120i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 38.0d, "l_extendedprice": 38764.56d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-08", "l_commitdate": "1997-02-03", "l_receiptdate": "1997-01-07", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "theodolites detect abo" }, { "l_orderkey": 4135i32, "l_partkey": 120i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 32.0d, "l_extendedprice": 32643.84d, "l_discount": 0.07d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-14", "l_commitdate": "1997-04-23", "l_receiptdate": "1997-04-12", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": " ideas. requests use. furiously" }, { "l_orderkey": 4164i32, "l_partkey": 120i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 9.0d, "l_extendedprice": 9181.08d, "l_discount": 0.07d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-25", "l_commitdate": "1998-08-13", "l_receiptdate": "1998-09-19", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "re fluffily slyly bold requests. " }, { "l_orderkey": 4292i32, "l_partkey": 120i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 35.0d, "l_extendedprice": 35704.2d, "l_discount": 0.03d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-03-23", "l_commitdate": "1992-04-04", "l_receiptdate": "1992-04-02", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "dugouts use. furiously bold packag" }, { "l_orderkey": 4579i32, "l_partkey": 120i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 8.0d, "l_extendedprice": 8160.96d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-16", "l_commitdate": "1996-01-15", "l_receiptdate": "1995-12-18", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "posits. carefully perman" }, { "l_orderkey": 4901i32, "l_partkey": 120i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 16.0d, "l_extendedprice": 16321.92d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-19", "l_commitdate": "1998-03-18", "l_receiptdate": "1998-04-21", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "deposits. blithely fin" }, { "l_orderkey": 4903i32, "l_partkey": 120i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 27.0d, "l_extendedprice": 27543.24d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-06-29", "l_commitdate": "1992-06-09", "l_receiptdate": "1992-07-08", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "pinto beans are; " }, { "l_orderkey": 4960i32, "l_partkey": 120i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 14.0d, "l_extendedprice": 14281.68d, "l_discount": 0.0d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-04-03", "l_commitdate": "1995-04-17", "l_receiptdate": "1995-04-07", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "accounts. warhorses are. grouches " }, { "l_orderkey": 5313i32, "l_partkey": 120i32, "l_suppkey": 7i32, "l_linenumber": 6i32, "l_quantity": 21.0d, "l_extendedprice": 21422.52d, "l_discount": 0.05d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-26", "l_commitdate": "1997-09-02", "l_receiptdate": "1997-10-18", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "he blithely regular packages. quickly" }, { "l_orderkey": 5317i32, "l_partkey": 120i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 37.0d, "l_extendedprice": 37744.44d, "l_discount": 0.09d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-09-15", "l_commitdate": "1994-10-24", "l_receiptdate": "1994-09-23", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "totes nag theodolites. pend" }, { "l_orderkey": 5671i32, "l_partkey": 120i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 25.0d, "l_extendedprice": 25503.0d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-17", "l_commitdate": "1998-03-28", "l_receiptdate": "1998-05-06", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "cording to the quickly final requests-- " } ] }
+{ "partkey": 121i32, "lines": [ { "l_orderkey": 35i32, "l_partkey": 121i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 7.0d, "l_extendedprice": 7147.84d, "l_discount": 0.06d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-19", "l_commitdate": "1995-12-22", "l_receiptdate": "1996-01-29", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": " the carefully regular " }, { "l_orderkey": 163i32, "l_partkey": 121i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 13.0d, "l_extendedprice": 13274.56d, "l_discount": 0.01d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-11-11", "l_commitdate": "1997-10-18", "l_receiptdate": "1997-12-07", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "inal requests. even pinto beans hag" }, { "l_orderkey": 1056i32, "l_partkey": 121i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 37.0d, "l_extendedprice": 37781.44d, "l_discount": 0.04d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-02-18", "l_commitdate": "1995-04-01", "l_receiptdate": "1995-03-20", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": " special packages. qui" }, { "l_orderkey": 1060i32, "l_partkey": 121i32, "l_suppkey": 10i32, "l_linenumber": 7i32, "l_quantity": 36.0d, "l_extendedprice": 36760.32d, "l_discount": 0.09d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-03-14", "l_commitdate": "1993-03-24", "l_receiptdate": "1993-04-02", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "r the quickly" }, { "l_orderkey": 1377i32, "l_partkey": 121i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 39.0d, "l_extendedprice": 39823.68d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-27", "l_commitdate": "1998-07-18", "l_receiptdate": "1998-08-13", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "e ironic, regular requests. carefully " }, { "l_orderkey": 1410i32, "l_partkey": 121i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 15.0d, "l_extendedprice": 15316.8d, "l_discount": 0.06d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-25", "l_commitdate": "1997-07-08", "l_receiptdate": "1997-06-15", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": " bold packages are fluf" }, { "l_orderkey": 1764i32, "l_partkey": 121i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 20.0d, "l_extendedprice": 20422.4d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-06-09", "l_commitdate": "1992-05-22", "l_receiptdate": "1992-07-06", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "y quickly regular packages. car" }, { "l_orderkey": 1825i32, "l_partkey": 121i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 23.0d, "l_extendedprice": 23485.76d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-01-08", "l_commitdate": "1994-02-08", "l_receiptdate": "1994-01-19", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": " wake express, even r" }, { "l_orderkey": 1890i32, "l_partkey": 121i32, "l_suppkey": 4i32, "l_linenumber": 7i32, "l_quantity": 10.0d, "l_extendedprice": 10211.2d, "l_discount": 0.01d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-24", "l_commitdate": "1997-02-19", "l_receiptdate": "1997-01-01", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": ". even, unusual inst" }, { "l_orderkey": 2053i32, "l_partkey": 121i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 31.0d, "l_extendedprice": 31654.72d, "l_discount": 0.06d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-03-23", "l_commitdate": "1995-03-13", "l_receiptdate": "1995-04-16", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "ts. fluffily final mul" }, { "l_orderkey": 2054i32, "l_partkey": 121i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 32.0d, "l_extendedprice": 32675.84d, "l_discount": 0.06d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-06-23", "l_commitdate": "1992-07-08", "l_receiptdate": "1992-07-22", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": " packages thrash. carefully final" }, { "l_orderkey": 2433i32, "l_partkey": 121i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 43.0d, "l_extendedprice": 43908.16d, "l_discount": 0.01d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-10-16", "l_commitdate": "1994-10-23", "l_receiptdate": "1994-11-08", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "ular requests. slyly even pa" }, { "l_orderkey": 2435i32, "l_partkey": 121i32, "l_suppkey": 10i32, "l_linenumber": 7i32, "l_quantity": 8.0d, "l_extendedprice": 8168.96d, "l_discount": 0.07d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-05-03", "l_commitdate": "1993-04-02", "l_receiptdate": "1993-05-17", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "ng the fluffily special foxes nag " }, { "l_orderkey": 2469i32, "l_partkey": 121i32, "l_suppkey": 4i32, "l_linenumber": 5i32, "l_quantity": 30.0d, "l_extendedprice": 30633.6d, "l_discount": 0.09d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-21", "l_commitdate": "1997-01-29", "l_receiptdate": "1997-01-02", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": " accounts. regular theodolites affix fu" }, { "l_orderkey": 2563i32, "l_partkey": 121i32, "l_suppkey": 2i32, "l_linenumber": 6i32, "l_quantity": 5.0d, "l_extendedprice": 5105.6d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-12-27", "l_commitdate": "1993-12-19", "l_receiptdate": "1994-01-02", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": " the quickly final theodolite" }, { "l_orderkey": 2720i32, "l_partkey": 121i32, "l_suppkey": 6i32, "l_linenumber": 5i32, "l_quantity": 27.0d, "l_extendedprice": 27570.24d, "l_discount": 0.04d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-06-29", "l_commitdate": "1993-08-06", "l_receiptdate": "1993-07-28", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "eas. carefully regular " }, { "l_orderkey": 2758i32, "l_partkey": 121i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 20.0d, "l_extendedprice": 20422.4d, "l_discount": 0.02d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-27", "l_commitdate": "1998-09-10", "l_receiptdate": "1998-08-21", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "ptotes sleep furiously" }, { "l_orderkey": 2816i32, "l_partkey": 121i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 4.0d, "l_extendedprice": 4084.48d, "l_discount": 0.02d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-12-12", "l_commitdate": "1994-12-05", "l_receiptdate": "1994-12-30", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": " requests print above the final deposits" }, { "l_orderkey": 2818i32, "l_partkey": 121i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 12.0d, "l_extendedprice": 12253.44d, "l_discount": 0.1d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-02-01", "l_commitdate": "1995-03-10", "l_receiptdate": "1995-02-16", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "lms. quickly bold asymp" }, { "l_orderkey": 2914i32, "l_partkey": 121i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 9.0d, "l_extendedprice": 9190.08d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-06-17", "l_commitdate": "1993-05-26", "l_receiptdate": "1993-06-19", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "s. carefully final foxes ar" }, { "l_orderkey": 2919i32, "l_partkey": 121i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 49.0d, "l_extendedprice": 50034.88d, "l_discount": 0.07d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-12-16", "l_commitdate": "1994-02-28", "l_receiptdate": "1993-12-19", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "hely final inst" }, { "l_orderkey": 4004i32, "l_partkey": 121i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 23.0d, "l_extendedprice": 23485.76d, "l_discount": 0.07d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-08-12", "l_commitdate": "1993-07-13", "l_receiptdate": "1993-08-16", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": " bold theodolites? special packages accordi" }, { "l_orderkey": 4134i32, "l_partkey": 121i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 34.0d, "l_extendedprice": 34718.08d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-04-29", "l_commitdate": "1995-03-13", "l_receiptdate": "1995-05-11", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "e furiously regular sheaves sleep" }, { "l_orderkey": 4192i32, "l_partkey": 121i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 15.0d, "l_extendedprice": 15316.8d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-26", "l_commitdate": "1998-05-26", "l_receiptdate": "1998-07-16", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "e slyly special grouches. express pinto b" }, { "l_orderkey": 4197i32, "l_partkey": 121i32, "l_suppkey": 6i32, "l_linenumber": 5i32, "l_quantity": 37.0d, "l_extendedprice": 37781.44d, "l_discount": 0.03d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-20", "l_commitdate": "1996-10-10", "l_receiptdate": "1996-11-10", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "carefully enticing decoys boo" }, { "l_orderkey": 4231i32, "l_partkey": 121i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 31.0d, "l_extendedprice": 31654.72d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-02-14", "l_commitdate": "1997-12-27", "l_receiptdate": "1998-03-01", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "ublate. theodoli" }, { "l_orderkey": 4386i32, "l_partkey": 121i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 21.0d, "l_extendedprice": 21443.52d, "l_discount": 0.09d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-05", "l_commitdate": "1998-03-19", "l_receiptdate": "1998-05-13", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "e pending, sp" }, { "l_orderkey": 4903i32, "l_partkey": 121i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 1.0d, "l_extendedprice": 1021.12d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-04-23", "l_commitdate": "1992-06-13", "l_receiptdate": "1992-05-03", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "nusual requests" }, { "l_orderkey": 5093i32, "l_partkey": 121i32, "l_suppkey": 6i32, "l_linenumber": 6i32, "l_quantity": 31.0d, "l_extendedprice": 31654.72d, "l_discount": 0.01d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-12-17", "l_commitdate": "1993-11-14", "l_receiptdate": "1994-01-02", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "he final foxes. fluffily ironic " }, { "l_orderkey": 5346i32, "l_partkey": 121i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 25.0d, "l_extendedprice": 25528.0d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-12-28", "l_commitdate": "1994-03-19", "l_receiptdate": "1994-01-09", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "he ironic ideas are boldly slyly ironi" }, { "l_orderkey": 5477i32, "l_partkey": 121i32, "l_suppkey": 6i32, "l_linenumber": 6i32, "l_quantity": 19.0d, "l_extendedprice": 19401.28d, "l_discount": 0.1d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-02-03", "l_commitdate": "1998-01-30", "l_receiptdate": "1998-03-04", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "ost carefully packages." }, { "l_orderkey": 5538i32, "l_partkey": 121i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 4.0d, "l_extendedprice": 4084.48d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-03-21", "l_commitdate": "1994-02-17", "l_receiptdate": "1994-04-11", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "ithely along the c" }, { "l_orderkey": 5763i32, "l_partkey": 121i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 47.0d, "l_extendedprice": 47992.64d, "l_discount": 0.09d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-22", "l_commitdate": "1998-09-22", "l_receiptdate": "1998-09-04", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "gle slyly. slyly final re" }, { "l_orderkey": 5858i32, "l_partkey": 121i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 20.0d, "l_extendedprice": 20422.4d, "l_discount": 0.02d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-07-23", "l_commitdate": "1992-08-26", "l_receiptdate": "1992-07-24", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "uffily unusual pinto beans sleep" } ] }
+{ "partkey": 122i32, "lines": [ { "l_orderkey": 391i32, "l_partkey": 122i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 14.0d, "l_extendedprice": 14309.68d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-02-11", "l_commitdate": "1995-02-03", "l_receiptdate": "1995-02-13", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": " escapades sleep furiously about " }, { "l_orderkey": 482i32, "l_partkey": 122i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 1.0d, "l_extendedprice": 1022.12d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-29", "l_commitdate": "1996-05-20", "l_receiptdate": "1996-05-31", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "es. quickly ironic escapades sleep furious" }, { "l_orderkey": 513i32, "l_partkey": 122i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 44.0d, "l_extendedprice": 44973.28d, "l_discount": 0.01d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-14", "l_commitdate": "1995-07-14", "l_receiptdate": "1995-08-12", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "kages sleep boldly ironic theodolites. acco" }, { "l_orderkey": 518i32, "l_partkey": 122i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 46.0d, "l_extendedprice": 47017.52d, "l_discount": 0.07d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-07", "l_commitdate": "1998-04-17", "l_receiptdate": "1998-04-29", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": ". blithely even ideas cajole furiously. b" }, { "l_orderkey": 708i32, "l_partkey": 122i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 33.0d, "l_extendedprice": 33729.96d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-09-10", "l_commitdate": "1998-09-20", "l_receiptdate": "1998-09-22", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "s boost carefully ruthless theodolites. f" }, { "l_orderkey": 801i32, "l_partkey": 122i32, "l_suppkey": 7i32, "l_linenumber": 6i32, "l_quantity": 10.0d, "l_extendedprice": 10221.2d, "l_discount": 0.08d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-06-05", "l_commitdate": "1992-05-15", "l_receiptdate": "1992-06-21", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "al accounts. carefully regular foxes wake" }, { "l_orderkey": 868i32, "l_partkey": 122i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 43.0d, "l_extendedprice": 43951.16d, "l_discount": 0.02d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-07-02", "l_commitdate": "1992-07-22", "l_receiptdate": "1992-07-21", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "kly silent deposits wake dar" }, { "l_orderkey": 1125i32, "l_partkey": 122i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 26.0d, "l_extendedprice": 26575.12d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-02-24", "l_commitdate": "1995-01-18", "l_receiptdate": "1995-03-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "l instruction" }, { "l_orderkey": 1248i32, "l_partkey": 122i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 20.0d, "l_extendedprice": 20442.4d, "l_discount": 0.08d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-03-12", "l_commitdate": "1992-03-23", "l_receiptdate": "1992-04-07", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "nal foxes cajole carefully slyl" }, { "l_orderkey": 1670i32, "l_partkey": 122i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 10.0d, "l_extendedprice": 10221.2d, "l_discount": 0.07d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-14", "l_commitdate": "1997-08-16", "l_receiptdate": "1997-09-23", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "fily special ideas " }, { "l_orderkey": 1890i32, "l_partkey": 122i32, "l_suppkey": 3i32, "l_linenumber": 5i32, "l_quantity": 45.0d, "l_extendedprice": 45995.4d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-15", "l_commitdate": "1997-03-16", "l_receiptdate": "1997-04-19", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "he carefully regular sauternes. ironic fret" }, { "l_orderkey": 2016i32, "l_partkey": 122i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 8.0d, "l_extendedprice": 8176.96d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-19", "l_commitdate": "1996-10-21", "l_receiptdate": "1996-10-13", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "mptotes haggle ideas. packages wake flu" }, { "l_orderkey": 2177i32, "l_partkey": 122i32, "l_suppkey": 7i32, "l_linenumber": 6i32, "l_quantity": 11.0d, "l_extendedprice": 11243.32d, "l_discount": 0.02d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-20", "l_commitdate": "1997-03-07", "l_receiptdate": "1997-04-09", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "gainst the ca" }, { "l_orderkey": 2311i32, "l_partkey": 122i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 49.0d, "l_extendedprice": 50083.88d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-05-14", "l_commitdate": "1995-07-11", "l_receiptdate": "1995-05-20", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "ideas sleep" }, { "l_orderkey": 2372i32, "l_partkey": 122i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 4.0d, "l_extendedprice": 4088.48d, "l_discount": 0.0d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-14", "l_commitdate": "1997-12-28", "l_receiptdate": "1997-12-16", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "e carefully blithely even epitaphs. r" }, { "l_orderkey": 2631i32, "l_partkey": 122i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 42.0d, "l_extendedprice": 42929.04d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-01-04", "l_commitdate": "1993-12-01", "l_receiptdate": "1994-01-16", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "ect carefully at the furiously final the" }, { "l_orderkey": 2912i32, "l_partkey": 122i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 8.0d, "l_extendedprice": 8176.96d, "l_discount": 0.06d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-04-09", "l_commitdate": "1992-04-19", "l_receiptdate": "1992-04-26", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "hs cajole over the slyl" }, { "l_orderkey": 3234i32, "l_partkey": 122i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 50.0d, "l_extendedprice": 51106.0d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-11", "l_commitdate": "1996-05-19", "l_receiptdate": "1996-06-18", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "ly regular ideas according to the regula" }, { "l_orderkey": 3236i32, "l_partkey": 122i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 21.0d, "l_extendedprice": 21464.52d, "l_discount": 0.01d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-23", "l_commitdate": "1996-12-12", "l_receiptdate": "1997-01-21", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": " final pinto " }, { "l_orderkey": 3395i32, "l_partkey": 122i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 39.0d, "l_extendedprice": 39862.68d, "l_discount": 0.05d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-12-03", "l_commitdate": "1995-01-17", "l_receiptdate": "1994-12-10", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "riously unusual theodolites. fur" }, { "l_orderkey": 3491i32, "l_partkey": 122i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 22.0d, "l_extendedprice": 22486.64d, "l_discount": 0.08d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-19", "l_commitdate": "1998-08-22", "l_receiptdate": "1998-09-03", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": " grow against the boldly pending pinto bea" }, { "l_orderkey": 3492i32, "l_partkey": 122i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 47.0d, "l_extendedprice": 48039.64d, "l_discount": 0.09d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-03-24", "l_commitdate": "1994-12-28", "l_receiptdate": "1995-03-29", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "deposits. quickly express " }, { "l_orderkey": 3585i32, "l_partkey": 122i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 21.0d, "l_extendedprice": 21464.52d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-12-04", "l_commitdate": "1994-12-25", "l_receiptdate": "1995-01-01", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "ounts use. express, final platelets us" }, { "l_orderkey": 3649i32, "l_partkey": 122i32, "l_suppkey": 3i32, "l_linenumber": 6i32, "l_quantity": 3.0d, "l_extendedprice": 3066.36d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-07-17", "l_commitdate": "1994-08-10", "l_receiptdate": "1994-08-03", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "lly bold requests nag; " }, { "l_orderkey": 3686i32, "l_partkey": 122i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 7.0d, "l_extendedprice": 7154.84d, "l_discount": 0.02d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-15", "l_commitdate": "1998-08-22", "l_receiptdate": "1998-07-30", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": " furiously unusual accou" }, { "l_orderkey": 3842i32, "l_partkey": 122i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 21.0d, "l_extendedprice": 21464.52d, "l_discount": 0.07d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-07-15", "l_commitdate": "1992-06-02", "l_receiptdate": "1992-07-21", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "r pinto be" }, { "l_orderkey": 4039i32, "l_partkey": 122i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 17.0d, "l_extendedprice": 17376.04d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-15", "l_commitdate": "1998-01-20", "l_receiptdate": "1998-01-28", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": " regular foxes haggle carefully bo" }, { "l_orderkey": 4160i32, "l_partkey": 122i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 12.0d, "l_extendedprice": 12265.44d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-22", "l_commitdate": "1996-09-25", "l_receiptdate": "1996-12-10", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "y bold package" }, { "l_orderkey": 4161i32, "l_partkey": 122i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 12.0d, "l_extendedprice": 12265.44d, "l_discount": 0.08d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-08-25", "l_commitdate": "1993-10-04", "l_receiptdate": "1993-09-22", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "onic dolphins. in" }, { "l_orderkey": 4355i32, "l_partkey": 122i32, "l_suppkey": 7i32, "l_linenumber": 6i32, "l_quantity": 35.0d, "l_extendedprice": 35774.2d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-28", "l_commitdate": "1997-01-28", "l_receiptdate": "1997-02-20", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "ess accounts affix ironic" }, { "l_orderkey": 4387i32, "l_partkey": 122i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 3.0d, "l_extendedprice": 3066.36d, "l_discount": 0.02d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-17", "l_commitdate": "1996-01-14", "l_receiptdate": "1996-01-28", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": " boost slyly ironic instructions. furiou" }, { "l_orderkey": 4484i32, "l_partkey": 122i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 41.0d, "l_extendedprice": 41906.92d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-25", "l_commitdate": "1997-02-15", "l_receiptdate": "1997-01-29", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "ress accounts. ironic deposits unwind fur" }, { "l_orderkey": 4583i32, "l_partkey": 122i32, "l_suppkey": 7i32, "l_linenumber": 6i32, "l_quantity": 14.0d, "l_extendedprice": 14309.68d, "l_discount": 0.09d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-11-17", "l_commitdate": "1994-11-08", "l_receiptdate": "1994-11-21", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "detect. doggedly regular pi" }, { "l_orderkey": 4676i32, "l_partkey": 122i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 29.0d, "l_extendedprice": 29641.48d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-29", "l_commitdate": "1995-11-12", "l_receiptdate": "1996-01-06", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "ly regular theodolites sleep." }, { "l_orderkey": 4706i32, "l_partkey": 122i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 23.0d, "l_extendedprice": 23508.76d, "l_discount": 0.03d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-04-01", "l_commitdate": "1993-03-13", "l_receiptdate": "1993-05-01", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "deas across t" }, { "l_orderkey": 4807i32, "l_partkey": 122i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 9.0d, "l_extendedprice": 9199.08d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-23", "l_commitdate": "1997-03-01", "l_receiptdate": "1997-05-15", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "may are blithely. carefully even pinto b" }, { "l_orderkey": 4838i32, "l_partkey": 122i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 35.0d, "l_extendedprice": 35774.2d, "l_discount": 0.01d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-10-30", "l_commitdate": "1992-10-23", "l_receiptdate": "1992-11-21", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "ly blithely unusual foxes. even package" }, { "l_orderkey": 4868i32, "l_partkey": 122i32, "l_suppkey": 3i32, "l_linenumber": 5i32, "l_quantity": 22.0d, "l_extendedprice": 22486.64d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-26", "l_commitdate": "1997-05-16", "l_receiptdate": "1997-05-01", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "osits. final foxes boost regular," }, { "l_orderkey": 4869i32, "l_partkey": 122i32, "l_suppkey": 5i32, "l_linenumber": 6i32, "l_quantity": 30.0d, "l_extendedprice": 30663.6d, "l_discount": 0.0d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-01-09", "l_commitdate": "1994-11-20", "l_receiptdate": "1995-02-02", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "gedly even requests. s" }, { "l_orderkey": 5350i32, "l_partkey": 122i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 19.0d, "l_extendedprice": 19420.28d, "l_discount": 0.02d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-10-20", "l_commitdate": "1993-11-15", "l_receiptdate": "1993-11-17", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "romise slyly alongsi" }, { "l_orderkey": 5511i32, "l_partkey": 122i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 4.0d, "l_extendedprice": 4088.48d, "l_discount": 0.08d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-12-28", "l_commitdate": "1995-01-16", "l_receiptdate": "1995-01-24", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "lphins. carefully blithe de" }, { "l_orderkey": 5664i32, "l_partkey": 122i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 25.0d, "l_extendedprice": 25553.0d, "l_discount": 0.0d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-10-29", "l_commitdate": "1998-09-23", "l_receiptdate": "1998-11-25", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "eposits: furiously ironic grouch" }, { "l_orderkey": 5666i32, "l_partkey": 122i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 7.0d, "l_extendedprice": 7154.84d, "l_discount": 0.09d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-05-10", "l_commitdate": "1994-04-06", "l_receiptdate": "1994-05-21", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": " ideas. regular packag" }, { "l_orderkey": 5895i32, "l_partkey": 122i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 47.0d, "l_extendedprice": 48039.64d, "l_discount": 0.04d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-27", "l_commitdate": "1997-03-17", "l_receiptdate": "1997-05-07", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "r packages wake carefull" } ] }
+{ "partkey": 123i32, "lines": [ { "l_orderkey": 291i32, "l_partkey": 123i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 21.0d, "l_extendedprice": 21485.52d, "l_discount": 0.05d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-05-26", "l_commitdate": "1994-05-10", "l_receiptdate": "1994-06-23", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "y quickly regular theodolites. final t" }, { "l_orderkey": 1059i32, "l_partkey": 123i32, "l_suppkey": 4i32, "l_linenumber": 7i32, "l_quantity": 13.0d, "l_extendedprice": 13300.56d, "l_discount": 0.01d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-06-12", "l_commitdate": "1994-05-11", "l_receiptdate": "1994-07-02", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "usly regular theodo" }, { "l_orderkey": 1474i32, "l_partkey": 123i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 30.0d, "l_extendedprice": 30693.6d, "l_discount": 0.04d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-03-23", "l_commitdate": "1995-02-11", "l_receiptdate": "1995-04-17", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "usly. evenly express " }, { "l_orderkey": 1505i32, "l_partkey": 123i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 50.0d, "l_extendedprice": 51156.0d, "l_discount": 0.0d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-11-22", "l_commitdate": "1992-09-24", "l_receiptdate": "1992-11-26", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "lyly special platelets. requests ar" }, { "l_orderkey": 1607i32, "l_partkey": 123i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 39.0d, "l_extendedprice": 39901.68d, "l_discount": 0.0d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-02-01", "l_commitdate": "1996-02-12", "l_receiptdate": "1996-02-16", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "uches cajole. accounts ar" }, { "l_orderkey": 2113i32, "l_partkey": 123i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 40.0d, "l_extendedprice": 40924.8d, "l_discount": 0.04d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-16", "l_commitdate": "1997-12-11", "l_receiptdate": "1998-02-06", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "bout the quickly ironic t" }, { "l_orderkey": 2242i32, "l_partkey": 123i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 15.0d, "l_extendedprice": 15346.8d, "l_discount": 0.09d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-04", "l_commitdate": "1997-09-21", "l_receiptdate": "1997-08-11", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "its. carefully express packages cajole. bli" }, { "l_orderkey": 2503i32, "l_partkey": 123i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 33.0d, "l_extendedprice": 33762.96d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-07-06", "l_commitdate": "1993-08-14", "l_receiptdate": "1993-08-02", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "nal courts integrate according to the" }, { "l_orderkey": 2823i32, "l_partkey": 123i32, "l_suppkey": 2i32, "l_linenumber": 6i32, "l_quantity": 20.0d, "l_extendedprice": 20462.4d, "l_discount": 0.07d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-13", "l_commitdate": "1995-12-06", "l_receiptdate": "1995-12-07", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "its sleep between the unusual, ironic pac" }, { "l_orderkey": 2913i32, "l_partkey": 123i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 39.0d, "l_extendedprice": 39901.68d, "l_discount": 0.06d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-28", "l_commitdate": "1997-09-27", "l_receiptdate": "1997-09-02", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": ". final packages a" }, { "l_orderkey": 3011i32, "l_partkey": 123i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 42.0d, "l_extendedprice": 42971.04d, "l_discount": 0.05d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-02-01", "l_commitdate": "1992-03-18", "l_receiptdate": "1992-02-29", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "osits haggle quickly pending, " }, { "l_orderkey": 3329i32, "l_partkey": 123i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 1.0d, "l_extendedprice": 1023.12d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-22", "l_commitdate": "1995-09-28", "l_receiptdate": "1995-09-09", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "regular packages are carefull" }, { "l_orderkey": 3392i32, "l_partkey": 123i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 13.0d, "l_extendedprice": 13300.56d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-26", "l_commitdate": "1996-01-17", "l_receiptdate": "1995-12-01", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "across the fluffily bold deposits." }, { "l_orderkey": 3586i32, "l_partkey": 123i32, "l_suppkey": 4i32, "l_linenumber": 7i32, "l_quantity": 33.0d, "l_extendedprice": 33762.96d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-02-11", "l_commitdate": "1994-01-15", "l_receiptdate": "1994-03-03", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "iously regular pinto beans integrate" }, { "l_orderkey": 3813i32, "l_partkey": 123i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 39.0d, "l_extendedprice": 39901.68d, "l_discount": 0.05d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-30", "l_commitdate": "1998-08-12", "l_receiptdate": "1998-09-29", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "y ideas. final ideas about the sp" }, { "l_orderkey": 3877i32, "l_partkey": 123i32, "l_suppkey": 4i32, "l_linenumber": 6i32, "l_quantity": 7.0d, "l_extendedprice": 7161.84d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-06-14", "l_commitdate": "1993-07-09", "l_receiptdate": "1993-06-28", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "lar dolphins cajole silently " }, { "l_orderkey": 3941i32, "l_partkey": 123i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 19.0d, "l_extendedprice": 19439.28d, "l_discount": 0.05d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-10", "l_commitdate": "1996-10-26", "l_receiptdate": "1996-12-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "eposits haggle furiously even" }, { "l_orderkey": 4065i32, "l_partkey": 123i32, "l_suppkey": 4i32, "l_linenumber": 5i32, "l_quantity": 29.0d, "l_extendedprice": 29670.48d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-06-29", "l_commitdate": "1994-08-19", "l_receiptdate": "1994-07-17", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "equests. packages sleep slyl" }, { "l_orderkey": 4455i32, "l_partkey": 123i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 34.0d, "l_extendedprice": 34786.08d, "l_discount": 0.0d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-10-24", "l_commitdate": "1993-11-27", "l_receiptdate": "1993-11-04", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": " slyly ironic requests. quickly even d" }, { "l_orderkey": 4548i32, "l_partkey": 123i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 47.0d, "l_extendedprice": 48086.64d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-24", "l_commitdate": "1996-09-12", "l_receiptdate": "1996-08-08", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "ts. excuses use slyly spec" }, { "l_orderkey": 4673i32, "l_partkey": 123i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 9.0d, "l_extendedprice": 9208.08d, "l_discount": 0.04d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-15", "l_commitdate": "1996-09-30", "l_receiptdate": "1996-10-30", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "ages nag across " }, { "l_orderkey": 4967i32, "l_partkey": 123i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 1.0d, "l_extendedprice": 1023.12d, "l_discount": 0.1d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-04", "l_commitdate": "1997-03-29", "l_receiptdate": "1997-06-23", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "osits. unusual frets thrash furiously" }, { "l_orderkey": 5024i32, "l_partkey": 123i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 42.0d, "l_extendedprice": 42971.04d, "l_discount": 0.03d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-02", "l_commitdate": "1996-12-08", "l_receiptdate": "1996-12-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "tegrate. busily spec" }, { "l_orderkey": 5059i32, "l_partkey": 123i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 19.0d, "l_extendedprice": 19439.28d, "l_discount": 0.06d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-03-02", "l_commitdate": "1993-12-26", "l_receiptdate": "1994-03-14", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": " special ideas poach blithely qu" }, { "l_orderkey": 5095i32, "l_partkey": 123i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 28.0d, "l_extendedprice": 28647.36d, "l_discount": 0.01d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-06-20", "l_commitdate": "1992-06-27", "l_receiptdate": "1992-06-22", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": " into the final courts. ca" }, { "l_orderkey": 5189i32, "l_partkey": 123i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 14.0d, "l_extendedprice": 14323.68d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-01-23", "l_commitdate": "1994-01-05", "l_receiptdate": "1994-02-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "unusual packag" }, { "l_orderkey": 5414i32, "l_partkey": 123i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 48.0d, "l_extendedprice": 49109.76d, "l_discount": 0.06d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-06-08", "l_commitdate": "1993-05-14", "l_receiptdate": "1993-07-06", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": " silent dolphins; fluffily regular tithe" }, { "l_orderkey": 5700i32, "l_partkey": 123i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 30.0d, "l_extendedprice": 30693.6d, "l_discount": 0.0d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-19", "l_commitdate": "1998-03-13", "l_receiptdate": "1998-04-27", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "ly blithely final instructions. fl" }, { "l_orderkey": 5760i32, "l_partkey": 123i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 19.0d, "l_extendedprice": 19439.28d, "l_discount": 0.1d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-08-02", "l_commitdate": "1994-08-02", "l_receiptdate": "1994-08-15", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "sits nag. even, regular ideas cajole b" }, { "l_orderkey": 5763i32, "l_partkey": 123i32, "l_suppkey": 4i32, "l_linenumber": 5i32, "l_quantity": 8.0d, "l_extendedprice": 8184.96d, "l_discount": 0.06d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-09-23", "l_commitdate": "1998-09-15", "l_receiptdate": "1998-09-27", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "foxes wake slyly. car" } ] }
+{ "partkey": 124i32, "lines": [ { "l_orderkey": 5i32, "l_partkey": 124i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 26.0d, "l_extendedprice": 26627.12d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-10-16", "l_commitdate": "1994-09-25", "l_receiptdate": "1994-10-19", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "sts use slyly quickly special instruc" }, { "l_orderkey": 96i32, "l_partkey": 124i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 23.0d, "l_extendedprice": 23554.76d, "l_discount": 0.1d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-07-19", "l_commitdate": "1994-06-29", "l_receiptdate": "1994-07-25", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "ep-- carefully reg" }, { "l_orderkey": 99i32, "l_partkey": 124i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 5.0d, "l_extendedprice": 5120.6d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-05-06", "l_commitdate": "1994-05-28", "l_receiptdate": "1994-05-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "ests cajole fluffily waters. blithe" }, { "l_orderkey": 290i32, "l_partkey": 124i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 23.0d, "l_extendedprice": 23554.76d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-03-14", "l_commitdate": "1994-02-21", "l_receiptdate": "1994-04-09", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "refully unusual packages. " }, { "l_orderkey": 390i32, "l_partkey": 124i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 17.0d, "l_extendedprice": 17410.04d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-07", "l_commitdate": "1998-06-14", "l_receiptdate": "1998-07-07", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "ending, pending pinto beans wake slyl" }, { "l_orderkey": 420i32, "l_partkey": 124i32, "l_suppkey": 7i32, "l_linenumber": 6i32, "l_quantity": 40.0d, "l_extendedprice": 40964.8d, "l_discount": 0.01d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-26", "l_commitdate": "1995-12-26", "l_receiptdate": "1995-12-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": " after the special" }, { "l_orderkey": 708i32, "l_partkey": 124i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 3.0d, "l_extendedprice": 3072.36d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-10-09", "l_commitdate": "1998-09-22", "l_receiptdate": "1998-11-07", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "e slyly pending foxes. " }, { "l_orderkey": 1088i32, "l_partkey": 124i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 3.0d, "l_extendedprice": 3072.36d, "l_discount": 0.09d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-06-15", "l_commitdate": "1992-08-02", "l_receiptdate": "1992-06-18", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "pecial theodolites " }, { "l_orderkey": 1283i32, "l_partkey": 124i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 43.0d, "l_extendedprice": 44037.16d, "l_discount": 0.01d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-29", "l_commitdate": "1996-11-19", "l_receiptdate": "1996-10-26", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "requests sleep slyly about the " }, { "l_orderkey": 1346i32, "l_partkey": 124i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 6.0d, "l_extendedprice": 6144.72d, "l_discount": 0.02d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-09-13", "l_commitdate": "1992-07-21", "l_receiptdate": "1992-09-27", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "inst the furiously final theodolites. caref" }, { "l_orderkey": 1378i32, "l_partkey": 124i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 18.0d, "l_extendedprice": 18434.16d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-19", "l_commitdate": "1996-05-16", "l_receiptdate": "1996-06-21", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": " theodolites. i" }, { "l_orderkey": 1671i32, "l_partkey": 124i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 11.0d, "l_extendedprice": 11265.32d, "l_discount": 0.06d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-16", "l_commitdate": "1996-10-21", "l_receiptdate": "1996-09-18", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "tes sleep blithely" }, { "l_orderkey": 1697i32, "l_partkey": 124i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 27.0d, "l_extendedprice": 27651.24d, "l_discount": 0.06d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-20", "l_commitdate": "1996-12-02", "l_receiptdate": "1997-02-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "ly regular packages across the silent, b" }, { "l_orderkey": 1703i32, "l_partkey": 124i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 48.0d, "l_extendedprice": 49157.76d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-02-07", "l_commitdate": "1993-04-20", "l_receiptdate": "1993-02-24", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "ggle slyly furiously regular theodol" }, { "l_orderkey": 1731i32, "l_partkey": 124i32, "l_suppkey": 7i32, "l_linenumber": 6i32, "l_quantity": 41.0d, "l_extendedprice": 41988.92d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-04-05", "l_commitdate": "1996-02-28", "l_receiptdate": "1996-05-01", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "haggle across the blithely ironi" }, { "l_orderkey": 1985i32, "l_partkey": 124i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 42.0d, "l_extendedprice": 43013.04d, "l_discount": 0.05d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-10-25", "l_commitdate": "1994-11-03", "l_receiptdate": "1994-11-19", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": " patterns? final requests after the sp" }, { "l_orderkey": 2209i32, "l_partkey": 124i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 24.0d, "l_extendedprice": 24578.88d, "l_discount": 0.08d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-08-09", "l_commitdate": "1992-08-18", "l_receiptdate": "1992-08-25", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": " along the bol" }, { "l_orderkey": 2306i32, "l_partkey": 124i32, "l_suppkey": 5i32, "l_linenumber": 6i32, "l_quantity": 29.0d, "l_extendedprice": 29699.48d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-01", "l_commitdate": "1995-09-01", "l_receiptdate": "1995-11-22", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "uld have to mold. s" }, { "l_orderkey": 2465i32, "l_partkey": 124i32, "l_suppkey": 5i32, "l_linenumber": 6i32, "l_quantity": 20.0d, "l_extendedprice": 20482.4d, "l_discount": 0.03d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-16", "l_commitdate": "1995-08-13", "l_receiptdate": "1995-09-02", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "uriously? furiously ironic excu" }, { "l_orderkey": 2594i32, "l_partkey": 124i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 13.0d, "l_extendedprice": 13313.56d, "l_discount": 0.1d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-02-06", "l_commitdate": "1993-03-01", "l_receiptdate": "1993-02-23", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "fully special accounts use courts" }, { "l_orderkey": 2629i32, "l_partkey": 124i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 31.0d, "l_extendedprice": 31747.72d, "l_discount": 0.08d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-24", "l_commitdate": "1998-05-26", "l_receiptdate": "1998-06-10", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "ate blithely bold, regular deposits. bold" }, { "l_orderkey": 2722i32, "l_partkey": 124i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 21.0d, "l_extendedprice": 21506.52d, "l_discount": 0.09d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-07-29", "l_commitdate": "1994-06-26", "l_receiptdate": "1994-08-09", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "e carefully around the furiously ironic pac" }, { "l_orderkey": 3392i32, "l_partkey": 124i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 7.0d, "l_extendedprice": 7168.84d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-07", "l_commitdate": "1996-01-09", "l_receiptdate": "1995-12-29", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "as. express, final accounts dou" }, { "l_orderkey": 3587i32, "l_partkey": 124i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 31.0d, "l_extendedprice": 31747.72d, "l_discount": 0.03d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-21", "l_commitdate": "1996-07-01", "l_receiptdate": "1996-07-23", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "press fluffily regul" }, { "l_orderkey": 5089i32, "l_partkey": 124i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 46.0d, "l_extendedprice": 47109.52d, "l_discount": 0.03d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-11-09", "l_commitdate": "1992-10-13", "l_receiptdate": "1992-11-10", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "above the express accounts. exc" }, { "l_orderkey": 5159i32, "l_partkey": 124i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 39.0d, "l_extendedprice": 39940.68d, "l_discount": 0.06d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-17", "l_commitdate": "1996-12-08", "l_receiptdate": "1997-01-10", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "re furiously after the pending dolphin" }, { "l_orderkey": 5184i32, "l_partkey": 124i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 19.0d, "l_extendedprice": 19458.28d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-11-15", "l_commitdate": "1998-10-12", "l_receiptdate": "1998-11-21", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "refully express platelets sleep carefull" }, { "l_orderkey": 5223i32, "l_partkey": 124i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 25.0d, "l_extendedprice": 25603.0d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-07-12", "l_commitdate": "1994-08-13", "l_receiptdate": "1994-08-01", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "y express ideas impress" }, { "l_orderkey": 5347i32, "l_partkey": 124i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 47.0d, "l_extendedprice": 48133.64d, "l_discount": 0.02d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "F", "l_shipdate": "1995-06-05", "l_commitdate": "1995-03-29", "l_receiptdate": "1995-06-28", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "across the slyly bol" }, { "l_orderkey": 5696i32, "l_partkey": 124i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 19.0d, "l_extendedprice": 19458.28d, "l_discount": 0.07d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-31", "l_commitdate": "1995-06-13", "l_receiptdate": "1995-09-10", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "unusual requests sleep furiously ru" }, { "l_orderkey": 5765i32, "l_partkey": 124i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 29.0d, "l_extendedprice": 29699.48d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-12-29", "l_commitdate": "1995-02-01", "l_receiptdate": "1995-01-26", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "nic requests. deposits wake quickly among " }, { "l_orderkey": 5798i32, "l_partkey": 124i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 14.0d, "l_extendedprice": 14337.68d, "l_discount": 0.06d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-01", "l_commitdate": "1998-06-14", "l_receiptdate": "1998-04-27", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "he special, bold packages. carefully iron" } ] }
+{ "partkey": 125i32, "lines": [ { "l_orderkey": 356i32, "l_partkey": 125i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 37.0d, "l_extendedprice": 37929.44d, "l_discount": 0.05d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-07-15", "l_commitdate": "1994-08-24", "l_receiptdate": "1994-08-09", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "ndencies are since the packag" }, { "l_orderkey": 390i32, "l_partkey": 125i32, "l_suppkey": 4i32, "l_linenumber": 6i32, "l_quantity": 11.0d, "l_extendedprice": 11276.32d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-05", "l_commitdate": "1998-05-15", "l_receiptdate": "1998-06-01", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "according to the foxes are furiously " }, { "l_orderkey": 868i32, "l_partkey": 125i32, "l_suppkey": 6i32, "l_linenumber": 6i32, "l_quantity": 19.0d, "l_extendedprice": 19477.28d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-09-20", "l_commitdate": "1992-07-18", "l_receiptdate": "1992-10-04", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "ely even deposits lose blithe" }, { "l_orderkey": 1346i32, "l_partkey": 125i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 48.0d, "l_extendedprice": 49205.76d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-09-28", "l_commitdate": "1992-07-22", "l_receiptdate": "1992-10-13", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": " along the carefully spec" }, { "l_orderkey": 1477i32, "l_partkey": 125i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 42.0d, "l_extendedprice": 43055.04d, "l_discount": 0.06d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-11-02", "l_commitdate": "1997-11-02", "l_receiptdate": "1997-11-20", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "lithely after the ir" }, { "l_orderkey": 1795i32, "l_partkey": 125i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 32.0d, "l_extendedprice": 32803.84d, "l_discount": 0.03d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-05-10", "l_commitdate": "1994-04-21", "l_receiptdate": "1994-05-17", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": " asymptotes across the bold," }, { "l_orderkey": 2690i32, "l_partkey": 125i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 45.0d, "l_extendedprice": 46130.4d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-23", "l_commitdate": "1996-06-02", "l_receiptdate": "1996-05-29", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "ounts. slyly regular dependencies wa" }, { "l_orderkey": 2848i32, "l_partkey": 125i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 34.0d, "l_extendedprice": 34854.08d, "l_discount": 0.02d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-03-15", "l_commitdate": "1992-04-24", "l_receiptdate": "1992-04-12", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "ts along the blithely regu" }, { "l_orderkey": 2883i32, "l_partkey": 125i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 27.0d, "l_extendedprice": 27678.24d, "l_discount": 0.0d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-03-12", "l_commitdate": "1995-03-10", "l_receiptdate": "1995-04-04", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "s. brave pinto beans nag furiously" }, { "l_orderkey": 3264i32, "l_partkey": 125i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 11.0d, "l_extendedprice": 11276.32d, "l_discount": 0.09d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-11", "l_commitdate": "1996-12-19", "l_receiptdate": "1996-12-15", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "regular packages" }, { "l_orderkey": 3393i32, "l_partkey": 125i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 44.0d, "l_extendedprice": 45105.28d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-16", "l_commitdate": "1995-08-05", "l_receiptdate": "1995-11-01", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "ld requests hag" }, { "l_orderkey": 4069i32, "l_partkey": 125i32, "l_suppkey": 8i32, "l_linenumber": 6i32, "l_quantity": 3.0d, "l_extendedprice": 3075.36d, "l_discount": 0.02d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-05-24", "l_commitdate": "1992-06-18", "l_receiptdate": "1992-06-12", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "y final deposits wake furiously! slyl" }, { "l_orderkey": 4131i32, "l_partkey": 125i32, "l_suppkey": 6i32, "l_linenumber": 5i32, "l_quantity": 30.0d, "l_extendedprice": 30753.6d, "l_discount": 0.01d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-01", "l_commitdate": "1998-04-13", "l_receiptdate": "1998-04-08", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "he fluffily express depen" }, { "l_orderkey": 4230i32, "l_partkey": 125i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 50.0d, "l_extendedprice": 51256.0d, "l_discount": 0.0d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-03-29", "l_commitdate": "1992-05-19", "l_receiptdate": "1992-04-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "ts. final instructions in" }, { "l_orderkey": 4288i32, "l_partkey": 125i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 7.0d, "l_extendedprice": 7175.84d, "l_discount": 0.03d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-01-15", "l_commitdate": "1993-02-05", "l_receiptdate": "1993-01-26", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "ngside of the special platelet" }, { "l_orderkey": 4291i32, "l_partkey": 125i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 43.0d, "l_extendedprice": 44080.16d, "l_discount": 0.01d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-02-01", "l_commitdate": "1994-02-27", "l_receiptdate": "1994-02-06", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "s. quietly regular " }, { "l_orderkey": 5124i32, "l_partkey": 125i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 44.0d, "l_extendedprice": 45105.28d, "l_discount": 0.03d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-13", "l_commitdate": "1997-06-26", "l_receiptdate": "1997-08-01", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "equests. carefully unusual d" }, { "l_orderkey": 5218i32, "l_partkey": 125i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 33.0d, "l_extendedprice": 33828.96d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-09-16", "l_commitdate": "1992-09-30", "l_receiptdate": "1992-09-27", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "ronic instructi" }, { "l_orderkey": 5314i32, "l_partkey": 125i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 16.0d, "l_extendedprice": 16401.92d, "l_discount": 0.0d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-25", "l_commitdate": "1995-07-08", "l_receiptdate": "1995-10-17", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "hely unusual packages acc" }, { "l_orderkey": 5925i32, "l_partkey": 125i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 31.0d, "l_extendedprice": 31778.72d, "l_discount": 0.03d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-02", "l_commitdate": "1995-12-14", "l_receiptdate": "1996-01-07", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "e slyly. furiously regular deposi" } ] }
+{ "partkey": 126i32, "lines": [ { "l_orderkey": 164i32, "l_partkey": 126i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 38.0d, "l_extendedprice": 38992.56d, "l_discount": 0.03d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-12-04", "l_commitdate": "1992-11-23", "l_receiptdate": "1993-01-02", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "counts cajole fluffily regular packages. b" }, { "l_orderkey": 448i32, "l_partkey": 126i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 4.0d, "l_extendedprice": 4104.48d, "l_discount": 0.0d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-25", "l_commitdate": "1995-10-20", "l_receiptdate": "1995-11-26", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "nts thrash quickly among the b" }, { "l_orderkey": 641i32, "l_partkey": 126i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 18.0d, "l_extendedprice": 18470.16d, "l_discount": 0.01d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-10-17", "l_commitdate": "1993-10-11", "l_receiptdate": "1993-10-29", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "p blithely bold packages. quick" }, { "l_orderkey": 804i32, "l_partkey": 126i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 30.0d, "l_extendedprice": 30783.6d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-03-29", "l_commitdate": "1993-05-07", "l_receiptdate": "1993-04-14", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "ehind the quietly regular pac" }, { "l_orderkey": 897i32, "l_partkey": 126i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 13.0d, "l_extendedprice": 13339.56d, "l_discount": 0.07d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-03-30", "l_commitdate": "1995-05-17", "l_receiptdate": "1995-04-21", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "bold accounts mold carefully! braids" }, { "l_orderkey": 1024i32, "l_partkey": 126i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 34.0d, "l_extendedprice": 34888.08d, "l_discount": 0.0d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-06", "l_commitdate": "1998-02-05", "l_receiptdate": "1998-01-26", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "des the slyly even" }, { "l_orderkey": 1027i32, "l_partkey": 126i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 2.0d, "l_extendedprice": 2052.24d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-08-28", "l_commitdate": "1992-07-09", "l_receiptdate": "1992-09-10", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "s. quickly unusual waters inside " }, { "l_orderkey": 1184i32, "l_partkey": 126i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 3.0d, "l_extendedprice": 3078.36d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-15", "l_commitdate": "1997-12-19", "l_receiptdate": "1998-02-02", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "ar packages. final packages cajol" }, { "l_orderkey": 1728i32, "l_partkey": 126i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 1.0d, "l_extendedprice": 1026.12d, "l_discount": 0.07d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-16", "l_commitdate": "1996-08-19", "l_receiptdate": "1996-09-18", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "lly. carefully ex" }, { "l_orderkey": 1793i32, "l_partkey": 126i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 4.0d, "l_extendedprice": 4104.48d, "l_discount": 0.07d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-07-28", "l_commitdate": "1992-08-26", "l_receiptdate": "1992-08-21", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "nic foxes along the even" }, { "l_orderkey": 2049i32, "l_partkey": 126i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 30.0d, "l_extendedprice": 30783.6d, "l_discount": 0.04d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-16", "l_commitdate": "1996-02-04", "l_receiptdate": "1995-12-22", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "ial accounts are among the furiously perma" }, { "l_orderkey": 2375i32, "l_partkey": 126i32, "l_suppkey": 7i32, "l_linenumber": 6i32, "l_quantity": 20.0d, "l_extendedprice": 20522.4d, "l_discount": 0.09d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-01", "l_commitdate": "1996-12-26", "l_receiptdate": "1996-12-19", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "ckages! blithely enticing deposi" }, { "l_orderkey": 2533i32, "l_partkey": 126i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 38.0d, "l_extendedprice": 38992.56d, "l_discount": 0.09d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-10", "l_commitdate": "1997-06-02", "l_receiptdate": "1997-05-28", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "of the regular accounts. even packages caj" }, { "l_orderkey": 2594i32, "l_partkey": 126i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 24.0d, "l_extendedprice": 24626.88d, "l_discount": 0.03d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-01-31", "l_commitdate": "1993-03-10", "l_receiptdate": "1993-02-04", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "lar accounts sleep fur" }, { "l_orderkey": 2752i32, "l_partkey": 126i32, "l_suppkey": 5i32, "l_linenumber": 5i32, "l_quantity": 22.0d, "l_extendedprice": 22574.64d, "l_discount": 0.03d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-03-20", "l_commitdate": "1994-02-08", "l_receiptdate": "1994-04-01", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "equests nag. regular dependencies are furio" }, { "l_orderkey": 2820i32, "l_partkey": 126i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 33.0d, "l_extendedprice": 33861.96d, "l_discount": 0.08d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-07-07", "l_commitdate": "1994-08-17", "l_receiptdate": "1994-08-02", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "carefully even pinto beans. " }, { "l_orderkey": 3040i32, "l_partkey": 126i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 30.0d, "l_extendedprice": 30783.6d, "l_discount": 0.01d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-08-06", "l_commitdate": "1993-05-18", "l_receiptdate": "1993-08-19", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "x furiously bold packages. expres" }, { "l_orderkey": 3365i32, "l_partkey": 126i32, "l_suppkey": 5i32, "l_linenumber": 6i32, "l_quantity": 24.0d, "l_extendedprice": 24626.88d, "l_discount": 0.01d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-02-27", "l_commitdate": "1995-01-09", "l_receiptdate": "1995-03-27", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "into beans? carefully regula" }, { "l_orderkey": 3396i32, "l_partkey": 126i32, "l_suppkey": 5i32, "l_linenumber": 5i32, "l_quantity": 27.0d, "l_extendedprice": 27705.24d, "l_discount": 0.02d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-09-14", "l_commitdate": "1994-07-26", "l_receiptdate": "1994-09-28", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": " theodolites " }, { "l_orderkey": 3492i32, "l_partkey": 126i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 7.0d, "l_extendedprice": 7182.84d, "l_discount": 0.04d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-03-10", "l_commitdate": "1995-01-03", "l_receiptdate": "1995-03-16", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "thely regular dolphi" }, { "l_orderkey": 3555i32, "l_partkey": 126i32, "l_suppkey": 5i32, "l_linenumber": 7i32, "l_quantity": 9.0d, "l_extendedprice": 9235.08d, "l_discount": 0.07d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-13", "l_commitdate": "1996-10-02", "l_receiptdate": "1996-10-22", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "are. slyly final foxes acro" }, { "l_orderkey": 3684i32, "l_partkey": 126i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 48.0d, "l_extendedprice": 49253.76d, "l_discount": 0.04d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-08-20", "l_commitdate": "1993-09-02", "l_receiptdate": "1993-09-10", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "its boost alongside" }, { "l_orderkey": 3747i32, "l_partkey": 126i32, "l_suppkey": 5i32, "l_linenumber": 5i32, "l_quantity": 32.0d, "l_extendedprice": 32835.84d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-10", "l_commitdate": "1996-11-04", "l_receiptdate": "1996-10-10", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "quests shall h" }, { "l_orderkey": 3879i32, "l_partkey": 126i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 45.0d, "l_extendedprice": 46175.4d, "l_discount": 0.1d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-18", "l_commitdate": "1996-01-03", "l_receiptdate": "1996-04-03", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "ly according to the expr" }, { "l_orderkey": 3907i32, "l_partkey": 126i32, "l_suppkey": 9i32, "l_linenumber": 6i32, "l_quantity": 34.0d, "l_extendedprice": 34888.08d, "l_discount": 0.02d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-09-06", "l_commitdate": "1992-10-08", "l_receiptdate": "1992-09-12", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": " requests according to the slyly pending " }, { "l_orderkey": 4004i32, "l_partkey": 126i32, "l_suppkey": 9i32, "l_linenumber": 7i32, "l_quantity": 20.0d, "l_extendedprice": 20522.4d, "l_discount": 0.07d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-06-19", "l_commitdate": "1993-06-14", "l_receiptdate": "1993-07-04", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": ". ironic deposits cajole blithely?" }, { "l_orderkey": 4358i32, "l_partkey": 126i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 47.0d, "l_extendedprice": 48227.64d, "l_discount": 0.04d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-10-15", "l_commitdate": "1997-10-14", "l_receiptdate": "1997-11-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "refully busy dep" }, { "l_orderkey": 4614i32, "l_partkey": 126i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 6.0d, "l_extendedprice": 6156.72d, "l_discount": 0.09d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-11", "l_commitdate": "1996-05-30", "l_receiptdate": "1996-07-03", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "ake quickly quickly regular epitap" }, { "l_orderkey": 5027i32, "l_partkey": 126i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 32.0d, "l_extendedprice": 32835.84d, "l_discount": 0.0d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-11-13", "l_commitdate": "1997-10-29", "l_receiptdate": "1997-11-18", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "cording to" }, { "l_orderkey": 5413i32, "l_partkey": 126i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 48.0d, "l_extendedprice": 49253.76d, "l_discount": 0.02d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-25", "l_commitdate": "1997-11-20", "l_receiptdate": "1998-02-22", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": " theodolites. furiously ironic instr" }, { "l_orderkey": 5700i32, "l_partkey": 126i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 23.0d, "l_extendedprice": 23600.76d, "l_discount": 0.03d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-30", "l_commitdate": "1998-01-31", "l_receiptdate": "1998-01-31", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": " wake quickly carefully fluffy hockey" } ] }
+{ "partkey": 127i32, "lines": [ { "l_orderkey": 37i32, "l_partkey": 127i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 39.0d, "l_extendedprice": 40057.68d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-07-02", "l_commitdate": "1992-08-18", "l_receiptdate": "1992-07-28", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "the final requests. ca" }, { "l_orderkey": 163i32, "l_partkey": 127i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 12.0d, "l_extendedprice": 12325.44d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-18", "l_commitdate": "1997-10-26", "l_receiptdate": "1997-12-22", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "ly blithe accounts cajole " }, { "l_orderkey": 646i32, "l_partkey": 127i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 1.0d, "l_extendedprice": 1027.12d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-12-05", "l_commitdate": "1995-01-07", "l_receiptdate": "1994-12-31", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "t blithely regular deposits. quic" }, { "l_orderkey": 1316i32, "l_partkey": 127i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 46.0d, "l_extendedprice": 47247.52d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-01-13", "l_commitdate": "1994-01-24", "l_receiptdate": "1994-02-03", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "ges haggle of the" }, { "l_orderkey": 1671i32, "l_partkey": 127i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 12.0d, "l_extendedprice": 12325.44d, "l_discount": 0.07d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-17", "l_commitdate": "1996-09-02", "l_receiptdate": "1996-12-17", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "special, ironic" }, { "l_orderkey": 1827i32, "l_partkey": 127i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 4.0d, "l_extendedprice": 4108.48d, "l_discount": 0.04d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-22", "l_commitdate": "1996-09-10", "l_receiptdate": "1996-08-11", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "special requests. blithely" }, { "l_orderkey": 2023i32, "l_partkey": 127i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 9.0d, "l_extendedprice": 9244.08d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-06-04", "l_commitdate": "1992-06-30", "l_receiptdate": "1992-06-10", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "ly regular pinto beans poa" }, { "l_orderkey": 2087i32, "l_partkey": 127i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 1.0d, "l_extendedprice": 1027.12d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-27", "l_commitdate": "1998-03-24", "l_receiptdate": "1998-04-18", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "the quickly idle acco" }, { "l_orderkey": 2243i32, "l_partkey": 127i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 10.0d, "l_extendedprice": 10271.2d, "l_discount": 0.04d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-26", "l_commitdate": "1995-07-18", "l_receiptdate": "1995-08-03", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "express, daring foxes affix fur" }, { "l_orderkey": 2434i32, "l_partkey": 127i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 39.0d, "l_extendedprice": 40057.68d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-10", "l_commitdate": "1997-06-08", "l_receiptdate": "1997-07-03", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "r deposits sleep furiou" }, { "l_orderkey": 2469i32, "l_partkey": 127i32, "l_suppkey": 10i32, "l_linenumber": 7i32, "l_quantity": 8.0d, "l_extendedprice": 8216.96d, "l_discount": 0.02d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-15", "l_commitdate": "1997-01-20", "l_receiptdate": "1997-04-13", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "s. regular" }, { "l_orderkey": 2945i32, "l_partkey": 127i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 28.0d, "l_extendedprice": 28759.36d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-17", "l_commitdate": "1996-03-13", "l_receiptdate": "1996-04-15", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "le slyly along the eve" }, { "l_orderkey": 2978i32, "l_partkey": 127i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 42.0d, "l_extendedprice": 43139.04d, "l_discount": 0.01d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-19", "l_commitdate": "1995-07-18", "l_receiptdate": "1995-09-07", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "ial requests nag blithely alongside of th" }, { "l_orderkey": 3392i32, "l_partkey": 127i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 34.0d, "l_extendedprice": 34922.08d, "l_discount": 0.1d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-20", "l_commitdate": "1996-01-21", "l_receiptdate": "1996-01-24", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "e carefully even braids. " }, { "l_orderkey": 3394i32, "l_partkey": 127i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 30.0d, "l_extendedprice": 30813.6d, "l_discount": 0.04d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-12", "l_commitdate": "1996-07-24", "l_receiptdate": "1996-05-19", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "t ideas according to the fluffily iro" }, { "l_orderkey": 3588i32, "l_partkey": 127i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 22.0d, "l_extendedprice": 22596.64d, "l_discount": 0.05d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-04-08", "l_commitdate": "1995-05-06", "l_receiptdate": "1995-04-27", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "inal accounts. pending, bo" }, { "l_orderkey": 3780i32, "l_partkey": 127i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 25.0d, "l_extendedprice": 25678.0d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-27", "l_commitdate": "1996-07-02", "l_receiptdate": "1996-07-22", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "l, unusual " }, { "l_orderkey": 3808i32, "l_partkey": 127i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 47.0d, "l_extendedprice": 48274.64d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-06-12", "l_commitdate": "1994-06-03", "l_receiptdate": "1994-07-02", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "fully for the quickly final deposits: flu" }, { "l_orderkey": 3876i32, "l_partkey": 127i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 41.0d, "l_extendedprice": 42111.92d, "l_discount": 0.02d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-15", "l_commitdate": "1996-10-17", "l_receiptdate": "1996-10-19", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": " quickly blit" }, { "l_orderkey": 4036i32, "l_partkey": 127i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 20.0d, "l_extendedprice": 20542.4d, "l_discount": 0.08d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-11", "l_commitdate": "1997-07-11", "l_receiptdate": "1997-09-03", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "slyly bold deposits cajole pending, blithe" }, { "l_orderkey": 4870i32, "l_partkey": 127i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 6.0d, "l_extendedprice": 6162.72d, "l_discount": 0.06d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-09-09", "l_commitdate": "1994-10-16", "l_receiptdate": "1994-09-21", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "ress requests. bold, silent pinto bea" }, { "l_orderkey": 5281i32, "l_partkey": 127i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 23.0d, "l_extendedprice": 23623.76d, "l_discount": 0.08d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-30", "l_commitdate": "1996-01-26", "l_receiptdate": "1996-01-23", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": ". final theodolites cajole. ironic p" }, { "l_orderkey": 5606i32, "l_partkey": 127i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 46.0d, "l_extendedprice": 47247.52d, "l_discount": 0.04d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-11", "l_commitdate": "1997-01-13", "l_receiptdate": "1997-03-23", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "ter the ironic accounts. even, ironic depos" }, { "l_orderkey": 5798i32, "l_partkey": 127i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 2.0d, "l_extendedprice": 2054.24d, "l_discount": 0.09d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-25", "l_commitdate": "1998-06-22", "l_receiptdate": "1998-06-09", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "e furiously across " }, { "l_orderkey": 5926i32, "l_partkey": 127i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 46.0d, "l_extendedprice": 47247.52d, "l_discount": 0.01d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-09-05", "l_commitdate": "1994-08-12", "l_receiptdate": "1994-09-11", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "ts integrate. courts haggl" } ] }
+{ "partkey": 128i32, "lines": [ { "l_orderkey": 388i32, "l_partkey": 128i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 46.0d, "l_extendedprice": 47293.52d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-03-22", "l_commitdate": "1993-01-26", "l_receiptdate": "1993-03-24", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "to beans nag about the careful reque" }, { "l_orderkey": 390i32, "l_partkey": 128i32, "l_suppkey": 3i32, "l_linenumber": 5i32, "l_quantity": 13.0d, "l_extendedprice": 13365.56d, "l_discount": 0.02d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-08", "l_commitdate": "1998-05-10", "l_receiptdate": "1998-07-18", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "sleep carefully idle packages. blithely " }, { "l_orderkey": 711i32, "l_partkey": 128i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 46.0d, "l_extendedprice": 47293.52d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-12-26", "l_commitdate": "1993-11-19", "l_receiptdate": "1994-01-21", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "deposits. permanen" }, { "l_orderkey": 711i32, "l_partkey": 128i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 20.0d, "l_extendedprice": 20562.4d, "l_discount": 0.09d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-01-17", "l_commitdate": "1993-11-10", "l_receiptdate": "1994-01-31", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "kly regular acco" }, { "l_orderkey": 871i32, "l_partkey": 128i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 8.0d, "l_extendedprice": 8224.96d, "l_discount": 0.0d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-25", "l_commitdate": "1996-01-12", "l_receiptdate": "1995-12-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "lar ideas-- slyly even accou" }, { "l_orderkey": 1028i32, "l_partkey": 128i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 2.0d, "l_extendedprice": 2056.24d, "l_discount": 0.09d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-01-10", "l_commitdate": "1994-03-22", "l_receiptdate": "1994-01-26", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "s alongside of the regular asymptotes sleep" }, { "l_orderkey": 1538i32, "l_partkey": 128i32, "l_suppkey": 3i32, "l_linenumber": 6i32, "l_quantity": 42.0d, "l_extendedprice": 43181.04d, "l_discount": 0.08d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-10", "l_commitdate": "1995-09-12", "l_receiptdate": "1995-11-08", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "equests cajole blithely " }, { "l_orderkey": 1668i32, "l_partkey": 128i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 25.0d, "l_extendedprice": 25703.0d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-10-08", "l_commitdate": "1997-09-20", "l_receiptdate": "1997-10-11", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "even platelets across the silent " }, { "l_orderkey": 1953i32, "l_partkey": 128i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 25.0d, "l_extendedprice": 25703.0d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-01-07", "l_commitdate": "1994-01-28", "l_receiptdate": "1994-01-29", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "ular, regular i" }, { "l_orderkey": 2503i32, "l_partkey": 128i32, "l_suppkey": 7i32, "l_linenumber": 6i32, "l_quantity": 39.0d, "l_extendedprice": 40096.68d, "l_discount": 0.05d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-10-11", "l_commitdate": "1993-09-09", "l_receiptdate": "1993-10-16", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "d carefully fluffily" }, { "l_orderkey": 2566i32, "l_partkey": 128i32, "l_suppkey": 3i32, "l_linenumber": 6i32, "l_quantity": 1.0d, "l_extendedprice": 1028.12d, "l_discount": 0.07d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-10-28", "l_commitdate": "1992-11-20", "l_receiptdate": "1992-11-22", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "theodolites wake pending" }, { "l_orderkey": 2593i32, "l_partkey": 128i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 6.0d, "l_extendedprice": 6168.72d, "l_discount": 0.04d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-11-28", "l_commitdate": "1993-10-04", "l_receiptdate": "1993-12-28", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "ular packages. re" }, { "l_orderkey": 2629i32, "l_partkey": 128i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 29.0d, "l_extendedprice": 29815.48d, "l_discount": 0.08d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-09", "l_commitdate": "1998-06-17", "l_receiptdate": "1998-07-12", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "eposits serve unusual, express i" }, { "l_orderkey": 2662i32, "l_partkey": 128i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 8.0d, "l_extendedprice": 8224.96d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-10", "l_commitdate": "1996-10-09", "l_receiptdate": "1996-09-21", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "ajole carefully. sp" }, { "l_orderkey": 3168i32, "l_partkey": 128i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 13.0d, "l_extendedprice": 13365.56d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-03-05", "l_commitdate": "1992-04-29", "l_receiptdate": "1992-03-15", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "ironic somas haggle quick" }, { "l_orderkey": 3396i32, "l_partkey": 128i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 34.0d, "l_extendedprice": 34956.08d, "l_discount": 0.0d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-05-30", "l_commitdate": "1994-08-16", "l_receiptdate": "1994-06-11", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": ". slyly unusual packages wak" }, { "l_orderkey": 3527i32, "l_partkey": 128i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 17.0d, "l_extendedprice": 17478.04d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-30", "l_commitdate": "1997-09-01", "l_receiptdate": "1997-08-17", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "ular instruction" }, { "l_orderkey": 3650i32, "l_partkey": 128i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 43.0d, "l_extendedprice": 44209.16d, "l_discount": 0.05d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-09-07", "l_commitdate": "1992-08-12", "l_receiptdate": "1992-09-10", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "gside of the quick" }, { "l_orderkey": 4096i32, "l_partkey": 128i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 20.0d, "l_extendedprice": 20562.4d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-08-24", "l_commitdate": "1992-09-13", "l_receiptdate": "1992-08-28", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "sual requests. furiously bold packages wake" }, { "l_orderkey": 4257i32, "l_partkey": 128i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 33.0d, "l_extendedprice": 33927.96d, "l_discount": 0.03d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-05-23", "l_commitdate": "1995-05-03", "l_receiptdate": "1995-05-31", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "uffily regular accounts ar" }, { "l_orderkey": 4614i32, "l_partkey": 128i32, "l_suppkey": 1i32, "l_linenumber": 7i32, "l_quantity": 41.0d, "l_extendedprice": 42152.92d, "l_discount": 0.01d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-31", "l_commitdate": "1996-07-12", "l_receiptdate": "1996-08-16", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "ackages haggle carefully about the even, b" }, { "l_orderkey": 4677i32, "l_partkey": 128i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 25.0d, "l_extendedprice": 25703.0d, "l_discount": 0.04d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-11", "l_commitdate": "1998-05-11", "l_receiptdate": "1998-04-18", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "unts doubt furiousl" }, { "l_orderkey": 4710i32, "l_partkey": 128i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 47.0d, "l_extendedprice": 48321.64d, "l_discount": 0.04d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-02-22", "l_commitdate": "1995-01-12", "l_receiptdate": "1995-02-28", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "blithely express packages. even, ironic re" }, { "l_orderkey": 4804i32, "l_partkey": 128i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 44.0d, "l_extendedprice": 45237.28d, "l_discount": 0.06d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-05-02", "l_commitdate": "1992-03-24", "l_receiptdate": "1992-05-28", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "aggle quickly among the slyly fi" }, { "l_orderkey": 4996i32, "l_partkey": 128i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 12.0d, "l_extendedprice": 12337.44d, "l_discount": 0.04d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-01-09", "l_commitdate": "1992-11-22", "l_receiptdate": "1993-02-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "usly bold requests sleep dogge" }, { "l_orderkey": 5185i32, "l_partkey": 128i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 8.0d, "l_extendedprice": 8224.96d, "l_discount": 0.04d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-30", "l_commitdate": "1997-09-02", "l_receiptdate": "1997-09-22", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "sts around the slyly perma" }, { "l_orderkey": 5511i32, "l_partkey": 128i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 49.0d, "l_extendedprice": 50377.88d, "l_discount": 0.05d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-12-21", "l_commitdate": "1995-01-27", "l_receiptdate": "1994-12-26", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "bout the requests. theodolites " } ] }
+{ "partkey": 129i32, "lines": [ { "l_orderkey": 3i32, "l_partkey": 129i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 27.0d, "l_extendedprice": 27786.24d, "l_discount": 0.06d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-01-16", "l_commitdate": "1993-11-22", "l_receiptdate": "1994-01-23", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "nal foxes wake. " }, { "l_orderkey": 130i32, "l_partkey": 129i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 14.0d, "l_extendedprice": 14407.68d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-08-15", "l_commitdate": "1992-07-25", "l_receiptdate": "1992-09-13", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": " requests. final instruction" }, { "l_orderkey": 229i32, "l_partkey": 129i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 29.0d, "l_extendedprice": 29844.48d, "l_discount": 0.07d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-03-15", "l_commitdate": "1994-03-02", "l_receiptdate": "1994-03-26", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "s, final request" }, { "l_orderkey": 290i32, "l_partkey": 129i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 2.0d, "l_extendedprice": 2058.24d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-01-30", "l_commitdate": "1994-02-13", "l_receiptdate": "1994-02-21", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": ". permanently furious reques" }, { "l_orderkey": 929i32, "l_partkey": 129i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 45.0d, "l_extendedprice": 46310.4d, "l_discount": 0.09d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-01-24", "l_commitdate": "1992-12-06", "l_receiptdate": "1993-02-16", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "ges haggle careful" }, { "l_orderkey": 995i32, "l_partkey": 129i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 28.0d, "l_extendedprice": 28815.36d, "l_discount": 0.08d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "F", "l_shipdate": "1995-06-12", "l_commitdate": "1995-07-20", "l_receiptdate": "1995-06-19", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "pades. quick, final frays use flu" }, { "l_orderkey": 1219i32, "l_partkey": 129i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 4.0d, "l_extendedprice": 4116.48d, "l_discount": 0.01d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-24", "l_commitdate": "1995-11-22", "l_receiptdate": "1995-12-07", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "lly quick requests. blithely even h" }, { "l_orderkey": 1280i32, "l_partkey": 129i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 17.0d, "l_extendedprice": 17495.04d, "l_discount": 0.01d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-02-04", "l_commitdate": "1993-04-10", "l_receiptdate": "1993-02-07", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "ructions integrate across the th" }, { "l_orderkey": 1318i32, "l_partkey": 129i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 31.0d, "l_extendedprice": 31902.72d, "l_discount": 0.01d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-25", "l_commitdate": "1998-07-31", "l_receiptdate": "1998-08-31", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "ve the carefully expr" }, { "l_orderkey": 2018i32, "l_partkey": 129i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 23.0d, "l_extendedprice": 23669.76d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-05-05", "l_commitdate": "1995-05-12", "l_receiptdate": "1995-05-22", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "ingly even theodolites s" }, { "l_orderkey": 2022i32, "l_partkey": 129i32, "l_suppkey": 2i32, "l_linenumber": 6i32, "l_quantity": 20.0d, "l_extendedprice": 20582.4d, "l_discount": 0.08d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-03-31", "l_commitdate": "1992-04-17", "l_receiptdate": "1992-04-02", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "r deposits kindle " }, { "l_orderkey": 2149i32, "l_partkey": 129i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 18.0d, "l_extendedprice": 18524.16d, "l_discount": 0.06d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-04-05", "l_commitdate": "1993-05-11", "l_receiptdate": "1993-04-23", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "uriously final pac" }, { "l_orderkey": 2177i32, "l_partkey": 129i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 45.0d, "l_extendedprice": 46310.4d, "l_discount": 0.02d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-11", "l_commitdate": "1997-02-27", "l_receiptdate": "1997-02-17", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": ". theodolites haggle carefu" }, { "l_orderkey": 2274i32, "l_partkey": 129i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 18.0d, "l_extendedprice": 18524.16d, "l_discount": 0.03d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-09-28", "l_commitdate": "1993-11-22", "l_receiptdate": "1993-10-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": " express packages. even accounts hagg" }, { "l_orderkey": 2723i32, "l_partkey": 129i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 40.0d, "l_extendedprice": 41164.8d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-17", "l_commitdate": "1995-11-22", "l_receiptdate": "1995-11-18", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "unwind fluffily carefully regular realms." }, { "l_orderkey": 3175i32, "l_partkey": 129i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 12.0d, "l_extendedprice": 12349.44d, "l_discount": 0.09d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-10-16", "l_commitdate": "1994-09-15", "l_receiptdate": "1994-10-18", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "ter the pending deposits. slyly e" }, { "l_orderkey": 3300i32, "l_partkey": 129i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 3.0d, "l_extendedprice": 3087.36d, "l_discount": 0.07d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-01", "l_commitdate": "1995-10-02", "l_receiptdate": "1995-11-20", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "g according to the dugouts. caref" }, { "l_orderkey": 3462i32, "l_partkey": 129i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 6.0d, "l_extendedprice": 6174.72d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-02", "l_commitdate": "1997-08-09", "l_receiptdate": "1997-06-30", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "iously regular fo" }, { "l_orderkey": 3557i32, "l_partkey": 129i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 37.0d, "l_extendedprice": 38077.44d, "l_discount": 0.03d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-02-16", "l_commitdate": "1993-01-05", "l_receiptdate": "1993-03-15", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "gside of the ca" }, { "l_orderkey": 3749i32, "l_partkey": 129i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 9.0d, "l_extendedprice": 9262.08d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-04-23", "l_commitdate": "1995-04-18", "l_receiptdate": "1995-04-26", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "uses cajole blithely pla" }, { "l_orderkey": 4069i32, "l_partkey": 129i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 39.0d, "l_extendedprice": 40135.68d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-09-06", "l_commitdate": "1992-07-22", "l_receiptdate": "1992-09-25", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "ven theodolites nag quickly. fluffi" }, { "l_orderkey": 4197i32, "l_partkey": 129i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 50.0d, "l_extendedprice": 51456.0d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-15", "l_commitdate": "1996-11-01", "l_receiptdate": "1996-11-20", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": ". carefully bold asymptotes nag blithe" }, { "l_orderkey": 4647i32, "l_partkey": 129i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 34.0d, "l_extendedprice": 34990.08d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-05-20", "l_commitdate": "1994-06-20", "l_receiptdate": "1994-05-29", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "ly sly accounts" }, { "l_orderkey": 4993i32, "l_partkey": 129i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 39.0d, "l_extendedprice": 40135.68d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-09-10", "l_commitdate": "1994-09-04", "l_receiptdate": "1994-09-26", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "pending, regular requests solve caref" }, { "l_orderkey": 5063i32, "l_partkey": 129i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 31.0d, "l_extendedprice": 31902.72d, "l_discount": 0.08d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-02", "l_commitdate": "1997-06-20", "l_receiptdate": "1997-06-27", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "kages. ironic, ironic courts wake. carefu" }, { "l_orderkey": 5090i32, "l_partkey": 129i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 46.0d, "l_extendedprice": 47339.52d, "l_discount": 0.05d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-05", "l_commitdate": "1997-04-14", "l_receiptdate": "1997-05-01", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "lose theodolites sleep blit" }, { "l_orderkey": 5350i32, "l_partkey": 129i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 27.0d, "l_extendedprice": 27786.24d, "l_discount": 0.07d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-11-25", "l_commitdate": "1993-12-27", "l_receiptdate": "1993-12-08", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "es. blithe theodolites haggl" }, { "l_orderkey": 5411i32, "l_partkey": 129i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 15.0d, "l_extendedprice": 15436.8d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-01", "l_commitdate": "1997-07-15", "l_receiptdate": "1997-07-07", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "attainments sleep slyly ironic" }, { "l_orderkey": 5543i32, "l_partkey": 129i32, "l_suppkey": 8i32, "l_linenumber": 7i32, "l_quantity": 39.0d, "l_extendedprice": 40135.68d, "l_discount": 0.06d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-10-07", "l_commitdate": "1993-11-15", "l_receiptdate": "1993-10-28", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "l excuses are furiously. slyly unusual requ" }, { "l_orderkey": 5637i32, "l_partkey": 129i32, "l_suppkey": 4i32, "l_linenumber": 6i32, "l_quantity": 27.0d, "l_extendedprice": 27786.24d, "l_discount": 0.01d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-27", "l_commitdate": "1996-08-09", "l_receiptdate": "1996-07-27", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "oss the carefully express warhorses" }, { "l_orderkey": 5671i32, "l_partkey": 129i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 46.0d, "l_extendedprice": 47339.52d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-28", "l_commitdate": "1998-04-22", "l_receiptdate": "1998-04-19", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "lar pinto beans detect care" }, { "l_orderkey": 5671i32, "l_partkey": 129i32, "l_suppkey": 4i32, "l_linenumber": 5i32, "l_quantity": 13.0d, "l_extendedprice": 13378.56d, "l_discount": 0.09d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-24", "l_commitdate": "1998-03-26", "l_receiptdate": "1998-04-27", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "ers according to the ironic, unusual excu" }, { "l_orderkey": 5699i32, "l_partkey": 129i32, "l_suppkey": 8i32, "l_linenumber": 7i32, "l_quantity": 45.0d, "l_extendedprice": 46310.4d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-09-23", "l_commitdate": "1992-10-22", "l_receiptdate": "1992-10-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "rmanent packages sleep across the f" }, { "l_orderkey": 5829i32, "l_partkey": 129i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 6.0d, "l_extendedprice": 6174.72d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-22", "l_commitdate": "1997-03-12", "l_receiptdate": "1997-02-02", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "sts. slyly special fo" }, { "l_orderkey": 5953i32, "l_partkey": 129i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 36.0d, "l_extendedprice": 37048.32d, "l_discount": 0.03d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-05-28", "l_commitdate": "1992-06-24", "l_receiptdate": "1992-05-29", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": " cajole furio" } ] }
+{ "partkey": 130i32, "lines": [ { "l_orderkey": 256i32, "l_partkey": 130i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 45.0d, "l_extendedprice": 46355.85d, "l_discount": 0.02d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-01-14", "l_commitdate": "1994-01-17", "l_receiptdate": "1994-02-10", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": " grouches. ideas wake quickly ar" }, { "l_orderkey": 451i32, "l_partkey": 130i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 36.0d, "l_extendedprice": 37084.68d, "l_discount": 0.02d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-18", "l_commitdate": "1998-08-14", "l_receiptdate": "1998-06-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "rges can haggle carefully ironic, dogged " }, { "l_orderkey": 583i32, "l_partkey": 130i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 34.0d, "l_extendedprice": 35024.42d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-11", "l_commitdate": "1997-04-24", "l_receiptdate": "1997-06-03", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "express req" }, { "l_orderkey": 644i32, "l_partkey": 130i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 11.0d, "l_extendedprice": 11331.43d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-08-20", "l_commitdate": "1992-07-21", "l_receiptdate": "1992-09-11", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "ealthy pinto beans use carefu" }, { "l_orderkey": 864i32, "l_partkey": 130i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 34.0d, "l_extendedprice": 35024.42d, "l_discount": 0.03d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-16", "l_commitdate": "1997-10-23", "l_receiptdate": "1998-01-12", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "gside of the furiously special" }, { "l_orderkey": 1447i32, "l_partkey": 130i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 23.0d, "l_extendedprice": 23692.99d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-12-07", "l_commitdate": "1992-12-25", "l_receiptdate": "1993-01-06", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": " dazzle quickly deposits. f" }, { "l_orderkey": 1538i32, "l_partkey": 130i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 36.0d, "l_extendedprice": 37084.68d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-11", "l_commitdate": "1995-09-10", "l_receiptdate": "1995-07-26", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "al deposits mo" }, { "l_orderkey": 1856i32, "l_partkey": 130i32, "l_suppkey": 3i32, "l_linenumber": 7i32, "l_quantity": 42.0d, "l_extendedprice": 43265.46d, "l_discount": 0.04d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-05-23", "l_commitdate": "1992-06-06", "l_receiptdate": "1992-06-19", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "usly final deposits" }, { "l_orderkey": 2051i32, "l_partkey": 130i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 48.0d, "l_extendedprice": 49446.24d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-04", "l_commitdate": "1996-06-14", "l_receiptdate": "1996-05-19", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "unts. pending platelets believe about" }, { "l_orderkey": 2179i32, "l_partkey": 130i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 22.0d, "l_extendedprice": 22662.86d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-16", "l_commitdate": "1996-11-03", "l_receiptdate": "1996-11-25", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "lphins cajole acr" }, { "l_orderkey": 2434i32, "l_partkey": 130i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 28.0d, "l_extendedprice": 28843.64d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-28", "l_commitdate": "1997-06-26", "l_receiptdate": "1997-07-15", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "ven theodolites around the slyly" }, { "l_orderkey": 2499i32, "l_partkey": 130i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 6.0d, "l_extendedprice": 6180.78d, "l_discount": 0.02d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-19", "l_commitdate": "1995-12-14", "l_receiptdate": "1995-12-08", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "cording to the" }, { "l_orderkey": 2886i32, "l_partkey": 130i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 46.0d, "l_extendedprice": 47385.98d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-02-02", "l_commitdate": "1995-01-26", "l_receiptdate": "1995-02-15", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "ously final packages sleep blithely regular" }, { "l_orderkey": 2950i32, "l_partkey": 130i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 32.0d, "l_extendedprice": 32964.16d, "l_discount": 0.01d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-21", "l_commitdate": "1997-08-25", "l_receiptdate": "1997-10-08", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "its wake carefully slyly final ideas." }, { "l_orderkey": 3009i32, "l_partkey": 130i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 26.0d, "l_extendedprice": 26783.38d, "l_discount": 0.08d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-15", "l_commitdate": "1997-05-10", "l_receiptdate": "1997-06-13", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "uriously specia" }, { "l_orderkey": 3459i32, "l_partkey": 130i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 30.0d, "l_extendedprice": 30903.9d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-11-22", "l_commitdate": "1994-09-12", "l_receiptdate": "1994-12-11", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "nic theodolites; evenly i" }, { "l_orderkey": 3460i32, "l_partkey": 130i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 47.0d, "l_extendedprice": 48416.11d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-09", "l_commitdate": "1995-11-12", "l_receiptdate": "1995-12-22", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "es haggle slyly regular accounts. fi" }, { "l_orderkey": 3522i32, "l_partkey": 130i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 7.0d, "l_extendedprice": 7210.91d, "l_discount": 0.1d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-10-31", "l_commitdate": "1994-11-19", "l_receiptdate": "1994-11-28", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "e stealthil" }, { "l_orderkey": 3713i32, "l_partkey": 130i32, "l_suppkey": 1i32, "l_linenumber": 7i32, "l_quantity": 14.0d, "l_extendedprice": 14421.82d, "l_discount": 0.04d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-19", "l_commitdate": "1998-07-02", "l_receiptdate": "1998-07-28", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "eposits impress according" }, { "l_orderkey": 3782i32, "l_partkey": 130i32, "l_suppkey": 3i32, "l_linenumber": 5i32, "l_quantity": 40.0d, "l_extendedprice": 41205.2d, "l_discount": 0.09d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-16", "l_commitdate": "1996-11-22", "l_receiptdate": "1997-01-01", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "s instructions. regular accou" }, { "l_orderkey": 3815i32, "l_partkey": 130i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 11.0d, "l_extendedprice": 11331.43d, "l_discount": 0.02d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-11-01", "l_commitdate": "1997-11-05", "l_receiptdate": "1997-11-27", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "sleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep blithesleep bl" }, { "l_orderkey": 4386i32, "l_partkey": 130i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 10.0d, "l_extendedprice": 10301.3d, "l_discount": 0.05d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-03", "l_commitdate": "1998-04-16", "l_receiptdate": "1998-06-28", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "gainst the quickly expre" }, { "l_orderkey": 4386i32, "l_partkey": 130i32, "l_suppkey": 3i32, "l_linenumber": 5i32, "l_quantity": 39.0d, "l_extendedprice": 40175.07d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-05", "l_commitdate": "1998-03-15", "l_receiptdate": "1998-03-16", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "structions cajole quickly express" }, { "l_orderkey": 4705i32, "l_partkey": 130i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 31.0d, "l_extendedprice": 31934.03d, "l_discount": 0.03d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-04-03", "l_commitdate": "1992-05-30", "l_receiptdate": "1992-04-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "furiously final accou" }, { "l_orderkey": 4774i32, "l_partkey": 130i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 30.0d, "l_extendedprice": 30903.9d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-08-18", "l_commitdate": "1993-06-08", "l_receiptdate": "1993-08-21", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "tions against the blithely final theodolit" }, { "l_orderkey": 4994i32, "l_partkey": 130i32, "l_suppkey": 1i32, "l_linenumber": 7i32, "l_quantity": 31.0d, "l_extendedprice": 31934.03d, "l_discount": 0.07d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-14", "l_commitdate": "1996-09-23", "l_receiptdate": "1996-11-08", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "lar decoys cajole fluffil" }, { "l_orderkey": 5223i32, "l_partkey": 130i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 40.0d, "l_extendedprice": 41205.2d, "l_discount": 0.01d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-10-01", "l_commitdate": "1994-09-18", "l_receiptdate": "1994-10-28", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "kly pending " }, { "l_orderkey": 5255i32, "l_partkey": 130i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 41.0d, "l_extendedprice": 42235.33d, "l_discount": 0.09d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-21", "l_commitdate": "1996-09-24", "l_receiptdate": "1996-09-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "tect blithely against t" } ] }
+{ "partkey": 131i32, "lines": [ { "l_orderkey": 225i32, "l_partkey": 131i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 3.0d, "l_extendedprice": 3093.39d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-25", "l_commitdate": "1995-07-08", "l_receiptdate": "1995-08-17", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": " fluffily about the carefully bold a" }, { "l_orderkey": 386i32, "l_partkey": 131i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 37.0d, "l_extendedprice": 38151.81d, "l_discount": 0.09d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-05-23", "l_commitdate": "1995-03-01", "l_receiptdate": "1995-05-25", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "ending pearls breach fluffily. slyly pen" }, { "l_orderkey": 515i32, "l_partkey": 131i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 32.0d, "l_extendedprice": 32996.16d, "l_discount": 0.01d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-10-10", "l_commitdate": "1993-10-08", "l_receiptdate": "1993-11-02", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "r sauternes boost. final theodolites wake a" }, { "l_orderkey": 802i32, "l_partkey": 131i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 44.0d, "l_extendedprice": 45369.72d, "l_discount": 0.07d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-01-09", "l_commitdate": "1995-02-04", "l_receiptdate": "1995-01-18", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "rmanently idly special requ" }, { "l_orderkey": 994i32, "l_partkey": 131i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 25.0d, "l_extendedprice": 25778.25d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-06-03", "l_commitdate": "1994-06-02", "l_receiptdate": "1994-06-06", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "usual pinto beans." }, { "l_orderkey": 1061i32, "l_partkey": 131i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 50.0d, "l_extendedprice": 51556.5d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-25", "l_commitdate": "1998-07-22", "l_receiptdate": "1998-06-22", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "nding excuses are around the e" }, { "l_orderkey": 1187i32, "l_partkey": 131i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 15.0d, "l_extendedprice": 15466.95d, "l_discount": 0.03d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-12-22", "l_commitdate": "1993-01-13", "l_receiptdate": "1993-01-01", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "ests. foxes wake. carefu" }, { "l_orderkey": 1793i32, "l_partkey": 131i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 6.0d, "l_extendedprice": 6186.78d, "l_discount": 0.01d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-09-21", "l_commitdate": "1992-09-05", "l_receiptdate": "1992-10-01", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "uctions; depo" }, { "l_orderkey": 2116i32, "l_partkey": 131i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 2.0d, "l_extendedprice": 2062.26d, "l_discount": 0.0d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-10-16", "l_commitdate": "1994-11-24", "l_receiptdate": "1994-11-09", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "r theodolites use blithely about the ir" }, { "l_orderkey": 2407i32, "l_partkey": 131i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 39.0d, "l_extendedprice": 40214.07d, "l_discount": 0.02d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-20", "l_commitdate": "1998-09-12", "l_receiptdate": "1998-08-22", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "iously final deposits solv" }, { "l_orderkey": 2529i32, "l_partkey": 131i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 4.0d, "l_extendedprice": 4124.52d, "l_discount": 0.07d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-19", "l_commitdate": "1996-11-18", "l_receiptdate": "1996-10-24", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "al dependencies haggle slyly alongsi" }, { "l_orderkey": 2627i32, "l_partkey": 131i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 28.0d, "l_extendedprice": 28871.64d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-05-14", "l_commitdate": "1992-05-09", "l_receiptdate": "1992-05-31", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "ggedly final excuses nag packages. f" }, { "l_orderkey": 2755i32, "l_partkey": 131i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 5.0d, "l_extendedprice": 5155.65d, "l_discount": 0.01d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-02-27", "l_commitdate": "1992-04-07", "l_receiptdate": "1992-03-09", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "e the furi" }, { "l_orderkey": 3200i32, "l_partkey": 131i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 36.0d, "l_extendedprice": 37120.68d, "l_discount": 0.01d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-22", "l_commitdate": "1996-03-19", "l_receiptdate": "1996-03-30", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "f the carefu" }, { "l_orderkey": 3264i32, "l_partkey": 131i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 34.0d, "l_extendedprice": 35058.42d, "l_discount": 0.0d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-03", "l_commitdate": "1997-01-06", "l_receiptdate": "1997-01-29", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "rns haggle carefully. blit" }, { "l_orderkey": 3269i32, "l_partkey": 131i32, "l_suppkey": 7i32, "l_linenumber": 6i32, "l_quantity": 16.0d, "l_extendedprice": 16498.08d, "l_discount": 0.01d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-03", "l_commitdate": "1996-04-06", "l_receiptdate": "1996-03-06", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "s cajole. silent deposits are f" }, { "l_orderkey": 3328i32, "l_partkey": 131i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 25.0d, "l_extendedprice": 25778.25d, "l_discount": 0.05d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-01-28", "l_commitdate": "1993-01-04", "l_receiptdate": "1993-01-31", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "e unusual, r" }, { "l_orderkey": 3521i32, "l_partkey": 131i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 2.0d, "l_extendedprice": 2062.26d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-01-29", "l_commitdate": "1992-12-20", "l_receiptdate": "1993-02-23", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "refully duri" }, { "l_orderkey": 3749i32, "l_partkey": 131i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 7.0d, "l_extendedprice": 7217.91d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-03-31", "l_commitdate": "1995-04-05", "l_receiptdate": "1995-04-11", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "he slyly ironic packages" }, { "l_orderkey": 3814i32, "l_partkey": 131i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 7.0d, "l_extendedprice": 7217.91d, "l_discount": 0.02d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-05-01", "l_commitdate": "1995-05-09", "l_receiptdate": "1995-05-28", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "es sleep furiou" }, { "l_orderkey": 4193i32, "l_partkey": 131i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 37.0d, "l_extendedprice": 38151.81d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-04-25", "l_commitdate": "1994-02-24", "l_receiptdate": "1994-05-08", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "er the quickly regular dependencies wake" }, { "l_orderkey": 4292i32, "l_partkey": 131i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 6.0d, "l_extendedprice": 6186.78d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-03-03", "l_commitdate": "1992-02-24", "l_receiptdate": "1992-03-25", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "bove the silently regula" }, { "l_orderkey": 4544i32, "l_partkey": 131i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 40.0d, "l_extendedprice": 41245.2d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-15", "l_commitdate": "1997-10-16", "l_receiptdate": "1997-08-20", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": " detect slyly. evenly pending instru" }, { "l_orderkey": 4866i32, "l_partkey": 131i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 17.0d, "l_extendedprice": 17529.21d, "l_discount": 0.07d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-11-26", "l_commitdate": "1997-10-11", "l_receiptdate": "1997-12-12", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "ess packages doubt. even somas wake f" }, { "l_orderkey": 4965i32, "l_partkey": 131i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 28.0d, "l_extendedprice": 28871.64d, "l_discount": 0.05d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-01-02", "l_commitdate": "1993-11-20", "l_receiptdate": "1994-01-04", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": " deposits. requests sublate quickly " }, { "l_orderkey": 5158i32, "l_partkey": 131i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 49.0d, "l_extendedprice": 50525.37d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-10", "l_commitdate": "1997-03-21", "l_receiptdate": "1997-04-30", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "r requests sleep q" }, { "l_orderkey": 5255i32, "l_partkey": 131i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 2.0d, "l_extendedprice": 2062.26d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-27", "l_commitdate": "1996-10-04", "l_receiptdate": "1996-10-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "ajole blithely fluf" }, { "l_orderkey": 5347i32, "l_partkey": 131i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 21.0d, "l_extendedprice": 21653.73d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-04-01", "l_commitdate": "1995-04-16", "l_receiptdate": "1995-04-23", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "sly slyly final requests. careful" }, { "l_orderkey": 5441i32, "l_partkey": 131i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 49.0d, "l_extendedprice": 50525.37d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-09-23", "l_commitdate": "1994-09-22", "l_receiptdate": "1994-10-22", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "ording to the furio" }, { "l_orderkey": 5445i32, "l_partkey": 131i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 12.0d, "l_extendedprice": 12373.56d, "l_discount": 0.09d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-11-02", "l_commitdate": "1993-09-05", "l_receiptdate": "1993-11-26", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": " slyly pending pinto beans was slyly al" }, { "l_orderkey": 5666i32, "l_partkey": 131i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 24.0d, "l_extendedprice": 24747.12d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-02-14", "l_commitdate": "1994-03-09", "l_receiptdate": "1994-03-06", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "on the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asymptoon the carefully pending asympto" }, { "l_orderkey": 5702i32, "l_partkey": 131i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 44.0d, "l_extendedprice": 45369.72d, "l_discount": 0.0d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-11-28", "l_commitdate": "1993-12-02", "l_receiptdate": "1993-12-22", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "ake according to th" }, { "l_orderkey": 5763i32, "l_partkey": 131i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 32.0d, "l_extendedprice": 32996.16d, "l_discount": 0.02d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-16", "l_commitdate": "1998-09-13", "l_receiptdate": "1998-08-02", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "ding instruct" } ] }
+{ "partkey": 132i32, "lines": [ { "l_orderkey": 225i32, "l_partkey": 132i32, "l_suppkey": 8i32, "l_linenumber": 6i32, "l_quantity": 12.0d, "l_extendedprice": 12385.56d, "l_discount": 0.0d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-06-04", "l_commitdate": "1995-07-15", "l_receiptdate": "1995-06-08", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": " unusual requests. bus" }, { "l_orderkey": 359i32, "l_partkey": 132i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 17.0d, "l_extendedprice": 17546.21d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-01-31", "l_commitdate": "1995-03-18", "l_receiptdate": "1995-02-10", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "sts according to the blithely" }, { "l_orderkey": 384i32, "l_partkey": 132i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 14.0d, "l_extendedprice": 14449.82d, "l_discount": 0.08d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-06-14", "l_commitdate": "1992-05-29", "l_receiptdate": "1992-07-05", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "ckages are slyly after the slyly specia" }, { "l_orderkey": 417i32, "l_partkey": 132i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 2.0d, "l_extendedprice": 2064.26d, "l_discount": 0.01d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-02-13", "l_commitdate": "1994-04-19", "l_receiptdate": "1994-03-15", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "uriously bol" }, { "l_orderkey": 423i32, "l_partkey": 132i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 27.0d, "l_extendedprice": 27867.51d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-20", "l_commitdate": "1996-08-01", "l_receiptdate": "1996-08-23", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "ccounts. blithely regular pack" }, { "l_orderkey": 802i32, "l_partkey": 132i32, "l_suppkey": 3i32, "l_linenumber": 5i32, "l_quantity": 19.0d, "l_extendedprice": 19610.47d, "l_discount": 0.08d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-04-01", "l_commitdate": "1995-02-20", "l_receiptdate": "1995-04-23", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "old, furious" }, { "l_orderkey": 967i32, "l_partkey": 132i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 10.0d, "l_extendedprice": 10321.3d, "l_discount": 0.0d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-09-18", "l_commitdate": "1992-08-06", "l_receiptdate": "1992-09-19", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "old pinto beans alongside of the exp" }, { "l_orderkey": 1219i32, "l_partkey": 132i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 6.0d, "l_extendedprice": 6192.78d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-13", "l_commitdate": "1995-12-24", "l_receiptdate": "1995-11-18", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "pecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, ironic requpecial, iron" }, { "l_orderkey": 1668i32, "l_partkey": 132i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 8.0d, "l_extendedprice": 8257.04d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-23", "l_commitdate": "1997-10-09", "l_receiptdate": "1997-08-06", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "arefully regular tithes! slyl" }, { "l_orderkey": 2182i32, "l_partkey": 132i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 27.0d, "l_extendedprice": 27867.51d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-05-10", "l_commitdate": "1994-07-04", "l_receiptdate": "1994-06-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "en platele" }, { "l_orderkey": 2375i32, "l_partkey": 132i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 9.0d, "l_extendedprice": 9289.17d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-17", "l_commitdate": "1996-12-27", "l_receiptdate": "1997-02-27", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "ly against the packages. bold pinto bean" }, { "l_orderkey": 2658i32, "l_partkey": 132i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 41.0d, "l_extendedprice": 42317.33d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-07", "l_commitdate": "1995-11-04", "l_receiptdate": "1995-12-04", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "eposits. furiously final theodolite" }, { "l_orderkey": 2853i32, "l_partkey": 132i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 20.0d, "l_extendedprice": 20642.6d, "l_discount": 0.02d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-08-30", "l_commitdate": "1994-06-16", "l_receiptdate": "1994-09-06", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "e slyly silent foxes. express deposits sno" }, { "l_orderkey": 3008i32, "l_partkey": 132i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 8.0d, "l_extendedprice": 8257.04d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-06", "l_commitdate": "1996-01-12", "l_receiptdate": "1995-12-22", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "yly ironic foxes. regular requests h" }, { "l_orderkey": 3078i32, "l_partkey": 132i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 25.0d, "l_extendedprice": 25803.25d, "l_discount": 0.01d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-04-22", "l_commitdate": "1993-05-01", "l_receiptdate": "1993-04-28", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "express dinos. carefully ironic" }, { "l_orderkey": 3111i32, "l_partkey": 132i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 31.0d, "l_extendedprice": 31996.03d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-26", "l_commitdate": "1995-09-26", "l_receiptdate": "1995-11-02", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "kages detect express attainments" }, { "l_orderkey": 3172i32, "l_partkey": 132i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 13.0d, "l_extendedprice": 13417.69d, "l_discount": 0.03d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-07-06", "l_commitdate": "1992-08-06", "l_receiptdate": "1992-08-05", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "inal deposits haggle along the" }, { "l_orderkey": 3397i32, "l_partkey": 132i32, "l_suppkey": 3i32, "l_linenumber": 5i32, "l_quantity": 28.0d, "l_extendedprice": 28899.64d, "l_discount": 0.05d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-07-13", "l_commitdate": "1994-08-26", "l_receiptdate": "1994-07-17", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "counts around the final reques" }, { "l_orderkey": 3493i32, "l_partkey": 132i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 10.0d, "l_extendedprice": 10321.3d, "l_discount": 0.02d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-08-27", "l_commitdate": "1993-10-07", "l_receiptdate": "1993-09-23", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "hall have to integ" }, { "l_orderkey": 3587i32, "l_partkey": 132i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 48.0d, "l_extendedprice": 49542.24d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-02", "l_commitdate": "1996-07-02", "l_receiptdate": "1996-08-05", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "beans. blithely final depe" }, { "l_orderkey": 3814i32, "l_partkey": 132i32, "l_suppkey": 8i32, "l_linenumber": 7i32, "l_quantity": 12.0d, "l_extendedprice": 12385.56d, "l_discount": 0.1d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-03-18", "l_commitdate": "1995-04-16", "l_receiptdate": "1995-03-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "ages cajole. packages haggle. final" }, { "l_orderkey": 4419i32, "l_partkey": 132i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 6.0d, "l_extendedprice": 6192.78d, "l_discount": 0.02d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-25", "l_commitdate": "1996-09-04", "l_receiptdate": "1996-07-20", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "ts wake slyly final dugou" }, { "l_orderkey": 4803i32, "l_partkey": 132i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 2.0d, "l_extendedprice": 2064.26d, "l_discount": 0.08d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-04-16", "l_commitdate": "1996-03-20", "l_receiptdate": "1996-05-15", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "gular reque" }, { "l_orderkey": 5190i32, "l_partkey": 132i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 6.0d, "l_extendedprice": 6192.78d, "l_discount": 0.1d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-08-08", "l_commitdate": "1992-07-14", "l_receiptdate": "1992-08-22", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "furiously regular pinto beans. furiously i" }, { "l_orderkey": 5381i32, "l_partkey": 132i32, "l_suppkey": 3i32, "l_linenumber": 6i32, "l_quantity": 33.0d, "l_extendedprice": 34060.29d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-04-09", "l_commitdate": "1993-04-03", "l_receiptdate": "1993-04-22", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "ly special deposits " }, { "l_orderkey": 5507i32, "l_partkey": 132i32, "l_suppkey": 3i32, "l_linenumber": 5i32, "l_quantity": 48.0d, "l_extendedprice": 49542.24d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-21", "l_commitdate": "1998-07-15", "l_receiptdate": "1998-07-31", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "uriously regular acc" }, { "l_orderkey": 5607i32, "l_partkey": 132i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 23.0d, "l_extendedprice": 23738.99d, "l_discount": 0.02d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-04-17", "l_commitdate": "1992-02-12", "l_receiptdate": "1992-04-30", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "the special, final patterns " }, { "l_orderkey": 5696i32, "l_partkey": 132i32, "l_suppkey": 8i32, "l_linenumber": 6i32, "l_quantity": 37.0d, "l_extendedprice": 38188.81d, "l_discount": 0.04d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-21", "l_commitdate": "1995-06-23", "l_receiptdate": "1995-08-19", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": " carefully expres" }, { "l_orderkey": 5957i32, "l_partkey": 132i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 29.0d, "l_extendedprice": 29931.77d, "l_discount": 0.01d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-02-24", "l_commitdate": "1994-03-04", "l_receiptdate": "1994-03-08", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "sits. final, even asymptotes cajole quickly" }, { "l_orderkey": 5958i32, "l_partkey": 132i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 32.0d, "l_extendedprice": 33028.16d, "l_discount": 0.06d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-20", "l_commitdate": "1995-12-10", "l_receiptdate": "1995-10-14", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "e carefully special theodolites. carefully " } ] }
+{ "partkey": 133i32, "lines": [ { "l_orderkey": 199i32, "l_partkey": 133i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 50.0d, "l_extendedprice": 51656.5d, "l_discount": 0.02d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-12", "l_commitdate": "1996-06-03", "l_receiptdate": "1996-07-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "essly regular ideas boost sly" }, { "l_orderkey": 258i32, "l_partkey": 133i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 31.0d, "l_extendedprice": 32027.03d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-04-20", "l_commitdate": "1994-03-20", "l_receiptdate": "1994-04-28", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": " slyly blithely special mul" }, { "l_orderkey": 517i32, "l_partkey": 133i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 11.0d, "l_extendedprice": 11364.43d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-20", "l_commitdate": "1997-06-01", "l_receiptdate": "1997-06-27", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "ly throughout the fu" }, { "l_orderkey": 802i32, "l_partkey": 133i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 34.0d, "l_extendedprice": 35126.42d, "l_discount": 0.08d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-03-01", "l_commitdate": "1995-03-15", "l_receiptdate": "1995-03-12", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "instructions cajole carefully. quietl" }, { "l_orderkey": 1125i32, "l_partkey": 133i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 4.0d, "l_extendedprice": 4132.52d, "l_discount": 0.08d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-12-10", "l_commitdate": "1994-12-28", "l_receiptdate": "1994-12-30", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": " quickly express packages a" }, { "l_orderkey": 1284i32, "l_partkey": 133i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 39.0d, "l_extendedprice": 40292.07d, "l_discount": 0.08d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-11", "l_commitdate": "1996-02-07", "l_receiptdate": "1996-02-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "even accoun" }, { "l_orderkey": 1472i32, "l_partkey": 133i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 26.0d, "l_extendedprice": 26861.38d, "l_discount": 0.03d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-08", "l_commitdate": "1996-11-13", "l_receiptdate": "1996-12-02", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "ic packages w" }, { "l_orderkey": 1506i32, "l_partkey": 133i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 46.0d, "l_extendedprice": 47523.98d, "l_discount": 0.04d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-01-18", "l_commitdate": "1992-11-11", "l_receiptdate": "1993-02-09", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "sits whithout the blithely ironic packages" }, { "l_orderkey": 2467i32, "l_partkey": 133i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 7.0d, "l_extendedprice": 7231.91d, "l_discount": 0.0d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-28", "l_commitdate": "1995-10-04", "l_receiptdate": "1995-08-27", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "gular packages cajole " }, { "l_orderkey": 2499i32, "l_partkey": 133i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 31.0d, "l_extendedprice": 32027.03d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-09", "l_commitdate": "1995-10-28", "l_receiptdate": "1996-01-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "to beans across the carefully ironic theodo" }, { "l_orderkey": 2789i32, "l_partkey": 133i32, "l_suppkey": 4i32, "l_linenumber": 7i32, "l_quantity": 42.0d, "l_extendedprice": 43391.46d, "l_discount": 0.01d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-28", "l_commitdate": "1998-05-17", "l_receiptdate": "1998-05-24", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "ending packages shoul" }, { "l_orderkey": 2791i32, "l_partkey": 133i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 44.0d, "l_extendedprice": 45457.72d, "l_discount": 0.08d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-11-17", "l_commitdate": "1994-11-12", "l_receiptdate": "1994-12-14", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "heodolites use furio" }, { "l_orderkey": 2980i32, "l_partkey": 133i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 27.0d, "l_extendedprice": 27894.51d, "l_discount": 0.08d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-08", "l_commitdate": "1996-12-03", "l_receiptdate": "1996-12-14", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": " theodolites cajole blithely sl" }, { "l_orderkey": 3040i32, "l_partkey": 133i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 9.0d, "l_extendedprice": 9298.17d, "l_discount": 0.0d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-06-12", "l_commitdate": "1993-05-16", "l_receiptdate": "1993-06-14", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "ges. pending packages wake. requests" }, { "l_orderkey": 3140i32, "l_partkey": 133i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 28.0d, "l_extendedprice": 28927.64d, "l_discount": 0.06d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-06-08", "l_commitdate": "1992-07-07", "l_receiptdate": "1992-07-08", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "lar ideas. slyly ironic d" }, { "l_orderkey": 3458i32, "l_partkey": 133i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 48.0d, "l_extendedprice": 49590.24d, "l_discount": 0.06d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-03-17", "l_commitdate": "1995-01-25", "l_receiptdate": "1995-03-28", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "iously pending dep" }, { "l_orderkey": 3523i32, "l_partkey": 133i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 4.0d, "l_extendedprice": 4132.52d, "l_discount": 0.03d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-08", "l_commitdate": "1998-05-18", "l_receiptdate": "1998-05-25", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "ts. final accounts detect furiously along " }, { "l_orderkey": 3809i32, "l_partkey": 133i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 32.0d, "l_extendedprice": 33060.16d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-03", "l_commitdate": "1996-06-01", "l_receiptdate": "1996-07-25", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "xcuses would boost against the fluffily eve" }, { "l_orderkey": 4453i32, "l_partkey": 133i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 16.0d, "l_extendedprice": 16530.08d, "l_discount": 0.03d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-22", "l_commitdate": "1997-05-05", "l_receiptdate": "1997-08-03", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "ar excuses nag quickly even accounts. b" }, { "l_orderkey": 4512i32, "l_partkey": 133i32, "l_suppkey": 4i32, "l_linenumber": 5i32, "l_quantity": 43.0d, "l_extendedprice": 44424.59d, "l_discount": 0.06d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-20", "l_commitdate": "1995-11-28", "l_receiptdate": "1996-01-14", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "are carefully. theodolites wake" }, { "l_orderkey": 4544i32, "l_partkey": 133i32, "l_suppkey": 4i32, "l_linenumber": 5i32, "l_quantity": 31.0d, "l_extendedprice": 32027.03d, "l_discount": 0.09d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-09", "l_commitdate": "1997-09-29", "l_receiptdate": "1997-08-17", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "dolites detect quickly reg" }, { "l_orderkey": 4546i32, "l_partkey": 133i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 10.0d, "l_extendedprice": 10331.3d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-23", "l_commitdate": "1995-10-10", "l_receiptdate": "1995-10-23", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "osits alongside of the" }, { "l_orderkey": 4711i32, "l_partkey": 133i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 7.0d, "l_extendedprice": 7231.91d, "l_discount": 0.03d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-12", "l_commitdate": "1998-06-24", "l_receiptdate": "1998-05-24", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "ly. bold accounts use fluff" }, { "l_orderkey": 4864i32, "l_partkey": 133i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 45.0d, "l_extendedprice": 46490.85d, "l_discount": 0.02d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-11-17", "l_commitdate": "1993-01-02", "l_receiptdate": "1992-11-26", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "round the furiously careful pa" }, { "l_orderkey": 4964i32, "l_partkey": 133i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 29.0d, "l_extendedprice": 29960.77d, "l_discount": 0.04d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-10-18", "l_commitdate": "1997-08-30", "l_receiptdate": "1997-11-01", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "k accounts nag carefully-- ironic, fin" }, { "l_orderkey": 5120i32, "l_partkey": 133i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 28.0d, "l_extendedprice": 28927.64d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-20", "l_commitdate": "1996-08-31", "l_receiptdate": "1996-08-06", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": " across the silent requests. caref" }, { "l_orderkey": 5414i32, "l_partkey": 133i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 15.0d, "l_extendedprice": 15496.95d, "l_discount": 0.06d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-05-18", "l_commitdate": "1993-06-09", "l_receiptdate": "1993-05-27", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "e slyly about the carefully regula" }, { "l_orderkey": 5762i32, "l_partkey": 133i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 47.0d, "l_extendedprice": 48557.11d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-02", "l_commitdate": "1997-03-23", "l_receiptdate": "1997-03-19", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "equests sleep after the furiously ironic pa" } ] }
+{ "partkey": 134i32, "lines": [ { "l_orderkey": 134i32, "l_partkey": 134i32, "l_suppkey": 10i32, "l_linenumber": 6i32, "l_quantity": 12.0d, "l_extendedprice": 12409.56d, "l_discount": 0.0d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-08-08", "l_commitdate": "1992-07-07", "l_receiptdate": "1992-08-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "lyly regular pac" }, { "l_orderkey": 199i32, "l_partkey": 134i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 30.0d, "l_extendedprice": 31023.9d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-27", "l_commitdate": "1996-05-29", "l_receiptdate": "1996-04-14", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "ilent packages doze quickly. thinly " }, { "l_orderkey": 421i32, "l_partkey": 134i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 1.0d, "l_extendedprice": 1034.13d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-05-29", "l_commitdate": "1992-04-27", "l_receiptdate": "1992-06-09", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "oldly busy deposit" }, { "l_orderkey": 518i32, "l_partkey": 134i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 12.0d, "l_extendedprice": 12409.56d, "l_discount": 0.01d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-08", "l_commitdate": "1998-03-31", "l_receiptdate": "1998-04-06", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": " packages thrash slyly" }, { "l_orderkey": 644i32, "l_partkey": 134i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 46.0d, "l_extendedprice": 47569.98d, "l_discount": 0.02d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-05-20", "l_commitdate": "1992-06-14", "l_receiptdate": "1992-06-14", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": " special requests was sometimes expre" }, { "l_orderkey": 773i32, "l_partkey": 134i32, "l_suppkey": 5i32, "l_linenumber": 5i32, "l_quantity": 9.0d, "l_extendedprice": 9307.17d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-10-09", "l_commitdate": "1993-12-25", "l_receiptdate": "1993-11-04", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "ent orbits haggle fluffily after the " }, { "l_orderkey": 838i32, "l_partkey": 134i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 20.0d, "l_extendedprice": 20682.6d, "l_discount": 0.1d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-11", "l_commitdate": "1998-03-25", "l_receiptdate": "1998-04-19", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": " furiously final ideas. slow, bold " }, { "l_orderkey": 1317i32, "l_partkey": 134i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 34.0d, "l_extendedprice": 35160.42d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-13", "l_commitdate": "1995-08-08", "l_receiptdate": "1995-09-10", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "deposits boost thinly blithely final id" }, { "l_orderkey": 1408i32, "l_partkey": 134i32, "l_suppkey": 10i32, "l_linenumber": 6i32, "l_quantity": 42.0d, "l_extendedprice": 43433.46d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-30", "l_commitdate": "1998-02-07", "l_receiptdate": "1998-02-18", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "even packages. even accounts cajole" }, { "l_orderkey": 1666i32, "l_partkey": 134i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 31.0d, "l_extendedprice": 32058.03d, "l_discount": 0.05d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-02-11", "l_commitdate": "1996-01-11", "l_receiptdate": "1996-02-28", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "ding to the express, bold accounts. fu" }, { "l_orderkey": 1892i32, "l_partkey": 134i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 37.0d, "l_extendedprice": 38262.81d, "l_discount": 0.1d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-04-11", "l_commitdate": "1994-06-04", "l_receiptdate": "1994-04-24", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "nts. slyly regular asymptot" }, { "l_orderkey": 1985i32, "l_partkey": 134i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 20.0d, "l_extendedprice": 20682.6d, "l_discount": 0.07d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-10-29", "l_commitdate": "1994-11-12", "l_receiptdate": "1994-11-27", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "regular requests. furiously express" }, { "l_orderkey": 2023i32, "l_partkey": 134i32, "l_suppkey": 10i32, "l_linenumber": 7i32, "l_quantity": 50.0d, "l_extendedprice": 51706.5d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-06-20", "l_commitdate": "1992-07-04", "l_receiptdate": "1992-06-23", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "its! carefully ex" }, { "l_orderkey": 2054i32, "l_partkey": 134i32, "l_suppkey": 10i32, "l_linenumber": 6i32, "l_quantity": 17.0d, "l_extendedprice": 17580.21d, "l_discount": 0.08d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-06-09", "l_commitdate": "1992-08-28", "l_receiptdate": "1992-06-16", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "ges nag acc" }, { "l_orderkey": 2055i32, "l_partkey": 134i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 16.0d, "l_extendedprice": 16546.08d, "l_discount": 0.02d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-11-16", "l_commitdate": "1993-11-12", "l_receiptdate": "1993-11-28", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "arefully daringly regular accounts." }, { "l_orderkey": 2433i32, "l_partkey": 134i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 20.0d, "l_extendedprice": 20682.6d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-12-09", "l_commitdate": "1994-10-20", "l_receiptdate": "1994-12-15", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "lithely blithely final ide" }, { "l_orderkey": 2853i32, "l_partkey": 134i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 26.0d, "l_extendedprice": 26887.38d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-06-26", "l_commitdate": "1994-06-05", "l_receiptdate": "1994-07-02", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "dolphins wake slyly. blith" }, { "l_orderkey": 2882i32, "l_partkey": 134i32, "l_suppkey": 5i32, "l_linenumber": 5i32, "l_quantity": 32.0d, "l_extendedprice": 33092.16d, "l_discount": 0.07d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-21", "l_commitdate": "1995-11-10", "l_receiptdate": "1995-11-01", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "sts. quickly regular e" }, { "l_orderkey": 2976i32, "l_partkey": 134i32, "l_suppkey": 5i32, "l_linenumber": 5i32, "l_quantity": 13.0d, "l_extendedprice": 13443.69d, "l_discount": 0.0d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-02-06", "l_commitdate": "1994-02-02", "l_receiptdate": "1994-02-19", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": " furiously final courts boost " }, { "l_orderkey": 3207i32, "l_partkey": 134i32, "l_suppkey": 5i32, "l_linenumber": 6i32, "l_quantity": 32.0d, "l_extendedprice": 33092.16d, "l_discount": 0.03d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-19", "l_commitdate": "1998-05-01", "l_receiptdate": "1998-05-08", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "l deposits wake beyond the carefully" }, { "l_orderkey": 3297i32, "l_partkey": 134i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 10.0d, "l_extendedprice": 10341.3d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-12-14", "l_commitdate": "1993-01-21", "l_receiptdate": "1992-12-26", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "ironic idea" }, { "l_orderkey": 3332i32, "l_partkey": 134i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 27.0d, "l_extendedprice": 27921.51d, "l_discount": 0.03d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-12-10", "l_commitdate": "1995-01-14", "l_receiptdate": "1994-12-11", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "ording to the slyly regula" }, { "l_orderkey": 3399i32, "l_partkey": 134i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 28.0d, "l_extendedprice": 28955.64d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-06-29", "l_commitdate": "1995-05-19", "l_receiptdate": "1995-07-12", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "oggedly final theodolites grow. fi" }, { "l_orderkey": 3523i32, "l_partkey": 134i32, "l_suppkey": 5i32, "l_linenumber": 5i32, "l_quantity": 48.0d, "l_extendedprice": 49638.24d, "l_discount": 0.0d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-22", "l_commitdate": "1998-06-25", "l_receiptdate": "1998-08-19", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": " regular requests" }, { "l_orderkey": 3685i32, "l_partkey": 134i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 38.0d, "l_extendedprice": 39296.94d, "l_discount": 0.08d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-05-17", "l_commitdate": "1992-03-16", "l_receiptdate": "1992-06-06", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "thely unusual pack" }, { "l_orderkey": 3750i32, "l_partkey": 134i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 37.0d, "l_extendedprice": 38262.81d, "l_discount": 0.04d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-08", "l_commitdate": "1995-07-28", "l_receiptdate": "1995-07-28", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "usly busy account" }, { "l_orderkey": 4039i32, "l_partkey": 134i32, "l_suppkey": 5i32, "l_linenumber": 5i32, "l_quantity": 43.0d, "l_extendedprice": 44467.59d, "l_discount": 0.09d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-20", "l_commitdate": "1998-01-11", "l_receiptdate": "1998-02-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "sts along the regular in" }, { "l_orderkey": 5152i32, "l_partkey": 134i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 50.0d, "l_extendedprice": 51706.5d, "l_discount": 0.04d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-10", "l_commitdate": "1997-02-04", "l_receiptdate": "1997-03-15", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": " the final deposits. slyly ironic warth" }, { "l_orderkey": 5477i32, "l_partkey": 134i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 31.0d, "l_extendedprice": 32058.03d, "l_discount": 0.04d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-11", "l_commitdate": "1998-01-30", "l_receiptdate": "1998-02-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": " special Tiresias cajole furiously. pending" }, { "l_orderkey": 5636i32, "l_partkey": 134i32, "l_suppkey": 10i32, "l_linenumber": 7i32, "l_quantity": 24.0d, "l_extendedprice": 24819.12d, "l_discount": 0.1d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-04-12", "l_commitdate": "1995-03-27", "l_receiptdate": "1995-04-16", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "counts sleep furiously b" }, { "l_orderkey": 5798i32, "l_partkey": 134i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 22.0d, "l_extendedprice": 22750.86d, "l_discount": 0.02d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-24", "l_commitdate": "1998-06-06", "l_receiptdate": "1998-07-20", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "sits poach carefully" }, { "l_orderkey": 5893i32, "l_partkey": 134i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 43.0d, "l_extendedprice": 44467.59d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-11-02", "l_commitdate": "1992-09-27", "l_receiptdate": "1992-11-21", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "s. regular courts above the carefully silen" } ] }
+{ "partkey": 135i32, "lines": [ { "l_orderkey": 99i32, "l_partkey": 135i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 42.0d, "l_extendedprice": 43475.46d, "l_discount": 0.02d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-04-19", "l_commitdate": "1994-05-18", "l_receiptdate": "1994-04-20", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "kages are fluffily furiously ir" }, { "l_orderkey": 353i32, "l_partkey": 135i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 12.0d, "l_extendedprice": 12421.56d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-01-02", "l_commitdate": "1994-03-26", "l_receiptdate": "1994-01-19", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "g deposits cajole " }, { "l_orderkey": 935i32, "l_partkey": 135i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 36.0d, "l_extendedprice": 37264.68d, "l_discount": 0.06d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-11-05", "l_commitdate": "1997-12-05", "l_receiptdate": "1997-11-25", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "leep about the exp" }, { "l_orderkey": 1095i32, "l_partkey": 135i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 28.0d, "l_extendedprice": 28983.64d, "l_discount": 0.08d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-20", "l_commitdate": "1995-11-18", "l_receiptdate": "1995-10-02", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": " regular pac" }, { "l_orderkey": 1254i32, "l_partkey": 135i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 35.0d, "l_extendedprice": 36229.55d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-04-08", "l_commitdate": "1996-02-29", "l_receiptdate": "1996-04-18", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "ckages boost. furious warhorses cajole" }, { "l_orderkey": 1445i32, "l_partkey": 135i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 24.0d, "l_extendedprice": 24843.12d, "l_discount": 0.1d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-04-23", "l_commitdate": "1995-02-16", "l_receiptdate": "1995-05-18", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "rate after the carefully reg" }, { "l_orderkey": 1508i32, "l_partkey": 135i32, "l_suppkey": 6i32, "l_linenumber": 5i32, "l_quantity": 29.0d, "l_extendedprice": 30018.77d, "l_discount": 0.02d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-03", "l_commitdate": "1998-07-08", "l_receiptdate": "1998-08-22", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "r instructions. carefully" }, { "l_orderkey": 1699i32, "l_partkey": 135i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 17.0d, "l_extendedprice": 17597.21d, "l_discount": 0.07d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-01-12", "l_commitdate": "1994-03-12", "l_receiptdate": "1994-02-08", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "haggle blithely slyly" }, { "l_orderkey": 1826i32, "l_partkey": 135i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 46.0d, "l_extendedprice": 47615.98d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-05-02", "l_commitdate": "1992-06-25", "l_receiptdate": "1992-05-26", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "ously? quickly pe" }, { "l_orderkey": 1925i32, "l_partkey": 135i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 35.0d, "l_extendedprice": 36229.55d, "l_discount": 0.06d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-05-11", "l_commitdate": "1992-04-10", "l_receiptdate": "1992-05-14", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "counts. carefully ironic packages boost ab" }, { "l_orderkey": 2052i32, "l_partkey": 135i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 35.0d, "l_extendedprice": 36229.55d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-05-29", "l_commitdate": "1992-05-24", "l_receiptdate": "1992-06-11", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "ts according t" }, { "l_orderkey": 2055i32, "l_partkey": 135i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 12.0d, "l_extendedprice": 12421.56d, "l_discount": 0.0d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-10-26", "l_commitdate": "1993-11-23", "l_receiptdate": "1993-11-22", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "al pains. acco" }, { "l_orderkey": 2211i32, "l_partkey": 135i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 3.0d, "l_extendedprice": 3105.39d, "l_discount": 0.02d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-08-28", "l_commitdate": "1994-09-10", "l_receiptdate": "1994-09-06", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "pendencies after the regular f" }, { "l_orderkey": 2276i32, "l_partkey": 135i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 13.0d, "l_extendedprice": 13456.69d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-24", "l_commitdate": "1996-06-18", "l_receiptdate": "1996-08-16", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "arefully ironic foxes cajole q" }, { "l_orderkey": 2532i32, "l_partkey": 135i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 1.0d, "l_extendedprice": 1035.13d, "l_discount": 0.0d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-27", "l_commitdate": "1995-11-23", "l_receiptdate": "1996-01-29", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "ely final ideas cajole despite the ca" }, { "l_orderkey": 2567i32, "l_partkey": 135i32, "l_suppkey": 6i32, "l_linenumber": 7i32, "l_quantity": 43.0d, "l_extendedprice": 44510.59d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-11", "l_commitdate": "1998-04-15", "l_receiptdate": "1998-05-29", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "requests. final courts cajole " }, { "l_orderkey": 2659i32, "l_partkey": 135i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 24.0d, "l_extendedprice": 24843.12d, "l_discount": 0.04d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-03-28", "l_commitdate": "1994-02-20", "l_receiptdate": "1994-04-05", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": " haggle carefully " }, { "l_orderkey": 3172i32, "l_partkey": 135i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 28.0d, "l_extendedprice": 28983.64d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-07-09", "l_commitdate": "1992-07-14", "l_receiptdate": "1992-07-16", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "regular ideas. packages are furi" }, { "l_orderkey": 3232i32, "l_partkey": 135i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 34.0d, "l_extendedprice": 35194.42d, "l_discount": 0.07d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-01-09", "l_commitdate": "1992-11-14", "l_receiptdate": "1993-02-03", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "old packages integrate quickly " }, { "l_orderkey": 3684i32, "l_partkey": 135i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 13.0d, "l_extendedprice": 13456.69d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-07-23", "l_commitdate": "1993-09-16", "l_receiptdate": "1993-08-06", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "ing, unusual pinto beans! thinly p" }, { "l_orderkey": 3844i32, "l_partkey": 135i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 2.0d, "l_extendedprice": 2070.26d, "l_discount": 0.03d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-02-24", "l_commitdate": "1995-02-03", "l_receiptdate": "1995-03-18", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "es haggle final acco" }, { "l_orderkey": 4192i32, "l_partkey": 135i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 7.0d, "l_extendedprice": 7245.91d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-19", "l_commitdate": "1998-07-08", "l_receiptdate": "1998-05-31", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "y; excuses use. ironic, close instru" }, { "l_orderkey": 4422i32, "l_partkey": 135i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 5.0d, "l_extendedprice": 5175.65d, "l_discount": 0.09d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-17", "l_commitdate": "1995-08-13", "l_receiptdate": "1995-07-25", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "e furiously about t" }, { "l_orderkey": 4486i32, "l_partkey": 135i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 46.0d, "l_extendedprice": 47615.98d, "l_discount": 0.08d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-02", "l_commitdate": "1998-04-05", "l_receiptdate": "1998-05-08", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "ackages. specia" }, { "l_orderkey": 5063i32, "l_partkey": 135i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 18.0d, "l_extendedprice": 18632.34d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-02", "l_commitdate": "1997-06-18", "l_receiptdate": "1997-06-06", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "refully quiet reques" }, { "l_orderkey": 5219i32, "l_partkey": 135i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 2.0d, "l_extendedprice": 2070.26d, "l_discount": 0.08d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-26", "l_commitdate": "1997-04-29", "l_receiptdate": "1997-07-08", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": " blithely according to the stea" }, { "l_orderkey": 5254i32, "l_partkey": 135i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 10.0d, "l_extendedprice": 10351.3d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-11-19", "l_commitdate": "1992-10-20", "l_receiptdate": "1992-12-15", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": " accounts. silent deposit" }, { "l_orderkey": 5572i32, "l_partkey": 135i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 46.0d, "l_extendedprice": 47615.98d, "l_discount": 0.02d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-09-08", "l_commitdate": "1994-10-14", "l_receiptdate": "1994-10-01", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "ully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully regular plateletully reg" }, { "l_orderkey": 5959i32, "l_partkey": 135i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 49.0d, "l_extendedprice": 50721.37d, "l_discount": 0.07d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-07-16", "l_commitdate": "1992-08-09", "l_receiptdate": "1992-08-14", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "usual packages haggle slyly pi" } ] }
+{ "partkey": 136i32, "lines": [ { "l_orderkey": 96i32, "l_partkey": 136i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 30.0d, "l_extendedprice": 31083.9d, "l_discount": 0.01d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-06-03", "l_commitdate": "1994-05-29", "l_receiptdate": "1994-06-22", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "e quickly even ideas. furiou" }, { "l_orderkey": 129i32, "l_partkey": 136i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 34.0d, "l_extendedprice": 35228.42d, "l_discount": 0.0d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-01-29", "l_commitdate": "1993-02-14", "l_receiptdate": "1993-02-10", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "quests. express ideas" }, { "l_orderkey": 196i32, "l_partkey": 136i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 19.0d, "l_extendedprice": 19686.47d, "l_discount": 0.03d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-04-17", "l_commitdate": "1993-05-27", "l_receiptdate": "1993-04-30", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "sts maintain foxes. furiously regular p" }, { "l_orderkey": 486i32, "l_partkey": 136i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 26.0d, "l_extendedprice": 26939.38d, "l_discount": 0.04d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-16", "l_commitdate": "1996-05-25", "l_receiptdate": "1996-03-31", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "forges along the " }, { "l_orderkey": 866i32, "l_partkey": 136i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 5.0d, "l_extendedprice": 5180.65d, "l_discount": 0.08d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-01-22", "l_commitdate": "1993-01-14", "l_receiptdate": "1993-02-07", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "tegrate fluffily. carefully f" }, { "l_orderkey": 1027i32, "l_partkey": 136i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 22.0d, "l_extendedprice": 22794.86d, "l_discount": 0.02d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-09-03", "l_commitdate": "1992-08-14", "l_receiptdate": "1992-10-01", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "the furiously express ex" }, { "l_orderkey": 1061i32, "l_partkey": 136i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 41.0d, "l_extendedprice": 42481.33d, "l_discount": 0.0d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-29", "l_commitdate": "1998-07-02", "l_receiptdate": "1998-07-27", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "s are. ironic theodolites cajole. dep" }, { "l_orderkey": 1095i32, "l_partkey": 136i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 24.0d, "l_extendedprice": 24867.12d, "l_discount": 0.04d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-24", "l_commitdate": "1995-10-20", "l_receiptdate": "1995-09-09", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "packages nod furiously above the carefully " }, { "l_orderkey": 1153i32, "l_partkey": 136i32, "l_suppkey": 7i32, "l_linenumber": 6i32, "l_quantity": 26.0d, "l_extendedprice": 26939.38d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-16", "l_commitdate": "1996-07-12", "l_receiptdate": "1996-09-08", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "kages haggle carefully. f" }, { "l_orderkey": 1312i32, "l_partkey": 136i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 28.0d, "l_extendedprice": 29011.64d, "l_discount": 0.06d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-09-09", "l_commitdate": "1994-08-01", "l_receiptdate": "1994-10-02", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "uriously final frays should use quick" }, { "l_orderkey": 1574i32, "l_partkey": 136i32, "l_suppkey": 7i32, "l_linenumber": 7i32, "l_quantity": 14.0d, "l_extendedprice": 14505.82d, "l_discount": 0.04d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-30", "l_commitdate": "1997-01-19", "l_receiptdate": "1997-01-20", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "ily bold a" }, { "l_orderkey": 1733i32, "l_partkey": 136i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 38.0d, "l_extendedprice": 39372.94d, "l_discount": 0.01d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-26", "l_commitdate": "1996-07-23", "l_receiptdate": "1996-08-28", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": " deposits " }, { "l_orderkey": 1831i32, "l_partkey": 136i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 9.0d, "l_extendedprice": 9325.17d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-12-17", "l_commitdate": "1994-01-27", "l_receiptdate": "1993-12-26", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "mptotes. furiously regular dolphins al" }, { "l_orderkey": 2084i32, "l_partkey": 136i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 37.0d, "l_extendedprice": 38336.81d, "l_discount": 0.07d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-07-16", "l_commitdate": "1993-04-20", "l_receiptdate": "1993-08-06", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "y careful courts." }, { "l_orderkey": 2373i32, "l_partkey": 136i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 3.0d, "l_extendedprice": 3108.39d, "l_discount": 0.08d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-05-15", "l_commitdate": "1994-06-10", "l_receiptdate": "1994-06-04", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "dependencies wake ironical" }, { "l_orderkey": 2786i32, "l_partkey": 136i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 15.0d, "l_extendedprice": 15541.95d, "l_discount": 0.03d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-05-19", "l_commitdate": "1992-05-08", "l_receiptdate": "1992-05-28", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "low deposits are ironic" }, { "l_orderkey": 2915i32, "l_partkey": 136i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 15.0d, "l_extendedprice": 15541.95d, "l_discount": 0.07d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-05-01", "l_commitdate": "1994-06-12", "l_receiptdate": "1994-05-15", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "al requests haggle furiousl" }, { "l_orderkey": 2951i32, "l_partkey": 136i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 24.0d, "l_extendedprice": 24867.12d, "l_discount": 0.07d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-24", "l_commitdate": "1996-04-16", "l_receiptdate": "1996-04-08", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": " ironic multipliers. express, regular" }, { "l_orderkey": 3106i32, "l_partkey": 136i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 49.0d, "l_extendedprice": 50770.37d, "l_discount": 0.06d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-27", "l_commitdate": "1997-03-11", "l_receiptdate": "1997-03-12", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "lets. quietly regular courts " }, { "l_orderkey": 3332i32, "l_partkey": 136i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 21.0d, "l_extendedprice": 21758.73d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-02-04", "l_commitdate": "1995-01-08", "l_receiptdate": "1995-02-06", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": " quick packages sle" }, { "l_orderkey": 3366i32, "l_partkey": 136i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 9.0d, "l_extendedprice": 9325.17d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-02", "l_commitdate": "1997-07-05", "l_receiptdate": "1997-06-26", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "ackages sleep carefully across the bli" }, { "l_orderkey": 3428i32, "l_partkey": 136i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 47.0d, "l_extendedprice": 48698.11d, "l_discount": 0.07d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-04-16", "l_commitdate": "1996-06-08", "l_receiptdate": "1996-05-05", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "y final pinto " }, { "l_orderkey": 3650i32, "l_partkey": 136i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 30.0d, "l_extendedprice": 31083.9d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-08-26", "l_commitdate": "1992-07-05", "l_receiptdate": "1992-09-01", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "ckly special platelets. furiously sil" }, { "l_orderkey": 3782i32, "l_partkey": 136i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 30.0d, "l_extendedprice": 31083.9d, "l_discount": 0.06d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-19", "l_commitdate": "1996-10-31", "l_receiptdate": "1997-01-14", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "slyly even pinto beans hag" }, { "l_orderkey": 4035i32, "l_partkey": 136i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 4.0d, "l_extendedprice": 4144.52d, "l_discount": 0.07d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-05-21", "l_commitdate": "1992-04-24", "l_receiptdate": "1992-05-24", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "en instructions sleep blith" }, { "l_orderkey": 4384i32, "l_partkey": 136i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 5.0d, "l_extendedprice": 5180.65d, "l_discount": 0.09d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-08-22", "l_commitdate": "1992-08-24", "l_receiptdate": "1992-09-20", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "instructions sleep. blithely express pa" }, { "l_orderkey": 4707i32, "l_partkey": 136i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 49.0d, "l_extendedprice": 50770.37d, "l_discount": 0.0d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "F", "l_shipdate": "1995-06-17", "l_commitdate": "1995-05-16", "l_receiptdate": "1995-06-25", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": " alongside of the slyly ironic instructio" }, { "l_orderkey": 4805i32, "l_partkey": 136i32, "l_suppkey": 7i32, "l_linenumber": 6i32, "l_quantity": 18.0d, "l_extendedprice": 18650.34d, "l_discount": 0.06d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-06-07", "l_commitdate": "1992-07-10", "l_receiptdate": "1992-06-12", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "o use pending, unusu" }, { "l_orderkey": 4871i32, "l_partkey": 136i32, "l_suppkey": 2i32, "l_linenumber": 6i32, "l_quantity": 36.0d, "l_extendedprice": 37300.68d, "l_discount": 0.02d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-18", "l_commitdate": "1995-08-29", "l_receiptdate": "1995-10-05", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "ely according" }, { "l_orderkey": 5153i32, "l_partkey": 136i32, "l_suppkey": 2i32, "l_linenumber": 6i32, "l_quantity": 42.0d, "l_extendedprice": 43517.46d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-19", "l_commitdate": "1995-11-23", "l_receiptdate": "1995-11-06", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "ickly even deposi" }, { "l_orderkey": 5316i32, "l_partkey": 136i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 31.0d, "l_extendedprice": 32120.03d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-04-01", "l_commitdate": "1994-04-21", "l_receiptdate": "1994-04-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "s. deposits cajole around t" }, { "l_orderkey": 5604i32, "l_partkey": 136i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 44.0d, "l_extendedprice": 45589.72d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-06", "l_commitdate": "1998-07-08", "l_receiptdate": "1998-09-04", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "efully ironi" }, { "l_orderkey": 5604i32, "l_partkey": 136i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 49.0d, "l_extendedprice": 50770.37d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-02", "l_commitdate": "1998-07-07", "l_receiptdate": "1998-05-20", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "ove the regula" }, { "l_orderkey": 5763i32, "l_partkey": 136i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 23.0d, "l_extendedprice": 23830.99d, "l_discount": 0.09d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-25", "l_commitdate": "1998-09-21", "l_receiptdate": "1998-08-15", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "re after the blithel" }, { "l_orderkey": 5986i32, "l_partkey": 136i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 6.0d, "l_extendedprice": 6216.78d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-07-16", "l_commitdate": "1992-06-10", "l_receiptdate": "1992-07-29", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "al foxes within the slyly speci" } ] }
+{ "partkey": 137i32, "lines": [ { "l_orderkey": 135i32, "l_partkey": 137i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 20.0d, "l_extendedprice": 20742.6d, "l_discount": 0.01d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-25", "l_commitdate": "1995-11-20", "l_receiptdate": "1996-02-09", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "theodolites. quickly p" }, { "l_orderkey": 387i32, "l_partkey": 137i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 1.0d, "l_extendedprice": 1037.13d, "l_discount": 0.08d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-06", "l_commitdate": "1997-04-23", "l_receiptdate": "1997-05-10", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": " pinto beans wake furiously carefu" }, { "l_orderkey": 485i32, "l_partkey": 137i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 22.0d, "l_extendedprice": 22816.86d, "l_discount": 0.0d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-06", "l_commitdate": "1997-04-27", "l_receiptdate": "1997-05-01", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "refully final notornis haggle according " }, { "l_orderkey": 547i32, "l_partkey": 137i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 48.0d, "l_extendedprice": 49782.24d, "l_discount": 0.01d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-21", "l_commitdate": "1996-08-04", "l_receiptdate": "1996-11-20", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "thely specia" }, { "l_orderkey": 614i32, "l_partkey": 137i32, "l_suppkey": 8i32, "l_linenumber": 6i32, "l_quantity": 48.0d, "l_extendedprice": 49782.24d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-12-14", "l_commitdate": "1993-01-22", "l_receiptdate": "1993-01-11", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": " regular platelets cajole quickly eve" }, { "l_orderkey": 675i32, "l_partkey": 137i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 35.0d, "l_extendedprice": 36299.55d, "l_discount": 0.08d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-19", "l_commitdate": "1997-10-16", "l_receiptdate": "1997-09-17", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "s. furiously expre" }, { "l_orderkey": 993i32, "l_partkey": 137i32, "l_suppkey": 3i32, "l_linenumber": 6i32, "l_quantity": 35.0d, "l_extendedprice": 36299.55d, "l_discount": 0.04d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-26", "l_commitdate": "1995-10-20", "l_receiptdate": "1995-11-05", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "es. ironic, ironic requests" }, { "l_orderkey": 1029i32, "l_partkey": 137i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 45.0d, "l_extendedprice": 46670.85d, "l_discount": 0.05d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-07-21", "l_commitdate": "1994-08-30", "l_receiptdate": "1994-07-29", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "sits boost blithely" }, { "l_orderkey": 1062i32, "l_partkey": 137i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 38.0d, "l_extendedprice": 39410.94d, "l_discount": 0.0d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-27", "l_commitdate": "1997-03-07", "l_receiptdate": "1997-02-16", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "deas. pending acc" }, { "l_orderkey": 1095i32, "l_partkey": 137i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 33.0d, "l_extendedprice": 34225.29d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-03", "l_commitdate": "1995-09-22", "l_receiptdate": "1995-10-13", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "slyly around the iron" }, { "l_orderkey": 1573i32, "l_partkey": 137i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 7.0d, "l_extendedprice": 7259.91d, "l_discount": 0.0d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-01-30", "l_commitdate": "1993-03-14", "l_receiptdate": "1993-02-27", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "eodolites sleep slyly. slyly f" }, { "l_orderkey": 1703i32, "l_partkey": 137i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 35.0d, "l_extendedprice": 36299.55d, "l_discount": 0.01d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-04-14", "l_commitdate": "1993-03-31", "l_receiptdate": "1993-04-27", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "he carefully" }, { "l_orderkey": 1760i32, "l_partkey": 137i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 44.0d, "l_extendedprice": 45633.72d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-11", "l_commitdate": "1996-06-16", "l_receiptdate": "1996-07-02", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "instructions poach slyly ironic theodolites" }, { "l_orderkey": 1795i32, "l_partkey": 137i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 44.0d, "l_extendedprice": 45633.72d, "l_discount": 0.08d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-04-28", "l_commitdate": "1994-05-24", "l_receiptdate": "1994-05-27", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "ites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sleep carefully slyly pites sle" }, { "l_orderkey": 1955i32, "l_partkey": 137i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 32.0d, "l_extendedprice": 33188.16d, "l_discount": 0.02d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-07-05", "l_commitdate": "1992-06-29", "l_receiptdate": "1992-08-03", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "g to the carefully sile" }, { "l_orderkey": 2277i32, "l_partkey": 137i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 38.0d, "l_extendedprice": 39410.94d, "l_discount": 0.03d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-04-23", "l_commitdate": "1995-03-25", "l_receiptdate": "1995-05-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "fully bold" }, { "l_orderkey": 2309i32, "l_partkey": 137i32, "l_suppkey": 3i32, "l_linenumber": 5i32, "l_quantity": 9.0d, "l_extendedprice": 9334.17d, "l_discount": 0.0d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-21", "l_commitdate": "1995-10-10", "l_receiptdate": "1996-01-20", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "ding, unusual instructions. dep" }, { "l_orderkey": 2656i32, "l_partkey": 137i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 38.0d, "l_extendedprice": 39410.94d, "l_discount": 0.07d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-06-25", "l_commitdate": "1993-06-04", "l_receiptdate": "1993-07-24", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "structions wake along the furio" }, { "l_orderkey": 2661i32, "l_partkey": 137i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 41.0d, "l_extendedprice": 42522.33d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-06", "l_commitdate": "1997-03-27", "l_receiptdate": "1997-03-15", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "iously ironically ironic requests. " }, { "l_orderkey": 2753i32, "l_partkey": 137i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 36.0d, "l_extendedprice": 37336.68d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-03-15", "l_commitdate": "1994-01-03", "l_receiptdate": "1994-04-03", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "gle slyly final c" }, { "l_orderkey": 3111i32, "l_partkey": 137i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 22.0d, "l_extendedprice": 22816.86d, "l_discount": 0.06d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-21", "l_commitdate": "1995-11-09", "l_receiptdate": "1995-10-17", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "quests. regular dolphins against the " }, { "l_orderkey": 3429i32, "l_partkey": 137i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 48.0d, "l_extendedprice": 49782.24d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-08", "l_commitdate": "1997-03-09", "l_receiptdate": "1997-04-25", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": " haggle furiously ir" }, { "l_orderkey": 3524i32, "l_partkey": 137i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 5.0d, "l_extendedprice": 5185.65d, "l_discount": 0.01d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-05-23", "l_commitdate": "1992-07-25", "l_receiptdate": "1992-06-19", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "ts whithout the bold depende" }, { "l_orderkey": 3617i32, "l_partkey": 137i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 11.0d, "l_extendedprice": 11408.43d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-16", "l_commitdate": "1996-04-23", "l_receiptdate": "1996-07-28", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "ly quickly even requests. final" }, { "l_orderkey": 3652i32, "l_partkey": 137i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 37.0d, "l_extendedprice": 38373.81d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-11", "l_commitdate": "1997-04-06", "l_receiptdate": "1997-06-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "osits haggle carefu" }, { "l_orderkey": 3745i32, "l_partkey": 137i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 18.0d, "l_extendedprice": 18668.34d, "l_discount": 0.01d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-10-17", "l_commitdate": "1993-11-16", "l_receiptdate": "1993-11-13", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": " slyly bold pinto beans according to " }, { "l_orderkey": 3810i32, "l_partkey": 137i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 41.0d, "l_extendedprice": 42522.33d, "l_discount": 0.08d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-10-26", "l_commitdate": "1992-10-27", "l_receiptdate": "1992-11-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "l requests boost slyly along the slyl" }, { "l_orderkey": 3936i32, "l_partkey": 137i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 25.0d, "l_extendedprice": 25928.25d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-03", "l_commitdate": "1996-12-27", "l_receiptdate": "1997-01-01", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "gular requests nag quic" }, { "l_orderkey": 3940i32, "l_partkey": 137i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 11.0d, "l_extendedprice": 11408.43d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-09", "l_commitdate": "1996-05-13", "l_receiptdate": "1996-03-17", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "e of the special packages. furiously" }, { "l_orderkey": 4099i32, "l_partkey": 137i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 3.0d, "l_extendedprice": 3111.39d, "l_discount": 0.04d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-09-12", "l_commitdate": "1992-10-18", "l_receiptdate": "1992-10-01", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": ". special packages sleep" }, { "l_orderkey": 4102i32, "l_partkey": 137i32, "l_suppkey": 8i32, "l_linenumber": 6i32, "l_quantity": 7.0d, "l_extendedprice": 7259.91d, "l_discount": 0.02d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-19", "l_commitdate": "1996-05-21", "l_receiptdate": "1996-07-15", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "bove the carefully pending the" }, { "l_orderkey": 4290i32, "l_partkey": 137i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 23.0d, "l_extendedprice": 23853.99d, "l_discount": 0.06d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-04-04", "l_commitdate": "1995-02-16", "l_receiptdate": "1995-04-07", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "uests cajole carefully." }, { "l_orderkey": 4484i32, "l_partkey": 137i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 39.0d, "l_extendedprice": 40448.07d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-01", "l_commitdate": "1997-01-26", "l_receiptdate": "1997-04-21", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "onic accounts wake blithel" }, { "l_orderkey": 4612i32, "l_partkey": 137i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 40.0d, "l_extendedprice": 41485.2d, "l_discount": 0.08d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-10-08", "l_commitdate": "1993-11-23", "l_receiptdate": "1993-10-24", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "special platelets." }, { "l_orderkey": 4865i32, "l_partkey": 137i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 4.0d, "l_extendedprice": 4148.52d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-24", "l_commitdate": "1997-07-25", "l_receiptdate": "1997-08-07", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "sts. blithely special instruction" }, { "l_orderkey": 5635i32, "l_partkey": 137i32, "l_suppkey": 3i32, "l_linenumber": 7i32, "l_quantity": 32.0d, "l_extendedprice": 33188.16d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-11-24", "l_commitdate": "1992-09-20", "l_receiptdate": "1992-12-17", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "slyly even" }, { "l_orderkey": 5696i32, "l_partkey": 137i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 28.0d, "l_extendedprice": 29039.64d, "l_discount": 0.03d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-03", "l_commitdate": "1995-06-14", "l_receiptdate": "1995-07-27", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": " the fluffily brave pearls " }, { "l_orderkey": 5794i32, "l_partkey": 137i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 47.0d, "l_extendedprice": 48745.11d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-07-16", "l_commitdate": "1993-06-21", "l_receiptdate": "1993-08-05", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "quests. blithely final excu" } ] }
+{ "partkey": 138i32, "lines": [ { "l_orderkey": 33i32, "l_partkey": 138i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 5.0d, "l_extendedprice": 5190.65d, "l_discount": 0.05d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-12-09", "l_commitdate": "1993-12-25", "l_receiptdate": "1993-12-23", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": ". stealthily bold exc" }, { "l_orderkey": 69i32, "l_partkey": 138i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 17.0d, "l_extendedprice": 17648.21d, "l_discount": 0.09d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-07-02", "l_commitdate": "1994-07-07", "l_receiptdate": "1994-07-03", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "final, pending instr" }, { "l_orderkey": 226i32, "l_partkey": 138i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 46.0d, "l_extendedprice": 47753.98d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-07-06", "l_commitdate": "1993-04-24", "l_receiptdate": "1993-07-13", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "s. carefully bold accounts cajol" }, { "l_orderkey": 291i32, "l_partkey": 138i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 19.0d, "l_extendedprice": 19724.47d, "l_discount": 0.08d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-06-14", "l_commitdate": "1994-04-25", "l_receiptdate": "1994-06-19", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "e. ruthlessly final accounts after the" }, { "l_orderkey": 448i32, "l_partkey": 138i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 23.0d, "l_extendedprice": 23876.99d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-26", "l_commitdate": "1995-11-02", "l_receiptdate": "1995-10-17", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "ious, final gifts" }, { "l_orderkey": 482i32, "l_partkey": 138i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 32.0d, "l_extendedprice": 33220.16d, "l_discount": 0.0d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-22", "l_commitdate": "1996-05-14", "l_receiptdate": "1996-05-29", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "usual deposits affix against " }, { "l_orderkey": 576i32, "l_partkey": 138i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 5.0d, "l_extendedprice": 5190.65d, "l_discount": 0.03d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-11", "l_commitdate": "1997-06-17", "l_receiptdate": "1997-07-05", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "l foxes boost slyly. accounts af" }, { "l_orderkey": 1125i32, "l_partkey": 138i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 24.0d, "l_extendedprice": 24915.12d, "l_discount": 0.1d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-01-31", "l_commitdate": "1994-12-02", "l_receiptdate": "1995-02-20", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "es about the slyly s" }, { "l_orderkey": 1281i32, "l_partkey": 138i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 33.0d, "l_extendedprice": 34258.29d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-02-01", "l_commitdate": "1995-01-18", "l_receiptdate": "1995-03-03", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "dencies. thinly final pinto beans wake" }, { "l_orderkey": 1283i32, "l_partkey": 138i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 18.0d, "l_extendedprice": 18686.34d, "l_discount": 0.02d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-14", "l_commitdate": "1996-11-07", "l_receiptdate": "1996-10-22", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "equests use along the fluff" }, { "l_orderkey": 1889i32, "l_partkey": 138i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 36.0d, "l_extendedprice": 37372.68d, "l_discount": 0.05d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-19", "l_commitdate": "1997-06-14", "l_receiptdate": "1997-05-23", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "l pinto beans kindle " }, { "l_orderkey": 1991i32, "l_partkey": 138i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 6.0d, "l_extendedprice": 6228.78d, "l_discount": 0.1d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-11-21", "l_commitdate": "1992-11-03", "l_receiptdate": "1992-11-27", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "uickly blithely final de" }, { "l_orderkey": 2272i32, "l_partkey": 138i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 30.0d, "l_extendedprice": 31143.9d, "l_discount": 0.09d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-07-27", "l_commitdate": "1993-05-15", "l_receiptdate": "1993-08-13", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "quests at the foxes haggle evenly pack" }, { "l_orderkey": 2309i32, "l_partkey": 138i32, "l_suppkey": 4i32, "l_linenumber": 7i32, "l_quantity": 48.0d, "l_extendedprice": 49830.24d, "l_discount": 0.03d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-21", "l_commitdate": "1995-11-21", "l_receiptdate": "1995-11-09", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "ccounts. id" }, { "l_orderkey": 2340i32, "l_partkey": 138i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 9.0d, "l_extendedprice": 9343.17d, "l_discount": 0.08d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-01", "l_commitdate": "1996-02-24", "l_receiptdate": "1996-05-16", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": ". carefully ironic" }, { "l_orderkey": 2848i32, "l_partkey": 138i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 8.0d, "l_extendedprice": 8305.04d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-06-20", "l_commitdate": "1992-04-12", "l_receiptdate": "1992-07-09", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "sly regular foxes. " }, { "l_orderkey": 2951i32, "l_partkey": 138i32, "l_suppkey": 4i32, "l_linenumber": 6i32, "l_quantity": 18.0d, "l_extendedprice": 18686.34d, "l_discount": 0.06d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-04-04", "l_commitdate": "1996-04-27", "l_receiptdate": "1996-04-06", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "ep about the final, even package" }, { "l_orderkey": 3010i32, "l_partkey": 138i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 23.0d, "l_extendedprice": 23876.99d, "l_discount": 0.04d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-08", "l_commitdate": "1996-02-29", "l_receiptdate": "1996-03-27", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "ounts. pendin" }, { "l_orderkey": 3235i32, "l_partkey": 138i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 29.0d, "l_extendedprice": 30105.77d, "l_discount": 0.06d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-28", "l_commitdate": "1995-12-26", "l_receiptdate": "1996-02-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "e fluffy pinto bea" }, { "l_orderkey": 3329i32, "l_partkey": 138i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 36.0d, "l_extendedprice": 37372.68d, "l_discount": 0.09d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-06", "l_commitdate": "1995-08-03", "l_receiptdate": "1995-08-14", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "ts at the re" }, { "l_orderkey": 3362i32, "l_partkey": 138i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 36.0d, "l_extendedprice": 37372.68d, "l_discount": 0.06d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-05", "l_commitdate": "1995-08-28", "l_receiptdate": "1995-11-03", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "es against the quickly permanent pint" }, { "l_orderkey": 3396i32, "l_partkey": 138i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 9.0d, "l_extendedprice": 9343.17d, "l_discount": 0.01d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-07-01", "l_commitdate": "1994-08-18", "l_receiptdate": "1994-07-21", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "usly special foxes. accounts wake careful" }, { "l_orderkey": 3525i32, "l_partkey": 138i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 27.0d, "l_extendedprice": 28029.51d, "l_discount": 0.03d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-30", "l_commitdate": "1996-01-23", "l_receiptdate": "1996-01-02", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "y slyly special asymptotes" }, { "l_orderkey": 3616i32, "l_partkey": 138i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 28.0d, "l_extendedprice": 29067.64d, "l_discount": 0.08d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-02-20", "l_commitdate": "1994-04-18", "l_receiptdate": "1994-03-05", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "ironic packages. furiously ev" }, { "l_orderkey": 4007i32, "l_partkey": 138i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 15.0d, "l_extendedprice": 15571.95d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-09-01", "l_commitdate": "1993-07-19", "l_receiptdate": "1993-09-03", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "le furiously quickly " }, { "l_orderkey": 4065i32, "l_partkey": 138i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 14.0d, "l_extendedprice": 14533.82d, "l_discount": 0.04d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-08-22", "l_commitdate": "1994-07-29", "l_receiptdate": "1994-09-19", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "e furiously outside " }, { "l_orderkey": 4132i32, "l_partkey": 138i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 28.0d, "l_extendedprice": 29067.64d, "l_discount": 0.07d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-16", "l_commitdate": "1995-08-01", "l_receiptdate": "1995-08-29", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "pths wake against the stealthily special pi" }, { "l_orderkey": 4161i32, "l_partkey": 138i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 42.0d, "l_extendedprice": 43601.46d, "l_discount": 0.03d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-11-12", "l_commitdate": "1993-10-04", "l_receiptdate": "1993-11-27", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "thely across the even attainments. express" }, { "l_orderkey": 4487i32, "l_partkey": 138i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 37.0d, "l_extendedprice": 38410.81d, "l_discount": 0.03d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-02-28", "l_commitdate": "1993-04-18", "l_receiptdate": "1993-03-17", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "bove the fu" }, { "l_orderkey": 4513i32, "l_partkey": 138i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 34.0d, "l_extendedprice": 35296.42d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-27", "l_commitdate": "1996-06-12", "l_receiptdate": "1996-04-06", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "sits. quickly even instructions " }, { "l_orderkey": 4832i32, "l_partkey": 138i32, "l_suppkey": 4i32, "l_linenumber": 5i32, "l_quantity": 43.0d, "l_extendedprice": 44639.59d, "l_discount": 0.1d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-31", "l_commitdate": "1998-02-20", "l_receiptdate": "1998-01-26", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "oze according to the accou" }, { "l_orderkey": 4934i32, "l_partkey": 138i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 29.0d, "l_extendedprice": 30105.77d, "l_discount": 0.09d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-10", "l_commitdate": "1997-05-05", "l_receiptdate": "1997-05-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "aggle furiously among the busily final re" }, { "l_orderkey": 4965i32, "l_partkey": 138i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 33.0d, "l_extendedprice": 34258.29d, "l_discount": 0.04d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-12-31", "l_commitdate": "1993-11-29", "l_receiptdate": "1994-01-27", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "iously slyly" }, { "l_orderkey": 5157i32, "l_partkey": 138i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 18.0d, "l_extendedprice": 18686.34d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-06", "l_commitdate": "1997-10-03", "l_receiptdate": "1997-09-19", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "y bold deposits nag blithely. final reque" }, { "l_orderkey": 5189i32, "l_partkey": 138i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 44.0d, "l_extendedprice": 45677.72d, "l_discount": 0.02d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-01-13", "l_commitdate": "1994-02-07", "l_receiptdate": "1994-01-21", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "y finally pendin" }, { "l_orderkey": 5248i32, "l_partkey": 138i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 45.0d, "l_extendedprice": 46715.85d, "l_discount": 0.0d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-05-09", "l_commitdate": "1995-07-12", "l_receiptdate": "1995-05-27", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": ". bold, pending foxes h" }, { "l_orderkey": 5286i32, "l_partkey": 138i32, "l_suppkey": 9i32, "l_linenumber": 6i32, "l_quantity": 24.0d, "l_extendedprice": 24915.12d, "l_discount": 0.08d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-27", "l_commitdate": "1997-12-21", "l_receiptdate": "1997-09-30", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "s. express foxes of the" }, { "l_orderkey": 5479i32, "l_partkey": 138i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 50.0d, "l_extendedprice": 51906.5d, "l_discount": 0.02d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-12-24", "l_commitdate": "1994-02-14", "l_receiptdate": "1994-01-18", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "ironic gifts. even dependencies sno" }, { "l_orderkey": 5507i32, "l_partkey": 138i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 48.0d, "l_extendedprice": 49830.24d, "l_discount": 0.03d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-03", "l_commitdate": "1998-08-10", "l_receiptdate": "1998-08-24", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "yly idle deposits. final, final fox" }, { "l_orderkey": 5573i32, "l_partkey": 138i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 43.0d, "l_extendedprice": 44639.59d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-09", "l_commitdate": "1996-09-24", "l_receiptdate": "1996-09-28", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": " bold package" }, { "l_orderkey": 5638i32, "l_partkey": 138i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 45.0d, "l_extendedprice": 46715.85d, "l_discount": 0.09d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-05-17", "l_commitdate": "1994-03-09", "l_receiptdate": "1994-06-15", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "ar foxes. fluffily pending accounts " }, { "l_orderkey": 5664i32, "l_partkey": 138i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 33.0d, "l_extendedprice": 34258.29d, "l_discount": 0.08d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-29", "l_commitdate": "1998-09-17", "l_receiptdate": "1998-09-25", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "d the final " } ] }
+{ "partkey": 139i32, "lines": [ { "l_orderkey": 101i32, "l_partkey": 139i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 12.0d, "l_extendedprice": 12469.56d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-29", "l_commitdate": "1996-04-20", "l_receiptdate": "1996-04-12", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": ". quickly regular" }, { "l_orderkey": 544i32, "l_partkey": 139i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 47.0d, "l_extendedprice": 48839.11d, "l_discount": 0.08d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-03-14", "l_commitdate": "1993-03-27", "l_receiptdate": "1993-03-27", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "ecial pains. deposits grow foxes. " }, { "l_orderkey": 710i32, "l_partkey": 139i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 7.0d, "l_extendedprice": 7273.91d, "l_discount": 0.04d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-01-20", "l_commitdate": "1993-03-28", "l_receiptdate": "1993-02-15", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "xpress, special ideas. bl" }, { "l_orderkey": 867i32, "l_partkey": 139i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 7.0d, "l_extendedprice": 7273.91d, "l_discount": 0.04d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-02-19", "l_commitdate": "1993-12-25", "l_receiptdate": "1994-02-25", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "pendencies-- slyly unusual packages hagg" }, { "l_orderkey": 1059i32, "l_partkey": 139i32, "l_suppkey": 5i32, "l_linenumber": 5i32, "l_quantity": 37.0d, "l_extendedprice": 38447.81d, "l_discount": 0.09d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-03-31", "l_commitdate": "1994-05-08", "l_receiptdate": "1994-04-06", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": " packages lose in place of the slyly unusu" }, { "l_orderkey": 1696i32, "l_partkey": 139i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 13.0d, "l_extendedprice": 13508.69d, "l_discount": 0.08d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-01", "l_commitdate": "1998-03-25", "l_receiptdate": "1998-03-24", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "tructions play slyly q" }, { "l_orderkey": 1731i32, "l_partkey": 139i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 7.0d, "l_extendedprice": 7273.91d, "l_discount": 0.04d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-04-11", "l_commitdate": "1996-02-13", "l_receiptdate": "1996-04-30", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "fily quick asymptotes" }, { "l_orderkey": 1735i32, "l_partkey": 139i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 49.0d, "l_extendedprice": 50917.37d, "l_discount": 0.03d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-12-31", "l_commitdate": "1993-02-03", "l_receiptdate": "1993-01-25", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "y express accounts above the exp" }, { "l_orderkey": 1956i32, "l_partkey": 139i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 39.0d, "l_extendedprice": 40526.07d, "l_discount": 0.08d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-09-24", "l_commitdate": "1992-11-26", "l_receiptdate": "1992-10-15", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "r theodolites sleep above the b" }, { "l_orderkey": 2177i32, "l_partkey": 139i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 27.0d, "l_extendedprice": 28056.51d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-29", "l_commitdate": "1997-03-20", "l_receiptdate": "1997-02-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "even, regula" }, { "l_orderkey": 2179i32, "l_partkey": 139i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 20.0d, "l_extendedprice": 20782.6d, "l_discount": 0.03d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-30", "l_commitdate": "1996-11-10", "l_receiptdate": "1996-10-30", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "ncies. fin" }, { "l_orderkey": 2309i32, "l_partkey": 139i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 46.0d, "l_extendedprice": 47799.98d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-02", "l_commitdate": "1995-10-30", "l_receiptdate": "1995-10-30", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "sly according to the carefully " }, { "l_orderkey": 2534i32, "l_partkey": 139i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 29.0d, "l_extendedprice": 30134.77d, "l_discount": 0.07d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-09", "l_commitdate": "1996-09-29", "l_receiptdate": "1996-08-11", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "ugouts haggle slyly. final" }, { "l_orderkey": 2596i32, "l_partkey": 139i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 43.0d, "l_extendedprice": 44682.59d, "l_discount": 0.07d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-03", "l_commitdate": "1996-10-26", "l_receiptdate": "1996-09-15", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "ial packages haggl" }, { "l_orderkey": 2823i32, "l_partkey": 139i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 48.0d, "l_extendedprice": 49878.24d, "l_discount": 0.09d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-21", "l_commitdate": "1995-10-30", "l_receiptdate": "1995-11-27", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "ously busily slow excus" }, { "l_orderkey": 2853i32, "l_partkey": 139i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 14.0d, "l_extendedprice": 14547.82d, "l_discount": 0.07d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-05-16", "l_commitdate": "1994-07-01", "l_receiptdate": "1994-05-27", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "oach slyly along t" }, { "l_orderkey": 2880i32, "l_partkey": 139i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 26.0d, "l_extendedprice": 27017.38d, "l_discount": 0.07d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-04-12", "l_commitdate": "1992-04-15", "l_receiptdate": "1992-04-28", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "ully among the regular warthogs" }, { "l_orderkey": 3013i32, "l_partkey": 139i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 30.0d, "l_extendedprice": 31173.9d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-02", "l_commitdate": "1997-03-09", "l_receiptdate": "1997-05-12", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "ronic packages. slyly even" }, { "l_orderkey": 3074i32, "l_partkey": 139i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 39.0d, "l_extendedprice": 40526.07d, "l_discount": 0.03d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-12-08", "l_commitdate": "1993-01-28", "l_receiptdate": "1992-12-09", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "iously throu" }, { "l_orderkey": 3171i32, "l_partkey": 139i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 50.0d, "l_extendedprice": 51956.5d, "l_discount": 0.01d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-07-19", "l_commitdate": "1993-05-15", "l_receiptdate": "1993-07-31", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "riously final foxes about the ca" }, { "l_orderkey": 3328i32, "l_partkey": 139i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 44.0d, "l_extendedprice": 45721.72d, "l_discount": 0.05d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-12-03", "l_commitdate": "1992-12-19", "l_receiptdate": "1992-12-09", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "dly quickly final foxes? re" }, { "l_orderkey": 3427i32, "l_partkey": 139i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 40.0d, "l_extendedprice": 41565.2d, "l_discount": 0.06d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-12", "l_commitdate": "1997-08-19", "l_receiptdate": "1997-06-23", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "patterns cajole ca" }, { "l_orderkey": 3747i32, "l_partkey": 139i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 30.0d, "l_extendedprice": 31173.9d, "l_discount": 0.0d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-16", "l_commitdate": "1996-11-15", "l_receiptdate": "1996-12-17", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "! furiously f" }, { "l_orderkey": 3910i32, "l_partkey": 139i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 10.0d, "l_extendedprice": 10391.3d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-18", "l_commitdate": "1996-10-31", "l_receiptdate": "1996-11-14", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "tions boost furiously unusual e" }, { "l_orderkey": 4066i32, "l_partkey": 139i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 9.0d, "l_extendedprice": 9352.17d, "l_discount": 0.01d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-06", "l_commitdate": "1997-03-25", "l_receiptdate": "1997-05-27", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "nal, ironic accounts. blithel" }, { "l_orderkey": 4099i32, "l_partkey": 139i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 7.0d, "l_extendedprice": 7273.91d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-09-12", "l_commitdate": "1992-11-13", "l_receiptdate": "1992-09-14", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "onic foxes. quickly final fox" }, { "l_orderkey": 4354i32, "l_partkey": 139i32, "l_suppkey": 5i32, "l_linenumber": 7i32, "l_quantity": 18.0d, "l_extendedprice": 18704.34d, "l_discount": 0.03d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-12-07", "l_commitdate": "1994-12-11", "l_receiptdate": "1994-12-11", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "ross the furiously " }, { "l_orderkey": 4578i32, "l_partkey": 139i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 7.0d, "l_extendedprice": 7273.91d, "l_discount": 0.09d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-12-07", "l_commitdate": "1992-11-27", "l_receiptdate": "1993-01-05", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "odolites. carefully unusual ideas accor" }, { "l_orderkey": 4647i32, "l_partkey": 139i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 2.0d, "l_extendedprice": 2078.26d, "l_discount": 0.04d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-07-03", "l_commitdate": "1994-07-22", "l_receiptdate": "1994-07-22", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "dolites wake furiously special pinto be" }, { "l_orderkey": 4992i32, "l_partkey": 139i32, "l_suppkey": 5i32, "l_linenumber": 5i32, "l_quantity": 23.0d, "l_extendedprice": 23899.99d, "l_discount": 0.01d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-06-28", "l_commitdate": "1992-07-15", "l_receiptdate": "1992-07-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "uickly regul" }, { "l_orderkey": 5251i32, "l_partkey": 139i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 36.0d, "l_extendedprice": 37408.68d, "l_discount": 0.1d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-16", "l_commitdate": "1995-07-05", "l_receiptdate": "1995-07-28", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "slowly! bli" }, { "l_orderkey": 5252i32, "l_partkey": 139i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 39.0d, "l_extendedprice": 40526.07d, "l_discount": 0.06d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-17", "l_commitdate": "1996-04-23", "l_receiptdate": "1996-05-23", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "gular requests." }, { "l_orderkey": 5732i32, "l_partkey": 139i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 26.0d, "l_extendedprice": 27017.38d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-18", "l_commitdate": "1997-10-25", "l_receiptdate": "1997-09-12", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "totes cajole according to the theodolites." }, { "l_orderkey": 5765i32, "l_partkey": 139i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 31.0d, "l_extendedprice": 32213.03d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-03-01", "l_commitdate": "1995-01-23", "l_receiptdate": "1995-03-31", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "the furiou" } ] }
+{ "partkey": 140i32, "lines": [ { "l_orderkey": 6i32, "l_partkey": 140i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 37.0d, "l_extendedprice": 38485.18d, "l_discount": 0.08d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-04-27", "l_commitdate": "1992-05-15", "l_receiptdate": "1992-05-02", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "p furiously special foxes" }, { "l_orderkey": 68i32, "l_partkey": 140i32, "l_suppkey": 6i32, "l_linenumber": 7i32, "l_quantity": 41.0d, "l_extendedprice": 42645.74d, "l_discount": 0.09d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-24", "l_commitdate": "1998-06-27", "l_receiptdate": "1998-07-06", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "eposits nag special ideas. furiousl" }, { "l_orderkey": 165i32, "l_partkey": 140i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 49.0d, "l_extendedprice": 50966.86d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-02-20", "l_commitdate": "1993-04-02", "l_receiptdate": "1993-03-10", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "uses sleep slyly ruthlessly regular a" }, { "l_orderkey": 1058i32, "l_partkey": 140i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 24.0d, "l_extendedprice": 24963.36d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-07-09", "l_commitdate": "1993-05-28", "l_receiptdate": "1993-07-22", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "fully ironic accounts. express accou" }, { "l_orderkey": 1155i32, "l_partkey": 140i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 12.0d, "l_extendedprice": 12481.68d, "l_discount": 0.01d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-11-01", "l_commitdate": "1998-01-03", "l_receiptdate": "1997-11-19", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "packages do" }, { "l_orderkey": 1218i32, "l_partkey": 140i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 16.0d, "l_extendedprice": 16642.24d, "l_discount": 0.04d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-06-26", "l_commitdate": "1994-08-07", "l_receiptdate": "1994-06-30", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "ven realms be" }, { "l_orderkey": 1537i32, "l_partkey": 140i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 3.0d, "l_extendedprice": 3120.42d, "l_discount": 0.08d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-03-20", "l_commitdate": "1992-04-14", "l_receiptdate": "1992-03-21", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "s, final ideas detect sl" }, { "l_orderkey": 1700i32, "l_partkey": 140i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 38.0d, "l_extendedprice": 39525.32d, "l_discount": 0.04d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-03", "l_commitdate": "1996-07-27", "l_receiptdate": "1996-10-22", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly ular dependencies engage slyly u" }, { "l_orderkey": 1921i32, "l_partkey": 140i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 21.0d, "l_extendedprice": 21842.94d, "l_discount": 0.02d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-02-08", "l_commitdate": "1994-03-28", "l_receiptdate": "1994-02-15", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "ckly regula" }, { "l_orderkey": 2116i32, "l_partkey": 140i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 47.0d, "l_extendedprice": 48886.58d, "l_discount": 0.1d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-09-01", "l_commitdate": "1994-11-18", "l_receiptdate": "1994-09-25", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "iously ironic dependencies around the iro" }, { "l_orderkey": 2211i32, "l_partkey": 140i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 40.0d, "l_extendedprice": 41605.6d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-09-30", "l_commitdate": "1994-09-10", "l_receiptdate": "1994-10-26", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "posits among the express dolphins" }, { "l_orderkey": 2307i32, "l_partkey": 140i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 2.0d, "l_extendedprice": 2080.28d, "l_discount": 0.01d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-09-21", "l_commitdate": "1993-08-22", "l_receiptdate": "1993-10-03", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "ously. furiously furious requ" }, { "l_orderkey": 2690i32, "l_partkey": 140i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 44.0d, "l_extendedprice": 45766.16d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-30", "l_commitdate": "1996-05-19", "l_receiptdate": "1996-06-26", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "ly alongside of th" }, { "l_orderkey": 2757i32, "l_partkey": 140i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 25.0d, "l_extendedprice": 26003.5d, "l_discount": 0.08d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-09", "l_commitdate": "1995-09-12", "l_receiptdate": "1995-11-23", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "uickly regular " }, { "l_orderkey": 2881i32, "l_partkey": 140i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 7.0d, "l_extendedprice": 7280.98d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-08-03", "l_commitdate": "1992-07-10", "l_receiptdate": "1992-08-27", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "ironic packages are carefully final ac" }, { "l_orderkey": 3110i32, "l_partkey": 140i32, "l_suppkey": 6i32, "l_linenumber": 5i32, "l_quantity": 39.0d, "l_extendedprice": 40565.46d, "l_discount": 0.09d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-02-09", "l_commitdate": "1995-01-21", "l_receiptdate": "1995-02-21", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "side of the blithely unusual courts. slyly " }, { "l_orderkey": 3296i32, "l_partkey": 140i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 47.0d, "l_extendedprice": 48886.58d, "l_discount": 0.06d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-11-08", "l_commitdate": "1994-12-20", "l_receiptdate": "1994-11-30", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "egular deposits. quic" }, { "l_orderkey": 3335i32, "l_partkey": 140i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 16.0d, "l_extendedprice": 16642.24d, "l_discount": 0.01d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-18", "l_commitdate": "1995-12-08", "l_receiptdate": "1995-11-03", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "g packages. carefully regular reque" }, { "l_orderkey": 3618i32, "l_partkey": 140i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 38.0d, "l_extendedprice": 39525.32d, "l_discount": 0.08d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-22", "l_commitdate": "1998-02-23", "l_receiptdate": "1998-01-03", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "nts haggle fluffily above the regular " }, { "l_orderkey": 3623i32, "l_partkey": 140i32, "l_suppkey": 6i32, "l_linenumber": 7i32, "l_quantity": 13.0d, "l_extendedprice": 13521.82d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-02", "l_commitdate": "1997-02-26", "l_receiptdate": "1997-01-26", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "deas. furiously expres" }, { "l_orderkey": 3872i32, "l_partkey": 140i32, "l_suppkey": 6i32, "l_linenumber": 6i32, "l_quantity": 40.0d, "l_extendedprice": 41605.6d, "l_discount": 0.07d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-02", "l_commitdate": "1996-10-29", "l_receiptdate": "1997-01-14", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "nts? regularly ironic ex" }, { "l_orderkey": 3873i32, "l_partkey": 140i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 29.0d, "l_extendedprice": 30164.06d, "l_discount": 0.01d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-22", "l_commitdate": "1998-05-20", "l_receiptdate": "1998-07-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "olphins af" }, { "l_orderkey": 3876i32, "l_partkey": 140i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 37.0d, "l_extendedprice": 38485.18d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-30", "l_commitdate": "1996-10-18", "l_receiptdate": "1996-12-18", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "t dependencies. blithely final packages u" }, { "l_orderkey": 4102i32, "l_partkey": 140i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 39.0d, "l_extendedprice": 40565.46d, "l_discount": 0.02d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-15", "l_commitdate": "1996-06-06", "l_receiptdate": "1996-06-30", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "y among the furiously special" }, { "l_orderkey": 4320i32, "l_partkey": 140i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 6.0d, "l_extendedprice": 6240.84d, "l_discount": 0.08d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-11", "l_commitdate": "1997-01-26", "l_receiptdate": "1997-01-22", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "against the carefully careful asym" }, { "l_orderkey": 4322i32, "l_partkey": 140i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 9.0d, "l_extendedprice": 9361.26d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-18", "l_commitdate": "1998-04-27", "l_receiptdate": "1998-05-28", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "ual instructio" }, { "l_orderkey": 4386i32, "l_partkey": 140i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 4.0d, "l_extendedprice": 4160.56d, "l_discount": 0.07d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-07", "l_commitdate": "1998-03-25", "l_receiptdate": "1998-04-19", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "ns wake carefully carefully iron" }, { "l_orderkey": 4871i32, "l_partkey": 140i32, "l_suppkey": 6i32, "l_linenumber": 7i32, "l_quantity": 10.0d, "l_extendedprice": 10401.4d, "l_discount": 0.1d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-13", "l_commitdate": "1995-08-19", "l_receiptdate": "1995-07-29", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "p ironic theodolites. slyly even platel" }, { "l_orderkey": 4896i32, "l_partkey": 140i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 44.0d, "l_extendedprice": 45766.16d, "l_discount": 0.04d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-11-24", "l_commitdate": "1992-11-15", "l_receiptdate": "1992-12-18", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "e after the slowly f" }, { "l_orderkey": 4934i32, "l_partkey": 140i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 8.0d, "l_extendedprice": 8321.12d, "l_discount": 0.03d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-20", "l_commitdate": "1997-04-30", "l_receiptdate": "1997-05-27", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "arefully express pains cajo" }, { "l_orderkey": 5092i32, "l_partkey": 140i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 13.0d, "l_extendedprice": 13521.82d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-21", "l_commitdate": "1996-01-05", "l_receiptdate": "1995-12-19", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "es detect sly" }, { "l_orderkey": 5506i32, "l_partkey": 140i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 2.0d, "l_extendedprice": 2080.28d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-02-04", "l_commitdate": "1994-01-13", "l_receiptdate": "1994-02-17", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "onic theodolites are fluffil" }, { "l_orderkey": 5669i32, "l_partkey": 140i32, "l_suppkey": 6i32, "l_linenumber": 5i32, "l_quantity": 30.0d, "l_extendedprice": 31204.2d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-14", "l_commitdate": "1996-07-28", "l_receiptdate": "1996-08-10", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "l accounts. care" }, { "l_orderkey": 5698i32, "l_partkey": 140i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 37.0d, "l_extendedprice": 38485.18d, "l_discount": 0.06d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-06-30", "l_commitdate": "1994-06-23", "l_receiptdate": "1994-07-22", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "ts. even, ironic " }, { "l_orderkey": 5955i32, "l_partkey": 140i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 14.0d, "l_extendedprice": 14561.96d, "l_discount": 0.08d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-06-22", "l_commitdate": "1995-05-23", "l_receiptdate": "1995-06-24", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": " unusual, bold theodolit" } ] }
+{ "partkey": 141i32, "lines": [ { "l_orderkey": 132i32, "l_partkey": 141i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 18.0d, "l_extendedprice": 18740.52d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-07-10", "l_commitdate": "1993-08-05", "l_receiptdate": "1993-07-13", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "ges. platelets wake furio" }, { "l_orderkey": 321i32, "l_partkey": 141i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 41.0d, "l_extendedprice": 42686.74d, "l_discount": 0.08d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-06-21", "l_commitdate": "1993-06-07", "l_receiptdate": "1993-07-09", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "special packages shall have to doze blit" }, { "l_orderkey": 582i32, "l_partkey": 141i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 42.0d, "l_extendedprice": 43727.88d, "l_discount": 0.07d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-11-15", "l_commitdate": "1997-12-21", "l_receiptdate": "1997-12-03", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "iously beside the silent de" }, { "l_orderkey": 738i32, "l_partkey": 141i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 12.0d, "l_extendedprice": 12493.68d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-06-16", "l_commitdate": "1993-05-05", "l_receiptdate": "1993-06-22", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "ove the slyly regular p" }, { "l_orderkey": 836i32, "l_partkey": 141i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 46.0d, "l_extendedprice": 47892.44d, "l_discount": 0.05d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-21", "l_commitdate": "1997-02-06", "l_receiptdate": "1997-04-05", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "boldly final pinto beans haggle furiously" }, { "l_orderkey": 1089i32, "l_partkey": 141i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 1.0d, "l_extendedprice": 1041.14d, "l_discount": 0.01d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-08", "l_commitdate": "1996-07-07", "l_receiptdate": "1996-07-17", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "n courts among the caref" }, { "l_orderkey": 1344i32, "l_partkey": 141i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 15.0d, "l_extendedprice": 15617.1d, "l_discount": 0.1d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-06-22", "l_commitdate": "1992-06-24", "l_receiptdate": "1992-06-23", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "rding to the blithely ironic theodolite" }, { "l_orderkey": 1380i32, "l_partkey": 141i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 40.0d, "l_extendedprice": 41645.6d, "l_discount": 0.02d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-01", "l_commitdate": "1996-08-14", "l_receiptdate": "1996-10-20", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "ly final frets. ironic," }, { "l_orderkey": 1604i32, "l_partkey": 141i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 37.0d, "l_extendedprice": 38522.18d, "l_discount": 0.06d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-08-22", "l_commitdate": "1993-09-21", "l_receiptdate": "1993-09-10", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "requests. blithely ironic somas s" }, { "l_orderkey": 1664i32, "l_partkey": 141i32, "l_suppkey": 8i32, "l_linenumber": 6i32, "l_quantity": 40.0d, "l_extendedprice": 41645.6d, "l_discount": 0.09d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-04-02", "l_commitdate": "1996-04-22", "l_receiptdate": "1996-04-17", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "se blithely unusual pains. carefully" }, { "l_orderkey": 1730i32, "l_partkey": 141i32, "l_suppkey": 4i32, "l_linenumber": 5i32, "l_quantity": 43.0d, "l_extendedprice": 44769.02d, "l_discount": 0.04d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-10-26", "l_commitdate": "1998-10-22", "l_receiptdate": "1998-11-02", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "ng deposits cajo" }, { "l_orderkey": 1890i32, "l_partkey": 141i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 26.0d, "l_extendedprice": 27069.64d, "l_discount": 0.03d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-02", "l_commitdate": "1997-03-13", "l_receiptdate": "1997-04-22", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "ngage. slyly ironic " }, { "l_orderkey": 2086i32, "l_partkey": 141i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 32.0d, "l_extendedprice": 33316.48d, "l_discount": 0.04d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-11-15", "l_commitdate": "1995-01-05", "l_receiptdate": "1994-12-09", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "e carefully along th" }, { "l_orderkey": 2311i32, "l_partkey": 141i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 18.0d, "l_extendedprice": 18740.52d, "l_discount": 0.01d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "F", "l_shipdate": "1995-06-11", "l_commitdate": "1995-06-18", "l_receiptdate": "1995-07-02", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": " fluffily even patterns haggle blithely. re" }, { "l_orderkey": 2373i32, "l_partkey": 141i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 29.0d, "l_extendedprice": 30193.06d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-06-01", "l_commitdate": "1994-05-14", "l_receiptdate": "1994-06-17", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "yly silent ideas affix furiousl" }, { "l_orderkey": 2496i32, "l_partkey": 141i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 38.0d, "l_extendedprice": 39563.32d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-03-26", "l_commitdate": "1994-04-06", "l_receiptdate": "1994-04-23", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": " bold accounts. furi" }, { "l_orderkey": 2565i32, "l_partkey": 141i32, "l_suppkey": 4i32, "l_linenumber": 6i32, "l_quantity": 48.0d, "l_extendedprice": 49974.72d, "l_discount": 0.08d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-18", "l_commitdate": "1998-05-06", "l_receiptdate": "1998-07-13", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "r instructions sleep qui" }, { "l_orderkey": 2820i32, "l_partkey": 141i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 38.0d, "l_extendedprice": 39563.32d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-09-10", "l_commitdate": "1994-08-07", "l_receiptdate": "1994-10-07", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "ests despite the carefully unusual a" }, { "l_orderkey": 3264i32, "l_partkey": 141i32, "l_suppkey": 2i32, "l_linenumber": 6i32, "l_quantity": 43.0d, "l_extendedprice": 44769.02d, "l_discount": 0.06d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-17", "l_commitdate": "1997-01-24", "l_receiptdate": "1997-02-01", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "leep at the blithely bold" }, { "l_orderkey": 3367i32, "l_partkey": 141i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 34.0d, "l_extendedprice": 35398.76d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-03-30", "l_commitdate": "1993-02-23", "l_receiptdate": "1993-04-11", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": " accounts wake slyly " }, { "l_orderkey": 3712i32, "l_partkey": 141i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 27.0d, "l_extendedprice": 28110.78d, "l_discount": 0.01d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-02-01", "l_commitdate": "1992-02-26", "l_receiptdate": "1992-03-02", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "ctions. even accounts haggle alongside " }, { "l_orderkey": 3747i32, "l_partkey": 141i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 42.0d, "l_extendedprice": 43727.88d, "l_discount": 0.05d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-10", "l_commitdate": "1996-10-19", "l_receiptdate": "1996-11-19", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "y. blithely fina" }, { "l_orderkey": 3751i32, "l_partkey": 141i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 32.0d, "l_extendedprice": 33316.48d, "l_discount": 0.03d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-05-05", "l_commitdate": "1994-07-02", "l_receiptdate": "1994-06-02", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "rthogs could have to slee" }, { "l_orderkey": 3776i32, "l_partkey": 141i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 49.0d, "l_extendedprice": 51015.86d, "l_discount": 0.01d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-12-03", "l_commitdate": "1993-02-16", "l_receiptdate": "1992-12-28", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "equests. final, thin grouches " }, { "l_orderkey": 3876i32, "l_partkey": 141i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 12.0d, "l_extendedprice": 12493.68d, "l_discount": 0.06d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-16", "l_commitdate": "1996-10-23", "l_receiptdate": "1996-10-05", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "y above the pending tithes. blithely ironi" }, { "l_orderkey": 4067i32, "l_partkey": 141i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 17.0d, "l_extendedprice": 17699.38d, "l_discount": 0.03d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-01-26", "l_commitdate": "1992-11-23", "l_receiptdate": "1993-01-27", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "ts haggle slyly unusual, final" }, { "l_orderkey": 4166i32, "l_partkey": 141i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 8.0d, "l_extendedprice": 8329.12d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-06-05", "l_commitdate": "1993-04-10", "l_receiptdate": "1993-07-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "uickly. blithely pending de" }, { "l_orderkey": 4228i32, "l_partkey": 141i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 20.0d, "l_extendedprice": 20822.8d, "l_discount": 0.0d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-24", "l_commitdate": "1997-05-29", "l_receiptdate": "1997-05-17", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "f the slyly fluffy pinto beans are" }, { "l_orderkey": 4448i32, "l_partkey": 141i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 3.0d, "l_extendedprice": 3123.42d, "l_discount": 0.01d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-20", "l_commitdate": "1998-07-10", "l_receiptdate": "1998-08-07", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "ronic theod" }, { "l_orderkey": 4449i32, "l_partkey": 141i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 10.0d, "l_extendedprice": 10411.4d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-09", "l_commitdate": "1998-05-04", "l_receiptdate": "1998-05-15", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "ccounts alongside of the platelets integr" }, { "l_orderkey": 4485i32, "l_partkey": 141i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 46.0d, "l_extendedprice": 47892.44d, "l_discount": 0.04d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-03-09", "l_commitdate": "1994-12-14", "l_receiptdate": "1995-03-23", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": ". ironic foxes haggle. regular war" }, { "l_orderkey": 4512i32, "l_partkey": 141i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 32.0d, "l_extendedprice": 33316.48d, "l_discount": 0.1d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-25", "l_commitdate": "1995-12-28", "l_receiptdate": "1995-12-06", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "counts are against the quickly regular " }, { "l_orderkey": 4583i32, "l_partkey": 141i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 17.0d, "l_extendedprice": 17699.38d, "l_discount": 0.01d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-11-08", "l_commitdate": "1994-11-03", "l_receiptdate": "1994-11-29", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "romise. reques" }, { "l_orderkey": 4672i32, "l_partkey": 141i32, "l_suppkey": 8i32, "l_linenumber": 6i32, "l_quantity": 20.0d, "l_extendedprice": 20822.8d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-08", "l_commitdate": "1996-01-25", "l_receiptdate": "1995-12-19", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "s boost at the ca" }, { "l_orderkey": 4901i32, "l_partkey": 141i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 37.0d, "l_extendedprice": 38522.18d, "l_discount": 0.0d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-26", "l_commitdate": "1998-02-20", "l_receiptdate": "1998-01-31", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": " furiously ev" }, { "l_orderkey": 5252i32, "l_partkey": 141i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 13.0d, "l_extendedprice": 13534.82d, "l_discount": 0.02d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-02", "l_commitdate": "1996-05-10", "l_receiptdate": "1996-03-11", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "boost fluffily across " }, { "l_orderkey": 5409i32, "l_partkey": 141i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 17.0d, "l_extendedprice": 17699.38d, "l_discount": 0.07d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-01-13", "l_commitdate": "1992-04-05", "l_receiptdate": "1992-01-20", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "cross the sil" }, { "l_orderkey": 5536i32, "l_partkey": 141i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 11.0d, "l_extendedprice": 11452.54d, "l_discount": 0.02d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-18", "l_commitdate": "1998-05-12", "l_receiptdate": "1998-03-28", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": " snooze furio" } ] }
+{ "partkey": 142i32, "lines": [ { "l_orderkey": 192i32, "l_partkey": 142i32, "l_suppkey": 9i32, "l_linenumber": 6i32, "l_quantity": 45.0d, "l_extendedprice": 46896.3d, "l_discount": 0.0d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-11", "l_commitdate": "1998-01-09", "l_receiptdate": "1998-04-03", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "equests. ideas sleep idea" }, { "l_orderkey": 225i32, "l_partkey": 142i32, "l_suppkey": 1i32, "l_linenumber": 7i32, "l_quantity": 44.0d, "l_extendedprice": 45854.16d, "l_discount": 0.1d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-22", "l_commitdate": "1995-08-16", "l_receiptdate": "1995-10-22", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "leep slyly " }, { "l_orderkey": 390i32, "l_partkey": 142i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 42.0d, "l_extendedprice": 43769.88d, "l_discount": 0.01d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-06", "l_commitdate": "1998-06-22", "l_receiptdate": "1998-07-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "counts nag across the sly, sil" }, { "l_orderkey": 583i32, "l_partkey": 142i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 33.0d, "l_extendedprice": 34390.62d, "l_discount": 0.1d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-28", "l_commitdate": "1997-04-25", "l_receiptdate": "1997-06-24", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "kages cajole slyly across the" }, { "l_orderkey": 998i32, "l_partkey": 142i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 30.0d, "l_extendedprice": 31264.2d, "l_discount": 0.05d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-12-02", "l_commitdate": "1995-01-23", "l_receiptdate": "1994-12-23", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "lyly idle Tir" }, { "l_orderkey": 1153i32, "l_partkey": 142i32, "l_suppkey": 5i32, "l_linenumber": 5i32, "l_quantity": 45.0d, "l_extendedprice": 46896.3d, "l_discount": 0.0d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-18", "l_commitdate": "1996-06-20", "l_receiptdate": "1996-07-03", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "oss the ex" }, { "l_orderkey": 1605i32, "l_partkey": 142i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 47.0d, "l_extendedprice": 48980.58d, "l_discount": 0.0d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-29", "l_commitdate": "1998-06-12", "l_receiptdate": "1998-05-20", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": ". carefully r" }, { "l_orderkey": 1632i32, "l_partkey": 142i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 43.0d, "l_extendedprice": 44812.02d, "l_discount": 0.1d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-24", "l_commitdate": "1997-02-19", "l_receiptdate": "1997-03-25", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "ts. blithe, bold ideas cajo" }, { "l_orderkey": 1952i32, "l_partkey": 142i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 6.0d, "l_extendedprice": 6252.84d, "l_discount": 0.06d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-05-09", "l_commitdate": "1994-05-21", "l_receiptdate": "1994-05-26", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "packages haggle. " }, { "l_orderkey": 2081i32, "l_partkey": 142i32, "l_suppkey": 9i32, "l_linenumber": 6i32, "l_quantity": 31.0d, "l_extendedprice": 32306.34d, "l_discount": 0.03d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-19", "l_commitdate": "1997-09-13", "l_receiptdate": "1997-09-27", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": " silent, spe" }, { "l_orderkey": 2241i32, "l_partkey": 142i32, "l_suppkey": 3i32, "l_linenumber": 7i32, "l_quantity": 9.0d, "l_extendedprice": 9379.26d, "l_discount": 0.09d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-05-14", "l_commitdate": "1993-07-12", "l_receiptdate": "1993-05-29", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "lyly final " }, { "l_orderkey": 2306i32, "l_partkey": 142i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 42.0d, "l_extendedprice": 43769.88d, "l_discount": 0.04d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-05", "l_commitdate": "1995-08-25", "l_receiptdate": "1995-09-28", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "furiously final acco" }, { "l_orderkey": 2307i32, "l_partkey": 142i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 24.0d, "l_extendedprice": 25011.36d, "l_discount": 0.1d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-10-07", "l_commitdate": "1993-08-05", "l_receiptdate": "1993-10-20", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "stealthily special packages nag a" }, { "l_orderkey": 2816i32, "l_partkey": 142i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 4.0d, "l_extendedprice": 4168.56d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-12-11", "l_commitdate": "1994-12-07", "l_receiptdate": "1995-01-03", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": ". blithely pending id" }, { "l_orderkey": 3107i32, "l_partkey": 142i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 35.0d, "l_extendedprice": 36474.9d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-27", "l_commitdate": "1997-11-19", "l_receiptdate": "1997-09-14", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "ets doubt furiously final ideas. final" }, { "l_orderkey": 3136i32, "l_partkey": 142i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 30.0d, "l_extendedprice": 31264.2d, "l_discount": 0.02d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-08-13", "l_commitdate": "1994-10-02", "l_receiptdate": "1994-09-02", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "leep blithel" }, { "l_orderkey": 3395i32, "l_partkey": 142i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 21.0d, "l_extendedprice": 21884.94d, "l_discount": 0.03d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-12-19", "l_commitdate": "1995-01-13", "l_receiptdate": "1994-12-25", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": " careful dep" }, { "l_orderkey": 3458i32, "l_partkey": 142i32, "l_suppkey": 1i32, "l_linenumber": 6i32, "l_quantity": 6.0d, "l_extendedprice": 6252.84d, "l_discount": 0.09d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-03-10", "l_commitdate": "1995-02-02", "l_receiptdate": "1995-03-23", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "dolites; regular theodolites cajole " }, { "l_orderkey": 3556i32, "l_partkey": 142i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 45.0d, "l_extendedprice": 46896.3d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-10-14", "l_commitdate": "1992-12-21", "l_receiptdate": "1992-10-16", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "ckages boost quickl" }, { "l_orderkey": 3719i32, "l_partkey": 142i32, "l_suppkey": 5i32, "l_linenumber": 6i32, "l_quantity": 43.0d, "l_extendedprice": 44812.02d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-08", "l_commitdate": "1997-04-15", "l_receiptdate": "1997-06-06", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "the furiously special pinto bean" }, { "l_orderkey": 4036i32, "l_partkey": 142i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 6.0d, "l_extendedprice": 6252.84d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-19", "l_commitdate": "1997-06-16", "l_receiptdate": "1997-07-01", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "equests wake about the bold id" }, { "l_orderkey": 4231i32, "l_partkey": 142i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 47.0d, "l_extendedprice": 48980.58d, "l_discount": 0.09d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-11-27", "l_commitdate": "1998-01-26", "l_receiptdate": "1997-12-17", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "hely along the silent at" }, { "l_orderkey": 5158i32, "l_partkey": 142i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 41.0d, "l_extendedprice": 42727.74d, "l_discount": 0.05d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-25", "l_commitdate": "1997-03-19", "l_receiptdate": "1997-03-03", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "deposits. quickly special " }, { "l_orderkey": 5318i32, "l_partkey": 142i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 31.0d, "l_extendedprice": 32306.34d, "l_discount": 0.01d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-07-28", "l_commitdate": "1993-05-06", "l_receiptdate": "1993-08-06", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "requests must sleep slyly quickly" }, { "l_orderkey": 5413i32, "l_partkey": 142i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 37.0d, "l_extendedprice": 38559.18d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-08", "l_commitdate": "1998-01-01", "l_receiptdate": "1997-12-13", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "usly bold instructions affix idly unusual, " }, { "l_orderkey": 5670i32, "l_partkey": 142i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 11.0d, "l_extendedprice": 11463.54d, "l_discount": 0.06d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-07-11", "l_commitdate": "1993-06-26", "l_receiptdate": "1993-07-24", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "etect furiously among the even pin" } ] }
+{ "partkey": 143i32, "lines": [ { "l_orderkey": 263i32, "l_partkey": 143i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 50.0d, "l_extendedprice": 52157.0d, "l_discount": 0.06d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-08-18", "l_commitdate": "1994-07-31", "l_receiptdate": "1994-08-22", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "re the packages. special" }, { "l_orderkey": 323i32, "l_partkey": 143i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 9.0d, "l_extendedprice": 9388.26d, "l_discount": 0.07d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-06-26", "l_commitdate": "1994-06-10", "l_receiptdate": "1994-07-13", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "nic accounts. regular, regular pack" }, { "l_orderkey": 450i32, "l_partkey": 143i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 32.0d, "l_extendedprice": 33380.48d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-02", "l_commitdate": "1995-04-25", "l_receiptdate": "1995-07-30", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": " accounts nod fluffily even, pending" }, { "l_orderkey": 672i32, "l_partkey": 143i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 35.0d, "l_extendedprice": 36509.9d, "l_discount": 0.02d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-07-13", "l_commitdate": "1994-06-04", "l_receiptdate": "1994-07-14", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": " dependencies haggle quickly. theo" }, { "l_orderkey": 676i32, "l_partkey": 143i32, "l_suppkey": 6i32, "l_linenumber": 7i32, "l_quantity": 11.0d, "l_extendedprice": 11474.54d, "l_discount": 0.07d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-09", "l_commitdate": "1997-03-06", "l_receiptdate": "1997-03-31", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "he final acco" }, { "l_orderkey": 678i32, "l_partkey": 143i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 16.0d, "l_extendedprice": 16690.24d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-03-20", "l_commitdate": "1993-04-13", "l_receiptdate": "1993-04-16", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "equests cajole around the carefully regular" }, { "l_orderkey": 708i32, "l_partkey": 143i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 36.0d, "l_extendedprice": 37553.04d, "l_discount": 0.08d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-16", "l_commitdate": "1998-09-04", "l_receiptdate": "1998-08-11", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "ests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. even, regular hockey pests. ev" }, { "l_orderkey": 802i32, "l_partkey": 143i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 40.0d, "l_extendedprice": 41725.6d, "l_discount": 0.08d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-01-07", "l_commitdate": "1995-04-03", "l_receiptdate": "1995-01-23", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "y bold accou" }, { "l_orderkey": 807i32, "l_partkey": 143i32, "l_suppkey": 6i32, "l_linenumber": 5i32, "l_quantity": 30.0d, "l_extendedprice": 31294.2d, "l_discount": 0.02d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-01-19", "l_commitdate": "1994-01-09", "l_receiptdate": "1994-01-27", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "cial accoun" }, { "l_orderkey": 871i32, "l_partkey": 143i32, "l_suppkey": 2i32, "l_linenumber": 6i32, "l_quantity": 26.0d, "l_extendedprice": 27121.64d, "l_discount": 0.0d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-02-07", "l_commitdate": "1996-01-05", "l_receiptdate": "1996-02-25", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "symptotes use quickly near the " }, { "l_orderkey": 1154i32, "l_partkey": 143i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 31.0d, "l_extendedprice": 32337.34d, "l_discount": 0.06d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-04-17", "l_commitdate": "1992-04-26", "l_receiptdate": "1992-05-17", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "ithely. final, blithe " }, { "l_orderkey": 1285i32, "l_partkey": 143i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 45.0d, "l_extendedprice": 46941.3d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-09-05", "l_commitdate": "1992-08-08", "l_receiptdate": "1992-10-02", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": " special requests haggle blithely." }, { "l_orderkey": 1347i32, "l_partkey": 143i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 34.0d, "l_extendedprice": 35466.76d, "l_discount": 0.07d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-25", "l_commitdate": "1997-09-08", "l_receiptdate": "1997-07-24", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "r packages. f" }, { "l_orderkey": 1542i32, "l_partkey": 143i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 21.0d, "l_extendedprice": 21905.94d, "l_discount": 0.01d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-10-13", "l_commitdate": "1993-12-13", "l_receiptdate": "1993-11-12", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "y pending foxes nag blithely " }, { "l_orderkey": 1638i32, "l_partkey": 143i32, "l_suppkey": 6i32, "l_linenumber": 5i32, "l_quantity": 25.0d, "l_extendedprice": 26078.5d, "l_discount": 0.05d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-10-06", "l_commitdate": "1997-09-30", "l_receiptdate": "1997-11-02", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "gle final, ironic pinto beans. " }, { "l_orderkey": 1763i32, "l_partkey": 143i32, "l_suppkey": 4i32, "l_linenumber": 6i32, "l_quantity": 3.0d, "l_extendedprice": 3129.42d, "l_discount": 0.05d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-10", "l_commitdate": "1996-12-06", "l_receiptdate": "1997-01-04", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "ut the slyly pending deposi" }, { "l_orderkey": 2176i32, "l_partkey": 143i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 2.0d, "l_extendedprice": 2086.28d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-02-26", "l_commitdate": "1993-01-08", "l_receiptdate": "1993-03-23", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "s pinto beans" }, { "l_orderkey": 2180i32, "l_partkey": 143i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 23.0d, "l_extendedprice": 23992.22d, "l_discount": 0.02d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-08", "l_commitdate": "1996-10-25", "l_receiptdate": "1996-11-28", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "ggle alongside of the fluffily speci" }, { "l_orderkey": 2307i32, "l_partkey": 143i32, "l_suppkey": 4i32, "l_linenumber": 5i32, "l_quantity": 7.0d, "l_extendedprice": 7301.98d, "l_discount": 0.01d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-09-01", "l_commitdate": "1993-08-08", "l_receiptdate": "1993-09-29", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": " packages cajo" }, { "l_orderkey": 2498i32, "l_partkey": 143i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 48.0d, "l_extendedprice": 50070.72d, "l_discount": 0.1d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-11-25", "l_commitdate": "1994-01-09", "l_receiptdate": "1993-12-24", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "onic requests wake" }, { "l_orderkey": 2913i32, "l_partkey": 143i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 5.0d, "l_extendedprice": 5215.7d, "l_discount": 0.1d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-10-07", "l_commitdate": "1997-08-25", "l_receiptdate": "1997-10-09", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "haggle. even, bold instructi" }, { "l_orderkey": 3109i32, "l_partkey": 143i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 50.0d, "l_extendedprice": 52157.0d, "l_discount": 0.01d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-09-17", "l_commitdate": "1993-10-16", "l_receiptdate": "1993-10-11", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": " regular packages boost blithely even, re" }, { "l_orderkey": 3458i32, "l_partkey": 143i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 36.0d, "l_extendedprice": 37553.04d, "l_discount": 0.01d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-04-20", "l_commitdate": "1995-02-14", "l_receiptdate": "1995-05-09", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "s lose. blithely ironic requests boost" }, { "l_orderkey": 3524i32, "l_partkey": 143i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 17.0d, "l_extendedprice": 17733.38d, "l_discount": 0.09d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-09-01", "l_commitdate": "1992-07-17", "l_receiptdate": "1992-09-05", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "g, final epitaphs about the pinto " }, { "l_orderkey": 3553i32, "l_partkey": 143i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 4.0d, "l_extendedprice": 4172.56d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-06-13", "l_commitdate": "1994-07-10", "l_receiptdate": "1994-07-03", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "olites boost bli" }, { "l_orderkey": 4198i32, "l_partkey": 143i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 46.0d, "l_extendedprice": 47984.44d, "l_discount": 0.09d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-17", "l_commitdate": "1997-09-08", "l_receiptdate": "1997-09-11", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "posits among th" }, { "l_orderkey": 4834i32, "l_partkey": 143i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 38.0d, "l_extendedprice": 39639.32d, "l_discount": 0.03d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-10", "l_commitdate": "1996-12-06", "l_receiptdate": "1997-01-22", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "alongside of the carefully even plate" }, { "l_orderkey": 4897i32, "l_partkey": 143i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 34.0d, "l_extendedprice": 35466.76d, "l_discount": 0.02d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-12-31", "l_commitdate": "1992-11-11", "l_receiptdate": "1993-01-30", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "ts. special dependencies use fluffily " }, { "l_orderkey": 4964i32, "l_partkey": 143i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 18.0d, "l_extendedprice": 18776.52d, "l_discount": 0.0d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-10-13", "l_commitdate": "1997-09-01", "l_receiptdate": "1997-11-10", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": " platelets. furio" }, { "l_orderkey": 5027i32, "l_partkey": 143i32, "l_suppkey": 4i32, "l_linenumber": 5i32, "l_quantity": 3.0d, "l_extendedprice": 3129.42d, "l_discount": 0.03d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-30", "l_commitdate": "1997-11-26", "l_receiptdate": "1997-10-05", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "t the even mu" }, { "l_orderkey": 5094i32, "l_partkey": 143i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 19.0d, "l_extendedprice": 19819.66d, "l_discount": 0.03d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-03-31", "l_commitdate": "1993-06-12", "l_receiptdate": "1993-04-04", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "ronic foxes. furi" }, { "l_orderkey": 5348i32, "l_partkey": 143i32, "l_suppkey": 10i32, "l_linenumber": 6i32, "l_quantity": 14.0d, "l_extendedprice": 14603.96d, "l_discount": 0.06d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-16", "l_commitdate": "1998-01-12", "l_receiptdate": "1997-12-24", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "en pinto beans. somas cajo" }, { "l_orderkey": 5511i32, "l_partkey": 143i32, "l_suppkey": 2i32, "l_linenumber": 7i32, "l_quantity": 23.0d, "l_extendedprice": 23992.22d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-02-03", "l_commitdate": "1995-01-05", "l_receiptdate": "1995-02-18", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "ully deposits. warthogs hagg" }, { "l_orderkey": 5543i32, "l_partkey": 143i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 14.0d, "l_extendedprice": 14603.96d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-10-09", "l_commitdate": "1993-12-09", "l_receiptdate": "1993-10-21", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "ecial reque" }, { "l_orderkey": 5729i32, "l_partkey": 143i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 5.0d, "l_extendedprice": 5215.7d, "l_discount": 0.07d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-11-27", "l_commitdate": "1994-11-11", "l_receiptdate": "1994-12-23", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "s. even sheaves nag courts. " }, { "l_orderkey": 5921i32, "l_partkey": 143i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 41.0d, "l_extendedprice": 42768.74d, "l_discount": 0.04d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-04-13", "l_commitdate": "1994-05-31", "l_receiptdate": "1994-04-26", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "nusual, regular theodol" } ] }
+{ "partkey": 144i32, "lines": [ { "l_orderkey": 327i32, "l_partkey": 144i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 16.0d, "l_extendedprice": 16706.24d, "l_discount": 0.03d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-05", "l_commitdate": "1995-06-07", "l_receiptdate": "1995-07-09", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "cial ideas sleep af" }, { "l_orderkey": 1061i32, "l_partkey": 144i32, "l_suppkey": 1i32, "l_linenumber": 6i32, "l_quantity": 35.0d, "l_extendedprice": 36544.9d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-05", "l_commitdate": "1998-07-07", "l_receiptdate": "1998-07-30", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "ending requests nag careful" }, { "l_orderkey": 1381i32, "l_partkey": 144i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 47.0d, "l_extendedprice": 49074.58d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-09-22", "l_commitdate": "1998-08-12", "l_receiptdate": "1998-10-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "ly ironic deposits" }, { "l_orderkey": 1441i32, "l_partkey": 144i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 5.0d, "l_extendedprice": 5220.7d, "l_discount": 0.04d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-17", "l_commitdate": "1997-05-11", "l_receiptdate": "1997-05-30", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "egular courts. fluffily even grouches " }, { "l_orderkey": 1475i32, "l_partkey": 144i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 30.0d, "l_extendedprice": 31324.2d, "l_discount": 0.03d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-11", "l_commitdate": "1997-12-30", "l_receiptdate": "1998-03-15", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": " regular theodolites mold across th" }, { "l_orderkey": 2439i32, "l_partkey": 144i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 5.0d, "l_extendedprice": 5220.7d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-23", "l_commitdate": "1997-04-26", "l_receiptdate": "1997-04-28", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "ites. furiously" }, { "l_orderkey": 2497i32, "l_partkey": 144i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 48.0d, "l_extendedprice": 50118.72d, "l_discount": 0.06d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-09-29", "l_commitdate": "1992-11-13", "l_receiptdate": "1992-10-19", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": " even, regular requests across " }, { "l_orderkey": 2565i32, "l_partkey": 144i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 42.0d, "l_extendedprice": 43853.88d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-07", "l_commitdate": "1998-04-02", "l_receiptdate": "1998-05-04", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "ngly silent " }, { "l_orderkey": 2594i32, "l_partkey": 144i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 46.0d, "l_extendedprice": 48030.44d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-04-17", "l_commitdate": "1993-03-06", "l_receiptdate": "1993-04-21", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "beans. instructions across t" }, { "l_orderkey": 2695i32, "l_partkey": 144i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 21.0d, "l_extendedprice": 21926.94d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-13", "l_commitdate": "1996-09-25", "l_receiptdate": "1996-10-13", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "s. furiously ironic platelets ar" }, { "l_orderkey": 2789i32, "l_partkey": 144i32, "l_suppkey": 5i32, "l_linenumber": 6i32, "l_quantity": 16.0d, "l_extendedprice": 16706.24d, "l_discount": 0.07d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-11", "l_commitdate": "1998-05-08", "l_receiptdate": "1998-05-24", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "d the carefully iron" }, { "l_orderkey": 3203i32, "l_partkey": 144i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 23.0d, "l_extendedprice": 24015.22d, "l_discount": 0.01d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-04", "l_commitdate": "1998-01-12", "l_receiptdate": "1998-01-24", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "uses. fluffily ironic pinto bea" }, { "l_orderkey": 3361i32, "l_partkey": 144i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 6.0d, "l_extendedprice": 6264.84d, "l_discount": 0.02d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-10-02", "l_commitdate": "1992-10-25", "l_receiptdate": "1992-10-05", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": " packages sleep. furiously unus" }, { "l_orderkey": 3457i32, "l_partkey": 144i32, "l_suppkey": 1i32, "l_linenumber": 6i32, "l_quantity": 45.0d, "l_extendedprice": 46986.3d, "l_discount": 0.08d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-12", "l_commitdate": "1995-07-18", "l_receiptdate": "1995-08-23", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": " packages. care" }, { "l_orderkey": 3521i32, "l_partkey": 144i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 26.0d, "l_extendedprice": 27147.64d, "l_discount": 0.02d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-01-04", "l_commitdate": "1993-01-20", "l_receiptdate": "1993-01-17", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "onic dependencies haggle. fur" }, { "l_orderkey": 3618i32, "l_partkey": 144i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 48.0d, "l_extendedprice": 50118.72d, "l_discount": 0.04d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-12", "l_commitdate": "1998-02-13", "l_receiptdate": "1998-03-29", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "tructions atop the ironi" }, { "l_orderkey": 3648i32, "l_partkey": 144i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 16.0d, "l_extendedprice": 16706.24d, "l_discount": 0.02d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-08-14", "l_commitdate": "1993-08-14", "l_receiptdate": "1993-08-15", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "s nag packages." }, { "l_orderkey": 3746i32, "l_partkey": 144i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 28.0d, "l_extendedprice": 29235.92d, "l_discount": 0.06d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-09-20", "l_commitdate": "1994-10-21", "l_receiptdate": "1994-09-27", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "s after the even, special requests" }, { "l_orderkey": 4065i32, "l_partkey": 144i32, "l_suppkey": 7i32, "l_linenumber": 7i32, "l_quantity": 11.0d, "l_extendedprice": 11485.54d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-07-25", "l_commitdate": "1994-08-02", "l_receiptdate": "1994-07-30", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "hang silently about " }, { "l_orderkey": 4485i32, "l_partkey": 144i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 43.0d, "l_extendedprice": 44898.02d, "l_discount": 0.08d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-01-28", "l_commitdate": "1995-01-26", "l_receiptdate": "1995-02-07", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": ". blithely" }, { "l_orderkey": 4518i32, "l_partkey": 144i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 9.0d, "l_extendedprice": 9397.26d, "l_discount": 0.09d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-26", "l_commitdate": "1997-07-07", "l_receiptdate": "1997-07-10", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": " pending deposits. slyly re" }, { "l_orderkey": 4675i32, "l_partkey": 144i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 12.0d, "l_extendedprice": 12529.68d, "l_discount": 0.0d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-12-22", "l_commitdate": "1994-01-12", "l_receiptdate": "1993-12-23", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "posits affix carefully" }, { "l_orderkey": 4773i32, "l_partkey": 144i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 23.0d, "l_extendedprice": 24015.22d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-01", "l_commitdate": "1996-03-19", "l_receiptdate": "1996-01-04", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "ly express grouches wak" }, { "l_orderkey": 4931i32, "l_partkey": 144i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 20.0d, "l_extendedprice": 20882.8d, "l_discount": 0.09d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-01-25", "l_commitdate": "1994-12-21", "l_receiptdate": "1995-02-06", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "the furious" }, { "l_orderkey": 4966i32, "l_partkey": 144i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 12.0d, "l_extendedprice": 12529.68d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-07", "l_commitdate": "1996-11-23", "l_receiptdate": "1996-12-20", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "eodolites. ironic requests across the exp" }, { "l_orderkey": 4992i32, "l_partkey": 144i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 17.0d, "l_extendedprice": 17750.38d, "l_discount": 0.03d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-07-05", "l_commitdate": "1992-07-19", "l_receiptdate": "1992-07-30", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "s along the perma" }, { "l_orderkey": 4996i32, "l_partkey": 144i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 13.0d, "l_extendedprice": 13573.82d, "l_discount": 0.0d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-09-17", "l_commitdate": "1992-12-02", "l_receiptdate": "1992-10-07", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "o beans use about the furious" }, { "l_orderkey": 5154i32, "l_partkey": 144i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 15.0d, "l_extendedprice": 15662.1d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-23", "l_commitdate": "1997-07-11", "l_receiptdate": "1997-07-11", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "even packages. packages use" }, { "l_orderkey": 5415i32, "l_partkey": 144i32, "l_suppkey": 1i32, "l_linenumber": 6i32, "l_quantity": 46.0d, "l_extendedprice": 48030.44d, "l_discount": 0.03d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-08-25", "l_commitdate": "1992-09-10", "l_receiptdate": "1992-09-22", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "ve the fluffily " }, { "l_orderkey": 5441i32, "l_partkey": 144i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 33.0d, "l_extendedprice": 34456.62d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-10-09", "l_commitdate": "1994-10-06", "l_receiptdate": "1994-10-30", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "ges. final instruction" }, { "l_orderkey": 5442i32, "l_partkey": 144i32, "l_suppkey": 3i32, "l_linenumber": 6i32, "l_quantity": 26.0d, "l_extendedprice": 27147.64d, "l_discount": 0.08d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-21", "l_commitdate": "1998-03-21", "l_receiptdate": "1998-03-25", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "have to sleep furiously bold ideas. blith" }, { "l_orderkey": 5826i32, "l_partkey": 144i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 4.0d, "l_extendedprice": 4176.56d, "l_discount": 0.03d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-31", "l_commitdate": "1998-09-10", "l_receiptdate": "1998-08-27", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": " packages across the fluffily spec" } ] }
+{ "partkey": 145i32, "lines": [ { "l_orderkey": 134i32, "l_partkey": 145i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 47.0d, "l_extendedprice": 49121.58d, "l_discount": 0.05d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-08-16", "l_commitdate": "1992-07-06", "l_receiptdate": "1992-08-28", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "s! carefully unusual requests boost careful" }, { "l_orderkey": 583i32, "l_partkey": 145i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 1.0d, "l_extendedprice": 1045.14d, "l_discount": 0.07d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-17", "l_commitdate": "1997-04-29", "l_receiptdate": "1997-06-28", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": " regular, regular ideas. even, bra" }, { "l_orderkey": 834i32, "l_partkey": 145i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 36.0d, "l_extendedprice": 37625.04d, "l_discount": 0.06d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-06-28", "l_commitdate": "1994-07-25", "l_receiptdate": "1994-07-07", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "ccounts haggle after the furiously " }, { "l_orderkey": 930i32, "l_partkey": 145i32, "l_suppkey": 4i32, "l_linenumber": 6i32, "l_quantity": 10.0d, "l_extendedprice": 10451.4d, "l_discount": 0.0d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-02-09", "l_commitdate": "1995-02-17", "l_receiptdate": "1995-02-16", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "blithely bold i" }, { "l_orderkey": 1762i32, "l_partkey": 145i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 24.0d, "l_extendedprice": 25083.36d, "l_discount": 0.03d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-11-30", "l_commitdate": "1994-11-02", "l_receiptdate": "1994-12-20", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "accounts solve alongside of the fluffily " }, { "l_orderkey": 1797i32, "l_partkey": 145i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 16.0d, "l_extendedprice": 16722.24d, "l_discount": 0.01d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-03", "l_commitdate": "1996-07-21", "l_receiptdate": "1996-06-07", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "o beans wake regular accounts. blit" }, { "l_orderkey": 2118i32, "l_partkey": 145i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 11.0d, "l_extendedprice": 11496.54d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-23", "l_commitdate": "1996-12-20", "l_receiptdate": "1997-01-01", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "y ironic accounts sleep upon the packages. " }, { "l_orderkey": 2531i32, "l_partkey": 145i32, "l_suppkey": 4i32, "l_linenumber": 6i32, "l_quantity": 46.0d, "l_extendedprice": 48076.44d, "l_discount": 0.1d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-03", "l_commitdate": "1996-06-27", "l_receiptdate": "1996-07-12", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "e final, bold pains. ir" }, { "l_orderkey": 3109i32, "l_partkey": 145i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 49.0d, "l_extendedprice": 51211.86d, "l_discount": 0.08d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-10-24", "l_commitdate": "1993-09-30", "l_receiptdate": "1993-11-21", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": " even pearls. furiously pending " }, { "l_orderkey": 3554i32, "l_partkey": 145i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 18.0d, "l_extendedprice": 18812.52d, "l_discount": 0.03d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-11", "l_commitdate": "1995-08-12", "l_receiptdate": "1995-10-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": " haggle. furiously fluffy requests ac" }, { "l_orderkey": 3653i32, "l_partkey": 145i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 38.0d, "l_extendedprice": 39715.32d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-06-26", "l_commitdate": "1994-05-13", "l_receiptdate": "1994-07-13", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "ainst the " }, { "l_orderkey": 3687i32, "l_partkey": 145i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 32.0d, "l_extendedprice": 33444.48d, "l_discount": 0.03d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-05-07", "l_commitdate": "1993-04-05", "l_receiptdate": "1993-05-25", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "deas cajole fo" }, { "l_orderkey": 3812i32, "l_partkey": 145i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 33.0d, "l_extendedprice": 34489.62d, "l_discount": 0.0d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-10", "l_commitdate": "1996-10-05", "l_receiptdate": "1996-10-15", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "posits engage. ironic, regular p" }, { "l_orderkey": 3873i32, "l_partkey": 145i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 44.0d, "l_extendedprice": 45986.16d, "l_discount": 0.05d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-23", "l_commitdate": "1998-05-22", "l_receiptdate": "1998-08-14", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "yly even platelets wake. " }, { "l_orderkey": 3877i32, "l_partkey": 145i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 47.0d, "l_extendedprice": 49121.58d, "l_discount": 0.05d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-08-01", "l_commitdate": "1993-08-16", "l_receiptdate": "1993-08-04", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "furiously quick requests nag along the theo" }, { "l_orderkey": 3907i32, "l_partkey": 145i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 41.0d, "l_extendedprice": 42850.74d, "l_discount": 0.03d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-10-25", "l_commitdate": "1992-10-17", "l_receiptdate": "1992-11-01", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "s above the unusual ideas sleep furiousl" }, { "l_orderkey": 4198i32, "l_partkey": 145i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 13.0d, "l_extendedprice": 13586.82d, "l_discount": 0.03d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-18", "l_commitdate": "1997-07-24", "l_receiptdate": "1997-08-10", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": " furious excuses. bli" }, { "l_orderkey": 4327i32, "l_partkey": 145i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 11.0d, "l_extendedprice": 11496.54d, "l_discount": 0.1d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-04-24", "l_commitdate": "1995-05-27", "l_receiptdate": "1995-05-24", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": " ironic dolphins" }, { "l_orderkey": 4512i32, "l_partkey": 145i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 21.0d, "l_extendedprice": 21947.94d, "l_discount": 0.0d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-31", "l_commitdate": "1995-12-30", "l_receiptdate": "1995-11-15", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "lly unusual pinto b" }, { "l_orderkey": 4711i32, "l_partkey": 145i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 15.0d, "l_extendedprice": 15677.1d, "l_discount": 0.08d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-09", "l_commitdate": "1998-07-30", "l_receiptdate": "1998-06-18", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": " beans wake. deposits could bo" }, { "l_orderkey": 4807i32, "l_partkey": 145i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 34.0d, "l_extendedprice": 35534.76d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-31", "l_commitdate": "1997-03-13", "l_receiptdate": "1997-02-01", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "ecial ideas. deposits according to the fin" }, { "l_orderkey": 4998i32, "l_partkey": 145i32, "l_suppkey": 4i32, "l_linenumber": 5i32, "l_quantity": 24.0d, "l_extendedprice": 25083.36d, "l_discount": 0.01d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-01-25", "l_commitdate": "1992-03-16", "l_receiptdate": "1992-01-27", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": " unwind about" }, { "l_orderkey": 5667i32, "l_partkey": 145i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 37.0d, "l_extendedprice": 38670.18d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-24", "l_commitdate": "1995-09-17", "l_receiptdate": "1995-10-03", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "s cajole blit" }, { "l_orderkey": 5954i32, "l_partkey": 145i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 20.0d, "l_extendedprice": 20902.8d, "l_discount": 0.0d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-02-27", "l_commitdate": "1993-01-04", "l_receiptdate": "1993-03-08", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "ke furiously blithely special packa" } ] }
+{ "partkey": 146i32, "lines": [ { "l_orderkey": 7i32, "l_partkey": 146i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 9.0d, "l_extendedprice": 9415.26d, "l_discount": 0.08d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-02-01", "l_commitdate": "1996-03-02", "l_receiptdate": "1996-02-19", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "es. instructions" }, { "l_orderkey": 194i32, "l_partkey": 146i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 36.0d, "l_extendedprice": 37661.04d, "l_discount": 0.0d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-05-21", "l_commitdate": "1992-05-18", "l_receiptdate": "1992-05-27", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "pecial packages wake after the slyly r" }, { "l_orderkey": 610i32, "l_partkey": 146i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 39.0d, "l_extendedprice": 40799.46d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-30", "l_commitdate": "1995-10-21", "l_receiptdate": "1995-11-11", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "counts. ironic warhorses are " }, { "l_orderkey": 678i32, "l_partkey": 146i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 20.0d, "l_extendedprice": 20922.8d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-06-21", "l_commitdate": "1993-04-07", "l_receiptdate": "1993-07-10", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "furiously express excuses. foxes eat fu" }, { "l_orderkey": 711i32, "l_partkey": 146i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 2.0d, "l_extendedprice": 2092.28d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-12-01", "l_commitdate": "1993-12-09", "l_receiptdate": "1993-12-16", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "ely across t" }, { "l_orderkey": 993i32, "l_partkey": 146i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 33.0d, "l_extendedprice": 34522.62d, "l_discount": 0.09d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-28", "l_commitdate": "1995-10-24", "l_receiptdate": "1995-10-03", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "fluffily. quiet excuses sleep furiously sly" }, { "l_orderkey": 1286i32, "l_partkey": 146i32, "l_suppkey": 5i32, "l_linenumber": 6i32, "l_quantity": 41.0d, "l_extendedprice": 42891.74d, "l_discount": 0.04d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-08-02", "l_commitdate": "1993-08-06", "l_receiptdate": "1993-08-07", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": " the furiously expre" }, { "l_orderkey": 1733i32, "l_partkey": 146i32, "l_suppkey": 9i32, "l_linenumber": 7i32, "l_quantity": 13.0d, "l_extendedprice": 13599.82d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-03", "l_commitdate": "1996-08-02", "l_receiptdate": "1996-08-18", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "olites sleep furious" }, { "l_orderkey": 2215i32, "l_partkey": 146i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 20.0d, "l_extendedprice": 20922.8d, "l_discount": 0.02d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-09", "l_commitdate": "1996-08-10", "l_receiptdate": "1996-09-19", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": " unusual deposits haggle carefully. ide" }, { "l_orderkey": 2406i32, "l_partkey": 146i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 34.0d, "l_extendedprice": 35568.76d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-01", "l_commitdate": "1996-12-07", "l_receiptdate": "1996-12-16", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "hinly even accounts are slyly q" }, { "l_orderkey": 2722i32, "l_partkey": 146i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 15.0d, "l_extendedprice": 15692.1d, "l_discount": 0.05d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-07-02", "l_commitdate": "1994-06-01", "l_receiptdate": "1994-07-13", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "refully final asympt" }, { "l_orderkey": 2884i32, "l_partkey": 146i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 25.0d, "l_extendedprice": 26153.5d, "l_discount": 0.09d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-18", "l_commitdate": "1997-12-06", "l_receiptdate": "1998-02-16", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "onic theodolites with the instructi" }, { "l_orderkey": 3041i32, "l_partkey": 146i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 9.0d, "l_extendedprice": 9415.26d, "l_discount": 0.03d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-29", "l_commitdate": "1997-08-14", "l_receiptdate": "1997-07-19", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "iously across the silent pinto beans. furi" }, { "l_orderkey": 3394i32, "l_partkey": 146i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 43.0d, "l_extendedprice": 44984.02d, "l_discount": 0.08d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-23", "l_commitdate": "1996-07-20", "l_receiptdate": "1996-08-25", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "hockey players. slyly regular requests afte" }, { "l_orderkey": 3584i32, "l_partkey": 146i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 11.0d, "l_extendedprice": 11507.54d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-11-27", "l_commitdate": "1997-10-15", "l_receiptdate": "1997-12-08", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "lithely slyly " }, { "l_orderkey": 3714i32, "l_partkey": 146i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 14.0d, "l_extendedprice": 14645.96d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-30", "l_commitdate": "1998-06-30", "l_receiptdate": "1998-05-31", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "ending ideas. thinly unusual theodo" }, { "l_orderkey": 4198i32, "l_partkey": 146i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 48.0d, "l_extendedprice": 50214.72d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-03", "l_commitdate": "1997-07-18", "l_receiptdate": "1997-09-11", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "cajole carefully final, ironic ide" }, { "l_orderkey": 4676i32, "l_partkey": 146i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 4.0d, "l_extendedprice": 4184.56d, "l_discount": 0.1d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-12", "l_commitdate": "1995-10-22", "l_receiptdate": "1995-12-13", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "detect above the ironic platelets. fluffily" }, { "l_orderkey": 4772i32, "l_partkey": 146i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 16.0d, "l_extendedprice": 16738.24d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-10-27", "l_commitdate": "1994-12-07", "l_receiptdate": "1994-10-29", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "egular accounts wake s" }, { "l_orderkey": 4960i32, "l_partkey": 146i32, "l_suppkey": 7i32, "l_linenumber": 6i32, "l_quantity": 37.0d, "l_extendedprice": 38707.18d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-05-23", "l_commitdate": "1995-04-12", "l_receiptdate": "1995-06-01", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "ending theodolites w" }, { "l_orderkey": 5185i32, "l_partkey": 146i32, "l_suppkey": 9i32, "l_linenumber": 6i32, "l_quantity": 50.0d, "l_extendedprice": 52307.0d, "l_discount": 0.03d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-10-15", "l_commitdate": "1997-10-19", "l_receiptdate": "1997-11-06", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "final platelets. ideas sleep careful" }, { "l_orderkey": 5249i32, "l_partkey": 146i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 29.0d, "l_extendedprice": 30338.06d, "l_discount": 0.0d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-09-16", "l_commitdate": "1994-11-03", "l_receiptdate": "1994-10-06", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": " players. f" }, { "l_orderkey": 5285i32, "l_partkey": 146i32, "l_suppkey": 7i32, "l_linenumber": 6i32, "l_quantity": 1.0d, "l_extendedprice": 1046.14d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-02-08", "l_commitdate": "1994-04-02", "l_receiptdate": "1994-02-17", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "ing deposits integra" }, { "l_orderkey": 5345i32, "l_partkey": 146i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 2.0d, "l_extendedprice": 2092.28d, "l_discount": 0.1d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-11-18", "l_commitdate": "1997-10-12", "l_receiptdate": "1997-12-08", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "ut the slyly specia" }, { "l_orderkey": 5798i32, "l_partkey": 146i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 40.0d, "l_extendedprice": 41845.6d, "l_discount": 0.08d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-09", "l_commitdate": "1998-06-24", "l_receiptdate": "1998-07-16", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": " integrate carefu" }, { "l_orderkey": 5895i32, "l_partkey": 146i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 31.0d, "l_extendedprice": 32430.34d, "l_discount": 0.03d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-03", "l_commitdate": "1997-03-30", "l_receiptdate": "1997-03-08", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": " final deposits nod slyly careful" }, { "l_orderkey": 5921i32, "l_partkey": 146i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 25.0d, "l_extendedprice": 26153.5d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-05-19", "l_commitdate": "1994-06-15", "l_receiptdate": "1994-06-17", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "nd the slyly regular deposits. quick" } ] }
+{ "partkey": 147i32, "lines": [ { "l_orderkey": 225i32, "l_partkey": 147i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 24.0d, "l_extendedprice": 25131.36d, "l_discount": 0.0d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-23", "l_commitdate": "1995-08-05", "l_receiptdate": "1995-10-16", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "ironic accounts are final account" }, { "l_orderkey": 257i32, "l_partkey": 147i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 7.0d, "l_extendedprice": 7329.98d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-18", "l_commitdate": "1998-05-15", "l_receiptdate": "1998-06-27", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "ackages sleep bold realms. f" }, { "l_orderkey": 258i32, "l_partkey": 147i32, "l_suppkey": 4i32, "l_linenumber": 6i32, "l_quantity": 36.0d, "l_extendedprice": 37697.04d, "l_discount": 0.09d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-01-11", "l_commitdate": "1994-03-04", "l_receiptdate": "1994-01-18", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "nic asymptotes. slyly silent r" }, { "l_orderkey": 614i32, "l_partkey": 147i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 14.0d, "l_extendedprice": 14659.96d, "l_discount": 0.04d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-12-03", "l_commitdate": "1993-02-14", "l_receiptdate": "1992-12-27", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "ular packages haggle about the pack" }, { "l_orderkey": 931i32, "l_partkey": 147i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 48.0d, "l_extendedprice": 50262.72d, "l_discount": 0.01d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-02-03", "l_commitdate": "1993-03-02", "l_receiptdate": "1993-02-09", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "ep alongside of the fluffy " }, { "l_orderkey": 1122i32, "l_partkey": 147i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 25.0d, "l_extendedprice": 26178.5d, "l_discount": 0.09d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-21", "l_commitdate": "1997-03-03", "l_receiptdate": "1997-04-07", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "d furiously. pinto " }, { "l_orderkey": 1126i32, "l_partkey": 147i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 14.0d, "l_extendedprice": 14659.96d, "l_discount": 0.07d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-17", "l_commitdate": "1998-04-15", "l_receiptdate": "1998-05-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "nstructions. blithe" }, { "l_orderkey": 1155i32, "l_partkey": 147i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 23.0d, "l_extendedprice": 24084.22d, "l_discount": 0.08d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-11-24", "l_commitdate": "1997-11-28", "l_receiptdate": "1997-12-06", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "ly unusual packages. iro" }, { "l_orderkey": 1184i32, "l_partkey": 147i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 4.0d, "l_extendedprice": 4188.56d, "l_discount": 0.04d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-25", "l_commitdate": "1998-01-24", "l_receiptdate": "1998-01-18", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": " express packages. slyly expres" }, { "l_orderkey": 1600i32, "l_partkey": 147i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 30.0d, "l_extendedprice": 31414.2d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-06-03", "l_commitdate": "1993-05-03", "l_receiptdate": "1993-06-07", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "al escapades alongside of the depo" }, { "l_orderkey": 1763i32, "l_partkey": 147i32, "l_suppkey": 4i32, "l_linenumber": 5i32, "l_quantity": 13.0d, "l_extendedprice": 13612.82d, "l_discount": 0.03d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-23", "l_commitdate": "1997-01-24", "l_receiptdate": "1996-12-05", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "s sleep carefully. fluffily unusua" }, { "l_orderkey": 2016i32, "l_partkey": 147i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 2.0d, "l_extendedprice": 2094.28d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-12", "l_commitdate": "1996-11-09", "l_receiptdate": "1996-10-31", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "carefully according to the " }, { "l_orderkey": 2117i32, "l_partkey": 147i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 3.0d, "l_extendedprice": 3141.42d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-05", "l_commitdate": "1997-07-20", "l_receiptdate": "1997-05-26", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "tes cajole" }, { "l_orderkey": 2279i32, "l_partkey": 147i32, "l_suppkey": 10i32, "l_linenumber": 6i32, "l_quantity": 12.0d, "l_extendedprice": 12565.68d, "l_discount": 0.02d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-05-04", "l_commitdate": "1993-04-26", "l_receiptdate": "1993-05-28", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "ccounts. slyl" }, { "l_orderkey": 2404i32, "l_partkey": 147i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 36.0d, "l_extendedprice": 37697.04d, "l_discount": 0.07d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-27", "l_commitdate": "1997-05-16", "l_receiptdate": "1997-04-06", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "s nag furi" }, { "l_orderkey": 2658i32, "l_partkey": 147i32, "l_suppkey": 4i32, "l_linenumber": 6i32, "l_quantity": 27.0d, "l_extendedprice": 28272.78d, "l_discount": 0.05d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-26", "l_commitdate": "1995-12-08", "l_receiptdate": "1995-09-30", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "ecial packages use abov" }, { "l_orderkey": 2724i32, "l_partkey": 147i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 21.0d, "l_extendedprice": 21989.94d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-11-25", "l_commitdate": "1994-10-15", "l_receiptdate": "1994-12-07", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "as. carefully regular dependencies wak" }, { "l_orderkey": 3073i32, "l_partkey": 147i32, "l_suppkey": 8i32, "l_linenumber": 6i32, "l_quantity": 39.0d, "l_extendedprice": 40838.46d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-05-01", "l_commitdate": "1994-02-16", "l_receiptdate": "1994-05-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "lar excuses across the furiously even " }, { "l_orderkey": 3492i32, "l_partkey": 147i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 30.0d, "l_extendedprice": 31414.2d, "l_discount": 0.02d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-01-29", "l_commitdate": "1995-01-02", "l_receiptdate": "1995-02-13", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": " detect furiously permanent, unusual accou" }, { "l_orderkey": 3748i32, "l_partkey": 147i32, "l_suppkey": 4i32, "l_linenumber": 5i32, "l_quantity": 21.0d, "l_extendedprice": 21989.94d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-30", "l_commitdate": "1998-04-07", "l_receiptdate": "1998-04-05", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "fix carefully furiously express ideas. furi" }, { "l_orderkey": 4227i32, "l_partkey": 147i32, "l_suppkey": 6i32, "l_linenumber": 5i32, "l_quantity": 49.0d, "l_extendedprice": 51309.86d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-05-19", "l_commitdate": "1995-04-12", "l_receiptdate": "1995-06-12", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "ts sleep blithely carefully unusual ideas." }, { "l_orderkey": 4321i32, "l_partkey": 147i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 33.0d, "l_extendedprice": 34555.62d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-09-01", "l_commitdate": "1994-08-17", "l_receiptdate": "1994-09-05", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "yly special excuses. fluffily " }, { "l_orderkey": 4453i32, "l_partkey": 147i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 41.0d, "l_extendedprice": 42932.74d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-17", "l_commitdate": "1997-05-15", "l_receiptdate": "1997-07-31", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "anent theodolites are slyly except t" }, { "l_orderkey": 4610i32, "l_partkey": 147i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 29.0d, "l_extendedprice": 30367.06d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-08-09", "l_commitdate": "1993-07-27", "l_receiptdate": "1993-08-16", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": " foxes. special, express package" }, { "l_orderkey": 4647i32, "l_partkey": 147i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 27.0d, "l_extendedprice": 28272.78d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-05-20", "l_commitdate": "1994-06-26", "l_receiptdate": "1994-05-30", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "ully even ti" }, { "l_orderkey": 4992i32, "l_partkey": 147i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 47.0d, "l_extendedprice": 49215.58d, "l_discount": 0.1d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-09-04", "l_commitdate": "1992-08-05", "l_receiptdate": "1992-09-21", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "atterns use fluffily." }, { "l_orderkey": 5380i32, "l_partkey": 147i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 10.0d, "l_extendedprice": 10471.4d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-11-24", "l_commitdate": "1998-01-10", "l_receiptdate": "1997-12-21", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "refully pending deposits. special, even t" }, { "l_orderkey": 5543i32, "l_partkey": 147i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 8.0d, "l_extendedprice": 8377.12d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-10-28", "l_commitdate": "1993-11-18", "l_receiptdate": "1993-11-07", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "totes? iron" }, { "l_orderkey": 5569i32, "l_partkey": 147i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 19.0d, "l_extendedprice": 19895.66d, "l_discount": 0.1d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-07-30", "l_commitdate": "1993-06-21", "l_receiptdate": "1993-08-13", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": " detect ca" }, { "l_orderkey": 5954i32, "l_partkey": 147i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 8.0d, "l_extendedprice": 8377.12d, "l_discount": 0.03d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-03-27", "l_commitdate": "1993-01-22", "l_receiptdate": "1993-04-04", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "unusual th" }, { "l_orderkey": 5959i32, "l_partkey": 147i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 17.0d, "l_extendedprice": 17801.38d, "l_discount": 0.09d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-06-10", "l_commitdate": "1992-07-06", "l_receiptdate": "1992-06-23", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "ackages. blithely ex" } ] }
+{ "partkey": 148i32, "lines": [ { "l_orderkey": 164i32, "l_partkey": 148i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 43.0d, "l_extendedprice": 45070.02d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-11-26", "l_commitdate": "1993-01-03", "l_receiptdate": "1992-12-08", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "y carefully regular dep" }, { "l_orderkey": 353i32, "l_partkey": 148i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 29.0d, "l_extendedprice": 30396.06d, "l_discount": 0.09d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-01-11", "l_commitdate": "1994-03-19", "l_receiptdate": "1994-02-09", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "ctions impr" }, { "l_orderkey": 515i32, "l_partkey": 148i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 38.0d, "l_extendedprice": 39829.32d, "l_discount": 0.1d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-09-19", "l_commitdate": "1993-11-12", "l_receiptdate": "1993-10-03", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "ays. furiously express requests haggle furi" }, { "l_orderkey": 677i32, "l_partkey": 148i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 1.0d, "l_extendedprice": 1048.14d, "l_discount": 0.06d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-12-01", "l_commitdate": "1994-01-14", "l_receiptdate": "1993-12-26", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "ly. regular " }, { "l_orderkey": 774i32, "l_partkey": 148i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 34.0d, "l_extendedprice": 35636.76d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-16", "l_commitdate": "1996-01-03", "l_receiptdate": "1996-03-22", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "lar excuses are furiously final instr" }, { "l_orderkey": 967i32, "l_partkey": 148i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 49.0d, "l_extendedprice": 51358.86d, "l_discount": 0.01d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-09-28", "l_commitdate": "1992-09-15", "l_receiptdate": "1992-10-14", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "the slyly even ideas. carefully even" }, { "l_orderkey": 1154i32, "l_partkey": 148i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 50.0d, "l_extendedprice": 52407.0d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-04-22", "l_commitdate": "1992-04-21", "l_receiptdate": "1992-05-01", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "ove the furiously bold Tires" }, { "l_orderkey": 1408i32, "l_partkey": 148i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 29.0d, "l_extendedprice": 30396.06d, "l_discount": 0.03d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-12", "l_commitdate": "1998-02-14", "l_receiptdate": "1998-03-17", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "en accounts grow furiousl" }, { "l_orderkey": 1408i32, "l_partkey": 148i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 20.0d, "l_extendedprice": 20962.8d, "l_discount": 0.06d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-21", "l_commitdate": "1998-01-25", "l_receiptdate": "1998-05-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": " blithely fluffi" }, { "l_orderkey": 1508i32, "l_partkey": 148i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 1.0d, "l_extendedprice": 1048.14d, "l_discount": 0.02d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-13", "l_commitdate": "1998-06-03", "l_receiptdate": "1998-07-17", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "s the blithely bold instruction" }, { "l_orderkey": 1632i32, "l_partkey": 148i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 14.0d, "l_extendedprice": 14673.96d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-15", "l_commitdate": "1997-02-25", "l_receiptdate": "1997-01-28", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "oxes. deposits nag slyly along the slyly " }, { "l_orderkey": 1825i32, "l_partkey": 148i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 39.0d, "l_extendedprice": 40877.46d, "l_discount": 0.0d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-04-01", "l_commitdate": "1994-01-12", "l_receiptdate": "1994-04-21", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "ual, bold ideas haggle above the quickly ir" }, { "l_orderkey": 1893i32, "l_partkey": 148i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 49.0d, "l_extendedprice": 51358.86d, "l_discount": 0.03d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-19", "l_commitdate": "1998-01-28", "l_receiptdate": "1998-02-02", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "y final foxes bo" }, { "l_orderkey": 2465i32, "l_partkey": 148i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 45.0d, "l_extendedprice": 47166.3d, "l_discount": 0.03d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-27", "l_commitdate": "1995-08-25", "l_receiptdate": "1995-10-06", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "y silent foxes. final pinto beans above " }, { "l_orderkey": 2531i32, "l_partkey": 148i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 9.0d, "l_extendedprice": 9433.26d, "l_discount": 0.03d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-27", "l_commitdate": "1996-07-03", "l_receiptdate": "1996-08-01", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "t the dogged, un" }, { "l_orderkey": 2562i32, "l_partkey": 148i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 1.0d, "l_extendedprice": 1048.14d, "l_discount": 0.01d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-10-16", "l_commitdate": "1992-09-18", "l_receiptdate": "1992-10-17", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": " slyly final ideas haggle car" }, { "l_orderkey": 2562i32, "l_partkey": 148i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 37.0d, "l_extendedprice": 38781.18d, "l_discount": 0.08d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-10-29", "l_commitdate": "1992-10-06", "l_receiptdate": "1992-11-09", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": ". slyly regular ideas according to the fl" }, { "l_orderkey": 2566i32, "l_partkey": 148i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 19.0d, "l_extendedprice": 19914.66d, "l_discount": 0.06d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-12-21", "l_commitdate": "1992-11-24", "l_receiptdate": "1992-12-22", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "ests. silent" }, { "l_orderkey": 2598i32, "l_partkey": 148i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 40.0d, "l_extendedprice": 41925.6d, "l_discount": 0.07d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-11", "l_commitdate": "1996-05-19", "l_receiptdate": "1996-06-08", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "the enticing" }, { "l_orderkey": 2753i32, "l_partkey": 148i32, "l_suppkey": 9i32, "l_linenumber": 7i32, "l_quantity": 20.0d, "l_extendedprice": 20962.8d, "l_discount": 0.01d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-02-24", "l_commitdate": "1994-02-04", "l_receiptdate": "1994-03-23", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": " express pack" }, { "l_orderkey": 2757i32, "l_partkey": 148i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 26.0d, "l_extendedprice": 27251.64d, "l_discount": 0.07d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-19", "l_commitdate": "1995-10-02", "l_receiptdate": "1995-09-06", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "around the blithely" }, { "l_orderkey": 2790i32, "l_partkey": 148i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 11.0d, "l_extendedprice": 11529.54d, "l_discount": 0.08d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-09-28", "l_commitdate": "1994-11-14", "l_receiptdate": "1994-10-04", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "lar requests poach slyly foxes" }, { "l_orderkey": 2851i32, "l_partkey": 148i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 8.0d, "l_extendedprice": 8385.12d, "l_discount": 0.09d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-11-12", "l_commitdate": "1997-11-22", "l_receiptdate": "1997-12-11", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "y special theodolites. carefully" }, { "l_orderkey": 3111i32, "l_partkey": 148i32, "l_suppkey": 9i32, "l_linenumber": 7i32, "l_quantity": 41.0d, "l_extendedprice": 42973.74d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-22", "l_commitdate": "1995-11-01", "l_receiptdate": "1995-12-01", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "fily slow ideas. " }, { "l_orderkey": 3172i32, "l_partkey": 148i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 43.0d, "l_extendedprice": 45070.02d, "l_discount": 0.05d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-08-22", "l_commitdate": "1992-07-07", "l_receiptdate": "1992-08-26", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": " final packages. " }, { "l_orderkey": 3425i32, "l_partkey": 148i32, "l_suppkey": 9i32, "l_linenumber": 6i32, "l_quantity": 24.0d, "l_extendedprice": 25155.36d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-04-22", "l_commitdate": "1996-06-24", "l_receiptdate": "1996-04-25", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "ajole blithely sl" }, { "l_orderkey": 3712i32, "l_partkey": 148i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 38.0d, "l_extendedprice": 39829.32d, "l_discount": 0.01d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-01-15", "l_commitdate": "1992-03-24", "l_receiptdate": "1992-01-27", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "s nag carefully-- even, reg" }, { "l_orderkey": 3840i32, "l_partkey": 148i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 41.0d, "l_extendedprice": 42973.74d, "l_discount": 0.07d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-21", "l_commitdate": "1998-10-08", "l_receiptdate": "1998-08-01", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": " nag slyly? slyly pending accounts " }, { "l_orderkey": 3877i32, "l_partkey": 148i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 36.0d, "l_extendedprice": 37733.04d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-07-27", "l_commitdate": "1993-07-13", "l_receiptdate": "1993-08-11", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "lithely about the dogged ideas. ac" }, { "l_orderkey": 3908i32, "l_partkey": 148i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 8.0d, "l_extendedprice": 8385.12d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-03-12", "l_commitdate": "1993-04-13", "l_receiptdate": "1993-03-22", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "r instructions was requests. ironically " }, { "l_orderkey": 4161i32, "l_partkey": 148i32, "l_suppkey": 9i32, "l_linenumber": 6i32, "l_quantity": 19.0d, "l_extendedprice": 19914.66d, "l_discount": 0.07d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-08-22", "l_commitdate": "1993-11-11", "l_receiptdate": "1993-09-01", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "beans breach s" }, { "l_orderkey": 4547i32, "l_partkey": 148i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 15.0d, "l_extendedprice": 15722.1d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-11-29", "l_commitdate": "1993-10-12", "l_receiptdate": "1993-12-29", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "ironic gifts integrate " }, { "l_orderkey": 4838i32, "l_partkey": 148i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 2.0d, "l_extendedprice": 2096.28d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-08-11", "l_commitdate": "1992-09-16", "l_receiptdate": "1992-08-26", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "hely final notornis are furiously blithe" }, { "l_orderkey": 4934i32, "l_partkey": 148i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 9.0d, "l_extendedprice": 9433.26d, "l_discount": 0.06d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-10", "l_commitdate": "1997-04-09", "l_receiptdate": "1997-06-12", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": " haggle alongside of the" }, { "l_orderkey": 4964i32, "l_partkey": 148i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 46.0d, "l_extendedprice": 48214.44d, "l_discount": 0.06d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-10-05", "l_commitdate": "1997-09-12", "l_receiptdate": "1997-10-11", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "althy deposits" }, { "l_orderkey": 4995i32, "l_partkey": 148i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 48.0d, "l_extendedprice": 50310.72d, "l_discount": 0.08d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-22", "l_commitdate": "1996-04-01", "l_receiptdate": "1996-04-07", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "t blithely. requests affix blithely. " }, { "l_orderkey": 5156i32, "l_partkey": 148i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 36.0d, "l_extendedprice": 37733.04d, "l_discount": 0.04d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-12", "l_commitdate": "1996-12-10", "l_receiptdate": "1997-03-13", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": " slyly even orbi" }, { "l_orderkey": 5188i32, "l_partkey": 148i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 9.0d, "l_extendedprice": 9433.26d, "l_discount": 0.06d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-05-09", "l_commitdate": "1995-05-22", "l_receiptdate": "1995-05-19", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "r attainments are across the " }, { "l_orderkey": 5601i32, "l_partkey": 148i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 12.0d, "l_extendedprice": 12577.68d, "l_discount": 0.03d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-02-27", "l_commitdate": "1992-03-16", "l_receiptdate": "1992-03-27", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "ep carefully a" }, { "l_orderkey": 5760i32, "l_partkey": 148i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 8.0d, "l_extendedprice": 8385.12d, "l_discount": 0.07d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-09-06", "l_commitdate": "1994-08-03", "l_receiptdate": "1994-10-06", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "l accounts among the carefully even de" }, { "l_orderkey": 5793i32, "l_partkey": 148i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 48.0d, "l_extendedprice": 50310.72d, "l_discount": 0.02d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-27", "l_commitdate": "1997-08-23", "l_receiptdate": "1997-10-27", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "quickly enticing excuses use slyly abov" }, { "l_orderkey": 5858i32, "l_partkey": 148i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 7.0d, "l_extendedprice": 7336.98d, "l_discount": 0.08d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-10-07", "l_commitdate": "1992-08-16", "l_receiptdate": "1992-10-15", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": ". doggedly regular packages use pendin" }, { "l_orderkey": 5892i32, "l_partkey": 148i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 7.0d, "l_extendedprice": 7336.98d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-06-26", "l_commitdate": "1995-07-18", "l_receiptdate": "1995-07-25", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "e furiously. quickly even deposits da" } ] }
+{ "partkey": 149i32, "lines": [ { "l_orderkey": 194i32, "l_partkey": 149i32, "l_suppkey": 6i32, "l_linenumber": 6i32, "l_quantity": 16.0d, "l_extendedprice": 16786.24d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-05-14", "l_commitdate": "1992-06-14", "l_receiptdate": "1992-05-21", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "y regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular requests. furiousy regular request" }, { "l_orderkey": 198i32, "l_partkey": 149i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 15.0d, "l_extendedprice": 15737.1d, "l_discount": 0.04d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-12", "l_commitdate": "1998-02-26", "l_receiptdate": "1998-04-15", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "es. quickly pending deposits s" }, { "l_orderkey": 387i32, "l_partkey": 149i32, "l_suppkey": 6i32, "l_linenumber": 5i32, "l_quantity": 32.0d, "l_extendedprice": 33572.48d, "l_discount": 0.08d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-02", "l_commitdate": "1997-04-11", "l_receiptdate": "1997-05-11", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "gle. silent, fur" }, { "l_orderkey": 419i32, "l_partkey": 149i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 17.0d, "l_extendedprice": 17835.38d, "l_discount": 0.01d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-13", "l_commitdate": "1996-12-20", "l_receiptdate": "1997-02-01", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "lar dependencies: carefully regu" }, { "l_orderkey": 1380i32, "l_partkey": 149i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 6.0d, "l_extendedprice": 6294.84d, "l_discount": 0.0d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-06", "l_commitdate": "1996-10-01", "l_receiptdate": "1996-08-14", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "e foxes. slyly specia" }, { "l_orderkey": 1415i32, "l_partkey": 149i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 25.0d, "l_extendedprice": 26228.5d, "l_discount": 0.06d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-09-03", "l_commitdate": "1994-07-12", "l_receiptdate": "1994-09-13", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "ect never fluff" }, { "l_orderkey": 1479i32, "l_partkey": 149i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 33.0d, "l_extendedprice": 34621.62d, "l_discount": 0.1d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-12", "l_commitdate": "1996-02-28", "l_receiptdate": "1996-03-31", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": " carefully special courts affix. fluff" }, { "l_orderkey": 1638i32, "l_partkey": 149i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 30.0d, "l_extendedprice": 31474.2d, "l_discount": 0.0d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-05", "l_commitdate": "1997-09-17", "l_receiptdate": "1997-12-06", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "s cajole boldly bold requests. closely " }, { "l_orderkey": 1671i32, "l_partkey": 149i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 21.0d, "l_extendedprice": 22031.94d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-28", "l_commitdate": "1996-09-28", "l_receiptdate": "1996-08-08", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "s accounts slee" }, { "l_orderkey": 2081i32, "l_partkey": 149i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 13.0d, "l_extendedprice": 13638.82d, "l_discount": 0.07d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-23", "l_commitdate": "1997-08-22", "l_receiptdate": "1997-09-09", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "fter the even deposi" }, { "l_orderkey": 2306i32, "l_partkey": 149i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 39.0d, "l_extendedprice": 40916.46d, "l_discount": 0.04d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-07", "l_commitdate": "1995-09-13", "l_receiptdate": "1995-10-03", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "f the slyly unusual accounts. furiousl" }, { "l_orderkey": 2368i32, "l_partkey": 149i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 39.0d, "l_extendedprice": 40916.46d, "l_discount": 0.08d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-09-03", "l_commitdate": "1993-09-20", "l_receiptdate": "1993-09-28", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "ng the doggedly ironic requests are blithe" }, { "l_orderkey": 2438i32, "l_partkey": 149i32, "l_suppkey": 6i32, "l_linenumber": 6i32, "l_quantity": 23.0d, "l_extendedprice": 24130.22d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-10-06", "l_commitdate": "1993-08-17", "l_receiptdate": "1993-10-16", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "ely; blithely special pinto beans breach" }, { "l_orderkey": 2688i32, "l_partkey": 149i32, "l_suppkey": 10i32, "l_linenumber": 6i32, "l_quantity": 42.0d, "l_extendedprice": 44063.88d, "l_discount": 0.01d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-04-29", "l_commitdate": "1992-04-04", "l_receiptdate": "1992-05-17", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "lly even account" }, { "l_orderkey": 2724i32, "l_partkey": 149i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 29.0d, "l_extendedprice": 30425.06d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-01-10", "l_commitdate": "1994-11-17", "l_receiptdate": "1995-02-04", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "l requests hagg" }, { "l_orderkey": 2754i32, "l_partkey": 149i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 4.0d, "l_extendedprice": 4196.56d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-07-13", "l_commitdate": "1994-05-15", "l_receiptdate": "1994-08-02", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "blithely silent requests. regular depo" }, { "l_orderkey": 3107i32, "l_partkey": 149i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 16.0d, "l_extendedprice": 16786.24d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-30", "l_commitdate": "1997-10-20", "l_receiptdate": "1997-09-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "regular pinto beans. ironic ideas haggle" }, { "l_orderkey": 3296i32, "l_partkey": 149i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 31.0d, "l_extendedprice": 32523.34d, "l_discount": 0.08d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-01-26", "l_commitdate": "1994-12-25", "l_receiptdate": "1995-02-16", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "ainst the furi" }, { "l_orderkey": 3298i32, "l_partkey": 149i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 9.0d, "l_extendedprice": 9442.26d, "l_discount": 0.01d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-15", "l_commitdate": "1996-05-24", "l_receiptdate": "1996-09-12", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "ly final accou" }, { "l_orderkey": 3300i32, "l_partkey": 149i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 23.0d, "l_extendedprice": 24130.22d, "l_discount": 0.02d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-17", "l_commitdate": "1995-09-03", "l_receiptdate": "1995-09-04", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "he fluffily final a" }, { "l_orderkey": 4514i32, "l_partkey": 149i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 12.0d, "l_extendedprice": 12589.68d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-08-20", "l_commitdate": "1994-06-09", "l_receiptdate": "1994-09-15", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": " carefully ironic foxes nag caref" }, { "l_orderkey": 4546i32, "l_partkey": 149i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 10.0d, "l_extendedprice": 10491.4d, "l_discount": 0.08d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-02", "l_commitdate": "1995-09-16", "l_receiptdate": "1995-09-10", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "above the enticingly ironic dependencies" }, { "l_orderkey": 4832i32, "l_partkey": 149i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 4.0d, "l_extendedprice": 4196.56d, "l_discount": 0.04d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-16", "l_commitdate": "1998-02-12", "l_receiptdate": "1998-02-08", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "ages. slyly express deposits cajole car" }, { "l_orderkey": 4871i32, "l_partkey": 149i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 35.0d, "l_extendedprice": 36719.9d, "l_discount": 0.08d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-11", "l_commitdate": "1995-07-18", "l_receiptdate": "1995-08-29", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "ackages sle" }, { "l_orderkey": 4928i32, "l_partkey": 149i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 34.0d, "l_extendedprice": 35670.76d, "l_discount": 0.06d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-10-12", "l_commitdate": "1993-12-31", "l_receiptdate": "1993-10-14", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": ", regular depos" }, { "l_orderkey": 4960i32, "l_partkey": 149i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 9.0d, "l_extendedprice": 9442.26d, "l_discount": 0.01d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-03-20", "l_commitdate": "1995-05-05", "l_receiptdate": "1995-04-17", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "e blithely carefully fina" }, { "l_orderkey": 5157i32, "l_partkey": 149i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 40.0d, "l_extendedprice": 41965.6d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-11", "l_commitdate": "1997-08-28", "l_receiptdate": "1997-09-01", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "ial packages according to " }, { "l_orderkey": 5346i32, "l_partkey": 149i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 21.0d, "l_extendedprice": 22031.94d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-03-11", "l_commitdate": "1994-03-07", "l_receiptdate": "1994-04-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "integrate blithely a" }, { "l_orderkey": 5382i32, "l_partkey": 149i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 3.0d, "l_extendedprice": 3147.42d, "l_discount": 0.1d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-03-22", "l_commitdate": "1992-03-06", "l_receiptdate": "1992-04-19", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "efully unusua" }, { "l_orderkey": 5445i32, "l_partkey": 149i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 10.0d, "l_extendedprice": 10491.4d, "l_discount": 0.08d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-09-16", "l_commitdate": "1993-10-05", "l_receiptdate": "1993-10-01", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "ncies abou" }, { "l_orderkey": 5766i32, "l_partkey": 149i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 39.0d, "l_extendedprice": 40916.46d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-10-24", "l_commitdate": "1993-12-07", "l_receiptdate": "1993-11-08", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": " furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear furiously unusual courts. slyly final pear f" }, { "l_orderkey": 5798i32, "l_partkey": 149i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 7.0d, "l_extendedprice": 7343.98d, "l_discount": 0.06d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-06", "l_commitdate": "1998-05-10", "l_receiptdate": "1998-06-07", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "ts against the blithely final p" }, { "l_orderkey": 5958i32, "l_partkey": 149i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 33.0d, "l_extendedprice": 34621.62d, "l_discount": 0.02d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-24", "l_commitdate": "1995-12-12", "l_receiptdate": "1995-10-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "lar, regular accounts wake furi" } ] }
+{ "partkey": 150i32, "lines": [ { "l_orderkey": 485i32, "l_partkey": 150i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 50.0d, "l_extendedprice": 52507.5d, "l_discount": 0.01d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-28", "l_commitdate": "1997-05-26", "l_receiptdate": "1997-04-18", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "iously quick excuses. carefully final f" }, { "l_orderkey": 677i32, "l_partkey": 150i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 25.0d, "l_extendedprice": 26253.75d, "l_discount": 0.0d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-03-12", "l_commitdate": "1994-02-02", "l_receiptdate": "1994-03-28", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": " packages integrate blithely" }, { "l_orderkey": 1025i32, "l_partkey": 150i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 36.0d, "l_extendedprice": 37805.4d, "l_discount": 0.03d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-05-15", "l_commitdate": "1995-07-05", "l_receiptdate": "1995-06-10", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "e unusual, regular instr" }, { "l_orderkey": 1251i32, "l_partkey": 150i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 7.0d, "l_extendedprice": 7351.05d, "l_discount": 0.07d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-08", "l_commitdate": "1997-12-27", "l_receiptdate": "1998-01-18", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "riously pe" }, { "l_orderkey": 1317i32, "l_partkey": 150i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 36.0d, "l_extendedprice": 37805.4d, "l_discount": 0.02d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-03", "l_commitdate": "1995-07-06", "l_receiptdate": "1995-09-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": " deposits. quic" }, { "l_orderkey": 1701i32, "l_partkey": 150i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 47.0d, "l_extendedprice": 49357.05d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-05-25", "l_commitdate": "1992-06-29", "l_receiptdate": "1992-06-15", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "slyly final requests cajole requests. f" }, { "l_orderkey": 1829i32, "l_partkey": 150i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 12.0d, "l_extendedprice": 12601.8d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-08-23", "l_commitdate": "1994-07-13", "l_receiptdate": "1994-09-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "ges wake furiously express pinto" }, { "l_orderkey": 1856i32, "l_partkey": 150i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 22.0d, "l_extendedprice": 23103.3d, "l_discount": 0.08d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-05-02", "l_commitdate": "1992-05-26", "l_receiptdate": "1992-05-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "platelets detect slyly regular packages. ca" }, { "l_orderkey": 2499i32, "l_partkey": 150i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 15.0d, "l_extendedprice": 15752.25d, "l_discount": 0.04d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-21", "l_commitdate": "1995-12-06", "l_receiptdate": "1996-01-19", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": " slyly across the slyly" }, { "l_orderkey": 2532i32, "l_partkey": 150i32, "l_suppkey": 1i32, "l_linenumber": 6i32, "l_quantity": 20.0d, "l_extendedprice": 21003.0d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-02", "l_commitdate": "1995-11-26", "l_receiptdate": "1995-12-08", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "er the slyly pending" }, { "l_orderkey": 2561i32, "l_partkey": 150i32, "l_suppkey": 3i32, "l_linenumber": 5i32, "l_quantity": 2.0d, "l_extendedprice": 2100.3d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-14", "l_commitdate": "1998-01-21", "l_receiptdate": "1998-03-27", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "s are. silently silent foxes sleep about" }, { "l_orderkey": 3333i32, "l_partkey": 150i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 27.0d, "l_extendedprice": 28354.05d, "l_discount": 0.06d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-12-06", "l_commitdate": "1992-10-26", "l_receiptdate": "1992-12-07", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "s dazzle fluffil" }, { "l_orderkey": 4038i32, "l_partkey": 150i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 29.0d, "l_extendedprice": 30454.35d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-07", "l_commitdate": "1996-03-08", "l_receiptdate": "1996-01-13", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "ffix. quietly ironic packages a" }, { "l_orderkey": 4192i32, "l_partkey": 150i32, "l_suppkey": 7i32, "l_linenumber": 6i32, "l_quantity": 44.0d, "l_extendedprice": 46206.6d, "l_discount": 0.1d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-06", "l_commitdate": "1998-07-09", "l_receiptdate": "1998-08-20", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "structions mai" }, { "l_orderkey": 4423i32, "l_partkey": 150i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 3.0d, "l_extendedprice": 3150.45d, "l_discount": 0.03d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-03-22", "l_commitdate": "1995-04-06", "l_receiptdate": "1995-04-19", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": " final theodolites nag after the bli" }, { "l_orderkey": 4550i32, "l_partkey": 150i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 9.0d, "l_extendedprice": 9451.35d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-04-19", "l_commitdate": "1995-02-07", "l_receiptdate": "1995-04-24", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "l dependencies boost slyly after th" }, { "l_orderkey": 4674i32, "l_partkey": 150i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 50.0d, "l_extendedprice": 52507.5d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-05-13", "l_commitdate": "1994-06-15", "l_receiptdate": "1994-06-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "haggle about the blithel" }, { "l_orderkey": 4711i32, "l_partkey": 150i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 22.0d, "l_extendedprice": 23103.3d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-21", "l_commitdate": "1998-06-18", "l_receiptdate": "1998-07-19", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "along the quickly careful packages. bli" }, { "l_orderkey": 4773i32, "l_partkey": 150i32, "l_suppkey": 3i32, "l_linenumber": 5i32, "l_quantity": 20.0d, "l_extendedprice": 21003.0d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-28", "l_commitdate": "1996-02-17", "l_receiptdate": "1996-01-15", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": " blithely final deposits nag after t" }, { "l_orderkey": 4805i32, "l_partkey": 150i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 7.0d, "l_extendedprice": 7351.05d, "l_discount": 0.09d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-05-01", "l_commitdate": "1992-07-09", "l_receiptdate": "1992-05-09", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": " requests. regular deposit" }, { "l_orderkey": 4864i32, "l_partkey": 150i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 28.0d, "l_extendedprice": 29404.2d, "l_discount": 0.06d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-02-06", "l_commitdate": "1992-12-15", "l_receiptdate": "1993-02-10", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "thely around the bli" }, { "l_orderkey": 4931i32, "l_partkey": 150i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 25.0d, "l_extendedprice": 26253.75d, "l_discount": 0.05d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-12-19", "l_commitdate": "1995-01-05", "l_receiptdate": "1994-12-21", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "aggle bravely according to the quic" }, { "l_orderkey": 5157i32, "l_partkey": 150i32, "l_suppkey": 9i32, "l_linenumber": 6i32, "l_quantity": 26.0d, "l_extendedprice": 27303.9d, "l_discount": 0.1d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-28", "l_commitdate": "1997-08-22", "l_receiptdate": "1997-08-22", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "nto beans cajole car" }, { "l_orderkey": 5253i32, "l_partkey": 150i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 38.0d, "l_extendedprice": 39905.7d, "l_discount": 0.02d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-03", "l_commitdate": "1995-06-14", "l_receiptdate": "1995-08-27", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "onic dependencies are furiou" }, { "l_orderkey": 5319i32, "l_partkey": 150i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 31.0d, "l_extendedprice": 32554.65d, "l_discount": 0.04d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-26", "l_commitdate": "1996-03-07", "l_receiptdate": "1996-04-24", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "d carefully about the courts. fluffily spe" }, { "l_orderkey": 5444i32, "l_partkey": 150i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 40.0d, "l_extendedprice": 42006.0d, "l_discount": 0.08d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-04-06", "l_commitdate": "1995-05-08", "l_receiptdate": "1995-05-06", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": " even packages." }, { "l_orderkey": 5537i32, "l_partkey": 150i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 15.0d, "l_extendedprice": 15752.25d, "l_discount": 0.07d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-13", "l_commitdate": "1996-12-25", "l_receiptdate": "1997-01-27", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "eposits. permanently pending packag" }, { "l_orderkey": 5734i32, "l_partkey": 150i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 6.0d, "l_extendedprice": 6300.9d, "l_discount": 0.07d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-10-27", "l_commitdate": "1997-12-19", "l_receiptdate": "1997-11-02", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "s. regular platelets cajole furiously. regu" }, { "l_orderkey": 5892i32, "l_partkey": 150i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 37.0d, "l_extendedprice": 38855.55d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-12", "l_commitdate": "1995-06-11", "l_receiptdate": "1995-09-05", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "maintain. bold, expre" } ] }
+{ "partkey": 151i32, "lines": [ { "l_orderkey": 224i32, "l_partkey": 151i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 16.0d, "l_extendedprice": 16818.4d, "l_discount": 0.04d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-08-01", "l_commitdate": "1994-07-30", "l_receiptdate": "1994-08-27", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "y unusual foxes " }, { "l_orderkey": 519i32, "l_partkey": 151i32, "l_suppkey": 6i32, "l_linenumber": 6i32, "l_quantity": 3.0d, "l_extendedprice": 3153.45d, "l_discount": 0.04d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-02-01", "l_commitdate": "1998-01-25", "l_receiptdate": "1998-02-27", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "erve blithely blithely ironic asymp" }, { "l_orderkey": 579i32, "l_partkey": 151i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 9.0d, "l_extendedprice": 9460.35d, "l_discount": 0.0d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-20", "l_commitdate": "1998-04-28", "l_receiptdate": "1998-07-19", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "e ironic, express deposits are furiously" }, { "l_orderkey": 773i32, "l_partkey": 151i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 39.0d, "l_extendedprice": 40994.85d, "l_discount": 0.06d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-01-04", "l_commitdate": "1993-12-23", "l_receiptdate": "1994-01-26", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "quickly eve" }, { "l_orderkey": 1061i32, "l_partkey": 151i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 7.0d, "l_extendedprice": 7358.05d, "l_discount": 0.04d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-09", "l_commitdate": "1998-08-12", "l_receiptdate": "1998-08-16", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "es are slyly expr" }, { "l_orderkey": 1089i32, "l_partkey": 151i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 47.0d, "l_extendedprice": 49404.05d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-26", "l_commitdate": "1996-06-25", "l_receiptdate": "1996-07-11", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "aggle furiously among the bravely eve" }, { "l_orderkey": 1122i32, "l_partkey": 151i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 15.0d, "l_extendedprice": 15767.25d, "l_discount": 0.05d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-15", "l_commitdate": "1997-03-15", "l_receiptdate": "1997-05-07", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "olve blithely regular, " }, { "l_orderkey": 1248i32, "l_partkey": 151i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 37.0d, "l_extendedprice": 38892.55d, "l_discount": 0.06d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-01-26", "l_commitdate": "1992-02-05", "l_receiptdate": "1992-02-13", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": ". final requests integrate quickly. blit" }, { "l_orderkey": 1664i32, "l_partkey": 151i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 10.0d, "l_extendedprice": 10511.5d, "l_discount": 0.0d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-04-10", "l_commitdate": "1996-05-13", "l_receiptdate": "1996-05-07", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "instructions up the acc" }, { "l_orderkey": 2727i32, "l_partkey": 151i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 3.0d, "l_extendedprice": 3153.45d, "l_discount": 0.03d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-18", "l_commitdate": "1998-06-06", "l_receiptdate": "1998-06-23", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": " the carefully regular foxes u" }, { "l_orderkey": 2822i32, "l_partkey": 151i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 39.0d, "l_extendedprice": 40994.85d, "l_discount": 0.04d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-09-11", "l_commitdate": "1993-08-29", "l_receiptdate": "1993-09-18", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "kly about the sly" }, { "l_orderkey": 3014i32, "l_partkey": 151i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 48.0d, "l_extendedprice": 50455.2d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-12-19", "l_commitdate": "1993-01-08", "l_receiptdate": "1992-12-25", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "y pending theodolites wake. reg" }, { "l_orderkey": 3365i32, "l_partkey": 151i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 37.0d, "l_extendedprice": 38892.55d, "l_discount": 0.02d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-12-22", "l_commitdate": "1995-02-07", "l_receiptdate": "1995-01-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "requests. quickly pending instructions a" }, { "l_orderkey": 3462i32, "l_partkey": 151i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 4.0d, "l_extendedprice": 4204.6d, "l_discount": 0.09d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-12", "l_commitdate": "1997-07-31", "l_receiptdate": "1997-06-16", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "ackages. fu" }, { "l_orderkey": 3587i32, "l_partkey": 151i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 36.0d, "l_extendedprice": 37841.4d, "l_discount": 0.05d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-26", "l_commitdate": "1996-06-16", "l_receiptdate": "1996-08-23", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "ully regular excuse" }, { "l_orderkey": 3969i32, "l_partkey": 151i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 21.0d, "l_extendedprice": 22074.15d, "l_discount": 0.07d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-31", "l_commitdate": "1997-07-16", "l_receiptdate": "1997-09-02", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "unts doze quickly final reque" }, { "l_orderkey": 4256i32, "l_partkey": 151i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 22.0d, "l_extendedprice": 23125.3d, "l_discount": 0.05d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-07-30", "l_commitdate": "1992-05-14", "l_receiptdate": "1992-08-14", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": ", final platelets are slyly final pint" }, { "l_orderkey": 4454i32, "l_partkey": 151i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 20.0d, "l_extendedprice": 21023.0d, "l_discount": 0.1d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-05-06", "l_commitdate": "1994-03-17", "l_receiptdate": "1994-05-20", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "lar theodolites. even instructio" }, { "l_orderkey": 4931i32, "l_partkey": 151i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 8.0d, "l_extendedprice": 8409.2d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-12-15", "l_commitdate": "1995-01-14", "l_receiptdate": "1995-01-06", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "ts boost. packages wake sly" }, { "l_orderkey": 5093i32, "l_partkey": 151i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 31.0d, "l_extendedprice": 32585.65d, "l_discount": 0.0d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-09-22", "l_commitdate": "1993-11-14", "l_receiptdate": "1993-09-26", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": " against the" }, { "l_orderkey": 5222i32, "l_partkey": 151i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 1.0d, "l_extendedprice": 1051.15d, "l_discount": 0.0d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-08-19", "l_commitdate": "1994-07-16", "l_receiptdate": "1994-09-08", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "idle requests. carefully pending pinto bean" }, { "l_orderkey": 5537i32, "l_partkey": 151i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 39.0d, "l_extendedprice": 40994.85d, "l_discount": 0.03d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-17", "l_commitdate": "1996-11-08", "l_receiptdate": "1997-01-15", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": " slyly bold packages are. qu" }, { "l_orderkey": 5605i32, "l_partkey": 151i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 7.0d, "l_extendedprice": 7358.05d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-13", "l_commitdate": "1996-10-13", "l_receiptdate": "1996-12-15", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "lowly special courts nag among the furi" }, { "l_orderkey": 5730i32, "l_partkey": 151i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 2.0d, "l_extendedprice": 2102.3d, "l_discount": 0.08d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-02-24", "l_commitdate": "1998-03-15", "l_receiptdate": "1998-03-11", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "ely ironic foxes. carefu" } ] }
+{ "partkey": 152i32, "lines": [ { "l_orderkey": 7i32, "l_partkey": 152i32, "l_suppkey": 4i32, "l_linenumber": 5i32, "l_quantity": 38.0d, "l_extendedprice": 39981.7d, "l_discount": 0.08d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-02-11", "l_commitdate": "1996-02-24", "l_receiptdate": "1996-02-18", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "ns haggle carefully ironic deposits. bl" }, { "l_orderkey": 422i32, "l_partkey": 152i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 25.0d, "l_extendedprice": 26303.75d, "l_discount": 0.1d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-01", "l_commitdate": "1997-08-17", "l_receiptdate": "1997-07-09", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "carefully bold theodolit" }, { "l_orderkey": 449i32, "l_partkey": 152i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 12.0d, "l_extendedprice": 12625.8d, "l_discount": 0.02d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-06", "l_commitdate": "1995-08-25", "l_receiptdate": "1995-11-18", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "ly. blithely ironic " }, { "l_orderkey": 896i32, "l_partkey": 152i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 11.0d, "l_extendedprice": 11573.65d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-05-19", "l_commitdate": "1993-05-22", "l_receiptdate": "1993-06-08", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "the multipliers sleep" }, { "l_orderkey": 928i32, "l_partkey": 152i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 46.0d, "l_extendedprice": 48398.9d, "l_discount": 0.08d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-05-09", "l_commitdate": "1995-04-09", "l_receiptdate": "1995-06-01", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": " beans sleep against the carefully ir" }, { "l_orderkey": 962i32, "l_partkey": 152i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 12.0d, "l_extendedprice": 12625.8d, "l_discount": 0.02d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-06-09", "l_commitdate": "1994-06-07", "l_receiptdate": "1994-06-11", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "across the furiously regular escapades daz" }, { "l_orderkey": 1281i32, "l_partkey": 152i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 13.0d, "l_extendedprice": 13677.95d, "l_discount": 0.03d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-02-06", "l_commitdate": "1995-02-13", "l_receiptdate": "1995-02-18", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "fully final platelets wa" }, { "l_orderkey": 1732i32, "l_partkey": 152i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 9.0d, "l_extendedprice": 9469.35d, "l_discount": 0.04d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-02-25", "l_commitdate": "1994-01-29", "l_receiptdate": "1994-03-16", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "ular platelets. deposits wak" }, { "l_orderkey": 1889i32, "l_partkey": 152i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 41.0d, "l_extendedprice": 43138.15d, "l_discount": 0.1d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-15", "l_commitdate": "1997-05-10", "l_receiptdate": "1997-07-08", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "s! furiously pending r" }, { "l_orderkey": 1954i32, "l_partkey": 152i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 31.0d, "l_extendedprice": 32616.65d, "l_discount": 0.06d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-18", "l_commitdate": "1997-07-07", "l_receiptdate": "1997-09-03", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "against the packages. bold, ironic e" }, { "l_orderkey": 2050i32, "l_partkey": 152i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 48.0d, "l_extendedprice": 50503.2d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-09-30", "l_commitdate": "1994-08-23", "l_receiptdate": "1994-10-29", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": " final packages. pinto" }, { "l_orderkey": 2368i32, "l_partkey": 152i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 16.0d, "l_extendedprice": 16834.4d, "l_discount": 0.04d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-10-31", "l_commitdate": "1993-10-22", "l_receiptdate": "1993-11-06", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "telets wake carefully iro" }, { "l_orderkey": 2402i32, "l_partkey": 152i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 24.0d, "l_extendedprice": 25251.6d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-21", "l_commitdate": "1996-10-19", "l_receiptdate": "1996-11-29", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "as; blithely ironic requ" }, { "l_orderkey": 2403i32, "l_partkey": 152i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 19.0d, "l_extendedprice": 19990.85d, "l_discount": 0.08d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-20", "l_commitdate": "1998-07-02", "l_receiptdate": "1998-05-13", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "sits. ironic in" }, { "l_orderkey": 3207i32, "l_partkey": 152i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 17.0d, "l_extendedprice": 17886.55d, "l_discount": 0.03d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-27", "l_commitdate": "1998-04-06", "l_receiptdate": "1998-03-28", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "eep against the instructions. gifts hag" }, { "l_orderkey": 3619i32, "l_partkey": 152i32, "l_suppkey": 3i32, "l_linenumber": 6i32, "l_quantity": 43.0d, "l_extendedprice": 45242.45d, "l_discount": 0.01d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-25", "l_commitdate": "1997-01-06", "l_receiptdate": "1997-02-07", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": " bold, even" }, { "l_orderkey": 3750i32, "l_partkey": 152i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 33.0d, "l_extendedprice": 34720.95d, "l_discount": 0.05d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-06-27", "l_commitdate": "1995-06-20", "l_receiptdate": "1995-07-03", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "theodolites haggle. slyly pendin" }, { "l_orderkey": 3841i32, "l_partkey": 152i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 40.0d, "l_extendedprice": 42086.0d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-02-02", "l_commitdate": "1994-11-30", "l_receiptdate": "1995-02-14", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "its. quickly regular ideas nag carefully" }, { "l_orderkey": 3878i32, "l_partkey": 152i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 20.0d, "l_extendedprice": 21043.0d, "l_discount": 0.01d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-13", "l_commitdate": "1997-05-22", "l_receiptdate": "1997-07-20", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "about the carefully ironic pa" }, { "l_orderkey": 4230i32, "l_partkey": 152i32, "l_suppkey": 3i32, "l_linenumber": 7i32, "l_quantity": 18.0d, "l_extendedprice": 18938.7d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-06-23", "l_commitdate": "1992-05-10", "l_receiptdate": "1992-07-04", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": " the final acco" }, { "l_orderkey": 4327i32, "l_partkey": 152i32, "l_suppkey": 4i32, "l_linenumber": 6i32, "l_quantity": 10.0d, "l_extendedprice": 10521.5d, "l_discount": 0.0d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-04-28", "l_commitdate": "1995-06-11", "l_receiptdate": "1995-05-07", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "arefully sile" }, { "l_orderkey": 4390i32, "l_partkey": 152i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 35.0d, "l_extendedprice": 36825.25d, "l_discount": 0.07d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-05-30", "l_commitdate": "1995-07-02", "l_receiptdate": "1995-06-15", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "ongside of the slyly regular ideas" }, { "l_orderkey": 4454i32, "l_partkey": 152i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 22.0d, "l_extendedprice": 23147.3d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-02-06", "l_commitdate": "1994-04-11", "l_receiptdate": "1994-03-06", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "ully. carefully final accounts accordi" }, { "l_orderkey": 4832i32, "l_partkey": 152i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 10.0d, "l_extendedprice": 10521.5d, "l_discount": 0.0d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-08", "l_commitdate": "1998-02-01", "l_receiptdate": "1998-01-11", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "ly. blithely bold pinto beans should have" }, { "l_orderkey": 4871i32, "l_partkey": 152i32, "l_suppkey": 3i32, "l_linenumber": 5i32, "l_quantity": 10.0d, "l_extendedprice": 10521.5d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-12", "l_commitdate": "1995-09-02", "l_receiptdate": "1995-10-05", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "s integrate after the a" }, { "l_orderkey": 5159i32, "l_partkey": 152i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 22.0d, "l_extendedprice": 23147.3d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-06", "l_commitdate": "1996-11-04", "l_receiptdate": "1996-11-15", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "he furiously sile" }, { "l_orderkey": 5765i32, "l_partkey": 152i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 46.0d, "l_extendedprice": 48398.9d, "l_discount": 0.07d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-03-13", "l_commitdate": "1995-02-12", "l_receiptdate": "1995-03-20", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "ccounts sleep about th" } ] }
+{ "partkey": 153i32, "lines": [ { "l_orderkey": 322i32, "l_partkey": 153i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 12.0d, "l_extendedprice": 12637.8d, "l_discount": 0.08d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-06-29", "l_commitdate": "1992-05-30", "l_receiptdate": "1992-07-11", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "ular theodolites promise qu" }, { "l_orderkey": 386i32, "l_partkey": 153i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 39.0d, "l_extendedprice": 41072.85d, "l_discount": 0.1d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-05-10", "l_commitdate": "1995-02-28", "l_receiptdate": "1995-05-25", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "hely. carefully regular accounts hag" }, { "l_orderkey": 387i32, "l_partkey": 153i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 42.0d, "l_extendedprice": 44232.3d, "l_discount": 0.07d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-25", "l_commitdate": "1997-02-25", "l_receiptdate": "1997-05-29", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "lithely final theodolites." }, { "l_orderkey": 419i32, "l_partkey": 153i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 33.0d, "l_extendedprice": 34753.95d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-06", "l_commitdate": "1996-12-25", "l_receiptdate": "1996-11-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "y above the bli" }, { "l_orderkey": 450i32, "l_partkey": 153i32, "l_suppkey": 1i32, "l_linenumber": 6i32, "l_quantity": 33.0d, "l_extendedprice": 34753.95d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-05-18", "l_commitdate": "1995-05-22", "l_receiptdate": "1995-05-23", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "ily carefully final depo" }, { "l_orderkey": 548i32, "l_partkey": 153i32, "l_suppkey": 8i32, "l_linenumber": 6i32, "l_quantity": 32.0d, "l_extendedprice": 33700.8d, "l_discount": 0.06d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-12-16", "l_commitdate": "1994-11-20", "l_receiptdate": "1994-12-29", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "c instruction" }, { "l_orderkey": 647i32, "l_partkey": 153i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 15.0d, "l_extendedprice": 15797.25d, "l_discount": 0.08d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-23", "l_commitdate": "1997-10-09", "l_receiptdate": "1997-10-21", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "ve the even, bold foxes sleep " }, { "l_orderkey": 1092i32, "l_partkey": 153i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 1.0d, "l_extendedprice": 1053.15d, "l_discount": 0.01d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-03-10", "l_commitdate": "1995-04-21", "l_receiptdate": "1995-04-06", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "lent, pending requests-- requests nag accor" }, { "l_orderkey": 1347i32, "l_partkey": 153i32, "l_suppkey": 8i32, "l_linenumber": 6i32, "l_quantity": 21.0d, "l_extendedprice": 22116.15d, "l_discount": 0.06d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-10-10", "l_commitdate": "1997-08-16", "l_receiptdate": "1997-11-02", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "g pinto beans affix car" }, { "l_orderkey": 1636i32, "l_partkey": 153i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 43.0d, "l_extendedprice": 45285.45d, "l_discount": 0.06d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-23", "l_commitdate": "1997-08-10", "l_receiptdate": "1997-09-17", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "blithely special r" }, { "l_orderkey": 1829i32, "l_partkey": 153i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 14.0d, "l_extendedprice": 14744.1d, "l_discount": 0.03d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-08-15", "l_commitdate": "1994-06-08", "l_receiptdate": "1994-08-30", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "regular deposits alongside of the flu" }, { "l_orderkey": 2276i32, "l_partkey": 153i32, "l_suppkey": 5i32, "l_linenumber": 5i32, "l_quantity": 50.0d, "l_extendedprice": 52657.5d, "l_discount": 0.03d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-13", "l_commitdate": "1996-06-25", "l_receiptdate": "1996-07-22", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": " accounts dete" }, { "l_orderkey": 2694i32, "l_partkey": 153i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 30.0d, "l_extendedprice": 31594.5d, "l_discount": 0.02d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-20", "l_commitdate": "1996-06-01", "l_receiptdate": "1996-07-15", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "oxes. never iro" }, { "l_orderkey": 2819i32, "l_partkey": 153i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 5.0d, "l_extendedprice": 5265.75d, "l_discount": 0.0d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-05-29", "l_commitdate": "1994-06-12", "l_receiptdate": "1994-06-28", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": " fluffily unusual foxes sleep caref" }, { "l_orderkey": 3591i32, "l_partkey": 153i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 49.0d, "l_extendedprice": 51604.35d, "l_discount": 0.01d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-03-21", "l_commitdate": "1994-01-26", "l_receiptdate": "1994-03-28", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": " mold slyly. bl" }, { "l_orderkey": 3717i32, "l_partkey": 153i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 45.0d, "l_extendedprice": 47391.75d, "l_discount": 0.07d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-09", "l_commitdate": "1998-08-18", "l_receiptdate": "1998-08-14", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "ests wake whithout the blithely final pl" }, { "l_orderkey": 3782i32, "l_partkey": 153i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 10.0d, "l_extendedprice": 10531.5d, "l_discount": 0.03d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-07", "l_commitdate": "1996-11-19", "l_receiptdate": "1996-10-04", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "ven pinto b" }, { "l_orderkey": 3906i32, "l_partkey": 153i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 42.0d, "l_extendedprice": 44232.3d, "l_discount": 0.0d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-09-03", "l_commitdate": "1992-07-22", "l_receiptdate": "1992-09-04", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "jole blithely after the furiously regular " }, { "l_orderkey": 3910i32, "l_partkey": 153i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 1.0d, "l_extendedprice": 1053.15d, "l_discount": 0.03d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-12", "l_commitdate": "1996-10-21", "l_receiptdate": "1996-09-19", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "s sleep neve" }, { "l_orderkey": 4354i32, "l_partkey": 153i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 23.0d, "l_extendedprice": 24222.45d, "l_discount": 0.01d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-11-20", "l_commitdate": "1994-12-23", "l_receiptdate": "1994-11-27", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "kly along the ironic, ent" }, { "l_orderkey": 4359i32, "l_partkey": 153i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 8.0d, "l_extendedprice": 8425.2d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-06-27", "l_commitdate": "1993-05-16", "l_receiptdate": "1993-07-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "packages affix. fluffily regular f" }, { "l_orderkey": 4389i32, "l_partkey": 153i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 13.0d, "l_extendedprice": 13690.95d, "l_discount": 0.0d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-08-18", "l_commitdate": "1994-06-06", "l_receiptdate": "1994-08-20", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "nal, regula" }, { "l_orderkey": 4422i32, "l_partkey": 153i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 4.0d, "l_extendedprice": 4212.6d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-18", "l_commitdate": "1995-08-12", "l_receiptdate": "1995-10-18", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "cies along the bo" }, { "l_orderkey": 4455i32, "l_partkey": 153i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 47.0d, "l_extendedprice": 49498.05d, "l_discount": 0.09d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-01-01", "l_commitdate": "1993-12-25", "l_receiptdate": "1994-01-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": " requests. even, even accou" }, { "l_orderkey": 4740i32, "l_partkey": 153i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 24.0d, "l_extendedprice": 25275.6d, "l_discount": 0.08d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-10", "l_commitdate": "1996-09-27", "l_receiptdate": "1996-10-07", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "hely regular deposits" }, { "l_orderkey": 4775i32, "l_partkey": 153i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 37.0d, "l_extendedprice": 38966.55d, "l_discount": 0.02d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-06", "l_commitdate": "1995-09-28", "l_receiptdate": "1995-09-28", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "ts. pinto beans use according to th" }, { "l_orderkey": 4775i32, "l_partkey": 153i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 34.0d, "l_extendedprice": 35807.1d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-14", "l_commitdate": "1995-10-15", "l_receiptdate": "1995-09-21", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "onic epitaphs. f" }, { "l_orderkey": 4999i32, "l_partkey": 153i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 30.0d, "l_extendedprice": 31594.5d, "l_discount": 0.0d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-08-20", "l_commitdate": "1993-08-15", "l_receiptdate": "1993-08-30", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "ades cajole carefully unusual ide" }, { "l_orderkey": 5184i32, "l_partkey": 153i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 33.0d, "l_extendedprice": 34753.95d, "l_discount": 0.07d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-17", "l_commitdate": "1998-10-16", "l_receiptdate": "1998-08-24", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "posits. carefully express asympto" }, { "l_orderkey": 5382i32, "l_partkey": 153i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 34.0d, "l_extendedprice": 35807.1d, "l_discount": 0.03d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-02-22", "l_commitdate": "1992-02-18", "l_receiptdate": "1992-03-02", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "gular accounts. even accounts integrate" }, { "l_orderkey": 5415i32, "l_partkey": 153i32, "l_suppkey": 4i32, "l_linenumber": 7i32, "l_quantity": 11.0d, "l_extendedprice": 11584.65d, "l_discount": 0.08d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-08-21", "l_commitdate": "1992-09-04", "l_receiptdate": "1992-08-23", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "unts maintain carefully unusual" }, { "l_orderkey": 5767i32, "l_partkey": 153i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 34.0d, "l_extendedprice": 35807.1d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-06-02", "l_commitdate": "1992-06-23", "l_receiptdate": "1992-06-17", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "sits among the" }, { "l_orderkey": 5856i32, "l_partkey": 153i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 39.0d, "l_extendedprice": 41072.85d, "l_discount": 0.05d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-01-18", "l_commitdate": "1995-01-11", "l_receiptdate": "1995-01-19", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "uickly quickly fluffy in" }, { "l_orderkey": 5859i32, "l_partkey": 153i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 35.0d, "l_extendedprice": 36860.25d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-28", "l_commitdate": "1997-07-14", "l_receiptdate": "1997-06-15", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "egular acco" }, { "l_orderkey": 5958i32, "l_partkey": 153i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 42.0d, "l_extendedprice": 44232.3d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-12", "l_commitdate": "1995-10-19", "l_receiptdate": "1996-01-09", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "n accounts. final, ironic packages " } ] }
+{ "partkey": 154i32, "lines": [ { "l_orderkey": 193i32, "l_partkey": 154i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 15.0d, "l_extendedprice": 15812.25d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-11-22", "l_commitdate": "1993-10-09", "l_receiptdate": "1993-12-05", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "ffily. regular packages d" }, { "l_orderkey": 292i32, "l_partkey": 154i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 8.0d, "l_extendedprice": 8433.2d, "l_discount": 0.1d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-02-18", "l_commitdate": "1992-03-30", "l_receiptdate": "1992-03-18", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "sily bold deposits alongside of the ex" }, { "l_orderkey": 608i32, "l_partkey": 154i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 19.0d, "l_extendedprice": 20028.85d, "l_discount": 0.08d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-04-19", "l_commitdate": "1996-05-02", "l_receiptdate": "1996-05-03", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "ideas. the" }, { "l_orderkey": 1281i32, "l_partkey": 154i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 38.0d, "l_extendedprice": 40057.7d, "l_discount": 0.04d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-03-28", "l_commitdate": "1995-01-11", "l_receiptdate": "1995-04-14", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": " ideas-- blithely regular" }, { "l_orderkey": 1377i32, "l_partkey": 154i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 5.0d, "l_extendedprice": 5270.75d, "l_discount": 0.06d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-06", "l_commitdate": "1998-07-08", "l_receiptdate": "1998-06-01", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": " final, final grouches. accoun" }, { "l_orderkey": 1377i32, "l_partkey": 154i32, "l_suppkey": 6i32, "l_linenumber": 6i32, "l_quantity": 17.0d, "l_extendedprice": 17920.55d, "l_discount": 0.03d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-19", "l_commitdate": "1998-07-20", "l_receiptdate": "1998-07-14", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "s must have to mold b" }, { "l_orderkey": 1573i32, "l_partkey": 154i32, "l_suppkey": 6i32, "l_linenumber": 6i32, "l_quantity": 30.0d, "l_extendedprice": 31624.5d, "l_discount": 0.03d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-12-29", "l_commitdate": "1993-03-06", "l_receiptdate": "1993-01-02", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": ". blithely even theodolites boos" }, { "l_orderkey": 1827i32, "l_partkey": 154i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 48.0d, "l_extendedprice": 50599.2d, "l_discount": 0.03d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-28", "l_commitdate": "1996-09-15", "l_receiptdate": "1996-09-01", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "oxes. special, final asymptote" }, { "l_orderkey": 2145i32, "l_partkey": 154i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 6.0d, "l_extendedprice": 6324.9d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-10-10", "l_commitdate": "1992-11-29", "l_receiptdate": "1992-10-14", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "s. fluffily express accounts sleep. slyl" }, { "l_orderkey": 2626i32, "l_partkey": 154i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 40.0d, "l_extendedprice": 42166.0d, "l_discount": 0.05d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-28", "l_commitdate": "1995-12-03", "l_receiptdate": "1995-10-10", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "eans. ironic deposits haggle. depo" }, { "l_orderkey": 2849i32, "l_partkey": 154i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 16.0d, "l_extendedprice": 16866.4d, "l_discount": 0.09d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-20", "l_commitdate": "1996-07-23", "l_receiptdate": "1996-06-18", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": ". furiously regular requ" }, { "l_orderkey": 2852i32, "l_partkey": 154i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 28.0d, "l_extendedprice": 29516.2d, "l_discount": 0.05d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-02-08", "l_commitdate": "1993-03-30", "l_receiptdate": "1993-02-11", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "e accounts. caref" }, { "l_orderkey": 3168i32, "l_partkey": 154i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 1.0d, "l_extendedprice": 1054.15d, "l_discount": 0.06d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-05-27", "l_commitdate": "1992-03-12", "l_receiptdate": "1992-06-09", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "pinto beans. slyly regular courts haggle " }, { "l_orderkey": 3233i32, "l_partkey": 154i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 6.0d, "l_extendedprice": 6324.9d, "l_discount": 0.02d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-12-06", "l_commitdate": "1994-12-05", "l_receiptdate": "1994-12-07", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "requests are quickly above the slyly p" }, { "l_orderkey": 3491i32, "l_partkey": 154i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 28.0d, "l_extendedprice": 29516.2d, "l_discount": 0.04d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-09-29", "l_commitdate": "1998-09-08", "l_receiptdate": "1998-10-23", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "ccounts. sly" }, { "l_orderkey": 3747i32, "l_partkey": 154i32, "l_suppkey": 5i32, "l_linenumber": 6i32, "l_quantity": 14.0d, "l_extendedprice": 14758.1d, "l_discount": 0.08d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-03", "l_commitdate": "1996-10-29", "l_receiptdate": "1996-11-06", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "packages cajole carefu" }, { "l_orderkey": 3937i32, "l_partkey": 154i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 50.0d, "l_extendedprice": 52707.5d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-15", "l_commitdate": "1998-01-09", "l_receiptdate": "1998-02-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "ong the carefully exp" }, { "l_orderkey": 3970i32, "l_partkey": 154i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 10.0d, "l_extendedprice": 10541.5d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-07-01", "l_commitdate": "1992-05-31", "l_receiptdate": "1992-07-02", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": " special packages wake after the final br" }, { "l_orderkey": 4032i32, "l_partkey": 154i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 23.0d, "l_extendedprice": 24245.45d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-12", "l_commitdate": "1998-05-11", "l_receiptdate": "1998-06-24", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "ording to the " }, { "l_orderkey": 4324i32, "l_partkey": 154i32, "l_suppkey": 6i32, "l_linenumber": 7i32, "l_quantity": 46.0d, "l_extendedprice": 48490.9d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-03", "l_commitdate": "1995-09-28", "l_receiptdate": "1995-11-22", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "ular, final theodo" }, { "l_orderkey": 4515i32, "l_partkey": 154i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 27.0d, "l_extendedprice": 28462.05d, "l_discount": 0.09d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-06-06", "l_commitdate": "1992-06-08", "l_receiptdate": "1992-06-07", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": " against the even re" }, { "l_orderkey": 4644i32, "l_partkey": 154i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 45.0d, "l_extendedprice": 47436.75d, "l_discount": 0.1d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-02-02", "l_commitdate": "1998-04-08", "l_receiptdate": "1998-02-15", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": " carefully a" }, { "l_orderkey": 4805i32, "l_partkey": 154i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 44.0d, "l_extendedprice": 46382.6d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-05-14", "l_commitdate": "1992-06-23", "l_receiptdate": "1992-05-25", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "eposits sleep furiously qui" }, { "l_orderkey": 4998i32, "l_partkey": 154i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 12.0d, "l_extendedprice": 12649.8d, "l_discount": 0.04d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-02-20", "l_commitdate": "1992-03-06", "l_receiptdate": "1992-03-01", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": " sleep slyly furiously final accounts. ins" }, { "l_orderkey": 5029i32, "l_partkey": 154i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 17.0d, "l_extendedprice": 17920.55d, "l_discount": 0.02d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-03-12", "l_commitdate": "1992-12-18", "l_receiptdate": "1993-04-02", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "! packages boost blithely. furious" }, { "l_orderkey": 5031i32, "l_partkey": 154i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 4.0d, "l_extendedprice": 4216.6d, "l_discount": 0.01d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-12-26", "l_commitdate": "1995-02-24", "l_receiptdate": "1995-01-11", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "after the even frays: ironic, unusual th" }, { "l_orderkey": 5538i32, "l_partkey": 154i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 42.0d, "l_extendedprice": 44274.3d, "l_discount": 0.05d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-04-08", "l_commitdate": "1994-03-17", "l_receiptdate": "1994-05-05", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "vely ironic accounts. furiously unusual acc" }, { "l_orderkey": 5571i32, "l_partkey": 154i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 32.0d, "l_extendedprice": 33732.8d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-12-25", "l_commitdate": "1993-03-01", "l_receiptdate": "1993-01-23", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": " the blithely even packages nag q" }, { "l_orderkey": 5606i32, "l_partkey": 154i32, "l_suppkey": 5i32, "l_linenumber": 6i32, "l_quantity": 3.0d, "l_extendedprice": 3162.45d, "l_discount": 0.04d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-11", "l_commitdate": "1997-01-04", "l_receiptdate": "1997-02-08", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": " sauternes. asympto" }, { "l_orderkey": 5858i32, "l_partkey": 154i32, "l_suppkey": 9i32, "l_linenumber": 6i32, "l_quantity": 7.0d, "l_extendedprice": 7379.05d, "l_discount": 0.04d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-09-14", "l_commitdate": "1992-10-01", "l_receiptdate": "1992-10-01", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "dly pending ac" } ] }
+{ "partkey": 155i32, "lines": [ { "l_orderkey": 707i32, "l_partkey": 155i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 34.0d, "l_extendedprice": 35875.1d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-12-08", "l_commitdate": "1995-01-15", "l_receiptdate": "1995-01-02", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": " dependencies" }, { "l_orderkey": 807i32, "l_partkey": 155i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 49.0d, "l_extendedprice": 51702.35d, "l_discount": 0.01d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-01-17", "l_commitdate": "1994-01-24", "l_receiptdate": "1994-01-22", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "y regular requests haggle." }, { "l_orderkey": 1444i32, "l_partkey": 155i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 34.0d, "l_extendedprice": 35875.1d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-12-17", "l_commitdate": "1995-01-12", "l_receiptdate": "1995-01-03", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "ular accounts " }, { "l_orderkey": 1542i32, "l_partkey": 155i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 46.0d, "l_extendedprice": 48536.9d, "l_discount": 0.0d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-09-28", "l_commitdate": "1993-11-03", "l_receiptdate": "1993-10-15", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "ial instructions. ironically" }, { "l_orderkey": 1638i32, "l_partkey": 155i32, "l_suppkey": 10i32, "l_linenumber": 6i32, "l_quantity": 46.0d, "l_extendedprice": 48536.9d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-20", "l_commitdate": "1997-10-10", "l_receiptdate": "1997-09-09", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "ckages are carefully even instru" }, { "l_orderkey": 1664i32, "l_partkey": 155i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 35.0d, "l_extendedprice": 36930.25d, "l_discount": 0.0d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-06", "l_commitdate": "1996-05-16", "l_receiptdate": "1996-03-09", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "y regular ide" }, { "l_orderkey": 1734i32, "l_partkey": 155i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 38.0d, "l_extendedprice": 40095.7d, "l_discount": 0.03d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-08-09", "l_commitdate": "1994-09-07", "l_receiptdate": "1994-08-12", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "ts doubt b" }, { "l_orderkey": 1956i32, "l_partkey": 155i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 16.0d, "l_extendedprice": 16882.4d, "l_discount": 0.08d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-09-28", "l_commitdate": "1992-10-21", "l_receiptdate": "1992-09-30", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": " wake after the " }, { "l_orderkey": 2273i32, "l_partkey": 155i32, "l_suppkey": 7i32, "l_linenumber": 6i32, "l_quantity": 16.0d, "l_extendedprice": 16882.4d, "l_discount": 0.1d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-10", "l_commitdate": "1997-02-03", "l_receiptdate": "1997-02-01", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "furiously above the ironic requests. " }, { "l_orderkey": 2305i32, "l_partkey": 155i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 26.0d, "l_extendedprice": 27433.9d, "l_discount": 0.06d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-05-14", "l_commitdate": "1993-02-28", "l_receiptdate": "1993-06-04", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "arefully final theodo" }, { "l_orderkey": 2436i32, "l_partkey": 155i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 48.0d, "l_extendedprice": 50647.2d, "l_discount": 0.04d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-22", "l_commitdate": "1995-10-22", "l_receiptdate": "1995-11-16", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "he furiously " }, { "l_orderkey": 2466i32, "l_partkey": 155i32, "l_suppkey": 7i32, "l_linenumber": 7i32, "l_quantity": 35.0d, "l_extendedprice": 36930.25d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-06-01", "l_commitdate": "1994-05-27", "l_receiptdate": "1994-06-21", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": " packages detect carefully: ironically sl" }, { "l_orderkey": 3394i32, "l_partkey": 155i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 33.0d, "l_extendedprice": 34819.95d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-07", "l_commitdate": "1996-07-17", "l_receiptdate": "1996-09-02", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "ideas alongside of th" }, { "l_orderkey": 3651i32, "l_partkey": 155i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 24.0d, "l_extendedprice": 25323.6d, "l_discount": 0.09d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-22", "l_commitdate": "1998-07-17", "l_receiptdate": "1998-07-10", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "excuses haggle according to th" }, { "l_orderkey": 3808i32, "l_partkey": 155i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 29.0d, "l_extendedprice": 30599.35d, "l_discount": 0.08d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-06-22", "l_commitdate": "1994-05-26", "l_receiptdate": "1994-07-06", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": " deposits across the pac" }, { "l_orderkey": 4004i32, "l_partkey": 155i32, "l_suppkey": 3i32, "l_linenumber": 5i32, "l_quantity": 9.0d, "l_extendedprice": 9496.35d, "l_discount": 0.04d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-08-25", "l_commitdate": "1993-06-10", "l_receiptdate": "1993-09-24", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "ly ironic requests. quickly pending ide" }, { "l_orderkey": 4070i32, "l_partkey": 155i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 40.0d, "l_extendedprice": 42206.0d, "l_discount": 0.07d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-13", "l_commitdate": "1995-07-23", "l_receiptdate": "1995-08-06", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "about the sentiments. quick" }, { "l_orderkey": 4742i32, "l_partkey": 155i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 29.0d, "l_extendedprice": 30599.35d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "F", "l_shipdate": "1995-06-15", "l_commitdate": "1995-05-05", "l_receiptdate": "1995-06-24", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "integrate closely among t" }, { "l_orderkey": 5350i32, "l_partkey": 155i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 7.0d, "l_extendedprice": 7386.05d, "l_discount": 0.08d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-10-19", "l_commitdate": "1993-12-28", "l_receiptdate": "1993-11-04", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "alongside of th" }, { "l_orderkey": 5378i32, "l_partkey": 155i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 39.0d, "l_extendedprice": 41150.85d, "l_discount": 0.07d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-11-25", "l_commitdate": "1992-12-22", "l_receiptdate": "1992-12-02", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "ts are quickly around the" }, { "l_orderkey": 5505i32, "l_partkey": 155i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 10.0d, "l_extendedprice": 10551.5d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-10-28", "l_commitdate": "1997-11-27", "l_receiptdate": "1997-10-29", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": " furiously special asym" }, { "l_orderkey": 5698i32, "l_partkey": 155i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 45.0d, "l_extendedprice": 47481.75d, "l_discount": 0.03d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-06-23", "l_commitdate": "1994-08-13", "l_receiptdate": "1994-07-02", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "ng excuses. slyly express asymptotes" }, { "l_orderkey": 5956i32, "l_partkey": 155i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 10.0d, "l_extendedprice": 10551.5d, "l_discount": 0.04d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-27", "l_commitdate": "1998-07-04", "l_receiptdate": "1998-08-21", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "ic packages am" } ] }
+{ "partkey": 156i32, "lines": [ { "l_orderkey": 1i32, "l_partkey": 156i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 17.0d, "l_extendedprice": 17954.55d, "l_discount": 0.04d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-13", "l_commitdate": "1996-02-12", "l_receiptdate": "1996-03-22", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "egular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts above theegular courts ab" }, { "l_orderkey": 165i32, "l_partkey": 156i32, "l_suppkey": 4i32, "l_linenumber": 5i32, "l_quantity": 27.0d, "l_extendedprice": 28516.05d, "l_discount": 0.01d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-04-27", "l_commitdate": "1993-03-04", "l_receiptdate": "1993-05-13", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "around the ironic, even orb" }, { "l_orderkey": 197i32, "l_partkey": 156i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 17.0d, "l_extendedprice": 17954.55d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-02", "l_commitdate": "1995-06-23", "l_receiptdate": "1995-08-03", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "ts. careful" }, { "l_orderkey": 229i32, "l_partkey": 156i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 33.0d, "l_extendedprice": 34852.95d, "l_discount": 0.03d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-03-25", "l_commitdate": "1994-02-11", "l_receiptdate": "1994-04-13", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": " deposits; bold, ruthless theodolites" }, { "l_orderkey": 260i32, "l_partkey": 156i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 50.0d, "l_extendedprice": 52807.5d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-24", "l_commitdate": "1997-02-09", "l_receiptdate": "1997-04-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "c deposits " }, { "l_orderkey": 517i32, "l_partkey": 156i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 15.0d, "l_extendedprice": 15842.25d, "l_discount": 0.02d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-09", "l_commitdate": "1997-06-26", "l_receiptdate": "1997-05-01", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": " slyly. express requests ar" }, { "l_orderkey": 578i32, "l_partkey": 156i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 40.0d, "l_extendedprice": 42246.0d, "l_discount": 0.02d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-10", "l_commitdate": "1997-03-18", "l_receiptdate": "1997-02-11", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "usly even platel" }, { "l_orderkey": 1027i32, "l_partkey": 156i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 43.0d, "l_extendedprice": 45414.45d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-06-17", "l_commitdate": "1992-08-28", "l_receiptdate": "1992-07-10", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "oxes. carefully regular deposits" }, { "l_orderkey": 1095i32, "l_partkey": 156i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 13.0d, "l_extendedprice": 13729.95d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-24", "l_commitdate": "1995-10-19", "l_receiptdate": "1995-09-02", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "ously even accounts. slyly bold a" }, { "l_orderkey": 1248i32, "l_partkey": 156i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 49.0d, "l_extendedprice": 51751.35d, "l_discount": 0.02d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-04-24", "l_commitdate": "1992-02-18", "l_receiptdate": "1992-05-03", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "beans run quickly according to the carefu" }, { "l_orderkey": 1378i32, "l_partkey": 156i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 9.0d, "l_extendedprice": 9505.35d, "l_discount": 0.06d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-04-20", "l_commitdate": "1996-04-13", "l_receiptdate": "1996-05-09", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "e carefully. carefully iron" }, { "l_orderkey": 1412i32, "l_partkey": 156i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 20.0d, "l_extendedprice": 21123.0d, "l_discount": 0.1d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-07-04", "l_commitdate": "1993-05-18", "l_receiptdate": "1993-07-22", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "odolites sleep ironically" }, { "l_orderkey": 1700i32, "l_partkey": 156i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 49.0d, "l_extendedprice": 51751.35d, "l_discount": 0.04d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-26", "l_commitdate": "1996-07-28", "l_receiptdate": "1996-10-16", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "kly even dependencies haggle fluffi" }, { "l_orderkey": 1735i32, "l_partkey": 156i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 43.0d, "l_extendedprice": 45414.45d, "l_discount": 0.02d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-01-14", "l_commitdate": "1993-03-25", "l_receiptdate": "1993-02-02", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "iously after the " }, { "l_orderkey": 1825i32, "l_partkey": 156i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 43.0d, "l_extendedprice": 45414.45d, "l_discount": 0.05d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-02-18", "l_commitdate": "1994-02-19", "l_receiptdate": "1994-03-02", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": " accounts breach fluffily spe" }, { "l_orderkey": 2086i32, "l_partkey": 156i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 33.0d, "l_extendedprice": 34852.95d, "l_discount": 0.04d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-02-06", "l_commitdate": "1994-11-25", "l_receiptdate": "1995-02-15", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": " slyly regular foxes. un" }, { "l_orderkey": 2086i32, "l_partkey": 156i32, "l_suppkey": 8i32, "l_linenumber": 7i32, "l_quantity": 7.0d, "l_extendedprice": 7393.05d, "l_discount": 0.04d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-12-27", "l_commitdate": "1994-12-10", "l_receiptdate": "1995-01-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": " beans haggle car" }, { "l_orderkey": 2368i32, "l_partkey": 156i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 17.0d, "l_extendedprice": 17954.55d, "l_discount": 0.1d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-10-03", "l_commitdate": "1993-09-27", "l_receiptdate": "1993-10-05", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "fily. slyly final ideas alongside o" }, { "l_orderkey": 2435i32, "l_partkey": 156i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 22.0d, "l_extendedprice": 23235.3d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-05-23", "l_commitdate": "1993-04-14", "l_receiptdate": "1993-06-04", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "e final, final deposits. carefully regular" }, { "l_orderkey": 2786i32, "l_partkey": 156i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 41.0d, "l_extendedprice": 43302.15d, "l_discount": 0.04d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-07-01", "l_commitdate": "1992-06-04", "l_receiptdate": "1992-07-13", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "ix requests. bold requests a" }, { "l_orderkey": 2791i32, "l_partkey": 156i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 24.0d, "l_extendedprice": 25347.6d, "l_discount": 0.04d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-01-30", "l_commitdate": "1994-11-20", "l_receiptdate": "1995-02-08", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "ilent forges. quickly special pinto beans " }, { "l_orderkey": 3015i32, "l_partkey": 156i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 7.0d, "l_extendedprice": 7393.05d, "l_discount": 0.1d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-12-07", "l_commitdate": "1992-12-17", "l_receiptdate": "1992-12-30", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": " after the evenly special packages ca" }, { "l_orderkey": 3364i32, "l_partkey": 156i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 10.0d, "l_extendedprice": 10561.5d, "l_discount": 0.0d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-10", "l_commitdate": "1997-08-24", "l_receiptdate": "1997-08-15", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "g the accounts. final, busy accounts wi" }, { "l_orderkey": 3488i32, "l_partkey": 156i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 18.0d, "l_extendedprice": 19010.7d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-03-18", "l_commitdate": "1995-03-19", "l_receiptdate": "1995-03-29", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "s the carefully r" }, { "l_orderkey": 3492i32, "l_partkey": 156i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 3.0d, "l_extendedprice": 3168.45d, "l_discount": 0.02d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-11-26", "l_commitdate": "1994-12-28", "l_receiptdate": "1994-12-19", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "the deposits. carefully " }, { "l_orderkey": 3942i32, "l_partkey": 156i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 25.0d, "l_extendedprice": 26403.75d, "l_discount": 0.04d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-09-13", "l_commitdate": "1993-08-01", "l_receiptdate": "1993-09-29", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "d the quick packages" }, { "l_orderkey": 3968i32, "l_partkey": 156i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 43.0d, "l_extendedprice": 45414.45d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-30", "l_commitdate": "1997-05-14", "l_receiptdate": "1997-05-18", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "ly regular accounts" }, { "l_orderkey": 4196i32, "l_partkey": 156i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 30.0d, "l_extendedprice": 31684.5d, "l_discount": 0.02d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-09", "l_commitdate": "1998-06-30", "l_receiptdate": "1998-09-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "egular foxes us" }, { "l_orderkey": 4640i32, "l_partkey": 156i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 15.0d, "l_extendedprice": 15842.25d, "l_discount": 0.03d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-19", "l_commitdate": "1996-02-09", "l_receiptdate": "1996-04-11", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "y regular instructions doze furiously. reg" }, { "l_orderkey": 4741i32, "l_partkey": 156i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 24.0d, "l_extendedprice": 25347.6d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-11-04", "l_commitdate": "1992-08-14", "l_receiptdate": "1992-11-06", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "even requests." }, { "l_orderkey": 4742i32, "l_partkey": 156i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 32.0d, "l_extendedprice": 33796.8d, "l_discount": 0.1d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-04-04", "l_commitdate": "1995-06-12", "l_receiptdate": "1995-04-19", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "eposits boost blithely. carefully regular a" }, { "l_orderkey": 4994i32, "l_partkey": 156i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 36.0d, "l_extendedprice": 38021.4d, "l_discount": 0.0d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-29", "l_commitdate": "1996-07-30", "l_receiptdate": "1996-10-03", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "ess ideas. blithely silent brai" }, { "l_orderkey": 4995i32, "l_partkey": 156i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 22.0d, "l_extendedprice": 23235.3d, "l_discount": 0.03d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-17", "l_commitdate": "1996-03-12", "l_receiptdate": "1996-04-01", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "s wake furious, express dependencies." }, { "l_orderkey": 4996i32, "l_partkey": 156i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 39.0d, "l_extendedprice": 41189.85d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-09-19", "l_commitdate": "1992-10-19", "l_receiptdate": "1992-10-06", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "equests are carefully final" }, { "l_orderkey": 5093i32, "l_partkey": 156i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 37.0d, "l_extendedprice": 39077.55d, "l_discount": 0.04d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-10-26", "l_commitdate": "1993-12-02", "l_receiptdate": "1993-10-27", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "courts. qui" }, { "l_orderkey": 5348i32, "l_partkey": 156i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 31.0d, "l_extendedprice": 32740.65d, "l_discount": 0.07d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-04", "l_commitdate": "1997-12-09", "l_receiptdate": "1998-01-17", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "are finally" }, { "l_orderkey": 5349i32, "l_partkey": 156i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 19.0d, "l_extendedprice": 20066.85d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-11", "l_commitdate": "1996-11-18", "l_receiptdate": "1996-09-22", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "endencies use whithout the special " }, { "l_orderkey": 5509i32, "l_partkey": 156i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 35.0d, "l_extendedprice": 36965.25d, "l_discount": 0.04d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-04-17", "l_commitdate": "1994-06-29", "l_receiptdate": "1994-04-24", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "c accounts. ca" }, { "l_orderkey": 5669i32, "l_partkey": 156i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 2.0d, "l_extendedprice": 2112.3d, "l_discount": 0.06d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-04", "l_commitdate": "1996-06-15", "l_receiptdate": "1996-08-20", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": " blithely excuses. slyly" } ] }
+{ "partkey": 157i32, "lines": [ { "l_orderkey": 326i32, "l_partkey": 157i32, "l_suppkey": 9i32, "l_linenumber": 6i32, "l_quantity": 41.0d, "l_extendedprice": 43343.15d, "l_discount": 0.02d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-05", "l_commitdate": "1995-07-23", "l_receiptdate": "1995-07-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "to beans wake before the furiously re" }, { "l_orderkey": 455i32, "l_partkey": 157i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 42.0d, "l_extendedprice": 44400.3d, "l_discount": 0.1d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-26", "l_commitdate": "1997-01-10", "l_receiptdate": "1997-02-22", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "around the quickly blit" }, { "l_orderkey": 675i32, "l_partkey": 157i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 1.0d, "l_extendedprice": 1057.15d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-11-27", "l_commitdate": "1997-09-30", "l_receiptdate": "1997-12-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "ide of the slyly regular packages. unus" }, { "l_orderkey": 802i32, "l_partkey": 157i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 18.0d, "l_extendedprice": 19028.7d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-03-06", "l_commitdate": "1995-02-07", "l_receiptdate": "1995-03-19", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "y regular requests engage furiously final d" }, { "l_orderkey": 1121i32, "l_partkey": 157i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 10.0d, "l_extendedprice": 10571.5d, "l_discount": 0.0d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-17", "l_commitdate": "1997-03-18", "l_receiptdate": "1997-05-02", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "dencies. quickly regular theodolites n" }, { "l_orderkey": 1158i32, "l_partkey": 157i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 23.0d, "l_extendedprice": 24314.45d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-21", "l_commitdate": "1996-08-19", "l_receiptdate": "1996-10-31", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "ularly ironic requests use care" }, { "l_orderkey": 1382i32, "l_partkey": 157i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 31.0d, "l_extendedprice": 32771.65d, "l_discount": 0.07d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-10-26", "l_commitdate": "1993-10-15", "l_receiptdate": "1993-11-09", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "hely regular dependencies. f" }, { "l_orderkey": 1509i32, "l_partkey": 157i32, "l_suppkey": 2i32, "l_linenumber": 7i32, "l_quantity": 27.0d, "l_extendedprice": 28543.05d, "l_discount": 0.01d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-09-29", "l_commitdate": "1993-09-08", "l_receiptdate": "1993-10-04", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "lithely after the " }, { "l_orderkey": 1729i32, "l_partkey": 157i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 12.0d, "l_extendedprice": 12685.8d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-08-11", "l_commitdate": "1992-07-24", "l_receiptdate": "1992-08-16", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "y pending packages detect. carefully re" }, { "l_orderkey": 1761i32, "l_partkey": 157i32, "l_suppkey": 5i32, "l_linenumber": 5i32, "l_quantity": 37.0d, "l_extendedprice": 39114.55d, "l_discount": 0.03d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-04-24", "l_commitdate": "1994-03-14", "l_receiptdate": "1994-04-29", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "express requests print blithely around the" }, { "l_orderkey": 1763i32, "l_partkey": 157i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 43.0d, "l_extendedprice": 45457.45d, "l_discount": 0.04d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-04", "l_commitdate": "1996-12-09", "l_receiptdate": "1996-11-28", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "r deposits integrate blithely pending, quic" }, { "l_orderkey": 1863i32, "l_partkey": 157i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 48.0d, "l_extendedprice": 50743.2d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-11-08", "l_commitdate": "1993-11-05", "l_receiptdate": "1993-12-08", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "onic theodolites alongside of the pending a" }, { "l_orderkey": 2146i32, "l_partkey": 157i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 6.0d, "l_extendedprice": 6342.9d, "l_discount": 0.07d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-01-03", "l_commitdate": "1992-10-24", "l_receiptdate": "1993-01-24", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "ing to the requests. dependencies boost " }, { "l_orderkey": 2178i32, "l_partkey": 157i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 15.0d, "l_extendedprice": 15857.25d, "l_discount": 0.1d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-27", "l_commitdate": "1997-03-10", "l_receiptdate": "1997-04-18", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "l accounts. quickly expr" }, { "l_orderkey": 2433i32, "l_partkey": 157i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 38.0d, "l_extendedprice": 40171.7d, "l_discount": 0.08d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-10-15", "l_commitdate": "1994-10-23", "l_receiptdate": "1994-11-06", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": ". slyly regular requests sle" }, { "l_orderkey": 2531i32, "l_partkey": 157i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 3.0d, "l_extendedprice": 3171.45d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-20", "l_commitdate": "1996-06-20", "l_receiptdate": "1996-08-10", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "he quickly ev" }, { "l_orderkey": 2694i32, "l_partkey": 157i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 35.0d, "l_extendedprice": 37000.25d, "l_discount": 0.07d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-24", "l_commitdate": "1996-06-01", "l_receiptdate": "1996-05-25", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "atelets past the furiously final deposits " }, { "l_orderkey": 3458i32, "l_partkey": 157i32, "l_suppkey": 5i32, "l_linenumber": 5i32, "l_quantity": 2.0d, "l_extendedprice": 2114.3d, "l_discount": 0.09d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-02-05", "l_commitdate": "1995-02-01", "l_receiptdate": "1995-03-07", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "ironic packages haggle past the furiously " }, { "l_orderkey": 3522i32, "l_partkey": 157i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 46.0d, "l_extendedprice": 48628.9d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-11-12", "l_commitdate": "1994-11-30", "l_receiptdate": "1994-11-20", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "d the express, silent foxes. blit" }, { "l_orderkey": 3553i32, "l_partkey": 157i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 36.0d, "l_extendedprice": 38057.4d, "l_discount": 0.06d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-08-12", "l_commitdate": "1994-06-25", "l_receiptdate": "1994-09-06", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": " realms. pending, bold theodolites " }, { "l_orderkey": 3841i32, "l_partkey": 157i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 1.0d, "l_extendedprice": 1057.15d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-10-10", "l_commitdate": "1994-11-12", "l_receiptdate": "1994-10-21", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": " boost even re" }, { "l_orderkey": 4069i32, "l_partkey": 157i32, "l_suppkey": 5i32, "l_linenumber": 5i32, "l_quantity": 50.0d, "l_extendedprice": 52857.5d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-07-26", "l_commitdate": "1992-06-30", "l_receiptdate": "1992-08-01", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "even foxes among the express wate" }, { "l_orderkey": 4389i32, "l_partkey": 157i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 20.0d, "l_extendedprice": 21143.0d, "l_discount": 0.08d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-06-06", "l_commitdate": "1994-06-17", "l_receiptdate": "1994-06-17", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "ng the carefully express d" }, { "l_orderkey": 4741i32, "l_partkey": 157i32, "l_suppkey": 5i32, "l_linenumber": 6i32, "l_quantity": 34.0d, "l_extendedprice": 35943.1d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-08-25", "l_commitdate": "1992-08-18", "l_receiptdate": "1992-09-20", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "sly special packages after the furiously" }, { "l_orderkey": 4770i32, "l_partkey": 157i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 30.0d, "l_extendedprice": 31714.5d, "l_discount": 0.09d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-25", "l_commitdate": "1995-08-27", "l_receiptdate": "1995-09-07", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "ffily carefully ironic ideas. ironic d" }, { "l_orderkey": 4869i32, "l_partkey": 157i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 25.0d, "l_extendedprice": 26428.75d, "l_discount": 0.0d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-11-25", "l_commitdate": "1994-11-14", "l_receiptdate": "1994-12-19", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "e according t" }, { "l_orderkey": 5792i32, "l_partkey": 157i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 47.0d, "l_extendedprice": 49686.05d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-06-08", "l_commitdate": "1993-05-10", "l_receiptdate": "1993-06-26", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "regular, ironic excuses n" }, { "l_orderkey": 5922i32, "l_partkey": 157i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 37.0d, "l_extendedprice": 39114.55d, "l_discount": 0.01d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-19", "l_commitdate": "1996-12-16", "l_receiptdate": "1997-01-15", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "s wake slyly. requests cajole furiously asy" } ] }
+{ "partkey": 158i32, "lines": [ { "l_orderkey": 7i32, "l_partkey": 158i32, "l_suppkey": 3i32, "l_linenumber": 7i32, "l_quantity": 5.0d, "l_extendedprice": 5290.75d, "l_discount": 0.04d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-02-10", "l_commitdate": "1996-03-26", "l_receiptdate": "1996-02-13", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "ithely regula" }, { "l_orderkey": 135i32, "l_partkey": 158i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 33.0d, "l_extendedprice": 34918.95d, "l_discount": 0.02d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-03", "l_commitdate": "1995-11-21", "l_receiptdate": "1996-02-01", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "ptotes boost slowly care" }, { "l_orderkey": 449i32, "l_partkey": 158i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 22.0d, "l_extendedprice": 23279.3d, "l_discount": 0.07d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-17", "l_commitdate": "1995-09-04", "l_receiptdate": "1995-09-10", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "furiously final theodolites eat careful" }, { "l_orderkey": 736i32, "l_partkey": 158i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 46.0d, "l_extendedprice": 48674.9d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-16", "l_commitdate": "1998-09-01", "l_receiptdate": "1998-08-09", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "uctions cajole" }, { "l_orderkey": 839i32, "l_partkey": 158i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 23.0d, "l_extendedprice": 24337.45d, "l_discount": 0.07d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-17", "l_commitdate": "1995-11-03", "l_receiptdate": "1995-11-04", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "ng ideas haggle accord" }, { "l_orderkey": 1317i32, "l_partkey": 158i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 26.0d, "l_extendedprice": 27511.9d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-13", "l_commitdate": "1995-06-26", "l_receiptdate": "1995-08-06", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "leep along th" }, { "l_orderkey": 1412i32, "l_partkey": 158i32, "l_suppkey": 6i32, "l_linenumber": 5i32, "l_quantity": 11.0d, "l_extendedprice": 11639.65d, "l_discount": 0.08d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-03-30", "l_commitdate": "1993-05-25", "l_receiptdate": "1993-04-21", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "se slyly. special, unusual accounts nag bl" }, { "l_orderkey": 1859i32, "l_partkey": 158i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 5.0d, "l_extendedprice": 5290.75d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-20", "l_commitdate": "1997-05-20", "l_receiptdate": "1997-07-19", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "across the p" }, { "l_orderkey": 1955i32, "l_partkey": 158i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 41.0d, "l_extendedprice": 43384.15d, "l_discount": 0.08d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-08-01", "l_commitdate": "1992-06-04", "l_receiptdate": "1992-08-07", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": " carefully against the furiously reg" }, { "l_orderkey": 2144i32, "l_partkey": 158i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 10.0d, "l_extendedprice": 10581.5d, "l_discount": 0.0d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-06-16", "l_commitdate": "1994-05-03", "l_receiptdate": "1994-07-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": " furiously unusual ideas. carefull" }, { "l_orderkey": 2567i32, "l_partkey": 158i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 50.0d, "l_extendedprice": 52907.5d, "l_discount": 0.05d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-27", "l_commitdate": "1998-05-25", "l_receiptdate": "1998-04-23", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "pinto beans? r" }, { "l_orderkey": 3136i32, "l_partkey": 158i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 43.0d, "l_extendedprice": 45500.45d, "l_discount": 0.0d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-09-05", "l_commitdate": "1994-09-25", "l_receiptdate": "1994-09-11", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": ". special theodolites ha" }, { "l_orderkey": 3522i32, "l_partkey": 158i32, "l_suppkey": 10i32, "l_linenumber": 6i32, "l_quantity": 18.0d, "l_extendedprice": 19046.7d, "l_discount": 0.01d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-11-16", "l_commitdate": "1994-10-29", "l_receiptdate": "1994-11-29", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "sits wake carefully pen" }, { "l_orderkey": 4227i32, "l_partkey": 158i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 19.0d, "l_extendedprice": 20104.85d, "l_discount": 0.01d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-05-05", "l_commitdate": "1995-05-03", "l_receiptdate": "1995-05-22", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "ns sleep along the blithely even theodolit" }, { "l_orderkey": 4773i32, "l_partkey": 158i32, "l_suppkey": 3i32, "l_linenumber": 7i32, "l_quantity": 6.0d, "l_extendedprice": 6348.9d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-09", "l_commitdate": "1996-03-18", "l_receiptdate": "1996-03-27", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "latelets haggle s" }, { "l_orderkey": 4993i32, "l_partkey": 158i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 31.0d, "l_extendedprice": 32802.65d, "l_discount": 0.1d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-10-02", "l_commitdate": "1994-10-29", "l_receiptdate": "1994-10-15", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "nwind thinly platelets. a" }, { "l_orderkey": 5089i32, "l_partkey": 158i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 4.0d, "l_extendedprice": 4232.6d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-09-18", "l_commitdate": "1992-09-28", "l_receiptdate": "1992-10-13", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "nts sleep blithely " }, { "l_orderkey": 5249i32, "l_partkey": 158i32, "l_suppkey": 6i32, "l_linenumber": 5i32, "l_quantity": 12.0d, "l_extendedprice": 12697.8d, "l_discount": 0.01d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-12-28", "l_commitdate": "1994-11-07", "l_receiptdate": "1995-01-15", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "press depths could have to sleep carefu" }, { "l_orderkey": 5254i32, "l_partkey": 158i32, "l_suppkey": 3i32, "l_linenumber": 6i32, "l_quantity": 34.0d, "l_extendedprice": 35977.1d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-08-29", "l_commitdate": "1992-10-16", "l_receiptdate": "1992-09-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": " furiously above the furiously " }, { "l_orderkey": 5442i32, "l_partkey": 158i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 21.0d, "l_extendedprice": 22221.15d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-13", "l_commitdate": "1998-02-19", "l_receiptdate": "1998-04-06", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "ffily furiously ironic theodolites. furio" }, { "l_orderkey": 5665i32, "l_partkey": 158i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 41.0d, "l_extendedprice": 43384.15d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-08-23", "l_commitdate": "1993-09-22", "l_receiptdate": "1993-09-11", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": " idle ideas across " }, { "l_orderkey": 5669i32, "l_partkey": 158i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 40.0d, "l_extendedprice": 42326.0d, "l_discount": 0.0d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-30", "l_commitdate": "1996-06-15", "l_receiptdate": "1996-09-07", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "ar accounts alongside of the final, p" }, { "l_orderkey": 5794i32, "l_partkey": 158i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 42.0d, "l_extendedprice": 44442.3d, "l_discount": 0.06d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-06-29", "l_commitdate": "1993-05-30", "l_receiptdate": "1993-07-28", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "he careful" }, { "l_orderkey": 5828i32, "l_partkey": 158i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 37.0d, "l_extendedprice": 39151.55d, "l_discount": 0.01d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-06-07", "l_commitdate": "1994-05-30", "l_receiptdate": "1994-06-17", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "e carefully spec" }, { "l_orderkey": 5952i32, "l_partkey": 158i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 23.0d, "l_extendedprice": 24337.45d, "l_discount": 0.0d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-13", "l_commitdate": "1997-06-27", "l_receiptdate": "1997-05-20", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "e blithely packages. eve" } ] }
+{ "partkey": 159i32, "lines": [ { "l_orderkey": 231i32, "l_partkey": 159i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 16.0d, "l_extendedprice": 16946.4d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-11-20", "l_commitdate": "1994-10-29", "l_receiptdate": "1994-12-17", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "e furiously ironic pinto beans." }, { "l_orderkey": 325i32, "l_partkey": 159i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 34.0d, "l_extendedprice": 36011.1d, "l_discount": 0.09d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-10-28", "l_commitdate": "1993-12-13", "l_receiptdate": "1993-11-17", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "ly bold deposits. always iron" }, { "l_orderkey": 519i32, "l_partkey": 159i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 1.0d, "l_extendedprice": 1059.15d, "l_discount": 0.07d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-01", "l_commitdate": "1998-01-26", "l_receiptdate": "1997-12-23", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "bold requests believe furiou" }, { "l_orderkey": 551i32, "l_partkey": 159i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 20.0d, "l_extendedprice": 21183.0d, "l_discount": 0.0d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-18", "l_commitdate": "1995-08-25", "l_receiptdate": "1995-10-11", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "r ideas. final, even ideas hinder alongside" }, { "l_orderkey": 613i32, "l_partkey": 159i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 7.0d, "l_extendedprice": 7414.05d, "l_discount": 0.02d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-07", "l_commitdate": "1995-08-02", "l_receiptdate": "1995-09-16", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "ously blithely final pinto beans. regula" }, { "l_orderkey": 1222i32, "l_partkey": 159i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 12.0d, "l_extendedprice": 12709.8d, "l_discount": 0.08d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-05-05", "l_commitdate": "1993-03-27", "l_receiptdate": "1993-05-18", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": " furiously bold instructions" }, { "l_orderkey": 1315i32, "l_partkey": 159i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 32.0d, "l_extendedprice": 33892.8d, "l_discount": 0.1d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-30", "l_commitdate": "1998-06-12", "l_receiptdate": "1998-04-25", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "neath the final p" }, { "l_orderkey": 1954i32, "l_partkey": 159i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 12.0d, "l_extendedprice": 12709.8d, "l_discount": 0.02d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-19", "l_commitdate": "1997-07-04", "l_receiptdate": "1997-08-06", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "ongside of the slyly unusual requests. reg" }, { "l_orderkey": 1955i32, "l_partkey": 159i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 11.0d, "l_extendedprice": 11650.65d, "l_discount": 0.09d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-06-03", "l_commitdate": "1992-07-04", "l_receiptdate": "1992-06-07", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "ously quickly pendi" }, { "l_orderkey": 2277i32, "l_partkey": 159i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 31.0d, "l_extendedprice": 32833.65d, "l_discount": 0.02d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-03-07", "l_commitdate": "1995-03-19", "l_receiptdate": "1995-03-26", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "ic instructions detect ru" }, { "l_orderkey": 2371i32, "l_partkey": 159i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 37.0d, "l_extendedprice": 39188.55d, "l_discount": 0.05d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-02-11", "l_commitdate": "1998-03-24", "l_receiptdate": "1998-02-27", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "s boost fluffil" }, { "l_orderkey": 2468i32, "l_partkey": 159i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 18.0d, "l_extendedprice": 19064.7d, "l_discount": 0.07d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-25", "l_commitdate": "1997-08-26", "l_receiptdate": "1997-08-14", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "cies. fluffily r" }, { "l_orderkey": 2499i32, "l_partkey": 159i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 39.0d, "l_extendedprice": 41306.85d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-26", "l_commitdate": "1995-10-27", "l_receiptdate": "1995-11-07", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "otes sublat" }, { "l_orderkey": 2595i32, "l_partkey": 159i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 29.0d, "l_extendedprice": 30715.35d, "l_discount": 0.07d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-01", "l_commitdate": "1996-02-13", "l_receiptdate": "1996-01-18", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "ronic accounts haggle carefully fin" }, { "l_orderkey": 3363i32, "l_partkey": 159i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 2.0d, "l_extendedprice": 2118.3d, "l_discount": 0.01d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-22", "l_commitdate": "1995-12-01", "l_receiptdate": "1996-02-18", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "uickly bold ide" }, { "l_orderkey": 3588i32, "l_partkey": 159i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 45.0d, "l_extendedprice": 47661.75d, "l_discount": 0.04d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-05-07", "l_commitdate": "1995-05-04", "l_receiptdate": "1995-05-28", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "ecial pains integrate blithely. reques" }, { "l_orderkey": 3714i32, "l_partkey": 159i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 16.0d, "l_extendedprice": 16946.4d, "l_discount": 0.0d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-25", "l_commitdate": "1998-07-07", "l_receiptdate": "1998-06-17", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "ccounts cajole fu" }, { "l_orderkey": 3776i32, "l_partkey": 159i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 14.0d, "l_extendedprice": 14828.1d, "l_discount": 0.06d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-12-30", "l_commitdate": "1993-02-12", "l_receiptdate": "1993-01-27", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "y special ideas. express packages pr" }, { "l_orderkey": 3938i32, "l_partkey": 159i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 46.0d, "l_extendedprice": 48720.9d, "l_discount": 0.1d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-05-20", "l_commitdate": "1993-05-04", "l_receiptdate": "1993-06-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "ly even foxes are slyly fu" }, { "l_orderkey": 4006i32, "l_partkey": 159i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 18.0d, "l_extendedprice": 19064.7d, "l_discount": 0.05d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-01-29", "l_commitdate": "1995-03-08", "l_receiptdate": "1995-02-02", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "gouts! slyly iron" }, { "l_orderkey": 4451i32, "l_partkey": 159i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 19.0d, "l_extendedprice": 20123.85d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-10-09", "l_commitdate": "1994-11-26", "l_receiptdate": "1994-10-23", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "ly after the fluffi" }, { "l_orderkey": 4549i32, "l_partkey": 159i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 44.0d, "l_extendedprice": 46602.6d, "l_discount": 0.08d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-13", "l_commitdate": "1998-04-15", "l_receiptdate": "1998-03-27", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "ding to the regular, silent requests" }, { "l_orderkey": 4610i32, "l_partkey": 159i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 44.0d, "l_extendedprice": 46602.6d, "l_discount": 0.05d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-08-05", "l_commitdate": "1993-07-20", "l_receiptdate": "1993-08-19", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": " final theodolites " }, { "l_orderkey": 4738i32, "l_partkey": 159i32, "l_suppkey": 1i32, "l_linenumber": 6i32, "l_quantity": 10.0d, "l_extendedprice": 10591.5d, "l_discount": 0.1d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-07-10", "l_commitdate": "1992-06-16", "l_receiptdate": "1992-07-25", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "hins above the" }, { "l_orderkey": 4743i32, "l_partkey": 159i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 3.0d, "l_extendedprice": 3177.45d, "l_discount": 0.01d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-04-14", "l_commitdate": "1993-06-08", "l_receiptdate": "1993-05-09", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "al requests. express idea" }, { "l_orderkey": 4807i32, "l_partkey": 159i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 2.0d, "l_extendedprice": 2118.3d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-09", "l_commitdate": "1997-04-03", "l_receiptdate": "1997-06-05", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "deas wake bli" }, { "l_orderkey": 5062i32, "l_partkey": 159i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 50.0d, "l_extendedprice": 52957.5d, "l_discount": 0.09d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-12-25", "l_commitdate": "1992-12-13", "l_receiptdate": "1992-12-29", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": " the regular, unusual pains. specia" }, { "l_orderkey": 5092i32, "l_partkey": 159i32, "l_suppkey": 10i32, "l_linenumber": 7i32, "l_quantity": 50.0d, "l_extendedprice": 52957.5d, "l_discount": 0.1d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-30", "l_commitdate": "1996-01-14", "l_receiptdate": "1995-12-19", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "r platelets maintain car" }, { "l_orderkey": 5409i32, "l_partkey": 159i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 37.0d, "l_extendedprice": 39188.55d, "l_discount": 0.06d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-05-07", "l_commitdate": "1992-02-10", "l_receiptdate": "1992-05-20", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "ously regular packages. packages" }, { "l_orderkey": 5728i32, "l_partkey": 159i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 40.0d, "l_extendedprice": 42366.0d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-03-28", "l_commitdate": "1995-01-17", "l_receiptdate": "1995-04-14", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "final deposits. theodolite" }, { "l_orderkey": 5825i32, "l_partkey": 159i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 23.0d, "l_extendedprice": 24360.45d, "l_discount": 0.1d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-05-10", "l_commitdate": "1995-04-28", "l_receiptdate": "1995-05-13", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": " special pinto beans. dependencies haggl" }, { "l_orderkey": 5957i32, "l_partkey": 159i32, "l_suppkey": 1i32, "l_linenumber": 7i32, "l_quantity": 32.0d, "l_extendedprice": 33892.8d, "l_discount": 0.1d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-03-05", "l_commitdate": "1994-02-20", "l_receiptdate": "1994-03-09", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": " boost carefully across the " } ] }
+{ "partkey": 160i32, "lines": [ { "l_orderkey": 645i32, "l_partkey": 160i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 33.0d, "l_extendedprice": 34985.28d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-12-09", "l_commitdate": "1995-02-21", "l_receiptdate": "1995-01-03", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "heodolites b" }, { "l_orderkey": 710i32, "l_partkey": 160i32, "l_suppkey": 2i32, "l_linenumber": 7i32, "l_quantity": 46.0d, "l_extendedprice": 48767.36d, "l_discount": 0.03d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-04-16", "l_commitdate": "1993-03-27", "l_receiptdate": "1993-05-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "ges use; blithely pending excuses inte" }, { "l_orderkey": 769i32, "l_partkey": 160i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 4.0d, "l_extendedprice": 4240.64d, "l_discount": 0.01d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-06-25", "l_commitdate": "1993-08-12", "l_receiptdate": "1993-07-15", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": " ideas. even" }, { "l_orderkey": 806i32, "l_partkey": 160i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 22.0d, "l_extendedprice": 23323.52d, "l_discount": 0.08d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-03", "l_commitdate": "1996-08-11", "l_receiptdate": "1996-10-20", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "fily pending " }, { "l_orderkey": 1157i32, "l_partkey": 160i32, "l_suppkey": 5i32, "l_linenumber": 5i32, "l_quantity": 14.0d, "l_extendedprice": 14842.24d, "l_discount": 0.03d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-17", "l_commitdate": "1998-03-03", "l_receiptdate": "1998-05-01", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "theodolites. fluffily re" }, { "l_orderkey": 1220i32, "l_partkey": 160i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 36.0d, "l_extendedprice": 38165.76d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-10", "l_commitdate": "1996-11-14", "l_receiptdate": "1997-01-07", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "ar packages. blithely final acc" }, { "l_orderkey": 1282i32, "l_partkey": 160i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 19.0d, "l_extendedprice": 20143.04d, "l_discount": 0.01d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-05-07", "l_commitdate": "1992-04-07", "l_receiptdate": "1992-05-13", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "ts x-ray across the furi" }, { "l_orderkey": 1317i32, "l_partkey": 160i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 7.0d, "l_extendedprice": 7421.12d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-06-08", "l_commitdate": "1995-08-03", "l_receiptdate": "1995-06-16", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": " pinto beans according to the final, pend" }, { "l_orderkey": 1346i32, "l_partkey": 160i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 29.0d, "l_extendedprice": 30744.64d, "l_discount": 0.07d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-08-18", "l_commitdate": "1992-09-15", "l_receiptdate": "1992-09-17", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "the pinto " }, { "l_orderkey": 1409i32, "l_partkey": 160i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 17.0d, "l_extendedprice": 18022.72d, "l_discount": 0.07d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-04-15", "l_commitdate": "1993-03-01", "l_receiptdate": "1993-04-29", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "pending accounts poach. care" }, { "l_orderkey": 1441i32, "l_partkey": 160i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 37.0d, "l_extendedprice": 39225.92d, "l_discount": 0.01d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-26", "l_commitdate": "1997-04-27", "l_receiptdate": "1997-04-29", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "accounts. slyly special dolphins b" }, { "l_orderkey": 1888i32, "l_partkey": 160i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 4.0d, "l_extendedprice": 4240.64d, "l_discount": 0.03d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-12-28", "l_commitdate": "1993-12-19", "l_receiptdate": "1994-01-11", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "lphins. ironically special theodolit" }, { "l_orderkey": 2118i32, "l_partkey": 160i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 24.0d, "l_extendedprice": 25443.84d, "l_discount": 0.1d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-06", "l_commitdate": "1996-12-14", "l_receiptdate": "1997-01-14", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "about the slyly bold depende" }, { "l_orderkey": 2176i32, "l_partkey": 160i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 25.0d, "l_extendedprice": 26504.0d, "l_discount": 0.02d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-02-23", "l_commitdate": "1993-01-05", "l_receiptdate": "1993-03-07", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": " ruthless deposits according to the ent" }, { "l_orderkey": 2211i32, "l_partkey": 160i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 25.0d, "l_extendedprice": 26504.0d, "l_discount": 0.0d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-08-13", "l_commitdate": "1994-08-17", "l_receiptdate": "1994-08-16", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "ly regular, express" }, { "l_orderkey": 2374i32, "l_partkey": 160i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 24.0d, "l_extendedprice": 25443.84d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-02-02", "l_commitdate": "1994-01-12", "l_receiptdate": "1994-02-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": ". requests are above t" }, { "l_orderkey": 2532i32, "l_partkey": 160i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 33.0d, "l_extendedprice": 34985.28d, "l_discount": 0.06d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-23", "l_commitdate": "1996-01-04", "l_receiptdate": "1995-12-16", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "rve carefully slyly ironic accounts! fluf" }, { "l_orderkey": 2535i32, "l_partkey": 160i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 19.0d, "l_extendedprice": 20143.04d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-06-01", "l_commitdate": "1993-08-01", "l_receiptdate": "1993-06-19", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "ructions. final requests" }, { "l_orderkey": 2562i32, "l_partkey": 160i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 29.0d, "l_extendedprice": 30744.64d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-11-01", "l_commitdate": "1992-09-29", "l_receiptdate": "1992-11-13", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "eep against the furiously r" }, { "l_orderkey": 2823i32, "l_partkey": 160i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 18.0d, "l_extendedprice": 19082.88d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-11", "l_commitdate": "1995-10-30", "l_receiptdate": "1995-12-08", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": " final deposits. furiously regular foxes u" }, { "l_orderkey": 2854i32, "l_partkey": 160i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 20.0d, "l_extendedprice": 21203.2d, "l_discount": 0.08d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-09-18", "l_commitdate": "1994-08-03", "l_receiptdate": "1994-10-12", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "rs impress after the deposits. " }, { "l_orderkey": 3364i32, "l_partkey": 160i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 7.0d, "l_extendedprice": 7421.12d, "l_discount": 0.1d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-09", "l_commitdate": "1997-08-01", "l_receiptdate": "1997-07-16", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "furiously regular ideas haggle furiously b" }, { "l_orderkey": 3488i32, "l_partkey": 160i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 1.0d, "l_extendedprice": 1060.16d, "l_discount": 0.04d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-03-06", "l_commitdate": "1995-02-16", "l_receiptdate": "1995-03-23", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": " final excuses. carefully even waters hagg" }, { "l_orderkey": 3488i32, "l_partkey": 160i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 11.0d, "l_extendedprice": 11661.76d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-03-25", "l_commitdate": "1995-02-08", "l_receiptdate": "1995-04-16", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "unusual re" }, { "l_orderkey": 3584i32, "l_partkey": 160i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 23.0d, "l_extendedprice": 24383.68d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-10", "l_commitdate": "1997-10-15", "l_receiptdate": "1997-09-30", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "l platelets until the asymptotes " }, { "l_orderkey": 3939i32, "l_partkey": 160i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 8.0d, "l_extendedprice": 8481.28d, "l_discount": 0.03d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-29", "l_commitdate": "1996-04-05", "l_receiptdate": "1996-02-26", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "e packages. express, pen" }, { "l_orderkey": 4135i32, "l_partkey": 160i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 33.0d, "l_extendedprice": 34985.28d, "l_discount": 0.05d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-01", "l_commitdate": "1997-05-23", "l_receiptdate": "1997-05-23", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "he fluffil" }, { "l_orderkey": 4224i32, "l_partkey": 160i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 50.0d, "l_extendedprice": 53008.0d, "l_discount": 0.1d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-30", "l_commitdate": "1997-09-10", "l_receiptdate": "1997-08-19", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "side of the carefully silent dep" }, { "l_orderkey": 4262i32, "l_partkey": 160i32, "l_suppkey": 5i32, "l_linenumber": 7i32, "l_quantity": 41.0d, "l_extendedprice": 43466.56d, "l_discount": 0.03d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-28", "l_commitdate": "1996-09-14", "l_receiptdate": "1996-09-20", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "cuses unwind ac" }, { "l_orderkey": 4325i32, "l_partkey": 160i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 18.0d, "l_extendedprice": 19082.88d, "l_discount": 0.01d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-07", "l_commitdate": "1996-09-28", "l_receiptdate": "1996-10-31", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": ". blithely" }, { "l_orderkey": 4389i32, "l_partkey": 160i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 5.0d, "l_extendedprice": 5300.8d, "l_discount": 0.09d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-09-03", "l_commitdate": "1994-06-23", "l_receiptdate": "1994-09-16", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": " ironic request" }, { "l_orderkey": 4454i32, "l_partkey": 160i32, "l_suppkey": 8i32, "l_linenumber": 6i32, "l_quantity": 20.0d, "l_extendedprice": 21203.2d, "l_discount": 0.1d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-04-08", "l_commitdate": "1994-03-06", "l_receiptdate": "1994-04-26", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "quickly regular requests. furiously" }, { "l_orderkey": 4807i32, "l_partkey": 160i32, "l_suppkey": 1i32, "l_linenumber": 6i32, "l_quantity": 22.0d, "l_extendedprice": 23323.52d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-13", "l_commitdate": "1997-02-23", "l_receiptdate": "1997-04-01", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "es use final excuses. furiously final" }, { "l_orderkey": 4867i32, "l_partkey": 160i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 3.0d, "l_extendedprice": 3180.48d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-07-04", "l_commitdate": "1992-07-15", "l_receiptdate": "1992-07-21", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "yly silent deposits" }, { "l_orderkey": 5125i32, "l_partkey": 160i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 5.0d, "l_extendedprice": 5300.8d, "l_discount": 0.08d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-07", "l_commitdate": "1998-04-14", "l_receiptdate": "1998-04-29", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": " thinly even pack" }, { "l_orderkey": 5443i32, "l_partkey": 160i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 25.0d, "l_extendedprice": 26504.0d, "l_discount": 0.05d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-07", "l_commitdate": "1997-01-08", "l_receiptdate": "1997-01-05", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "use carefully above the pinto bea" }, { "l_orderkey": 5504i32, "l_partkey": 160i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 29.0d, "l_extendedprice": 30744.64d, "l_discount": 0.05d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-01-28", "l_commitdate": "1993-02-13", "l_receiptdate": "1993-02-27", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "ajole carefully. care" }, { "l_orderkey": 5506i32, "l_partkey": 160i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 6.0d, "l_extendedprice": 6360.96d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-02-21", "l_commitdate": "1994-01-30", "l_receiptdate": "1994-02-27", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "hely according to the furiously unusua" }, { "l_orderkey": 5633i32, "l_partkey": 160i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 28.0d, "l_extendedprice": 29684.48d, "l_discount": 0.02d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-14", "l_commitdate": "1998-07-24", "l_receiptdate": "1998-08-26", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "as boost quickly. unusual pinto " }, { "l_orderkey": 5830i32, "l_partkey": 160i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 29.0d, "l_extendedprice": 30744.64d, "l_discount": 0.1d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-06-19", "l_commitdate": "1993-05-10", "l_receiptdate": "1993-07-13", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "y bold excuses" }, { "l_orderkey": 5863i32, "l_partkey": 160i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 21.0d, "l_extendedprice": 22263.36d, "l_discount": 0.09d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-01-13", "l_commitdate": "1994-01-09", "l_receiptdate": "1994-01-28", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "atelets nag blithely furi" }, { "l_orderkey": 5925i32, "l_partkey": 160i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 41.0d, "l_extendedprice": 43466.56d, "l_discount": 0.0d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-02-03", "l_commitdate": "1995-12-24", "l_receiptdate": "1996-02-20", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": " across the pending deposits nag caref" } ] }
+{ "partkey": 161i32, "lines": [ { "l_orderkey": 771i32, "l_partkey": 161i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 38.0d, "l_extendedprice": 40324.08d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-22", "l_commitdate": "1995-09-10", "l_receiptdate": "1995-07-29", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": " quickly final requests are final packages." }, { "l_orderkey": 898i32, "l_partkey": 161i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 9.0d, "l_extendedprice": 9550.44d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-07-04", "l_commitdate": "1993-07-09", "l_receiptdate": "1993-07-25", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "e slyly across the blithe" }, { "l_orderkey": 967i32, "l_partkey": 161i32, "l_suppkey": 8i32, "l_linenumber": 7i32, "l_quantity": 18.0d, "l_extendedprice": 19100.88d, "l_discount": 0.0d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-10-06", "l_commitdate": "1992-08-05", "l_receiptdate": "1992-10-15", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "ngage blith" }, { "l_orderkey": 1092i32, "l_partkey": 161i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 28.0d, "l_extendedprice": 29712.48d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-04-08", "l_commitdate": "1995-05-01", "l_receiptdate": "1995-05-02", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "affix carefully. u" }, { "l_orderkey": 1121i32, "l_partkey": 161i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 27.0d, "l_extendedprice": 28651.32d, "l_discount": 0.08d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-08", "l_commitdate": "1997-03-28", "l_receiptdate": "1997-05-14", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "ly ironic accounts cajole slyly abou" }, { "l_orderkey": 1315i32, "l_partkey": 161i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 19.0d, "l_extendedprice": 20162.04d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-05", "l_commitdate": "1998-05-23", "l_receiptdate": "1998-08-04", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "nal, regular warhorses about the fu" }, { "l_orderkey": 1383i32, "l_partkey": 161i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 19.0d, "l_extendedprice": 20162.04d, "l_discount": 0.06d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-05-24", "l_commitdate": "1993-07-07", "l_receiptdate": "1993-06-14", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "lyly unusual accounts sle" }, { "l_orderkey": 1732i32, "l_partkey": 161i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 41.0d, "l_extendedprice": 43507.56d, "l_discount": 0.0d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-02-20", "l_commitdate": "1994-01-07", "l_receiptdate": "1994-02-27", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "quests sublate against the silent " }, { "l_orderkey": 1765i32, "l_partkey": 161i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 36.0d, "l_extendedprice": 38201.76d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-02", "l_commitdate": "1996-02-17", "l_receiptdate": "1996-03-14", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "he blithely pending accou" }, { "l_orderkey": 1895i32, "l_partkey": 161i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 43.0d, "l_extendedprice": 45629.88d, "l_discount": 0.09d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-07-26", "l_commitdate": "1994-07-19", "l_receiptdate": "1994-08-11", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": " carefully eve" }, { "l_orderkey": 2240i32, "l_partkey": 161i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 29.0d, "l_extendedprice": 30773.64d, "l_discount": 0.02d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-03-29", "l_commitdate": "1992-05-08", "l_receiptdate": "1992-04-09", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "lyly even ideas w" }, { "l_orderkey": 2273i32, "l_partkey": 161i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 20.0d, "l_extendedprice": 21223.2d, "l_discount": 0.06d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-05", "l_commitdate": "1997-02-25", "l_receiptdate": "1997-04-01", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "cuses. quickly enticing requests wake " }, { "l_orderkey": 2407i32, "l_partkey": 161i32, "l_suppkey": 8i32, "l_linenumber": 7i32, "l_quantity": 7.0d, "l_extendedprice": 7428.12d, "l_discount": 0.07d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-09-11", "l_commitdate": "1998-08-15", "l_receiptdate": "1998-09-30", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "totes are carefully accordin" }, { "l_orderkey": 2438i32, "l_partkey": 161i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 27.0d, "l_extendedprice": 28651.32d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-07-27", "l_commitdate": "1993-10-01", "l_receiptdate": "1993-08-06", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "inal accounts. slyly final reques" }, { "l_orderkey": 2593i32, "l_partkey": 161i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 44.0d, "l_extendedprice": 46691.04d, "l_discount": 0.02d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-09-05", "l_commitdate": "1993-10-23", "l_receiptdate": "1993-09-29", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "ents impress furiously; unusual theodoli" }, { "l_orderkey": 2817i32, "l_partkey": 161i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 4.0d, "l_extendedprice": 4244.64d, "l_discount": 0.0d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-06-04", "l_commitdate": "1994-06-11", "l_receiptdate": "1994-06-10", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "n accounts wake across the fluf" }, { "l_orderkey": 3012i32, "l_partkey": 161i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 37.0d, "l_extendedprice": 39262.92d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-08-16", "l_commitdate": "1993-06-07", "l_receiptdate": "1993-08-24", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "uickly permanent packages sleep caref" }, { "l_orderkey": 3269i32, "l_partkey": 161i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 40.0d, "l_extendedprice": 42446.4d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-11", "l_commitdate": "1996-05-06", "l_receiptdate": "1996-06-15", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "es. pending d" }, { "l_orderkey": 3552i32, "l_partkey": 161i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 36.0d, "l_extendedprice": 38201.76d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-29", "l_commitdate": "1997-06-24", "l_receiptdate": "1997-07-21", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "ly regular theodolites. fin" }, { "l_orderkey": 3618i32, "l_partkey": 161i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 26.0d, "l_extendedprice": 27590.16d, "l_discount": 0.01d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-23", "l_commitdate": "1998-01-24", "l_receiptdate": "1998-04-15", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "iously regular deposits cajole ruthless" }, { "l_orderkey": 4004i32, "l_partkey": 161i32, "l_suppkey": 10i32, "l_linenumber": 6i32, "l_quantity": 44.0d, "l_extendedprice": 46691.04d, "l_discount": 0.07d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-07-25", "l_commitdate": "1993-07-23", "l_receiptdate": "1993-08-16", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "ut the sauternes. bold, ironi" }, { "l_orderkey": 4391i32, "l_partkey": 161i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 1.0d, "l_extendedprice": 1061.16d, "l_discount": 0.09d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-06-18", "l_commitdate": "1992-04-27", "l_receiptdate": "1992-06-20", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "ong the silent deposits" }, { "l_orderkey": 4645i32, "l_partkey": 161i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 35.0d, "l_extendedprice": 37140.6d, "l_discount": 0.03d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-12-08", "l_commitdate": "1994-11-25", "l_receiptdate": "1994-12-09", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "sias believe bl" }, { "l_orderkey": 4871i32, "l_partkey": 161i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 17.0d, "l_extendedprice": 18039.72d, "l_discount": 0.07d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-09", "l_commitdate": "1995-09-01", "l_receiptdate": "1995-10-02", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "es. carefully ev" }, { "l_orderkey": 4935i32, "l_partkey": 161i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 13.0d, "l_extendedprice": 13795.08d, "l_discount": 0.09d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-06-20", "l_commitdate": "1993-08-13", "l_receiptdate": "1993-06-27", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "ly requests. final deposits might " }, { "l_orderkey": 5031i32, "l_partkey": 161i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 40.0d, "l_extendedprice": 42446.4d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-12-04", "l_commitdate": "1995-01-27", "l_receiptdate": "1995-01-01", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "ns hang blithely across th" }, { "l_orderkey": 5060i32, "l_partkey": 161i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 15.0d, "l_extendedprice": 15917.4d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-08-28", "l_commitdate": "1992-08-20", "l_receiptdate": "1992-09-01", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "ular deposits sl" }, { "l_orderkey": 5062i32, "l_partkey": 161i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 18.0d, "l_extendedprice": 19100.88d, "l_discount": 0.03d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-11-04", "l_commitdate": "1992-12-25", "l_receiptdate": "1992-11-05", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "furiously pending requests are ruthles" }, { "l_orderkey": 5063i32, "l_partkey": 161i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 1.0d, "l_extendedprice": 1061.16d, "l_discount": 0.06d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-03", "l_commitdate": "1997-06-26", "l_receiptdate": "1997-10-03", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "ously special " }, { "l_orderkey": 5415i32, "l_partkey": 161i32, "l_suppkey": 6i32, "l_linenumber": 5i32, "l_quantity": 11.0d, "l_extendedprice": 11672.76d, "l_discount": 0.0d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-11-22", "l_commitdate": "1992-10-19", "l_receiptdate": "1992-12-10", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "gle among t" }, { "l_orderkey": 5570i32, "l_partkey": 161i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 37.0d, "l_extendedprice": 39262.92d, "l_discount": 0.08d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-29", "l_commitdate": "1996-10-23", "l_receiptdate": "1996-09-11", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "y ironic pin" }, { "l_orderkey": 5858i32, "l_partkey": 161i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 18.0d, "l_extendedprice": 19100.88d, "l_discount": 0.0d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-11-05", "l_commitdate": "1992-10-08", "l_receiptdate": "1992-12-03", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "al excuses. bold" }, { "l_orderkey": 5863i32, "l_partkey": 161i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 45.0d, "l_extendedprice": 47752.2d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-12-19", "l_commitdate": "1994-01-25", "l_receiptdate": "1994-01-05", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": " deposits are ab" } ] }
+{ "partkey": 162i32, "lines": [ { "l_orderkey": 35i32, "l_partkey": 162i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 34.0d, "l_extendedprice": 36113.44d, "l_discount": 0.06d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-22", "l_commitdate": "1996-01-06", "l_receiptdate": "1996-01-27", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "s are carefully against the f" }, { "l_orderkey": 165i32, "l_partkey": 162i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 43.0d, "l_extendedprice": 45672.88d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-02-27", "l_commitdate": "1993-04-19", "l_receiptdate": "1993-03-03", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "jole slyly according " }, { "l_orderkey": 192i32, "l_partkey": 162i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 20.0d, "l_extendedprice": 21243.2d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-13", "l_commitdate": "1998-02-02", "l_receiptdate": "1998-03-31", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "tes. carefu" }, { "l_orderkey": 258i32, "l_partkey": 162i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 45.0d, "l_extendedprice": 47797.2d, "l_discount": 0.07d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-03-04", "l_commitdate": "1994-02-13", "l_receiptdate": "1994-03-30", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "regular excuses-- fluffily ruthl" }, { "l_orderkey": 259i32, "l_partkey": 162i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 14.0d, "l_extendedprice": 14870.24d, "l_discount": 0.03d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-11-10", "l_commitdate": "1993-11-20", "l_receiptdate": "1993-11-17", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "ully even, regul" }, { "l_orderkey": 288i32, "l_partkey": 162i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 31.0d, "l_extendedprice": 32926.96d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-29", "l_commitdate": "1997-04-24", "l_receiptdate": "1997-06-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "ns. fluffily" }, { "l_orderkey": 358i32, "l_partkey": 162i32, "l_suppkey": 3i32, "l_linenumber": 6i32, "l_quantity": 32.0d, "l_extendedprice": 33989.12d, "l_discount": 0.03d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-12-21", "l_commitdate": "1993-11-06", "l_receiptdate": "1994-01-17", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "lyly express deposits " }, { "l_orderkey": 420i32, "l_partkey": 162i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 22.0d, "l_extendedprice": 23367.52d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-25", "l_commitdate": "1995-12-16", "l_receiptdate": "1996-02-03", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "ly against the blithely re" }, { "l_orderkey": 422i32, "l_partkey": 162i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 25.0d, "l_extendedprice": 26554.0d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-24", "l_commitdate": "1997-07-09", "l_receiptdate": "1997-09-22", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "ep along the furiousl" }, { "l_orderkey": 450i32, "l_partkey": 162i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 42.0d, "l_extendedprice": 44610.72d, "l_discount": 0.03d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "F", "l_shipdate": "1995-06-07", "l_commitdate": "1995-05-29", "l_receiptdate": "1995-06-23", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "y asymptotes. regular depen" }, { "l_orderkey": 551i32, "l_partkey": 162i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 16.0d, "l_extendedprice": 16994.56d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-29", "l_commitdate": "1995-08-19", "l_receiptdate": "1995-08-10", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "y along the carefully ex" }, { "l_orderkey": 833i32, "l_partkey": 162i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 9.0d, "l_extendedprice": 9559.44d, "l_discount": 0.05d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-02-28", "l_commitdate": "1994-04-26", "l_receiptdate": "1994-03-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "ecial, even requests. even, bold instructi" }, { "l_orderkey": 1122i32, "l_partkey": 162i32, "l_suppkey": 7i32, "l_linenumber": 6i32, "l_quantity": 24.0d, "l_extendedprice": 25491.84d, "l_discount": 0.04d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-08", "l_commitdate": "1997-02-20", "l_receiptdate": "1997-04-05", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "blithely requests. slyly pending r" }, { "l_orderkey": 1382i32, "l_partkey": 162i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 18.0d, "l_extendedprice": 19118.88d, "l_discount": 0.08d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-08-30", "l_commitdate": "1993-10-19", "l_receiptdate": "1993-09-03", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "hely regular deposits. fluffy s" }, { "l_orderkey": 1730i32, "l_partkey": 162i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 15.0d, "l_extendedprice": 15932.4d, "l_discount": 0.07d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-09-07", "l_commitdate": "1998-09-12", "l_receiptdate": "1998-09-30", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "pinto beans cajole. bravely bold" }, { "l_orderkey": 1730i32, "l_partkey": 162i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 9.0d, "l_extendedprice": 9559.44d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-09-18", "l_commitdate": "1998-09-15", "l_receiptdate": "1998-09-21", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "gular dependencies wake. blithely final e" }, { "l_orderkey": 2114i32, "l_partkey": 162i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 25.0d, "l_extendedprice": 26554.0d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-02-15", "l_commitdate": "1995-03-13", "l_receiptdate": "1995-02-22", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "unts. regular, express accounts wake. b" }, { "l_orderkey": 2273i32, "l_partkey": 162i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 18.0d, "l_extendedprice": 19118.88d, "l_discount": 0.07d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-16", "l_commitdate": "1997-01-21", "l_receiptdate": "1997-01-03", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": " beans. doggedly final packages wake" }, { "l_orderkey": 2432i32, "l_partkey": 162i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 8.0d, "l_extendedprice": 8497.28d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-16", "l_commitdate": "1996-10-01", "l_receiptdate": "1996-11-13", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "s about the bold, close deposit" }, { "l_orderkey": 2470i32, "l_partkey": 162i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 30.0d, "l_extendedprice": 31864.8d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-04", "l_commitdate": "1997-07-13", "l_receiptdate": "1997-08-14", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "s across the furiously fina" }, { "l_orderkey": 2630i32, "l_partkey": 162i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 29.0d, "l_extendedprice": 30802.64d, "l_discount": 0.08d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-12-03", "l_commitdate": "1993-01-04", "l_receiptdate": "1992-12-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "efully unusual dependencies. even i" }, { "l_orderkey": 2691i32, "l_partkey": 162i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 16.0d, "l_extendedprice": 16994.56d, "l_discount": 0.09d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-06-11", "l_commitdate": "1992-07-29", "l_receiptdate": "1992-06-29", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "bove the even foxes. unusual theodoli" }, { "l_orderkey": 2723i32, "l_partkey": 162i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 2.0d, "l_extendedprice": 2124.32d, "l_discount": 0.1d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-09", "l_commitdate": "1995-11-10", "l_receiptdate": "1995-11-14", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": " courts boost quickly about th" }, { "l_orderkey": 2786i32, "l_partkey": 162i32, "l_suppkey": 1i32, "l_linenumber": 6i32, "l_quantity": 21.0d, "l_extendedprice": 22305.36d, "l_discount": 0.08d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-05-03", "l_commitdate": "1992-05-01", "l_receiptdate": "1992-05-14", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "slow instructi" }, { "l_orderkey": 3527i32, "l_partkey": 162i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 50.0d, "l_extendedprice": 53108.0d, "l_discount": 0.09d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-17", "l_commitdate": "1997-08-03", "l_receiptdate": "1997-07-29", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "e even accounts was about th" }, { "l_orderkey": 3687i32, "l_partkey": 162i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 19.0d, "l_extendedprice": 20181.04d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-05-14", "l_commitdate": "1993-04-24", "l_receiptdate": "1993-06-01", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "ly final asymptotes according to t" }, { "l_orderkey": 3842i32, "l_partkey": 162i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 28.0d, "l_extendedprice": 29740.48d, "l_discount": 0.05d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-06-17", "l_commitdate": "1992-06-03", "l_receiptdate": "1992-06-24", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "s excuses thrash carefully." }, { "l_orderkey": 4258i32, "l_partkey": 162i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 19.0d, "l_extendedprice": 20181.04d, "l_discount": 0.03d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-14", "l_commitdate": "1996-12-12", "l_receiptdate": "1997-01-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "ly busily ironic foxes. f" }, { "l_orderkey": 4262i32, "l_partkey": 162i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 5.0d, "l_extendedprice": 5310.8d, "l_discount": 0.08d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-02", "l_commitdate": "1996-10-16", "l_receiptdate": "1996-10-05", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "ironic accounts are unusu" }, { "l_orderkey": 4512i32, "l_partkey": 162i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 30.0d, "l_extendedprice": 31864.8d, "l_discount": 0.07d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-28", "l_commitdate": "1995-12-22", "l_receiptdate": "1996-02-22", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "ly unusual package" }, { "l_orderkey": 4836i32, "l_partkey": 162i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 22.0d, "l_extendedprice": 23367.52d, "l_discount": 0.01d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-03", "l_commitdate": "1997-02-23", "l_receiptdate": "1997-03-04", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "al pinto beans. care" }, { "l_orderkey": 4865i32, "l_partkey": 162i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 16.0d, "l_extendedprice": 16994.56d, "l_discount": 0.07d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-10-02", "l_commitdate": "1997-08-20", "l_receiptdate": "1997-10-04", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "osits haggle. fur" }, { "l_orderkey": 4961i32, "l_partkey": 162i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 41.0d, "l_extendedprice": 43548.56d, "l_discount": 0.02d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-15", "l_commitdate": "1998-06-15", "l_receiptdate": "1998-08-05", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "ily against the n" }, { "l_orderkey": 5089i32, "l_partkey": 162i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 20.0d, "l_extendedprice": 21243.2d, "l_discount": 0.0d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-10-10", "l_commitdate": "1992-10-07", "l_receiptdate": "1992-11-06", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": " ironic accounts" }, { "l_orderkey": 5346i32, "l_partkey": 162i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 35.0d, "l_extendedprice": 37175.6d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-02-09", "l_commitdate": "1994-03-01", "l_receiptdate": "1994-02-14", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "nic excuses cajole entic" }, { "l_orderkey": 5505i32, "l_partkey": 162i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 46.0d, "l_extendedprice": 48859.36d, "l_discount": 0.05d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-06", "l_commitdate": "1997-11-04", "l_receiptdate": "1998-02-04", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "usly ironic dependencies haggle across " }, { "l_orderkey": 5510i32, "l_partkey": 162i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 47.0d, "l_extendedprice": 49921.52d, "l_discount": 0.03d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-01-20", "l_commitdate": "1993-03-25", "l_receiptdate": "1993-02-15", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "riously even requests. slyly bold accou" }, { "l_orderkey": 5543i32, "l_partkey": 162i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 22.0d, "l_extendedprice": 23367.52d, "l_discount": 0.04d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-11-06", "l_commitdate": "1993-11-02", "l_receiptdate": "1993-12-02", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "instructions. deposits use quickly. ir" }, { "l_orderkey": 5635i32, "l_partkey": 162i32, "l_suppkey": 9i32, "l_linenumber": 6i32, "l_quantity": 23.0d, "l_extendedprice": 24429.68d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-08-24", "l_commitdate": "1992-11-10", "l_receiptdate": "1992-09-21", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "ily pending packages. bold," }, { "l_orderkey": 5638i32, "l_partkey": 162i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 21.0d, "l_extendedprice": 22305.36d, "l_discount": 0.08d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-03-13", "l_commitdate": "1994-03-27", "l_receiptdate": "1994-03-17", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "press courts use f" }, { "l_orderkey": 5765i32, "l_partkey": 162i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 31.0d, "l_extendedprice": 32926.96d, "l_discount": 0.0d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-01-11", "l_commitdate": "1995-02-13", "l_receiptdate": "1995-01-23", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "r foxes. ev" }, { "l_orderkey": 5953i32, "l_partkey": 162i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 5.0d, "l_extendedprice": 5310.8d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-04-10", "l_commitdate": "1992-04-27", "l_receiptdate": "1992-04-14", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "s. blithely " } ] }
+{ "partkey": 163i32, "lines": [ { "l_orderkey": 643i32, "l_partkey": 163i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 23.0d, "l_extendedprice": 24452.68d, "l_discount": 0.05d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-09", "l_commitdate": "1995-05-18", "l_receiptdate": "1995-07-31", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "sits are carefully according to the e" }, { "l_orderkey": 676i32, "l_partkey": 163i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 35.0d, "l_extendedprice": 37210.6d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-30", "l_commitdate": "1997-01-13", "l_receiptdate": "1997-01-19", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "into beans. blithe" }, { "l_orderkey": 710i32, "l_partkey": 163i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 47.0d, "l_extendedprice": 49968.52d, "l_discount": 0.06d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-01-18", "l_commitdate": "1993-03-24", "l_receiptdate": "1993-01-24", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "usual ideas into th" }, { "l_orderkey": 997i32, "l_partkey": 163i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 11.0d, "l_extendedprice": 11694.76d, "l_discount": 0.0d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-16", "l_commitdate": "1997-07-21", "l_receiptdate": "1997-07-14", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "p furiously according to t" }, { "l_orderkey": 1316i32, "l_partkey": 163i32, "l_suppkey": 8i32, "l_linenumber": 7i32, "l_quantity": 8.0d, "l_extendedprice": 8505.28d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-03-26", "l_commitdate": "1994-02-08", "l_receiptdate": "1994-04-19", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "packages against the express requests wa" }, { "l_orderkey": 1795i32, "l_partkey": 163i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 11.0d, "l_extendedprice": 11694.76d, "l_discount": 0.08d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-06-19", "l_commitdate": "1994-04-24", "l_receiptdate": "1994-07-02", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "slyly. special pa" }, { "l_orderkey": 2246i32, "l_partkey": 163i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 13.0d, "l_extendedprice": 13821.08d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-15", "l_commitdate": "1996-07-21", "l_receiptdate": "1996-10-08", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "equests. fluffily special epitaphs use" }, { "l_orderkey": 2502i32, "l_partkey": 163i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 33.0d, "l_extendedprice": 35084.28d, "l_discount": 0.1d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-08-12", "l_commitdate": "1993-07-22", "l_receiptdate": "1993-09-04", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "have to print" }, { "l_orderkey": 2789i32, "l_partkey": 163i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 16.0d, "l_extendedprice": 17010.56d, "l_discount": 0.03d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-18", "l_commitdate": "1998-05-25", "l_receiptdate": "1998-05-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "o beans use carefully" }, { "l_orderkey": 2914i32, "l_partkey": 163i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 25.0d, "l_extendedprice": 26579.0d, "l_discount": 0.03d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-05-14", "l_commitdate": "1993-04-04", "l_receiptdate": "1993-05-22", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "cross the carefully even accounts." }, { "l_orderkey": 2983i32, "l_partkey": 163i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 44.0d, "l_extendedprice": 46779.04d, "l_discount": 0.03d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-02-09", "l_commitdate": "1992-03-07", "l_receiptdate": "1992-03-09", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "ly regular instruct" }, { "l_orderkey": 3014i32, "l_partkey": 163i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 36.0d, "l_extendedprice": 38273.76d, "l_discount": 0.05d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-11-16", "l_commitdate": "1993-01-20", "l_receiptdate": "1992-11-28", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "ding accounts boost fu" }, { "l_orderkey": 3520i32, "l_partkey": 163i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 35.0d, "l_extendedprice": 37210.6d, "l_discount": 0.02d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-16", "l_commitdate": "1997-09-03", "l_receiptdate": "1997-09-24", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "s nag carefully. sometimes unusual account" }, { "l_orderkey": 3652i32, "l_partkey": 163i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 39.0d, "l_extendedprice": 41463.24d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-10", "l_commitdate": "1997-04-03", "l_receiptdate": "1997-03-21", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "y express instructions. un" }, { "l_orderkey": 3684i32, "l_partkey": 163i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 19.0d, "l_extendedprice": 20200.04d, "l_discount": 0.04d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-10-19", "l_commitdate": "1993-08-25", "l_receiptdate": "1993-11-02", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "e slyly carefully pending foxes. d" }, { "l_orderkey": 3718i32, "l_partkey": 163i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 16.0d, "l_extendedprice": 17010.56d, "l_discount": 0.02d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-11", "l_commitdate": "1996-12-25", "l_receiptdate": "1996-11-12", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "slyly even accounts. blithely special acco" }, { "l_orderkey": 3841i32, "l_partkey": 163i32, "l_suppkey": 8i32, "l_linenumber": 6i32, "l_quantity": 48.0d, "l_extendedprice": 51031.68d, "l_discount": 0.03d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-11-23", "l_commitdate": "1994-11-22", "l_receiptdate": "1994-12-01", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": " according to the regular, " }, { "l_orderkey": 4064i32, "l_partkey": 163i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 24.0d, "l_extendedprice": 25515.84d, "l_discount": 0.02d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-01", "l_commitdate": "1996-12-31", "l_receiptdate": "1997-01-23", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "ly regular ideas." }, { "l_orderkey": 4099i32, "l_partkey": 163i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 48.0d, "l_extendedprice": 51031.68d, "l_discount": 0.0d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-10-18", "l_commitdate": "1992-10-14", "l_receiptdate": "1992-11-01", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "ts haggle according to the slyly f" }, { "l_orderkey": 4258i32, "l_partkey": 163i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 9.0d, "l_extendedprice": 9568.44d, "l_discount": 0.04d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-04", "l_commitdate": "1996-12-08", "l_receiptdate": "1996-12-20", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "counts wake permanently after the bravely" }, { "l_orderkey": 4292i32, "l_partkey": 163i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 40.0d, "l_extendedprice": 42526.4d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-04-27", "l_commitdate": "1992-03-07", "l_receiptdate": "1992-05-04", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "ounts according to the furiously " }, { "l_orderkey": 4326i32, "l_partkey": 163i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 11.0d, "l_extendedprice": 11694.76d, "l_discount": 0.01d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-02", "l_commitdate": "1996-12-10", "l_receiptdate": "1997-02-20", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "press reque" }, { "l_orderkey": 4578i32, "l_partkey": 163i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 20.0d, "l_extendedprice": 21263.2d, "l_discount": 0.04d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-01-11", "l_commitdate": "1992-11-09", "l_receiptdate": "1993-01-23", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "iously pending theodolites--" }, { "l_orderkey": 4672i32, "l_partkey": 163i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 24.0d, "l_extendedprice": 25515.84d, "l_discount": 0.04d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-11", "l_commitdate": "1995-12-28", "l_receiptdate": "1995-12-04", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "y fluffily stealt" }, { "l_orderkey": 4705i32, "l_partkey": 163i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 28.0d, "l_extendedprice": 29768.48d, "l_discount": 0.1d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-06-03", "l_commitdate": "1992-06-07", "l_receiptdate": "1992-06-22", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "tes wake according to the unusual plate" }, { "l_orderkey": 4992i32, "l_partkey": 163i32, "l_suppkey": 8i32, "l_linenumber": 6i32, "l_quantity": 44.0d, "l_extendedprice": 46779.04d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-06-01", "l_commitdate": "1992-07-22", "l_receiptdate": "1992-06-03", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "rmanent, sly packages print slyly. regula" }, { "l_orderkey": 5254i32, "l_partkey": 163i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 45.0d, "l_extendedprice": 47842.2d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-11-11", "l_commitdate": "1992-09-01", "l_receiptdate": "1992-12-07", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": " wake. blithely silent excuse" }, { "l_orderkey": 5698i32, "l_partkey": 163i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 25.0d, "l_extendedprice": 26579.0d, "l_discount": 0.08d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-08-06", "l_commitdate": "1994-06-21", "l_receiptdate": "1994-08-25", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": " asymptotes sleep slyly above the" } ] }
+{ "partkey": 164i32, "lines": [ { "l_orderkey": 7i32, "l_partkey": 164i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 28.0d, "l_extendedprice": 29796.48d, "l_discount": 0.03d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-21", "l_commitdate": "1996-04-08", "l_receiptdate": "1996-04-20", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": ". slyly special requests haggl" }, { "l_orderkey": 101i32, "l_partkey": 164i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 36.0d, "l_extendedprice": 38309.76d, "l_discount": 0.0d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-19", "l_commitdate": "1996-05-01", "l_receiptdate": "1996-06-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "tes. blithely pending dolphins x-ray f" }, { "l_orderkey": 323i32, "l_partkey": 164i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 50.0d, "l_extendedprice": 53208.0d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-04-20", "l_commitdate": "1994-04-25", "l_receiptdate": "1994-05-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "cial requests " }, { "l_orderkey": 801i32, "l_partkey": 164i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 12.0d, "l_extendedprice": 12769.92d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-06-06", "l_commitdate": "1992-04-14", "l_receiptdate": "1992-06-12", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "s. ironic pinto b" }, { "l_orderkey": 930i32, "l_partkey": 164i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 50.0d, "l_extendedprice": 53208.0d, "l_discount": 0.03d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-04-03", "l_commitdate": "1995-01-29", "l_receiptdate": "1995-04-22", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": " excuses among the furiously express ideas " }, { "l_orderkey": 1060i32, "l_partkey": 164i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 11.0d, "l_extendedprice": 11705.76d, "l_discount": 0.01d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-05-13", "l_commitdate": "1993-05-08", "l_receiptdate": "1993-05-17", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "e regular deposits: re" }, { "l_orderkey": 1184i32, "l_partkey": 164i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 7.0d, "l_extendedprice": 7449.12d, "l_discount": 0.05d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-02-14", "l_commitdate": "1998-01-06", "l_receiptdate": "1998-03-11", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "ckly warthogs. blithely bold foxes hag" }, { "l_orderkey": 1248i32, "l_partkey": 164i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 45.0d, "l_extendedprice": 47887.2d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-04-17", "l_commitdate": "1992-03-31", "l_receiptdate": "1992-05-13", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "ter the pending pl" }, { "l_orderkey": 2240i32, "l_partkey": 164i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 6.0d, "l_extendedprice": 6384.96d, "l_discount": 0.01d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-06-23", "l_commitdate": "1992-05-17", "l_receiptdate": "1992-07-20", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "ymptotes boost. furiously bold p" }, { "l_orderkey": 2372i32, "l_partkey": 164i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 12.0d, "l_extendedprice": 12769.92d, "l_discount": 0.04d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-21", "l_commitdate": "1997-12-21", "l_receiptdate": "1998-04-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "lyly according to" }, { "l_orderkey": 2436i32, "l_partkey": 164i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 6.0d, "l_extendedprice": 6384.96d, "l_discount": 0.06d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-25", "l_commitdate": "1995-11-30", "l_receiptdate": "1995-11-24", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "odolites. ep" }, { "l_orderkey": 2439i32, "l_partkey": 164i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 2.0d, "l_extendedprice": 2128.32d, "l_discount": 0.09d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-14", "l_commitdate": "1997-06-11", "l_receiptdate": "1997-05-09", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "courts boos" }, { "l_orderkey": 2821i32, "l_partkey": 164i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 27.0d, "l_extendedprice": 28732.32d, "l_discount": 0.01d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-11-27", "l_commitdate": "1993-10-11", "l_receiptdate": "1993-12-08", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "requests. blit" }, { "l_orderkey": 2852i32, "l_partkey": 164i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 29.0d, "l_extendedprice": 30860.64d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-04-21", "l_commitdate": "1993-03-22", "l_receiptdate": "1993-05-02", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "lyly ironi" }, { "l_orderkey": 3591i32, "l_partkey": 164i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 4.0d, "l_extendedprice": 4256.64d, "l_discount": 0.01d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-04-04", "l_commitdate": "1994-02-19", "l_receiptdate": "1994-05-02", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "he final packages. deposits serve quick" }, { "l_orderkey": 3621i32, "l_partkey": 164i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 45.0d, "l_extendedprice": 47887.2d, "l_discount": 0.07d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-08-09", "l_commitdate": "1993-06-18", "l_receiptdate": "1993-09-05", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": " doubt about the bold deposits. carefully" }, { "l_orderkey": 3811i32, "l_partkey": 164i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 24.0d, "l_extendedprice": 25539.84d, "l_discount": 0.04d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-13", "l_commitdate": "1998-05-16", "l_receiptdate": "1998-08-12", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "deposits. slyly regular accounts cajo" }, { "l_orderkey": 3937i32, "l_partkey": 164i32, "l_suppkey": 9i32, "l_linenumber": 7i32, "l_quantity": 1.0d, "l_extendedprice": 1064.16d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-29", "l_commitdate": "1998-01-08", "l_receiptdate": "1998-04-27", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "refully agains" }, { "l_orderkey": 4451i32, "l_partkey": 164i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 40.0d, "l_extendedprice": 42566.4d, "l_discount": 0.03d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-11-18", "l_commitdate": "1994-12-25", "l_receiptdate": "1994-11-26", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "y. slyly special deposits are sly" }, { "l_orderkey": 4514i32, "l_partkey": 164i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 27.0d, "l_extendedprice": 28732.32d, "l_discount": 0.06d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-07-01", "l_commitdate": "1994-07-13", "l_receiptdate": "1994-07-26", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": " even, silent foxes be" }, { "l_orderkey": 5092i32, "l_partkey": 164i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 30.0d, "l_extendedprice": 31924.8d, "l_discount": 0.06d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-27", "l_commitdate": "1995-12-08", "l_receiptdate": "1996-01-09", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "ss, ironic deposits. furiously stea" }, { "l_orderkey": 5441i32, "l_partkey": 164i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 3.0d, "l_extendedprice": 3192.48d, "l_discount": 0.0d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-08-12", "l_commitdate": "1994-10-14", "l_receiptdate": "1994-09-01", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "are. unusual, " }, { "l_orderkey": 5601i32, "l_partkey": 164i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 45.0d, "l_extendedprice": 47887.2d, "l_discount": 0.1d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-03-25", "l_commitdate": "1992-04-03", "l_receiptdate": "1992-04-04", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "ts-- blithely final accounts cajole. carefu" }, { "l_orderkey": 5633i32, "l_partkey": 164i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 50.0d, "l_extendedprice": 53208.0d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-23", "l_commitdate": "1998-07-09", "l_receiptdate": "1998-08-21", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "ts. slyly regular " }, { "l_orderkey": 5827i32, "l_partkey": 164i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 3.0d, "l_extendedprice": 3192.48d, "l_discount": 0.03d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-10-17", "l_commitdate": "1998-09-29", "l_receiptdate": "1998-10-28", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "uses eat along the furiously" }, { "l_orderkey": 5858i32, "l_partkey": 164i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 46.0d, "l_extendedprice": 48951.36d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-09-07", "l_commitdate": "1992-10-06", "l_receiptdate": "1992-10-06", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "posits withi" } ] }
+{ "partkey": 165i32, "lines": [ { "l_orderkey": 134i32, "l_partkey": 165i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 35.0d, "l_extendedprice": 37280.6d, "l_discount": 0.06d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-08-23", "l_commitdate": "1992-06-01", "l_receiptdate": "1992-08-24", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "ajole furiously. instructio" }, { "l_orderkey": 357i32, "l_partkey": 165i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 32.0d, "l_extendedprice": 34085.12d, "l_discount": 0.05d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-28", "l_commitdate": "1996-12-29", "l_receiptdate": "1997-02-14", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "y above the carefully final accounts" }, { "l_orderkey": 484i32, "l_partkey": 165i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 22.0d, "l_extendedprice": 23433.52d, "l_discount": 0.07d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-29", "l_commitdate": "1997-03-26", "l_receiptdate": "1997-05-17", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "es are pending instructions. furiously unu" }, { "l_orderkey": 518i32, "l_partkey": 165i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 30.0d, "l_extendedprice": 31954.8d, "l_discount": 0.07d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-02-18", "l_commitdate": "1998-03-27", "l_receiptdate": "1998-03-16", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "slyly by the packages. carefull" }, { "l_orderkey": 902i32, "l_partkey": 165i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 24.0d, "l_extendedprice": 25563.84d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-11-08", "l_commitdate": "1994-10-12", "l_receiptdate": "1994-11-26", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": ". blithely even accounts poach furiously i" }, { "l_orderkey": 1031i32, "l_partkey": 165i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 28.0d, "l_extendedprice": 29824.48d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-12-10", "l_commitdate": "1994-10-29", "l_receiptdate": "1994-12-18", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "ly ironic accounts across the q" }, { "l_orderkey": 1286i32, "l_partkey": 165i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 14.0d, "l_extendedprice": 14912.24d, "l_discount": 0.0d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-05-23", "l_commitdate": "1993-08-09", "l_receiptdate": "1993-06-01", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "blithely bo" }, { "l_orderkey": 1413i32, "l_partkey": 165i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 49.0d, "l_extendedprice": 52192.84d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-28", "l_commitdate": "1997-08-23", "l_receiptdate": "1997-09-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "nstructions br" }, { "l_orderkey": 1728i32, "l_partkey": 165i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 44.0d, "l_extendedprice": 46867.04d, "l_discount": 0.08d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-31", "l_commitdate": "1996-06-22", "l_receiptdate": "1996-08-06", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "ide of the slyly blithe" }, { "l_orderkey": 2117i32, "l_partkey": 165i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 36.0d, "l_extendedprice": 38345.76d, "l_discount": 0.1d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-06", "l_commitdate": "1997-07-15", "l_receiptdate": "1997-08-07", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "ronic accounts wake" }, { "l_orderkey": 2151i32, "l_partkey": 165i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 49.0d, "l_extendedprice": 52192.84d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-20", "l_commitdate": "1997-02-09", "l_receiptdate": "1997-02-18", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": " packages. f" }, { "l_orderkey": 2307i32, "l_partkey": 165i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 19.0d, "l_extendedprice": 20238.04d, "l_discount": 0.08d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-10-23", "l_commitdate": "1993-09-09", "l_receiptdate": "1993-11-09", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "olites haggle furiously around the " }, { "l_orderkey": 2371i32, "l_partkey": 165i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 22.0d, "l_extendedprice": 23433.52d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-26", "l_commitdate": "1998-03-19", "l_receiptdate": "1998-04-16", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "y daring accounts. regular ins" }, { "l_orderkey": 2438i32, "l_partkey": 165i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 45.0d, "l_extendedprice": 47932.2d, "l_discount": 0.01d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-10-27", "l_commitdate": "1993-09-24", "l_receiptdate": "1993-11-02", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "en theodolites w" }, { "l_orderkey": 2534i32, "l_partkey": 165i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 14.0d, "l_extendedprice": 14912.24d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-12", "l_commitdate": "1996-09-26", "l_receiptdate": "1996-08-28", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "eposits doze quickly final" }, { "l_orderkey": 2657i32, "l_partkey": 165i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 15.0d, "l_extendedprice": 15977.4d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-09", "l_commitdate": "1995-12-16", "l_receiptdate": "1995-12-18", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "ole carefully above the ironic ideas. b" }, { "l_orderkey": 2848i32, "l_partkey": 165i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 8.0d, "l_extendedprice": 8521.28d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-03-21", "l_commitdate": "1992-05-18", "l_receiptdate": "1992-04-07", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": ". silent, final ideas sublate packages. ir" }, { "l_orderkey": 2979i32, "l_partkey": 165i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 28.0d, "l_extendedprice": 29824.48d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-04", "l_commitdate": "1996-04-23", "l_receiptdate": "1996-06-24", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "ing, regular pinto beans. blithel" }, { "l_orderkey": 3015i32, "l_partkey": 165i32, "l_suppkey": 4i32, "l_linenumber": 5i32, "l_quantity": 42.0d, "l_extendedprice": 44736.72d, "l_discount": 0.04d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-01-21", "l_commitdate": "1992-11-07", "l_receiptdate": "1993-02-11", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "encies haggle furious" }, { "l_orderkey": 3168i32, "l_partkey": 165i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 11.0d, "l_extendedprice": 11716.76d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-04-12", "l_commitdate": "1992-03-17", "l_receiptdate": "1992-05-12", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "ously furious dependenc" }, { "l_orderkey": 3234i32, "l_partkey": 165i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 14.0d, "l_extendedprice": 14912.24d, "l_discount": 0.01d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-04-06", "l_commitdate": "1996-05-30", "l_receiptdate": "1996-04-13", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "lithely regular f" }, { "l_orderkey": 3429i32, "l_partkey": 165i32, "l_suppkey": 6i32, "l_linenumber": 5i32, "l_quantity": 45.0d, "l_extendedprice": 47932.2d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-21", "l_commitdate": "1997-03-08", "l_receiptdate": "1997-05-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "ites poach a" }, { "l_orderkey": 3623i32, "l_partkey": 165i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 42.0d, "l_extendedprice": 44736.72d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-11", "l_commitdate": "1997-03-24", "l_receiptdate": "1997-01-21", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "g to the slyly regular packa" }, { "l_orderkey": 3654i32, "l_partkey": 165i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 46.0d, "l_extendedprice": 48997.36d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-06-05", "l_commitdate": "1992-08-19", "l_receiptdate": "1992-06-06", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "usly regular foxes. furio" }, { "l_orderkey": 3716i32, "l_partkey": 165i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 19.0d, "l_extendedprice": 20238.04d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-25", "l_commitdate": "1997-10-18", "l_receiptdate": "1997-10-12", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "arefully unusual accounts. flu" }, { "l_orderkey": 3746i32, "l_partkey": 165i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 37.0d, "l_extendedprice": 39410.92d, "l_discount": 0.07d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-12-29", "l_commitdate": "1994-10-25", "l_receiptdate": "1995-01-03", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "e of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the carefule of the careful" }, { "l_orderkey": 3748i32, "l_partkey": 165i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 24.0d, "l_extendedprice": 25563.84d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-07", "l_commitdate": "1998-05-02", "l_receiptdate": "1998-06-21", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "al deposits. blithely" }, { "l_orderkey": 3846i32, "l_partkey": 165i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 33.0d, "l_extendedprice": 35150.28d, "l_discount": 0.05d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-12", "l_commitdate": "1998-03-14", "l_receiptdate": "1998-05-14", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "s instructions are. fu" }, { "l_orderkey": 4581i32, "l_partkey": 165i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 37.0d, "l_extendedprice": 39410.92d, "l_discount": 0.01d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-10-17", "l_commitdate": "1992-11-05", "l_receiptdate": "1992-11-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "e the blithely bold pearls ha" }, { "l_orderkey": 4676i32, "l_partkey": 165i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 47.0d, "l_extendedprice": 50062.52d, "l_discount": 0.03d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-20", "l_commitdate": "1995-10-04", "l_receiptdate": "1996-01-09", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "lithely about the carefully special requ" }, { "l_orderkey": 4901i32, "l_partkey": 165i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 12.0d, "l_extendedprice": 12781.92d, "l_discount": 0.0d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-12", "l_commitdate": "1998-02-06", "l_receiptdate": "1998-02-03", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "y unusual deposits prom" }, { "l_orderkey": 4903i32, "l_partkey": 165i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 6.0d, "l_extendedprice": 6390.96d, "l_discount": 0.09d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-04-01", "l_commitdate": "1992-05-16", "l_receiptdate": "1992-04-11", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "azzle quickly along the blithely final pla" }, { "l_orderkey": 4966i32, "l_partkey": 165i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 7.0d, "l_extendedprice": 7456.12d, "l_discount": 0.0d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-08", "l_commitdate": "1996-10-09", "l_receiptdate": "1997-01-06", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "ckly ironic tithe" }, { "l_orderkey": 5061i32, "l_partkey": 165i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 18.0d, "l_extendedprice": 19172.88d, "l_discount": 0.03d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-10-20", "l_commitdate": "1993-10-05", "l_receiptdate": "1993-10-28", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "atelets among the ca" }, { "l_orderkey": 5511i32, "l_partkey": 165i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 16.0d, "l_extendedprice": 17042.56d, "l_discount": 0.1d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-02-02", "l_commitdate": "1995-01-06", "l_receiptdate": "1995-02-19", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "thely bold theodolites " }, { "l_orderkey": 5511i32, "l_partkey": 165i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 31.0d, "l_extendedprice": 33019.96d, "l_discount": 0.09d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-02-23", "l_commitdate": "1995-01-21", "l_receiptdate": "1995-03-02", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "gular excuses. fluffily even pinto beans c" } ] }
+{ "partkey": 166i32, "lines": [ { "l_orderkey": 227i32, "l_partkey": 166i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 19.0d, "l_extendedprice": 20257.04d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-10", "l_commitdate": "1996-01-30", "l_receiptdate": "1995-12-26", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "s cajole furiously a" }, { "l_orderkey": 359i32, "l_partkey": 166i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 30.0d, "l_extendedprice": 31984.8d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-01-06", "l_commitdate": "1995-02-20", "l_receiptdate": "1995-01-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "uses detect spec" }, { "l_orderkey": 676i32, "l_partkey": 166i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 31.0d, "l_extendedprice": 33050.96d, "l_discount": 0.01d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-06", "l_commitdate": "1997-02-28", "l_receiptdate": "1997-03-08", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "ial deposits cajo" }, { "l_orderkey": 995i32, "l_partkey": 166i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 45.0d, "l_extendedprice": 47977.2d, "l_discount": 0.0d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-02", "l_commitdate": "1995-07-21", "l_receiptdate": "1995-08-03", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "lar packages detect blithely above t" }, { "l_orderkey": 1121i32, "l_partkey": 166i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 29.0d, "l_extendedprice": 30918.64d, "l_discount": 0.02d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-07", "l_commitdate": "1997-04-02", "l_receiptdate": "1997-04-01", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": " use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furiously. quickly silent package use furious" }, { "l_orderkey": 1698i32, "l_partkey": 166i32, "l_suppkey": 7i32, "l_linenumber": 6i32, "l_quantity": 15.0d, "l_extendedprice": 15992.4d, "l_discount": 0.1d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-20", "l_commitdate": "1997-06-07", "l_receiptdate": "1997-07-21", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "final ideas. even, ironic " }, { "l_orderkey": 1703i32, "l_partkey": 166i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 36.0d, "l_extendedprice": 38381.76d, "l_discount": 0.09d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-04-22", "l_commitdate": "1993-03-05", "l_receiptdate": "1993-04-24", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "riously express " }, { "l_orderkey": 1730i32, "l_partkey": 166i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 41.0d, "l_extendedprice": 43712.56d, "l_discount": 0.01d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-11", "l_commitdate": "1998-08-29", "l_receiptdate": "1998-09-02", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": " instructions. unusual, even Tiresi" }, { "l_orderkey": 1829i32, "l_partkey": 166i32, "l_suppkey": 5i32, "l_linenumber": 5i32, "l_quantity": 6.0d, "l_extendedprice": 6396.96d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-08-09", "l_commitdate": "1994-08-05", "l_receiptdate": "1994-09-05", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "s haggle! slyl" }, { "l_orderkey": 1862i32, "l_partkey": 166i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 37.0d, "l_extendedprice": 39447.92d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-15", "l_commitdate": "1998-05-15", "l_receiptdate": "1998-05-14", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "l deposits. carefully even dep" }, { "l_orderkey": 2021i32, "l_partkey": 166i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 19.0d, "l_extendedprice": 20257.04d, "l_discount": 0.04d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-14", "l_commitdate": "1995-09-05", "l_receiptdate": "1995-08-23", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": " above the slyly fl" }, { "l_orderkey": 2407i32, "l_partkey": 166i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 9.0d, "l_extendedprice": 9595.44d, "l_discount": 0.07d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-06", "l_commitdate": "1998-08-11", "l_receiptdate": "1998-08-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "ts. special deposits are closely." }, { "l_orderkey": 2438i32, "l_partkey": 166i32, "l_suppkey": 3i32, "l_linenumber": 5i32, "l_quantity": 28.0d, "l_extendedprice": 29852.48d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-11-05", "l_commitdate": "1993-08-22", "l_receiptdate": "1993-11-22", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "ctions. bli" }, { "l_orderkey": 2469i32, "l_partkey": 166i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 11.0d, "l_extendedprice": 11727.76d, "l_discount": 0.0d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-09", "l_commitdate": "1997-01-26", "l_receiptdate": "1997-02-16", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "ies wake carefully b" }, { "l_orderkey": 2691i32, "l_partkey": 166i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 1.0d, "l_extendedprice": 1066.16d, "l_discount": 0.08d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-08-11", "l_commitdate": "1992-06-07", "l_receiptdate": "1992-08-16", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "egular instructions b" }, { "l_orderkey": 2913i32, "l_partkey": 166i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 17.0d, "l_extendedprice": 18124.72d, "l_discount": 0.07d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-10-21", "l_commitdate": "1997-09-25", "l_receiptdate": "1997-11-20", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "requests doze quickly. furious" }, { "l_orderkey": 3079i32, "l_partkey": 166i32, "l_suppkey": 1i32, "l_linenumber": 6i32, "l_quantity": 46.0d, "l_extendedprice": 49043.36d, "l_discount": 0.0d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-11-19", "l_commitdate": "1997-11-04", "l_receiptdate": "1997-11-25", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "es. final, regula" }, { "l_orderkey": 3108i32, "l_partkey": 166i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 26.0d, "l_extendedprice": 27720.16d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-11-12", "l_commitdate": "1993-10-05", "l_receiptdate": "1993-12-09", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": " slyly slow foxes wake furious" }, { "l_orderkey": 3200i32, "l_partkey": 166i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 27.0d, "l_extendedprice": 28786.32d, "l_discount": 0.03d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-07", "l_commitdate": "1996-05-01", "l_receiptdate": "1996-05-09", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "as haggle furiously against the fluff" }, { "l_orderkey": 3555i32, "l_partkey": 166i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 11.0d, "l_extendedprice": 11727.76d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-25", "l_commitdate": "1996-10-01", "l_receiptdate": "1996-10-03", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "oost caref" }, { "l_orderkey": 3750i32, "l_partkey": 166i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 33.0d, "l_extendedprice": 35183.28d, "l_discount": 0.04d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "F", "l_shipdate": "1995-06-15", "l_commitdate": "1995-06-04", "l_receiptdate": "1995-06-29", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "ep blithely according to the flu" }, { "l_orderkey": 3777i32, "l_partkey": 166i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 18.0d, "l_extendedprice": 19190.88d, "l_discount": 0.1d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-05-04", "l_commitdate": "1994-05-23", "l_receiptdate": "1994-05-22", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "eful packages use slyly: even deposits " }, { "l_orderkey": 3811i32, "l_partkey": 166i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 2.0d, "l_extendedprice": 2132.32d, "l_discount": 0.01d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-16", "l_commitdate": "1998-06-16", "l_receiptdate": "1998-06-23", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "slyly fluff" }, { "l_orderkey": 4231i32, "l_partkey": 166i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 4.0d, "l_extendedprice": 4264.64d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-11-28", "l_commitdate": "1998-01-26", "l_receiptdate": "1997-12-12", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "lithely even packages. " }, { "l_orderkey": 4258i32, "l_partkey": 166i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 36.0d, "l_extendedprice": 38381.76d, "l_discount": 0.02d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-23", "l_commitdate": "1997-01-25", "l_receiptdate": "1997-02-27", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "ns use alongs" }, { "l_orderkey": 4930i32, "l_partkey": 166i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 42.0d, "l_extendedprice": 44778.72d, "l_discount": 0.0d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-06-18", "l_commitdate": "1994-06-22", "l_receiptdate": "1994-07-10", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "ions haggle. furiously regular ideas use " }, { "l_orderkey": 4993i32, "l_partkey": 166i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 42.0d, "l_extendedprice": 44778.72d, "l_discount": 0.06d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-08-27", "l_commitdate": "1994-09-24", "l_receiptdate": "1994-09-05", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": " final packages at the q" }, { "l_orderkey": 5024i32, "l_partkey": 166i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 17.0d, "l_extendedprice": 18124.72d, "l_discount": 0.1d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-24", "l_commitdate": "1997-01-10", "l_receiptdate": "1996-12-04", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": " to the expre" }, { "l_orderkey": 5095i32, "l_partkey": 166i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 9.0d, "l_extendedprice": 9595.44d, "l_discount": 0.1d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-08-14", "l_commitdate": "1992-06-23", "l_receiptdate": "1992-08-16", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "bold theodolites wake about the expr" }, { "l_orderkey": 5253i32, "l_partkey": 166i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 25.0d, "l_extendedprice": 26654.0d, "l_discount": 0.04d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-05-21", "l_commitdate": "1995-06-13", "l_receiptdate": "1995-06-09", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "urts. even theodoli" }, { "l_orderkey": 5568i32, "l_partkey": 166i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 50.0d, "l_extendedprice": 53308.0d, "l_discount": 0.05d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-14", "l_commitdate": "1995-09-04", "l_receiptdate": "1995-08-03", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "furious ide" }, { "l_orderkey": 5605i32, "l_partkey": 166i32, "l_suppkey": 7i32, "l_linenumber": 6i32, "l_quantity": 29.0d, "l_extendedprice": 30918.64d, "l_discount": 0.08d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-19", "l_commitdate": "1996-10-22", "l_receiptdate": "1996-10-06", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": " quickly. quickly pending sen" }, { "l_orderkey": 5760i32, "l_partkey": 166i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 6.0d, "l_extendedprice": 6396.96d, "l_discount": 0.03d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-06-09", "l_commitdate": "1994-07-06", "l_receiptdate": "1994-06-16", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": " shall have to cajole along the " } ] }
+{ "partkey": 167i32, "lines": [ { "l_orderkey": 166i32, "l_partkey": 167i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 13.0d, "l_extendedprice": 13873.08d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-09", "l_commitdate": "1995-11-18", "l_receiptdate": "1995-11-14", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "fully above the blithely fina" }, { "l_orderkey": 224i32, "l_partkey": 167i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 12.0d, "l_extendedprice": 12805.92d, "l_discount": 0.08d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-10-12", "l_commitdate": "1994-08-29", "l_receiptdate": "1994-10-20", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "uriously regular packages. slyly fina" }, { "l_orderkey": 385i32, "l_partkey": 167i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 7.0d, "l_extendedprice": 7470.12d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-23", "l_commitdate": "1996-05-09", "l_receiptdate": "1996-06-06", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": " special asymptote" }, { "l_orderkey": 579i32, "l_partkey": 167i32, "l_suppkey": 6i32, "l_linenumber": 6i32, "l_quantity": 5.0d, "l_extendedprice": 5335.8d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-02", "l_commitdate": "1998-04-25", "l_receiptdate": "1998-05-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "refully silent ideas cajole furious" }, { "l_orderkey": 614i32, "l_partkey": 167i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 43.0d, "l_extendedprice": 45887.88d, "l_discount": 0.05d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-03-07", "l_commitdate": "1993-02-22", "l_receiptdate": "1993-03-18", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": " express accounts wake. slyly ironic ins" }, { "l_orderkey": 930i32, "l_partkey": 167i32, "l_suppkey": 4i32, "l_linenumber": 7i32, "l_quantity": 30.0d, "l_extendedprice": 32014.8d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-01-20", "l_commitdate": "1995-02-28", "l_receiptdate": "1995-02-04", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "g accounts sleep along the platelets." }, { "l_orderkey": 1412i32, "l_partkey": 167i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 11.0d, "l_extendedprice": 11738.76d, "l_discount": 0.05d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-05-27", "l_commitdate": "1993-05-30", "l_receiptdate": "1993-06-07", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "en packages. regular packages dete" }, { "l_orderkey": 1447i32, "l_partkey": 167i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 19.0d, "l_extendedprice": 20276.04d, "l_discount": 0.06d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-01-31", "l_commitdate": "1992-12-07", "l_receiptdate": "1993-02-04", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": ". quickly ironic " }, { "l_orderkey": 1601i32, "l_partkey": 167i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 6.0d, "l_extendedprice": 6402.96d, "l_discount": 0.0d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-10-19", "l_commitdate": "1994-09-28", "l_receiptdate": "1994-10-23", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": " bold sheaves. furiously per" }, { "l_orderkey": 1857i32, "l_partkey": 167i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 40.0d, "l_extendedprice": 42686.4d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-02-15", "l_commitdate": "1993-03-08", "l_receiptdate": "1993-02-21", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "slyly close d" }, { "l_orderkey": 1888i32, "l_partkey": 167i32, "l_suppkey": 6i32, "l_linenumber": 7i32, "l_quantity": 50.0d, "l_extendedprice": 53358.0d, "l_discount": 0.04d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-12-22", "l_commitdate": "1994-01-10", "l_receiptdate": "1994-01-06", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "ependencies affix blithely regular warhors" }, { "l_orderkey": 2151i32, "l_partkey": 167i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 23.0d, "l_extendedprice": 24544.68d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-20", "l_commitdate": "1996-12-17", "l_receiptdate": "1996-11-30", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": " silent dependencies about the slyl" }, { "l_orderkey": 2208i32, "l_partkey": 167i32, "l_suppkey": 2i32, "l_linenumber": 6i32, "l_quantity": 18.0d, "l_extendedprice": 19208.88d, "l_discount": 0.02d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-06-06", "l_commitdate": "1995-06-10", "l_receiptdate": "1995-06-11", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "packages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages are quickly bold depackages" }, { "l_orderkey": 2241i32, "l_partkey": 167i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 19.0d, "l_extendedprice": 20276.04d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-06-01", "l_commitdate": "1993-08-05", "l_receiptdate": "1993-06-07", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": " are furiously quickl" }, { "l_orderkey": 2563i32, "l_partkey": 167i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 28.0d, "l_extendedprice": 29880.48d, "l_discount": 0.04d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-03-17", "l_commitdate": "1994-02-04", "l_receiptdate": "1994-04-13", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "hely regular depe" }, { "l_orderkey": 2917i32, "l_partkey": 167i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 5.0d, "l_extendedprice": 5335.8d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-16", "l_commitdate": "1998-01-26", "l_receiptdate": "1998-01-07", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "bove the furiously silent packages. pend" }, { "l_orderkey": 3365i32, "l_partkey": 167i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 37.0d, "l_extendedprice": 39484.92d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-11-24", "l_commitdate": "1995-01-09", "l_receiptdate": "1994-11-27", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "oze blithely. furiously ironic theodolit" }, { "l_orderkey": 3457i32, "l_partkey": 167i32, "l_suppkey": 4i32, "l_linenumber": 7i32, "l_quantity": 9.0d, "l_extendedprice": 9604.44d, "l_discount": 0.04d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-05-29", "l_commitdate": "1995-06-30", "l_receiptdate": "1995-06-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "quests. foxes sleep quickly" }, { "l_orderkey": 3461i32, "l_partkey": 167i32, "l_suppkey": 2i32, "l_linenumber": 6i32, "l_quantity": 24.0d, "l_extendedprice": 25611.84d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-06-01", "l_commitdate": "1993-03-12", "l_receiptdate": "1993-06-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "thely. carefully re" }, { "l_orderkey": 3520i32, "l_partkey": 167i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 38.0d, "l_extendedprice": 40552.08d, "l_discount": 0.0d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-14", "l_commitdate": "1997-10-26", "l_receiptdate": "1997-09-09", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "yly final packages according to the quickl" }, { "l_orderkey": 3620i32, "l_partkey": 167i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 16.0d, "l_extendedprice": 17074.56d, "l_discount": 0.0d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-17", "l_commitdate": "1997-05-08", "l_receiptdate": "1997-06-03", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "s. even, pending in" }, { "l_orderkey": 3783i32, "l_partkey": 167i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 36.0d, "l_extendedprice": 38417.76d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-12-17", "l_commitdate": "1994-02-26", "l_receiptdate": "1994-01-03", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "ites haggle among the carefully unusu" }, { "l_orderkey": 4326i32, "l_partkey": 167i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 27.0d, "l_extendedprice": 28813.32d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-29", "l_commitdate": "1997-01-20", "l_receiptdate": "1996-12-23", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "inal packages. final asymptotes about t" }, { "l_orderkey": 4421i32, "l_partkey": 167i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 46.0d, "l_extendedprice": 49089.36d, "l_discount": 0.0d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-25", "l_commitdate": "1997-05-21", "l_receiptdate": "1997-06-23", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "g dependenci" }, { "l_orderkey": 4773i32, "l_partkey": 167i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 49.0d, "l_extendedprice": 52290.84d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-26", "l_commitdate": "1996-02-29", "l_receiptdate": "1996-01-27", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "y final reque" }, { "l_orderkey": 5063i32, "l_partkey": 167i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 2.0d, "l_extendedprice": 2134.32d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-17", "l_commitdate": "1997-07-27", "l_receiptdate": "1997-06-24", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "kly regular i" }, { "l_orderkey": 5157i32, "l_partkey": 167i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 15.0d, "l_extendedprice": 16007.4d, "l_discount": 0.09d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-27", "l_commitdate": "1997-08-30", "l_receiptdate": "1997-08-08", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "cajole. spec" }, { "l_orderkey": 5472i32, "l_partkey": 167i32, "l_suppkey": 2i32, "l_linenumber": 6i32, "l_quantity": 39.0d, "l_extendedprice": 41619.24d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-04-18", "l_commitdate": "1993-07-10", "l_receiptdate": "1993-05-12", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "uriously carefully " }, { "l_orderkey": 5696i32, "l_partkey": 167i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 42.0d, "l_extendedprice": 44820.72d, "l_discount": 0.04d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "F", "l_shipdate": "1995-06-06", "l_commitdate": "1995-06-11", "l_receiptdate": "1995-06-19", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "te furious" }, { "l_orderkey": 5767i32, "l_partkey": 167i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 11.0d, "l_extendedprice": 11738.76d, "l_discount": 0.08d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-06-02", "l_commitdate": "1992-05-30", "l_receiptdate": "1992-06-08", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "instructions. carefully final accou" }, { "l_orderkey": 5927i32, "l_partkey": 167i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 32.0d, "l_extendedprice": 34149.12d, "l_discount": 0.1d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-26", "l_commitdate": "1997-10-27", "l_receiptdate": "1997-12-31", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "telets. carefully bold accounts was" } ] }
+{ "partkey": 168i32, "lines": [ { "l_orderkey": 98i32, "l_partkey": 168i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 10.0d, "l_extendedprice": 10681.6d, "l_discount": 0.03d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-10-23", "l_commitdate": "1994-11-08", "l_receiptdate": "1994-11-09", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": " carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas carefully. quickly ironic ideas" }, { "l_orderkey": 131i32, "l_partkey": 168i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 45.0d, "l_extendedprice": 48067.2d, "l_discount": 0.1d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-09-14", "l_commitdate": "1994-09-02", "l_receiptdate": "1994-10-04", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "ironic, bold accounts. careful" }, { "l_orderkey": 163i32, "l_partkey": 168i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 43.0d, "l_extendedprice": 45930.88d, "l_discount": 0.01d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-19", "l_commitdate": "1997-11-19", "l_receiptdate": "1997-10-03", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "al, bold dependencies wake. iron" }, { "l_orderkey": 194i32, "l_partkey": 168i32, "l_suppkey": 7i32, "l_linenumber": 7i32, "l_quantity": 21.0d, "l_extendedprice": 22431.36d, "l_discount": 0.02d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-05-06", "l_commitdate": "1992-05-20", "l_receiptdate": "1992-05-07", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "accounts detect quickly dogged " }, { "l_orderkey": 359i32, "l_partkey": 168i32, "l_suppkey": 5i32, "l_linenumber": 5i32, "l_quantity": 11.0d, "l_extendedprice": 11749.76d, "l_discount": 0.01d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-02-15", "l_commitdate": "1995-01-27", "l_receiptdate": "1995-02-18", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "rets wake blithely. slyly final dep" }, { "l_orderkey": 582i32, "l_partkey": 168i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 36.0d, "l_extendedprice": 38453.76d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-09", "l_commitdate": "1997-11-27", "l_receiptdate": "1997-12-26", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "lar requests. quickly " }, { "l_orderkey": 677i32, "l_partkey": 168i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 39.0d, "l_extendedprice": 41658.24d, "l_discount": 0.0d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-12-19", "l_commitdate": "1994-02-11", "l_receiptdate": "1994-01-05", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "ges. furiously regular packages use " }, { "l_orderkey": 868i32, "l_partkey": 168i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 8.0d, "l_extendedprice": 8545.28d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-10-07", "l_commitdate": "1992-08-01", "l_receiptdate": "1992-10-16", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "l deposits. blithely regular pint" }, { "l_orderkey": 903i32, "l_partkey": 168i32, "l_suppkey": 9i32, "l_linenumber": 6i32, "l_quantity": 13.0d, "l_extendedprice": 13886.08d, "l_discount": 0.07d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-11", "l_commitdate": "1995-10-04", "l_receiptdate": "1995-10-03", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "sleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep along the finalsleep al" }, { "l_orderkey": 1121i32, "l_partkey": 168i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 42.0d, "l_extendedprice": 44862.72d, "l_discount": 0.04d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-05", "l_commitdate": "1997-03-18", "l_receiptdate": "1997-03-14", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "nts are slyly special packages. f" }, { "l_orderkey": 1315i32, "l_partkey": 168i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 25.0d, "l_extendedprice": 26704.0d, "l_discount": 0.01d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-26", "l_commitdate": "1998-06-10", "l_receiptdate": "1998-07-06", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "lites. unusual foxes affi" }, { "l_orderkey": 1445i32, "l_partkey": 168i32, "l_suppkey": 9i32, "l_linenumber": 6i32, "l_quantity": 39.0d, "l_extendedprice": 41658.24d, "l_discount": 0.03d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-02-05", "l_commitdate": "1995-02-20", "l_receiptdate": "1995-02-06", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "ully unusual reques" }, { "l_orderkey": 1475i32, "l_partkey": 168i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 15.0d, "l_extendedprice": 16022.4d, "l_discount": 0.08d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-02-12", "l_commitdate": "1997-12-17", "l_receiptdate": "1998-03-02", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "xpress requests haggle after the final, fi" }, { "l_orderkey": 1794i32, "l_partkey": 168i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 36.0d, "l_extendedprice": 38453.76d, "l_discount": 0.09d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-11-07", "l_commitdate": "1997-11-01", "l_receiptdate": "1997-11-18", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "ely fluffily ironi" }, { "l_orderkey": 1795i32, "l_partkey": 168i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 25.0d, "l_extendedprice": 26704.0d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-05-18", "l_commitdate": "1994-05-22", "l_receiptdate": "1994-05-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "he always express accounts ca" }, { "l_orderkey": 1889i32, "l_partkey": 168i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 5.0d, "l_extendedprice": 5340.8d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-26", "l_commitdate": "1997-06-09", "l_receiptdate": "1997-07-21", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "ording to the blithely silent r" }, { "l_orderkey": 2050i32, "l_partkey": 168i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 16.0d, "l_extendedprice": 17090.56d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-08-17", "l_commitdate": "1994-07-28", "l_receiptdate": "1994-09-05", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "al accounts. closely even " }, { "l_orderkey": 2087i32, "l_partkey": 168i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 46.0d, "l_extendedprice": 49135.36d, "l_discount": 0.1d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-02-24", "l_commitdate": "1998-04-02", "l_receiptdate": "1998-03-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "ter the dolphins." }, { "l_orderkey": 2114i32, "l_partkey": 168i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 50.0d, "l_extendedprice": 53408.0d, "l_discount": 0.05d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-02-05", "l_commitdate": "1995-03-18", "l_receiptdate": "1995-02-13", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "pecial pinto bean" }, { "l_orderkey": 2375i32, "l_partkey": 168i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 3.0d, "l_extendedprice": 3204.48d, "l_discount": 0.02d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-14", "l_commitdate": "1996-12-25", "l_receiptdate": "1997-02-22", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "slyly across the furiously e" }, { "l_orderkey": 2434i32, "l_partkey": 168i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 49.0d, "l_extendedprice": 52339.84d, "l_discount": 0.0d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-08", "l_commitdate": "1997-07-23", "l_receiptdate": "1997-08-27", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": " after the requests haggle bold, fina" }, { "l_orderkey": 2913i32, "l_partkey": 168i32, "l_suppkey": 5i32, "l_linenumber": 6i32, "l_quantity": 35.0d, "l_extendedprice": 37385.6d, "l_discount": 0.06d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-30", "l_commitdate": "1997-08-21", "l_receiptdate": "1997-09-03", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "es. quickly even braids against" }, { "l_orderkey": 2978i32, "l_partkey": 168i32, "l_suppkey": 7i32, "l_linenumber": 6i32, "l_quantity": 4.0d, "l_extendedprice": 4272.64d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-06", "l_commitdate": "1995-07-31", "l_receiptdate": "1995-07-19", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "ffily unusual " }, { "l_orderkey": 3044i32, "l_partkey": 168i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 3.0d, "l_extendedprice": 3204.48d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-27", "l_commitdate": "1996-05-26", "l_receiptdate": "1996-08-15", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "ecoys haggle furiously pending requests." }, { "l_orderkey": 3654i32, "l_partkey": 168i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 11.0d, "l_extendedprice": 11749.76d, "l_discount": 0.08d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-07-20", "l_commitdate": "1992-07-30", "l_receiptdate": "1992-07-23", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "quickly along the express, ironic req" }, { "l_orderkey": 3808i32, "l_partkey": 168i32, "l_suppkey": 5i32, "l_linenumber": 6i32, "l_quantity": 44.0d, "l_extendedprice": 46999.04d, "l_discount": 0.06d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-06-07", "l_commitdate": "1994-06-04", "l_receiptdate": "1994-06-25", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "the blithely regular foxes. even, final " }, { "l_orderkey": 3814i32, "l_partkey": 168i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 36.0d, "l_extendedprice": 38453.76d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-06-19", "l_commitdate": "1995-04-18", "l_receiptdate": "1995-06-28", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "beans cajole quickly sl" }, { "l_orderkey": 4739i32, "l_partkey": 168i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 8.0d, "l_extendedprice": 8545.28d, "l_discount": 0.07d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-06-22", "l_commitdate": "1993-05-10", "l_receiptdate": "1993-07-11", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "cording to the " }, { "l_orderkey": 4930i32, "l_partkey": 168i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 28.0d, "l_extendedprice": 29908.48d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-08-27", "l_commitdate": "1994-06-27", "l_receiptdate": "1994-09-18", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "e ironic, unusual courts. regula" }, { "l_orderkey": 4963i32, "l_partkey": 168i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 38.0d, "l_extendedprice": 40590.08d, "l_discount": 0.08d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-25", "l_commitdate": "1996-12-12", "l_receiptdate": "1997-01-02", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "tegrate daringly accou" }, { "l_orderkey": 5093i32, "l_partkey": 168i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 40.0d, "l_extendedprice": 42726.4d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-09-16", "l_commitdate": "1993-11-04", "l_receiptdate": "1993-10-05", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "ing pinto beans. quickly bold dependenci" }, { "l_orderkey": 5191i32, "l_partkey": 168i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 40.0d, "l_extendedprice": 42726.4d, "l_discount": 0.02d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-03-31", "l_commitdate": "1995-02-21", "l_receiptdate": "1995-04-02", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "nes haggle sometimes. requests eng" }, { "l_orderkey": 5349i32, "l_partkey": 168i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 14.0d, "l_extendedprice": 14954.24d, "l_discount": 0.06d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-07", "l_commitdate": "1996-11-17", "l_receiptdate": "1996-11-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "fully regular " }, { "l_orderkey": 5381i32, "l_partkey": 168i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 17.0d, "l_extendedprice": 18158.72d, "l_discount": 0.05d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-05-25", "l_commitdate": "1993-04-14", "l_receiptdate": "1993-06-17", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "ckly final requests haggle qui" }, { "l_orderkey": 5638i32, "l_partkey": 168i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 12.0d, "l_extendedprice": 12817.92d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-02-05", "l_commitdate": "1994-04-01", "l_receiptdate": "1994-02-25", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "n, even requests. furiously ironic not" }, { "l_orderkey": 5700i32, "l_partkey": 168i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 24.0d, "l_extendedprice": 25635.84d, "l_discount": 0.09d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-26", "l_commitdate": "1998-01-28", "l_receiptdate": "1998-01-18", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "ix carefully " } ] }
+{ "partkey": 169i32, "lines": [ { "l_orderkey": 129i32, "l_partkey": 169i32, "l_suppkey": 6i32, "l_linenumber": 7i32, "l_quantity": 1.0d, "l_extendedprice": 1069.16d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-01-26", "l_commitdate": "1993-01-08", "l_receiptdate": "1993-02-24", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "e carefully blithely bold dolp" }, { "l_orderkey": 358i32, "l_partkey": 169i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 40.0d, "l_extendedprice": 42766.4d, "l_discount": 0.09d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-12-05", "l_commitdate": "1993-11-04", "l_receiptdate": "1994-01-01", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "ng the ironic theo" }, { "l_orderkey": 709i32, "l_partkey": 169i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 10.0d, "l_extendedprice": 10691.6d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-04", "l_commitdate": "1998-06-30", "l_receiptdate": "1998-06-11", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "ts cajole boldly " }, { "l_orderkey": 736i32, "l_partkey": 169i32, "l_suppkey": 6i32, "l_linenumber": 5i32, "l_quantity": 32.0d, "l_extendedprice": 34213.12d, "l_discount": 0.04d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-30", "l_commitdate": "1998-08-22", "l_receiptdate": "1998-08-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "iously final accoun" }, { "l_orderkey": 865i32, "l_partkey": 169i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 34.0d, "l_extendedprice": 36351.44d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-05-09", "l_commitdate": "1993-07-28", "l_receiptdate": "1993-05-18", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "furiously fluffily unusual account" }, { "l_orderkey": 928i32, "l_partkey": 169i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 29.0d, "l_extendedprice": 31005.64d, "l_discount": 0.07d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-05-17", "l_commitdate": "1995-05-12", "l_receiptdate": "1995-05-21", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "ly alongside of the s" }, { "l_orderkey": 1057i32, "l_partkey": 169i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 11.0d, "l_extendedprice": 11760.76d, "l_discount": 0.0d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-03-31", "l_commitdate": "1992-04-18", "l_receiptdate": "1992-04-18", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "yly final theodolites. furi" }, { "l_orderkey": 1153i32, "l_partkey": 169i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 50.0d, "l_extendedprice": 53458.0d, "l_discount": 0.0d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-27", "l_commitdate": "1996-07-13", "l_receiptdate": "1996-07-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "ronic asymptotes nag slyly. " }, { "l_orderkey": 1220i32, "l_partkey": 169i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 25.0d, "l_extendedprice": 26729.0d, "l_discount": 0.1d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-15", "l_commitdate": "1996-11-07", "l_receiptdate": "1996-11-06", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": " regular orbi" }, { "l_orderkey": 1376i32, "l_partkey": 169i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 22.0d, "l_extendedprice": 23521.52d, "l_discount": 0.01d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-05", "l_commitdate": "1997-07-08", "l_receiptdate": "1997-09-03", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "inst the final, pending " }, { "l_orderkey": 1506i32, "l_partkey": 169i32, "l_suppkey": 6i32, "l_linenumber": 7i32, "l_quantity": 4.0d, "l_extendedprice": 4276.64d, "l_discount": 0.07d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-01-03", "l_commitdate": "1992-12-06", "l_receiptdate": "1993-01-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "posits. furiou" }, { "l_orderkey": 1636i32, "l_partkey": 169i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 45.0d, "l_extendedprice": 48112.2d, "l_discount": 0.03d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-14", "l_commitdate": "1997-08-08", "l_receiptdate": "1997-07-27", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "ely express reque" }, { "l_orderkey": 1666i32, "l_partkey": 169i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 41.0d, "l_extendedprice": 43835.56d, "l_discount": 0.06d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-29", "l_commitdate": "1996-01-04", "l_receiptdate": "1995-12-24", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "ly regular excuses; regular ac" }, { "l_orderkey": 1732i32, "l_partkey": 169i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 25.0d, "l_extendedprice": 26729.0d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-02-15", "l_commitdate": "1994-01-07", "l_receiptdate": "1994-02-21", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "nag slyly. even, special de" }, { "l_orderkey": 1894i32, "l_partkey": 169i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 40.0d, "l_extendedprice": 42766.4d, "l_discount": 0.03d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-06-07", "l_commitdate": "1992-05-11", "l_receiptdate": "1992-07-01", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "ily furiously bold packages. flu" }, { "l_orderkey": 1959i32, "l_partkey": 169i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 46.0d, "l_extendedprice": 49181.36d, "l_discount": 0.04d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-05", "l_commitdate": "1997-03-03", "l_receiptdate": "1997-05-24", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": " furiously ex" }, { "l_orderkey": 2022i32, "l_partkey": 169i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 38.0d, "l_extendedprice": 40628.08d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-07-05", "l_commitdate": "1992-04-20", "l_receiptdate": "1992-07-13", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": " against the express accounts wake ca" }, { "l_orderkey": 2146i32, "l_partkey": 169i32, "l_suppkey": 4i32, "l_linenumber": 5i32, "l_quantity": 28.0d, "l_extendedprice": 29936.48d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-01-03", "l_commitdate": "1992-10-17", "l_receiptdate": "1993-01-08", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "r accounts sleep furio" }, { "l_orderkey": 2279i32, "l_partkey": 169i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 9.0d, "l_extendedprice": 9622.44d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-05-21", "l_commitdate": "1993-03-29", "l_receiptdate": "1993-06-17", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "ns cajole after the final platelets. s" }, { "l_orderkey": 2309i32, "l_partkey": 169i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 1.0d, "l_extendedprice": 1069.16d, "l_discount": 0.01d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-08", "l_commitdate": "1995-11-03", "l_receiptdate": "1995-12-31", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "eposits alongside of the final re" }, { "l_orderkey": 2369i32, "l_partkey": 169i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 47.0d, "l_extendedprice": 50250.52d, "l_discount": 0.1d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-02", "l_commitdate": "1997-02-18", "l_receiptdate": "1997-01-13", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": " to the regular dep" }, { "l_orderkey": 2560i32, "l_partkey": 169i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 41.0d, "l_extendedprice": 43835.56d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-10-23", "l_commitdate": "1992-11-11", "l_receiptdate": "1992-11-22", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": " after the accounts. regular foxes are be" }, { "l_orderkey": 3301i32, "l_partkey": 169i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 45.0d, "l_extendedprice": 48112.2d, "l_discount": 0.04d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-11-19", "l_commitdate": "1994-10-27", "l_receiptdate": "1994-11-24", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "nusual, final excuses after the entici" }, { "l_orderkey": 3648i32, "l_partkey": 169i32, "l_suppkey": 10i32, "l_linenumber": 6i32, "l_quantity": 14.0d, "l_extendedprice": 14968.24d, "l_discount": 0.08d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-10-02", "l_commitdate": "1993-08-26", "l_receiptdate": "1993-10-09", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "sly pending excuses. carefully i" }, { "l_orderkey": 3713i32, "l_partkey": 169i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 45.0d, "l_extendedprice": 48112.2d, "l_discount": 0.06d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-15", "l_commitdate": "1998-07-30", "l_receiptdate": "1998-07-14", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "al pinto beans affix after the slyly " }, { "l_orderkey": 3715i32, "l_partkey": 169i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 16.0d, "l_extendedprice": 17106.56d, "l_discount": 0.01d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-28", "l_commitdate": "1996-04-22", "l_receiptdate": "1996-06-30", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "usly regular pearls haggle final packages" }, { "l_orderkey": 3778i32, "l_partkey": 169i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 28.0d, "l_extendedprice": 29936.48d, "l_discount": 0.03d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-08-18", "l_commitdate": "1993-07-10", "l_receiptdate": "1993-09-06", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "y silent orbits print carefully against " }, { "l_orderkey": 3810i32, "l_partkey": 169i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 18.0d, "l_extendedprice": 19244.88d, "l_discount": 0.01d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-11-28", "l_commitdate": "1992-11-15", "l_receiptdate": "1992-12-27", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "s. furiously careful deposi" }, { "l_orderkey": 3872i32, "l_partkey": 169i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 18.0d, "l_extendedprice": 19244.88d, "l_discount": 0.07d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-25", "l_commitdate": "1996-10-24", "l_receiptdate": "1997-01-08", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "s. regular, brave accounts sleep blith" }, { "l_orderkey": 4578i32, "l_partkey": 169i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 42.0d, "l_extendedprice": 44904.72d, "l_discount": 0.06d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-01-05", "l_commitdate": "1992-11-06", "l_receiptdate": "1993-01-13", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "s are caref" }, { "l_orderkey": 5095i32, "l_partkey": 169i32, "l_suppkey": 10i32, "l_linenumber": 7i32, "l_quantity": 40.0d, "l_extendedprice": 42766.4d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-07-11", "l_commitdate": "1992-06-07", "l_receiptdate": "1992-07-26", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "carefully unusual plat" }, { "l_orderkey": 5317i32, "l_partkey": 169i32, "l_suppkey": 4i32, "l_linenumber": 7i32, "l_quantity": 30.0d, "l_extendedprice": 32074.8d, "l_discount": 0.07d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-10-13", "l_commitdate": "1994-10-31", "l_receiptdate": "1994-10-28", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "cross the attainments. slyly " }, { "l_orderkey": 5573i32, "l_partkey": 169i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 43.0d, "l_extendedprice": 45973.88d, "l_discount": 0.1d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-22", "l_commitdate": "1996-11-03", "l_receiptdate": "1996-11-02", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": " furiously pending packages against " }, { "l_orderkey": 5635i32, "l_partkey": 169i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 38.0d, "l_extendedprice": 40628.08d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-10-09", "l_commitdate": "1992-09-25", "l_receiptdate": "1992-10-18", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "ckly pendin" }, { "l_orderkey": 5953i32, "l_partkey": 169i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 23.0d, "l_extendedprice": 24590.68d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-06-05", "l_commitdate": "1992-06-03", "l_receiptdate": "1992-06-29", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "he silent ideas. silent foxes po" } ] }
+{ "partkey": 170i32, "lines": [ { "l_orderkey": 34i32, "l_partkey": 170i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 6.0d, "l_extendedprice": 6421.02d, "l_discount": 0.02d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-10-30", "l_commitdate": "1998-09-20", "l_receiptdate": "1998-11-05", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "ar foxes sleep " }, { "l_orderkey": 102i32, "l_partkey": 170i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 34.0d, "l_extendedprice": 36385.78d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-09", "l_commitdate": "1997-07-28", "l_receiptdate": "1997-08-26", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "eposits cajole across" }, { "l_orderkey": 448i32, "l_partkey": 170i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 8.0d, "l_extendedprice": 8561.36d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-02", "l_commitdate": "1995-10-16", "l_receiptdate": "1995-11-15", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "ounts wake blithely. furiously pending" }, { "l_orderkey": 545i32, "l_partkey": 170i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 4.0d, "l_extendedprice": 4280.68d, "l_discount": 0.02d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-02-23", "l_commitdate": "1995-12-16", "l_receiptdate": "1996-03-21", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": ", ironic grouches cajole over" }, { "l_orderkey": 645i32, "l_partkey": 170i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 47.0d, "l_extendedprice": 50297.99d, "l_discount": 0.07d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-02-16", "l_commitdate": "1995-02-15", "l_receiptdate": "1995-02-25", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "hely regular instructions alon" }, { "l_orderkey": 738i32, "l_partkey": 170i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 23.0d, "l_extendedprice": 24613.91d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-03-17", "l_commitdate": "1993-04-02", "l_receiptdate": "1993-04-05", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "nic, final excuses promise quickly regula" }, { "l_orderkey": 1221i32, "l_partkey": 170i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 12.0d, "l_extendedprice": 12842.04d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-08-07", "l_commitdate": "1992-06-24", "l_receiptdate": "1992-08-13", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "yly ironic " }, { "l_orderkey": 1408i32, "l_partkey": 170i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 41.0d, "l_extendedprice": 43876.97d, "l_discount": 0.02d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-02-25", "l_commitdate": "1998-02-03", "l_receiptdate": "1998-03-13", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "ep along the fina" }, { "l_orderkey": 1444i32, "l_partkey": 170i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 42.0d, "l_extendedprice": 44947.14d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-12-22", "l_commitdate": "1995-03-03", "l_receiptdate": "1994-12-31", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "ly bold packages boost regular ideas. spe" }, { "l_orderkey": 1634i32, "l_partkey": 170i32, "l_suppkey": 9i32, "l_linenumber": 6i32, "l_quantity": 11.0d, "l_extendedprice": 11771.87d, "l_discount": 0.01d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-04", "l_commitdate": "1996-12-06", "l_receiptdate": "1996-10-14", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "final requests " }, { "l_orderkey": 1954i32, "l_partkey": 170i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 29.0d, "l_extendedprice": 31034.93d, "l_discount": 0.08d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-25", "l_commitdate": "1997-07-15", "l_receiptdate": "1997-09-02", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "use thinly furiously regular asy" }, { "l_orderkey": 2309i32, "l_partkey": 170i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 14.0d, "l_extendedprice": 14982.38d, "l_discount": 0.1d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-01", "l_commitdate": "1995-10-22", "l_receiptdate": "1996-01-23", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "asymptotes. furiously pending acco" }, { "l_orderkey": 2342i32, "l_partkey": 170i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 50.0d, "l_extendedprice": 53508.5d, "l_discount": 0.1d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-28", "l_commitdate": "1996-07-18", "l_receiptdate": "1996-09-22", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "cial asymptotes pr" }, { "l_orderkey": 2406i32, "l_partkey": 170i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 18.0d, "l_extendedprice": 19263.06d, "l_discount": 0.07d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-17", "l_commitdate": "1996-12-25", "l_receiptdate": "1997-02-19", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "azzle furiously careful" }, { "l_orderkey": 2596i32, "l_partkey": 170i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 6.0d, "l_extendedprice": 6421.02d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-15", "l_commitdate": "1996-11-02", "l_receiptdate": "1996-12-29", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "ily special re" }, { "l_orderkey": 2752i32, "l_partkey": 170i32, "l_suppkey": 5i32, "l_linenumber": 6i32, "l_quantity": 21.0d, "l_extendedprice": 22473.57d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-01-01", "l_commitdate": "1994-01-24", "l_receiptdate": "1994-01-24", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": " along the quickly " }, { "l_orderkey": 2854i32, "l_partkey": 170i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 34.0d, "l_extendedprice": 36385.78d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-09-06", "l_commitdate": "1994-08-07", "l_receiptdate": "1994-09-22", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "age carefully" }, { "l_orderkey": 2944i32, "l_partkey": 170i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 2.0d, "l_extendedprice": 2140.34d, "l_discount": 0.06d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-13", "l_commitdate": "1997-12-01", "l_receiptdate": "1998-01-08", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "luffily expr" }, { "l_orderkey": 3107i32, "l_partkey": 170i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 23.0d, "l_extendedprice": 24613.91d, "l_discount": 0.03d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-10", "l_commitdate": "1997-11-11", "l_receiptdate": "1997-12-14", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "atelets must ha" }, { "l_orderkey": 3747i32, "l_partkey": 170i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 33.0d, "l_extendedprice": 35315.61d, "l_discount": 0.01d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-14", "l_commitdate": "1996-11-12", "l_receiptdate": "1996-11-11", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": " regular p" }, { "l_orderkey": 3874i32, "l_partkey": 170i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 21.0d, "l_extendedprice": 22473.57d, "l_discount": 0.09d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-06-19", "l_commitdate": "1993-07-20", "l_receiptdate": "1993-07-08", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": " requests cajole fluff" }, { "l_orderkey": 3905i32, "l_partkey": 170i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 6.0d, "l_extendedprice": 6421.02d, "l_discount": 0.07d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-04-07", "l_commitdate": "1994-03-07", "l_receiptdate": "1994-04-21", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "ow furiously. deposits wake ironic " }, { "l_orderkey": 4192i32, "l_partkey": 170i32, "l_suppkey": 5i32, "l_linenumber": 7i32, "l_quantity": 27.0d, "l_extendedprice": 28894.59d, "l_discount": 0.02d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-03", "l_commitdate": "1998-06-26", "l_receiptdate": "1998-07-13", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": " carefully even escapades. care" }, { "l_orderkey": 4513i32, "l_partkey": 170i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 29.0d, "l_extendedprice": 31034.93d, "l_discount": 0.03d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-18", "l_commitdate": "1996-05-23", "l_receiptdate": "1996-06-08", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "cajole. regular packages boost. s" }, { "l_orderkey": 4516i32, "l_partkey": 170i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 34.0d, "l_extendedprice": 36385.78d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-05-16", "l_commitdate": "1994-06-23", "l_receiptdate": "1994-06-12", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "even pinto beans wake qui" }, { "l_orderkey": 4960i32, "l_partkey": 170i32, "l_suppkey": 1i32, "l_linenumber": 7i32, "l_quantity": 42.0d, "l_extendedprice": 44947.14d, "l_discount": 0.08d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-04-19", "l_commitdate": "1995-04-11", "l_receiptdate": "1995-05-08", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "s requests cajole. " }, { "l_orderkey": 5793i32, "l_partkey": 170i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 41.0d, "l_extendedprice": 43876.97d, "l_discount": 0.06d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-04", "l_commitdate": "1997-10-10", "l_receiptdate": "1997-08-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "snooze quick" } ] }
+{ "partkey": 171i32, "lines": [ { "l_orderkey": 422i32, "l_partkey": 171i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 10.0d, "l_extendedprice": 10711.7d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-15", "l_commitdate": "1997-08-04", "l_receiptdate": "1997-07-08", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "he furiously ironic theodolite" }, { "l_orderkey": 455i32, "l_partkey": 171i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 11.0d, "l_extendedprice": 11782.87d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-15", "l_commitdate": "1997-02-14", "l_receiptdate": "1997-03-26", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "g deposits against the slyly idle foxes u" }, { "l_orderkey": 545i32, "l_partkey": 171i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 18.0d, "l_extendedprice": 19281.06d, "l_discount": 0.0d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-02-21", "l_commitdate": "1996-01-17", "l_receiptdate": "1996-02-26", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "al, final packages affix. even a" }, { "l_orderkey": 1378i32, "l_partkey": 171i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 12.0d, "l_extendedprice": 12854.04d, "l_discount": 0.02d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-16", "l_commitdate": "1996-05-23", "l_receiptdate": "1996-07-09", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "notornis. b" }, { "l_orderkey": 1639i32, "l_partkey": 171i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 41.0d, "l_extendedprice": 43917.97d, "l_discount": 0.04d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-19", "l_commitdate": "1995-11-11", "l_receiptdate": "1996-01-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "structions w" }, { "l_orderkey": 2276i32, "l_partkey": 171i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 27.0d, "l_extendedprice": 28921.59d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-30", "l_commitdate": "1996-06-10", "l_receiptdate": "1996-07-31", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "the carefully unusual accoun" }, { "l_orderkey": 2310i32, "l_partkey": 171i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 6.0d, "l_extendedprice": 6427.02d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-08", "l_commitdate": "1996-12-09", "l_receiptdate": "1996-12-07", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "e slyly about the quickly ironic theodo" }, { "l_orderkey": 3361i32, "l_partkey": 171i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 33.0d, "l_extendedprice": 35348.61d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-11-09", "l_commitdate": "1992-10-15", "l_receiptdate": "1992-11-11", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "uriously ironic accounts. ironic, ir" }, { "l_orderkey": 3392i32, "l_partkey": 171i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 40.0d, "l_extendedprice": 42846.8d, "l_discount": 0.01d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-02-18", "l_commitdate": "1995-12-16", "l_receiptdate": "1996-02-26", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "ress instructions affix carefully. fur" }, { "l_orderkey": 3430i32, "l_partkey": 171i32, "l_suppkey": 10i32, "l_linenumber": 6i32, "l_quantity": 15.0d, "l_extendedprice": 16067.55d, "l_discount": 0.08d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-02-01", "l_commitdate": "1995-03-12", "l_receiptdate": "1995-02-04", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "cajole around the accounts. qui" }, { "l_orderkey": 3811i32, "l_partkey": 171i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 50.0d, "l_extendedprice": 53558.5d, "l_discount": 0.08d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-28", "l_commitdate": "1998-07-06", "l_receiptdate": "1998-08-16", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "ts are slyly fluffy ideas. furiou" }, { "l_orderkey": 3846i32, "l_partkey": 171i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 30.0d, "l_extendedprice": 32135.1d, "l_discount": 0.08d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-01", "l_commitdate": "1998-03-12", "l_receiptdate": "1998-05-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "deposits according to the fur" }, { "l_orderkey": 4066i32, "l_partkey": 171i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 43.0d, "l_extendedprice": 46060.31d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-16", "l_commitdate": "1997-04-14", "l_receiptdate": "1997-02-18", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "r instructions. slyly special " }, { "l_orderkey": 4134i32, "l_partkey": 171i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 12.0d, "l_extendedprice": 12854.04d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-03-19", "l_commitdate": "1995-03-27", "l_receiptdate": "1995-04-14", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "kly above the quickly regular " }, { "l_orderkey": 4546i32, "l_partkey": 171i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 15.0d, "l_extendedprice": 16067.55d, "l_discount": 0.04d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-31", "l_commitdate": "1995-10-17", "l_receiptdate": "1995-08-06", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "ught to cajole furiously. qu" }, { "l_orderkey": 4675i32, "l_partkey": 171i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 6.0d, "l_extendedprice": 6427.02d, "l_discount": 0.0d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-01-22", "l_commitdate": "1994-01-06", "l_receiptdate": "1994-02-12", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": " unusual ideas thrash bl" }, { "l_orderkey": 5317i32, "l_partkey": 171i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 18.0d, "l_extendedprice": 19281.06d, "l_discount": 0.06d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-01-02", "l_commitdate": "1994-10-29", "l_receiptdate": "1995-01-16", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "g to the blithely p" }, { "l_orderkey": 5444i32, "l_partkey": 171i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 21.0d, "l_extendedprice": 22494.57d, "l_discount": 0.04d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-05-05", "l_commitdate": "1995-05-25", "l_receiptdate": "1995-05-29", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "aves serve sly" } ] }
+{ "partkey": 172i32, "lines": [ { "l_orderkey": 167i32, "l_partkey": 172i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 27.0d, "l_extendedprice": 28948.59d, "l_discount": 0.09d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-05-01", "l_commitdate": "1993-03-31", "l_receiptdate": "1993-05-31", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "eans affix furiously-- packages" }, { "l_orderkey": 225i32, "l_partkey": 172i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 4.0d, "l_extendedprice": 4288.68d, "l_discount": 0.09d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-05", "l_commitdate": "1995-08-19", "l_receiptdate": "1995-09-03", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "ng the ironic packages. asymptotes among " }, { "l_orderkey": 1156i32, "l_partkey": 172i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 42.0d, "l_extendedprice": 45031.14d, "l_discount": 0.02d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-18", "l_commitdate": "1997-01-12", "l_receiptdate": "1997-02-13", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "s. quickly bold pains are" }, { "l_orderkey": 1600i32, "l_partkey": 172i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 20.0d, "l_extendedprice": 21443.4d, "l_discount": 0.02d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-06-16", "l_commitdate": "1993-04-23", "l_receiptdate": "1993-07-02", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "pths sleep blithely about the" }, { "l_orderkey": 1634i32, "l_partkey": 172i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 44.0d, "l_extendedprice": 47175.48d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-17", "l_commitdate": "1996-11-09", "l_receiptdate": "1996-10-03", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "requests affix slyly. quickly even pack" }, { "l_orderkey": 1889i32, "l_partkey": 172i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 13.0d, "l_extendedprice": 13938.21d, "l_discount": 0.05d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-12", "l_commitdate": "1997-04-28", "l_receiptdate": "1997-06-23", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "to the regular accounts. carefully express" }, { "l_orderkey": 2247i32, "l_partkey": 172i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 12.0d, "l_extendedprice": 12866.04d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-09-06", "l_commitdate": "1992-09-18", "l_receiptdate": "1992-09-26", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "final accounts. requests across the furiou" }, { "l_orderkey": 2817i32, "l_partkey": 172i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 35.0d, "l_extendedprice": 37525.95d, "l_discount": 0.01d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-05-20", "l_commitdate": "1994-06-03", "l_receiptdate": "1994-05-22", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "gular foxes" }, { "l_orderkey": 3138i32, "l_partkey": 172i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 38.0d, "l_extendedprice": 40742.46d, "l_discount": 0.07d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-02-21", "l_commitdate": "1994-03-21", "l_receiptdate": "1994-03-13", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "lithely fluffily un" }, { "l_orderkey": 3751i32, "l_partkey": 172i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 37.0d, "l_extendedprice": 39670.29d, "l_discount": 0.0d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-04-30", "l_commitdate": "1994-05-30", "l_receiptdate": "1994-05-30", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "ly express courts " }, { "l_orderkey": 4321i32, "l_partkey": 172i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 10.0d, "l_extendedprice": 10721.7d, "l_discount": 0.04d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-09-07", "l_commitdate": "1994-08-23", "l_receiptdate": "1994-09-17", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "wake carefully alongside of " }, { "l_orderkey": 4448i32, "l_partkey": 172i32, "l_suppkey": 3i32, "l_linenumber": 6i32, "l_quantity": 12.0d, "l_extendedprice": 12866.04d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-21", "l_commitdate": "1998-06-30", "l_receiptdate": "1998-09-09", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "sits about the ironic, bu" }, { "l_orderkey": 4544i32, "l_partkey": 172i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 19.0d, "l_extendedprice": 20371.23d, "l_discount": 0.08d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-14", "l_commitdate": "1997-09-08", "l_receiptdate": "1997-08-25", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "regular ideas are furiously about" }, { "l_orderkey": 5255i32, "l_partkey": 172i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 30.0d, "l_extendedprice": 32165.1d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-20", "l_commitdate": "1996-08-18", "l_receiptdate": "1996-10-09", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": " to the silent requests cajole b" }, { "l_orderkey": 5572i32, "l_partkey": 172i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 27.0d, "l_extendedprice": 28948.59d, "l_discount": 0.03d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-08-29", "l_commitdate": "1994-09-10", "l_receiptdate": "1994-08-30", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": " accounts. carefully final accoun" }, { "l_orderkey": 5637i32, "l_partkey": 172i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 35.0d, "l_extendedprice": 37525.95d, "l_discount": 0.09d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-01", "l_commitdate": "1996-08-04", "l_receiptdate": "1996-08-20", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "s sleep blithely alongside of the ironic" }, { "l_orderkey": 5671i32, "l_partkey": 172i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 13.0d, "l_extendedprice": 13938.21d, "l_discount": 0.1d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-02", "l_commitdate": "1998-04-03", "l_receiptdate": "1998-03-08", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "bold theodolites about" }, { "l_orderkey": 5988i32, "l_partkey": 172i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 41.0d, "l_extendedprice": 43958.97d, "l_discount": 0.08d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-01-20", "l_commitdate": "1994-02-06", "l_receiptdate": "1994-02-10", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "the pending, express reque" } ] }
+{ "partkey": 173i32, "lines": [ { "l_orderkey": 448i32, "l_partkey": 173i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 46.0d, "l_extendedprice": 49365.82d, "l_discount": 0.05d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-31", "l_commitdate": "1995-09-30", "l_receiptdate": "1995-09-09", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": " to the fluffily ironic packages." }, { "l_orderkey": 672i32, "l_partkey": 173i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 41.0d, "l_extendedprice": 43999.97d, "l_discount": 0.06d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-06-20", "l_commitdate": "1994-07-03", "l_receiptdate": "1994-06-22", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": " dependencies in" }, { "l_orderkey": 995i32, "l_partkey": 173i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 15.0d, "l_extendedprice": 16097.55d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-06-30", "l_commitdate": "1995-08-04", "l_receiptdate": "1995-07-27", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "uses. fluffily fina" }, { "l_orderkey": 996i32, "l_partkey": 173i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 43.0d, "l_extendedprice": 46146.31d, "l_discount": 0.03d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-27", "l_commitdate": "1998-03-25", "l_receiptdate": "1998-04-06", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": " the blithely ironic foxes. slyly silent d" }, { "l_orderkey": 1312i32, "l_partkey": 173i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 18.0d, "l_extendedprice": 19317.06d, "l_discount": 0.03d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-09-13", "l_commitdate": "1994-07-08", "l_receiptdate": "1994-09-22", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": ". slyly ironic" }, { "l_orderkey": 1408i32, "l_partkey": 173i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 7.0d, "l_extendedprice": 7512.19d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-14", "l_commitdate": "1998-03-21", "l_receiptdate": "1998-01-29", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "fully final instructions. theodolites ca" }, { "l_orderkey": 1540i32, "l_partkey": 173i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 38.0d, "l_extendedprice": 40780.46d, "l_discount": 0.03d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-09-30", "l_commitdate": "1992-10-27", "l_receiptdate": "1992-10-12", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": " final grouches bo" }, { "l_orderkey": 1664i32, "l_partkey": 173i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 30.0d, "l_extendedprice": 32195.1d, "l_discount": 0.06d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-04-04", "l_commitdate": "1996-05-04", "l_receiptdate": "1996-05-03", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "ess multip" }, { "l_orderkey": 2466i32, "l_partkey": 173i32, "l_suppkey": 2i32, "l_linenumber": 6i32, "l_quantity": 19.0d, "l_extendedprice": 20390.23d, "l_discount": 0.1d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-06-12", "l_commitdate": "1994-04-18", "l_receiptdate": "1994-07-12", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "ccounts cajole a" }, { "l_orderkey": 2534i32, "l_partkey": 173i32, "l_suppkey": 3i32, "l_linenumber": 7i32, "l_quantity": 17.0d, "l_extendedprice": 18243.89d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-22", "l_commitdate": "1996-09-15", "l_receiptdate": "1996-08-03", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "riously regular " }, { "l_orderkey": 2561i32, "l_partkey": 173i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 47.0d, "l_extendedprice": 50438.99d, "l_discount": 0.04d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-11-19", "l_commitdate": "1998-01-21", "l_receiptdate": "1997-12-03", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "larly pending t" }, { "l_orderkey": 2630i32, "l_partkey": 173i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 45.0d, "l_extendedprice": 48292.65d, "l_discount": 0.08d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-01-04", "l_commitdate": "1993-01-11", "l_receiptdate": "1993-01-09", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "edly express ideas. carefully final " }, { "l_orderkey": 2853i32, "l_partkey": 173i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 40.0d, "l_extendedprice": 42926.8d, "l_discount": 0.06d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-08-06", "l_commitdate": "1994-06-24", "l_receiptdate": "1994-08-29", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "lyly. pearls cajole. final accounts ca" }, { "l_orderkey": 2945i32, "l_partkey": 173i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 10.0d, "l_extendedprice": 10731.7d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-13", "l_commitdate": "1996-03-10", "l_receiptdate": "1996-04-06", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "thely. final courts could hang qu" }, { "l_orderkey": 3238i32, "l_partkey": 173i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 26.0d, "l_extendedprice": 27902.42d, "l_discount": 0.01d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-02-25", "l_commitdate": "1993-04-04", "l_receiptdate": "1993-03-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "g accounts sleep furiously ironic attai" }, { "l_orderkey": 3398i32, "l_partkey": 173i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 1.0d, "l_extendedprice": 1073.17d, "l_discount": 0.01d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-22", "l_commitdate": "1996-11-16", "l_receiptdate": "1996-12-09", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": " blithely final deposits." }, { "l_orderkey": 3495i32, "l_partkey": 173i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 24.0d, "l_extendedprice": 25756.08d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-22", "l_commitdate": "1996-04-10", "l_receiptdate": "1996-04-07", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "ic, final pains along the even request" }, { "l_orderkey": 3654i32, "l_partkey": 173i32, "l_suppkey": 1i32, "l_linenumber": 7i32, "l_quantity": 45.0d, "l_extendedprice": 48292.65d, "l_discount": 0.01d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-09-15", "l_commitdate": "1992-07-04", "l_receiptdate": "1992-09-20", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "sly ironic notornis nag slyly" }, { "l_orderkey": 3749i32, "l_partkey": 173i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 11.0d, "l_extendedprice": 11804.87d, "l_discount": 0.07d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-06-25", "l_commitdate": "1995-05-23", "l_receiptdate": "1995-07-10", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "egular requests along the " }, { "l_orderkey": 3812i32, "l_partkey": 173i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 33.0d, "l_extendedprice": 35414.61d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-05", "l_commitdate": "1996-10-13", "l_receiptdate": "1996-10-22", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "inal excuses d" }, { "l_orderkey": 3814i32, "l_partkey": 173i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 14.0d, "l_extendedprice": 15024.38d, "l_discount": 0.01d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-03-17", "l_commitdate": "1995-05-10", "l_receiptdate": "1995-04-16", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "sits along the final, ironic deposit" }, { "l_orderkey": 3840i32, "l_partkey": 173i32, "l_suppkey": 3i32, "l_linenumber": 5i32, "l_quantity": 7.0d, "l_extendedprice": 7512.19d, "l_discount": 0.09d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-09-17", "l_commitdate": "1998-09-20", "l_receiptdate": "1998-10-14", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": ". furiously final gifts sleep carefully pin" }, { "l_orderkey": 4545i32, "l_partkey": 173i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 38.0d, "l_extendedprice": 40780.46d, "l_discount": 0.06d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-01-27", "l_commitdate": "1993-03-01", "l_receiptdate": "1993-02-04", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "nts serve according to th" }, { "l_orderkey": 4583i32, "l_partkey": 173i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 27.0d, "l_extendedprice": 28975.59d, "l_discount": 0.08d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-01-11", "l_commitdate": "1994-12-24", "l_receiptdate": "1995-02-10", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": " detect silent requests. furiously speci" }, { "l_orderkey": 4608i32, "l_partkey": 173i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 30.0d, "l_extendedprice": 32195.1d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-10-08", "l_commitdate": "1994-07-18", "l_receiptdate": "1994-10-25", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "s cajole. slyly " }, { "l_orderkey": 4738i32, "l_partkey": 173i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 16.0d, "l_extendedprice": 17170.72d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-06-17", "l_commitdate": "1992-06-20", "l_receiptdate": "1992-06-21", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "nic deposits are slyly! carefu" }, { "l_orderkey": 4774i32, "l_partkey": 173i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 47.0d, "l_extendedprice": 50438.99d, "l_discount": 0.1d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-06-13", "l_commitdate": "1993-07-04", "l_receiptdate": "1993-07-09", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "regular dolphins above the furi" }, { "l_orderkey": 4869i32, "l_partkey": 173i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 42.0d, "l_extendedprice": 45073.14d, "l_discount": 0.07d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-10-16", "l_commitdate": "1994-12-10", "l_receiptdate": "1994-11-07", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": " slyly even instructions. " }, { "l_orderkey": 4964i32, "l_partkey": 173i32, "l_suppkey": 4i32, "l_linenumber": 7i32, "l_quantity": 28.0d, "l_extendedprice": 30048.76d, "l_discount": 0.0d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-30", "l_commitdate": "1997-09-15", "l_receiptdate": "1997-09-18", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "among the carefully regula" }, { "l_orderkey": 5153i32, "l_partkey": 173i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 32.0d, "l_extendedprice": 34341.44d, "l_discount": 0.1d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-05", "l_commitdate": "1995-09-25", "l_receiptdate": "1996-01-03", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "egular deposits. ironi" }, { "l_orderkey": 5284i32, "l_partkey": 173i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 16.0d, "l_extendedprice": 17170.72d, "l_discount": 0.04d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-17", "l_commitdate": "1995-08-23", "l_receiptdate": "1995-08-26", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "unts detect furiously even d" }, { "l_orderkey": 5377i32, "l_partkey": 173i32, "l_suppkey": 3i32, "l_linenumber": 5i32, "l_quantity": 27.0d, "l_extendedprice": 28975.59d, "l_discount": 0.08d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-11", "l_commitdate": "1997-06-12", "l_receiptdate": "1997-08-08", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "press theodolites. e" }, { "l_orderkey": 5605i32, "l_partkey": 173i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 3.0d, "l_extendedprice": 3219.51d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-01", "l_commitdate": "1996-10-02", "l_receiptdate": "1996-09-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "posits. accounts boost. t" }, { "l_orderkey": 5664i32, "l_partkey": 173i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 9.0d, "l_extendedprice": 9658.53d, "l_discount": 0.07d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-31", "l_commitdate": "1998-08-26", "l_receiptdate": "1998-08-12", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": " ironic deposits haggle furiously. re" } ] }
+{ "partkey": 174i32, "lines": [ { "l_orderkey": 66i32, "l_partkey": 174i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 41.0d, "l_extendedprice": 44040.97d, "l_discount": 0.04d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-02-21", "l_commitdate": "1994-03-01", "l_receiptdate": "1994-03-18", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": " regular de" }, { "l_orderkey": 67i32, "l_partkey": 174i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 5.0d, "l_extendedprice": 5370.85d, "l_discount": 0.03d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-20", "l_commitdate": "1997-02-12", "l_receiptdate": "1997-02-21", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "y unusual packages thrash pinto " }, { "l_orderkey": 261i32, "l_partkey": 174i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 28.0d, "l_extendedprice": 30076.76d, "l_discount": 0.08d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-07-24", "l_commitdate": "1993-08-20", "l_receiptdate": "1993-08-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "ironic packages nag slyly. carefully fin" }, { "l_orderkey": 289i32, "l_partkey": 174i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 25.0d, "l_extendedprice": 26854.25d, "l_discount": 0.07d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-18", "l_commitdate": "1997-05-05", "l_receiptdate": "1997-04-15", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "out the quickly bold theodol" }, { "l_orderkey": 580i32, "l_partkey": 174i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 31.0d, "l_extendedprice": 33299.27d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-10-04", "l_commitdate": "1997-09-08", "l_receiptdate": "1997-10-15", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "ose alongside of the sl" }, { "l_orderkey": 775i32, "l_partkey": 174i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 21.0d, "l_extendedprice": 22557.57d, "l_discount": 0.01d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-05-01", "l_commitdate": "1995-06-02", "l_receiptdate": "1995-05-13", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": " quickly sile" }, { "l_orderkey": 871i32, "l_partkey": 174i32, "l_suppkey": 3i32, "l_linenumber": 7i32, "l_quantity": 4.0d, "l_extendedprice": 4296.68d, "l_discount": 0.0d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-09", "l_commitdate": "1996-01-20", "l_receiptdate": "1996-03-26", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "l, regular dependencies w" }, { "l_orderkey": 1287i32, "l_partkey": 174i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 35.0d, "l_extendedprice": 37595.95d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-09-07", "l_commitdate": "1994-09-12", "l_receiptdate": "1994-09-30", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "s wake unusual grou" }, { "l_orderkey": 1606i32, "l_partkey": 174i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 35.0d, "l_extendedprice": 37595.95d, "l_discount": 0.0d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-20", "l_commitdate": "1997-06-19", "l_receiptdate": "1997-06-22", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "carefully sil" }, { "l_orderkey": 1767i32, "l_partkey": 174i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 24.0d, "l_extendedprice": 25780.08d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-03-16", "l_commitdate": "1995-04-29", "l_receiptdate": "1995-04-11", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "luffy theodolites need to detect furi" }, { "l_orderkey": 1857i32, "l_partkey": 174i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 15.0d, "l_extendedprice": 16112.55d, "l_discount": 0.1d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-04-05", "l_commitdate": "1993-02-28", "l_receiptdate": "1993-04-13", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "egular, regular inst" }, { "l_orderkey": 1991i32, "l_partkey": 174i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 6.0d, "l_extendedprice": 6445.02d, "l_discount": 0.02d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-11-02", "l_commitdate": "1992-10-08", "l_receiptdate": "1992-11-14", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "hes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag slylyhes nag " }, { "l_orderkey": 2054i32, "l_partkey": 174i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 14.0d, "l_extendedprice": 15038.38d, "l_discount": 0.1d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-06-25", "l_commitdate": "1992-09-05", "l_receiptdate": "1992-07-14", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "uickly final" }, { "l_orderkey": 2213i32, "l_partkey": 174i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 39.0d, "l_extendedprice": 41892.63d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-05-12", "l_commitdate": "1993-04-07", "l_receiptdate": "1993-05-23", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "the blithely " }, { "l_orderkey": 2305i32, "l_partkey": 174i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 3.0d, "l_extendedprice": 3222.51d, "l_discount": 0.0d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-03-24", "l_commitdate": "1993-04-05", "l_receiptdate": "1993-03-29", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages haggle quickly across the blithely kages hag" }, { "l_orderkey": 2535i32, "l_partkey": 174i32, "l_suppkey": 3i32, "l_linenumber": 5i32, "l_quantity": 25.0d, "l_extendedprice": 26854.25d, "l_discount": 0.07d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-07-19", "l_commitdate": "1993-08-07", "l_receiptdate": "1993-07-27", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "ions believe ab" }, { "l_orderkey": 2820i32, "l_partkey": 174i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 23.0d, "l_extendedprice": 24705.91d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-07-10", "l_commitdate": "1994-08-08", "l_receiptdate": "1994-07-21", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": " was furiously. deposits among the ironic" }, { "l_orderkey": 2950i32, "l_partkey": 174i32, "l_suppkey": 5i32, "l_linenumber": 6i32, "l_quantity": 27.0d, "l_extendedprice": 29002.59d, "l_discount": 0.01d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-10-01", "l_commitdate": "1997-09-13", "l_receiptdate": "1997-10-08", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "are alongside of the carefully silent " }, { "l_orderkey": 3010i32, "l_partkey": 174i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 22.0d, "l_extendedprice": 23631.74d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-06", "l_commitdate": "1996-04-06", "l_receiptdate": "1996-03-18", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": " final deposit" }, { "l_orderkey": 3360i32, "l_partkey": 174i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 31.0d, "l_extendedprice": 33299.27d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-24", "l_commitdate": "1998-04-12", "l_receiptdate": "1998-05-23", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "quests. carefully even deposits wake acros" }, { "l_orderkey": 3687i32, "l_partkey": 174i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 10.0d, "l_extendedprice": 10741.7d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-02-11", "l_commitdate": "1993-03-22", "l_receiptdate": "1993-03-09", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "ing pinto beans" }, { "l_orderkey": 3719i32, "l_partkey": 174i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 2.0d, "l_extendedprice": 2148.34d, "l_discount": 0.02d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-17", "l_commitdate": "1997-04-25", "l_receiptdate": "1997-03-03", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "ccounts boost carefu" }, { "l_orderkey": 4097i32, "l_partkey": 174i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 42.0d, "l_extendedprice": 45115.14d, "l_discount": 0.06d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-11", "l_commitdate": "1996-07-30", "l_receiptdate": "1996-08-15", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "carefully silent foxes are against the " }, { "l_orderkey": 4261i32, "l_partkey": 174i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 36.0d, "l_extendedprice": 38670.12d, "l_discount": 0.04d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-12-02", "l_commitdate": "1992-12-18", "l_receiptdate": "1992-12-25", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": " slyly pendi" }, { "l_orderkey": 4359i32, "l_partkey": 174i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 41.0d, "l_extendedprice": 44040.97d, "l_discount": 0.03d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-04-06", "l_commitdate": "1993-05-06", "l_receiptdate": "1993-04-14", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "s affix sly" }, { "l_orderkey": 4450i32, "l_partkey": 174i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 44.0d, "l_extendedprice": 47263.48d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-10-12", "l_commitdate": "1997-10-13", "l_receiptdate": "1997-10-29", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": " the slyly eve" }, { "l_orderkey": 4613i32, "l_partkey": 174i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 15.0d, "l_extendedprice": 16112.55d, "l_discount": 0.1d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-31", "l_commitdate": "1998-04-16", "l_receiptdate": "1998-06-25", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "against the quickly r" }, { "l_orderkey": 5063i32, "l_partkey": 174i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 43.0d, "l_extendedprice": 46189.31d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-14", "l_commitdate": "1997-07-05", "l_receiptdate": "1997-10-05", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "latelets might nod blithely regular requ" }, { "l_orderkey": 5606i32, "l_partkey": 174i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 47.0d, "l_extendedprice": 50485.99d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-23", "l_commitdate": "1997-01-31", "l_receiptdate": "1997-01-20", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "carefully final foxes. pending, final" }, { "l_orderkey": 5765i32, "l_partkey": 174i32, "l_suppkey": 3i32, "l_linenumber": 5i32, "l_quantity": 48.0d, "l_extendedprice": 51560.16d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-03-30", "l_commitdate": "1995-01-14", "l_receiptdate": "1995-04-09", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "theodolites integrate furiously" }, { "l_orderkey": 5923i32, "l_partkey": 174i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 46.0d, "l_extendedprice": 49411.82d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-29", "l_commitdate": "1997-07-23", "l_receiptdate": "1997-08-23", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "nto beans cajole blithe" } ] }
+{ "partkey": 175i32, "lines": [ { "l_orderkey": 227i32, "l_partkey": 175i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 24.0d, "l_extendedprice": 25804.08d, "l_discount": 0.07d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-02-03", "l_commitdate": "1995-12-24", "l_receiptdate": "1996-02-12", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "uses across the blithe dependencies cajol" }, { "l_orderkey": 416i32, "l_partkey": 175i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 25.0d, "l_extendedprice": 26879.25d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-10-16", "l_commitdate": "1993-12-03", "l_receiptdate": "1993-10-29", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "ses boost after the bold requests." }, { "l_orderkey": 738i32, "l_partkey": 175i32, "l_suppkey": 4i32, "l_linenumber": 5i32, "l_quantity": 30.0d, "l_extendedprice": 32255.1d, "l_discount": 0.02d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-06-12", "l_commitdate": "1993-05-29", "l_receiptdate": "1993-06-25", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "ecial instructions haggle blithely regula" }, { "l_orderkey": 929i32, "l_partkey": 175i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 44.0d, "l_extendedprice": 47307.48d, "l_discount": 0.02d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-10-09", "l_commitdate": "1992-11-20", "l_receiptdate": "1992-10-22", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "s. excuses cajole. carefully regu" }, { "l_orderkey": 960i32, "l_partkey": 175i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 32.0d, "l_extendedprice": 34405.44d, "l_discount": 0.01d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-01-19", "l_commitdate": "1994-12-17", "l_receiptdate": "1995-02-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "around the blithe, even pl" }, { "l_orderkey": 993i32, "l_partkey": 175i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 33.0d, "l_extendedprice": 35480.61d, "l_discount": 0.01d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-03", "l_commitdate": "1995-11-28", "l_receiptdate": "1996-01-23", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": " the deposits affix agains" }, { "l_orderkey": 1127i32, "l_partkey": 175i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 7.0d, "l_extendedprice": 7526.19d, "l_discount": 0.07d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-05", "l_commitdate": "1995-11-02", "l_receiptdate": "1995-11-11", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": " idly pending pains " }, { "l_orderkey": 1280i32, "l_partkey": 175i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 5.0d, "l_extendedprice": 5375.85d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-02-03", "l_commitdate": "1993-02-11", "l_receiptdate": "1993-02-23", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "beans haggle. quickly bold instructions h" }, { "l_orderkey": 1601i32, "l_partkey": 175i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 50.0d, "l_extendedprice": 53758.5d, "l_discount": 0.03d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-12-24", "l_commitdate": "1994-10-23", "l_receiptdate": "1995-01-11", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "ideas doubt" }, { "l_orderkey": 1604i32, "l_partkey": 175i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 15.0d, "l_extendedprice": 16127.55d, "l_discount": 0.03d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-09-10", "l_commitdate": "1993-08-31", "l_receiptdate": "1993-09-30", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "ending realms along the special, p" }, { "l_orderkey": 2497i32, "l_partkey": 175i32, "l_suppkey": 5i32, "l_linenumber": 5i32, "l_quantity": 28.0d, "l_extendedprice": 30104.76d, "l_discount": 0.04d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-11-10", "l_commitdate": "1992-09-30", "l_receiptdate": "1992-11-18", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "hely bold ideas. unusual instructions ac" }, { "l_orderkey": 2528i32, "l_partkey": 175i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 35.0d, "l_extendedprice": 37630.95d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-12-19", "l_commitdate": "1995-02-04", "l_receiptdate": "1995-01-15", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": ", even excuses. even," }, { "l_orderkey": 2593i32, "l_partkey": 175i32, "l_suppkey": 6i32, "l_linenumber": 6i32, "l_quantity": 1.0d, "l_extendedprice": 1075.17d, "l_discount": 0.08d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-11-23", "l_commitdate": "1993-10-25", "l_receiptdate": "1993-12-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": " accounts wake slyly " }, { "l_orderkey": 2626i32, "l_partkey": 175i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 2.0d, "l_extendedprice": 2150.34d, "l_discount": 0.05d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-19", "l_commitdate": "1995-11-09", "l_receiptdate": "1995-10-24", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "uffy accounts haggle furiously above" }, { "l_orderkey": 2784i32, "l_partkey": 175i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 40.0d, "l_extendedprice": 43006.8d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-28", "l_commitdate": "1998-03-19", "l_receiptdate": "1998-05-03", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "deas nag furiously never unusual " }, { "l_orderkey": 2885i32, "l_partkey": 175i32, "l_suppkey": 5i32, "l_linenumber": 5i32, "l_quantity": 43.0d, "l_extendedprice": 46232.31d, "l_discount": 0.06d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-11-17", "l_commitdate": "1992-10-30", "l_receiptdate": "1992-12-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "cial deposits use bold" }, { "l_orderkey": 2915i32, "l_partkey": 175i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 28.0d, "l_extendedprice": 30104.76d, "l_discount": 0.1d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-04-17", "l_commitdate": "1994-06-09", "l_receiptdate": "1994-05-10", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "yly special " }, { "l_orderkey": 3175i32, "l_partkey": 175i32, "l_suppkey": 6i32, "l_linenumber": 6i32, "l_quantity": 44.0d, "l_extendedprice": 47307.48d, "l_discount": 0.01d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-09-26", "l_commitdate": "1994-08-30", "l_receiptdate": "1994-10-24", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "are carefully furiously ironic accounts. e" }, { "l_orderkey": 3200i32, "l_partkey": 175i32, "l_suppkey": 3i32, "l_linenumber": 6i32, "l_quantity": 25.0d, "l_extendedprice": 26879.25d, "l_discount": 0.1d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-02-08", "l_commitdate": "1996-04-11", "l_receiptdate": "1996-03-06", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": " slyly regular hockey players! pinto beans " }, { "l_orderkey": 3554i32, "l_partkey": 175i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 32.0d, "l_extendedprice": 34405.44d, "l_discount": 0.01d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-28", "l_commitdate": "1995-09-01", "l_receiptdate": "1995-10-07", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": ". blithely ironic t" }, { "l_orderkey": 3557i32, "l_partkey": 175i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 41.0d, "l_extendedprice": 44081.97d, "l_discount": 0.01d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-01-30", "l_commitdate": "1992-12-31", "l_receiptdate": "1993-02-18", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "ideas breach c" }, { "l_orderkey": 3622i32, "l_partkey": 175i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 47.0d, "l_extendedprice": 50532.99d, "l_discount": 0.09d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-02-24", "l_commitdate": "1996-02-22", "l_receiptdate": "1996-03-12", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "are careful" }, { "l_orderkey": 4261i32, "l_partkey": 175i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 3.0d, "l_extendedprice": 3225.51d, "l_discount": 0.07d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-11-10", "l_commitdate": "1992-12-14", "l_receiptdate": "1992-11-17", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "ly even deposits eat blithely alo" }, { "l_orderkey": 4294i32, "l_partkey": 175i32, "l_suppkey": 3i32, "l_linenumber": 7i32, "l_quantity": 47.0d, "l_extendedprice": 50532.99d, "l_discount": 0.02d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-11-09", "l_commitdate": "1992-11-03", "l_receiptdate": "1992-12-05", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "es. blithely r" }, { "l_orderkey": 4485i32, "l_partkey": 175i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 43.0d, "l_extendedprice": 46232.31d, "l_discount": 0.01d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-01-17", "l_commitdate": "1995-02-11", "l_receiptdate": "1995-02-07", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "al accounts according to the slyly r" }, { "l_orderkey": 4579i32, "l_partkey": 175i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 14.0d, "l_extendedprice": 15052.38d, "l_discount": 0.02d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-02-01", "l_commitdate": "1996-01-08", "l_receiptdate": "1996-02-08", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "nding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding theodolites. fluffilnding th" }, { "l_orderkey": 4610i32, "l_partkey": 175i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 14.0d, "l_extendedprice": 15052.38d, "l_discount": 0.0d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-07-28", "l_commitdate": "1993-07-25", "l_receiptdate": "1993-07-31", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": " ironic frays. dependencies detect blithel" }, { "l_orderkey": 5634i32, "l_partkey": 175i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 22.0d, "l_extendedprice": 23653.74d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-01", "l_commitdate": "1996-08-31", "l_receiptdate": "1996-09-05", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "silently unusual foxes above the blithely" }, { "l_orderkey": 5762i32, "l_partkey": 175i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 6.0d, "l_extendedprice": 6451.02d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-07", "l_commitdate": "1997-03-25", "l_receiptdate": "1997-05-02", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "ironic dependencies doze carefu" }, { "l_orderkey": 5859i32, "l_partkey": 175i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 50.0d, "l_extendedprice": 53758.5d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-08", "l_commitdate": "1997-06-20", "l_receiptdate": "1997-07-27", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "ly regular deposits use. ironic" }, { "l_orderkey": 5956i32, "l_partkey": 175i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 47.0d, "l_extendedprice": 50532.99d, "l_discount": 0.04d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-09-06", "l_commitdate": "1998-06-29", "l_receiptdate": "1998-09-18", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "lyly express theodol" } ] }
+{ "partkey": 176i32, "lines": [ { "l_orderkey": 38i32, "l_partkey": 176i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 44.0d, "l_extendedprice": 47351.48d, "l_discount": 0.04d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-29", "l_commitdate": "1996-11-17", "l_receiptdate": "1996-09-30", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "s. blithely unusual theodolites am" }, { "l_orderkey": 68i32, "l_partkey": 176i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 46.0d, "l_extendedprice": 49503.82d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-26", "l_commitdate": "1998-06-07", "l_receiptdate": "1998-07-05", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": " requests are unusual, regular pinto " }, { "l_orderkey": 422i32, "l_partkey": 176i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 46.0d, "l_extendedprice": 49503.82d, "l_discount": 0.09d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-21", "l_commitdate": "1997-07-14", "l_receiptdate": "1997-06-27", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": " ideas. qu" }, { "l_orderkey": 453i32, "l_partkey": 176i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 38.0d, "l_extendedprice": 40894.46d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-30", "l_commitdate": "1997-07-08", "l_receiptdate": "1997-07-16", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": " furiously f" }, { "l_orderkey": 675i32, "l_partkey": 176i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 34.0d, "l_extendedprice": 36589.78d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-11-17", "l_commitdate": "1997-10-07", "l_receiptdate": "1997-11-27", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "y final accounts unwind around the " }, { "l_orderkey": 769i32, "l_partkey": 176i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 36.0d, "l_extendedprice": 38742.12d, "l_discount": 0.02d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-10-01", "l_commitdate": "1993-08-07", "l_receiptdate": "1993-10-15", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "es. furiously iro" }, { "l_orderkey": 800i32, "l_partkey": 176i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 26.0d, "l_extendedprice": 27980.42d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-23", "l_commitdate": "1998-10-08", "l_receiptdate": "1998-07-25", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "bove the pending requests." }, { "l_orderkey": 1253i32, "l_partkey": 176i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 23.0d, "l_extendedprice": 24751.91d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-04-18", "l_commitdate": "1993-04-18", "l_receiptdate": "1993-05-07", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": " the slyly silent re" }, { "l_orderkey": 1826i32, "l_partkey": 176i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 14.0d, "l_extendedprice": 15066.38d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-04-28", "l_commitdate": "1992-05-31", "l_receiptdate": "1992-05-25", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "uriously bold pinto beans are carefully ag" }, { "l_orderkey": 1958i32, "l_partkey": 176i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 29.0d, "l_extendedprice": 31208.93d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-19", "l_commitdate": "1995-12-05", "l_receiptdate": "1996-02-14", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "d pinto beans" }, { "l_orderkey": 2020i32, "l_partkey": 176i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 40.0d, "l_extendedprice": 43046.8d, "l_discount": 0.09d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-10-17", "l_commitdate": "1993-09-14", "l_receiptdate": "1993-10-29", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "ently across the" }, { "l_orderkey": 2306i32, "l_partkey": 176i32, "l_suppkey": 4i32, "l_linenumber": 7i32, "l_quantity": 19.0d, "l_extendedprice": 20447.23d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-17", "l_commitdate": "1995-09-06", "l_receiptdate": "1995-11-30", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "tainments nag furiously carefull" }, { "l_orderkey": 2789i32, "l_partkey": 176i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 33.0d, "l_extendedprice": 35513.61d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-21", "l_commitdate": "1998-05-02", "l_receiptdate": "1998-04-30", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "deposits. ironic " }, { "l_orderkey": 2981i32, "l_partkey": 176i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 8.0d, "l_extendedprice": 8609.36d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-21", "l_commitdate": "1998-09-28", "l_receiptdate": "1998-09-05", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "ng to the f" }, { "l_orderkey": 3109i32, "l_partkey": 176i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 43.0d, "l_extendedprice": 46275.31d, "l_discount": 0.04d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-09-29", "l_commitdate": "1993-09-06", "l_receiptdate": "1993-10-13", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "ding to the foxes. " }, { "l_orderkey": 3206i32, "l_partkey": 176i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 1.0d, "l_extendedprice": 1076.17d, "l_discount": 0.07d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-22", "l_commitdate": "1996-10-16", "l_receiptdate": "1996-12-07", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "y unusual foxes cajole ab" }, { "l_orderkey": 3365i32, "l_partkey": 176i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 49.0d, "l_extendedprice": 52732.33d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-01-03", "l_commitdate": "1995-01-01", "l_receiptdate": "1995-01-18", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "lyly unusual asymptotes. final" }, { "l_orderkey": 3590i32, "l_partkey": 176i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 10.0d, "l_extendedprice": 10761.7d, "l_discount": 0.08d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-17", "l_commitdate": "1995-06-26", "l_receiptdate": "1995-08-12", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "t the quickly ironic" }, { "l_orderkey": 3813i32, "l_partkey": 176i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 37.0d, "l_extendedprice": 39818.29d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-10-13", "l_commitdate": "1998-09-19", "l_receiptdate": "1998-10-28", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "ravely special packages haggle p" }, { "l_orderkey": 3841i32, "l_partkey": 176i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 3.0d, "l_extendedprice": 3228.51d, "l_discount": 0.04d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-10-24", "l_commitdate": "1994-12-07", "l_receiptdate": "1994-11-09", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "foxes integrate " }, { "l_orderkey": 3907i32, "l_partkey": 176i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 48.0d, "l_extendedprice": 51656.16d, "l_discount": 0.05d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-09-24", "l_commitdate": "1992-10-16", "l_receiptdate": "1992-10-06", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "nt asymptotes lose across th" }, { "l_orderkey": 4800i32, "l_partkey": 176i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 38.0d, "l_extendedprice": 40894.46d, "l_discount": 0.1d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-02-01", "l_commitdate": "1992-02-28", "l_receiptdate": "1992-02-21", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "s sleep fluffily. furiou" }, { "l_orderkey": 4803i32, "l_partkey": 176i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 47.0d, "l_extendedprice": 50579.99d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-14", "l_commitdate": "1996-03-30", "l_receiptdate": "1996-03-15", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "ly final excuses. slyly express requ" }, { "l_orderkey": 5184i32, "l_partkey": 176i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 26.0d, "l_extendedprice": 27980.42d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-11-11", "l_commitdate": "1998-08-26", "l_receiptdate": "1998-12-01", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": " packages are" }, { "l_orderkey": 5280i32, "l_partkey": 176i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 46.0d, "l_extendedprice": 49503.82d, "l_discount": 0.01d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-04", "l_commitdate": "1998-01-21", "l_receiptdate": "1998-02-03", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "efully carefully pen" }, { "l_orderkey": 5602i32, "l_partkey": 176i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 9.0d, "l_extendedprice": 9685.53d, "l_discount": 0.08d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-10-14", "l_commitdate": "1997-09-14", "l_receiptdate": "1997-11-11", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "lar foxes; quickly ironic ac" }, { "l_orderkey": 5924i32, "l_partkey": 176i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 38.0d, "l_extendedprice": 40894.46d, "l_discount": 0.06d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-17", "l_commitdate": "1995-12-11", "l_receiptdate": "1996-01-06", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "ions cajole carefully along the " }, { "l_orderkey": 5987i32, "l_partkey": 176i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 20.0d, "l_extendedprice": 21523.4d, "l_discount": 0.1d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-28", "l_commitdate": "1996-09-17", "l_receiptdate": "1996-12-05", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "ing excuses nag quickly always bold" } ] }
+{ "partkey": 177i32, "lines": [ { "l_orderkey": 133i32, "l_partkey": 177i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 12.0d, "l_extendedprice": 12926.04d, "l_discount": 0.02d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-02", "l_commitdate": "1998-01-15", "l_receiptdate": "1997-12-29", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "ts cajole fluffily quickly i" }, { "l_orderkey": 229i32, "l_partkey": 177i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 3.0d, "l_extendedprice": 3231.51d, "l_discount": 0.02d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-03-22", "l_commitdate": "1994-03-24", "l_receiptdate": "1994-04-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "posits. furiously regular theodol" }, { "l_orderkey": 774i32, "l_partkey": 177i32, "l_suppkey": 5i32, "l_linenumber": 5i32, "l_quantity": 44.0d, "l_extendedprice": 47395.48d, "l_discount": 0.09d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-02-29", "l_commitdate": "1996-01-16", "l_receiptdate": "1996-03-06", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "s according to the deposits unwind ca" }, { "l_orderkey": 896i32, "l_partkey": 177i32, "l_suppkey": 6i32, "l_linenumber": 6i32, "l_quantity": 44.0d, "l_extendedprice": 47395.48d, "l_discount": 0.09d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-05-19", "l_commitdate": "1993-04-14", "l_receiptdate": "1993-06-02", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "lar, pending packages. deposits are q" }, { "l_orderkey": 1093i32, "l_partkey": 177i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 37.0d, "l_extendedprice": 39855.29d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-11-06", "l_commitdate": "1997-10-08", "l_receiptdate": "1997-11-22", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "le furiously across the carefully sp" }, { "l_orderkey": 1441i32, "l_partkey": 177i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 5.0d, "l_extendedprice": 5385.85d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-25", "l_commitdate": "1997-04-16", "l_receiptdate": "1997-05-23", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "he quickly enticing pac" }, { "l_orderkey": 1632i32, "l_partkey": 177i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 47.0d, "l_extendedprice": 50626.99d, "l_discount": 0.03d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-29", "l_commitdate": "1997-03-03", "l_receiptdate": "1997-02-21", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "sts. blithely regular " }, { "l_orderkey": 1954i32, "l_partkey": 177i32, "l_suppkey": 8i32, "l_linenumber": 6i32, "l_quantity": 13.0d, "l_extendedprice": 14003.21d, "l_discount": 0.0d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-15", "l_commitdate": "1997-08-22", "l_receiptdate": "1997-06-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "y ironic instructions cajole" }, { "l_orderkey": 1956i32, "l_partkey": 177i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 8.0d, "l_extendedprice": 8617.36d, "l_discount": 0.02d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-12-25", "l_commitdate": "1992-11-24", "l_receiptdate": "1993-01-12", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "efully about the ironic, ironic de" }, { "l_orderkey": 2405i32, "l_partkey": 177i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 23.0d, "l_extendedprice": 24774.91d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-28", "l_commitdate": "1997-01-29", "l_receiptdate": "1997-01-07", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "t wake blithely blithely regular idea" }, { "l_orderkey": 2754i32, "l_partkey": 177i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 19.0d, "l_extendedprice": 20466.23d, "l_discount": 0.01d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-06-27", "l_commitdate": "1994-05-06", "l_receiptdate": "1994-06-28", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "latelets hag" }, { "l_orderkey": 2788i32, "l_partkey": 177i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 16.0d, "l_extendedprice": 17234.72d, "l_discount": 0.06d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-10-04", "l_commitdate": "1994-11-25", "l_receiptdate": "1994-10-18", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": " requests wake carefully. carefully si" }, { "l_orderkey": 2852i32, "l_partkey": 177i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 6.0d, "l_extendedprice": 6463.02d, "l_discount": 0.01d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-03-02", "l_commitdate": "1993-04-11", "l_receiptdate": "1993-03-11", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": " accounts above the furiously un" }, { "l_orderkey": 3141i32, "l_partkey": 177i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 32.0d, "l_extendedprice": 34469.44d, "l_discount": 0.06d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-21", "l_commitdate": "1995-12-18", "l_receiptdate": "1995-11-26", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "oxes are quickly about t" }, { "l_orderkey": 3169i32, "l_partkey": 177i32, "l_suppkey": 8i32, "l_linenumber": 6i32, "l_quantity": 46.0d, "l_extendedprice": 49549.82d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-02-01", "l_commitdate": "1994-01-22", "l_receiptdate": "1994-02-24", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "thely bold theodolites are fl" }, { "l_orderkey": 3296i32, "l_partkey": 177i32, "l_suppkey": 6i32, "l_linenumber": 5i32, "l_quantity": 16.0d, "l_extendedprice": 17234.72d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-01-11", "l_commitdate": "1994-12-27", "l_receiptdate": "1995-01-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "kages cajole carefully " }, { "l_orderkey": 3622i32, "l_partkey": 177i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 9.0d, "l_extendedprice": 9694.53d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-12", "l_commitdate": "1996-02-09", "l_receiptdate": "1995-12-13", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "arefully. furiously regular ideas n" }, { "l_orderkey": 3680i32, "l_partkey": 177i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 48.0d, "l_extendedprice": 51704.16d, "l_discount": 0.0d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-01-16", "l_commitdate": "1993-01-23", "l_receiptdate": "1993-01-19", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "packages. quickly fluff" }, { "l_orderkey": 3713i32, "l_partkey": 177i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 19.0d, "l_extendedprice": 20466.23d, "l_discount": 0.04d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-25", "l_commitdate": "1998-07-24", "l_receiptdate": "1998-07-08", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "tructions serve blithely around the furi" }, { "l_orderkey": 4387i32, "l_partkey": 177i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 48.0d, "l_extendedprice": 51704.16d, "l_discount": 0.06d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-29", "l_commitdate": "1995-12-11", "l_receiptdate": "1995-11-01", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "sleep slyly. blithely sl" }, { "l_orderkey": 4514i32, "l_partkey": 177i32, "l_suppkey": 8i32, "l_linenumber": 7i32, "l_quantity": 27.0d, "l_extendedprice": 29083.59d, "l_discount": 0.04d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-06-24", "l_commitdate": "1994-07-14", "l_receiptdate": "1994-06-30", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": ". slyly sile" }, { "l_orderkey": 4548i32, "l_partkey": 177i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 22.0d, "l_extendedprice": 23697.74d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-06", "l_commitdate": "1996-08-23", "l_receiptdate": "1996-07-15", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "s. furiously ironic theodolites c" }, { "l_orderkey": 4577i32, "l_partkey": 177i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 43.0d, "l_extendedprice": 46318.31d, "l_discount": 0.05d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-24", "l_commitdate": "1998-06-02", "l_receiptdate": "1998-09-14", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "ly accounts. carefully " }, { "l_orderkey": 4644i32, "l_partkey": 177i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 4.0d, "l_extendedprice": 4308.68d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-06", "l_commitdate": "1998-03-19", "l_receiptdate": "1998-05-28", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "gular requests? pendi" }, { "l_orderkey": 4709i32, "l_partkey": 177i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 25.0d, "l_extendedprice": 26929.25d, "l_discount": 0.05d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-22", "l_commitdate": "1996-03-03", "l_receiptdate": "1996-02-21", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "inst the ironic, regul" }, { "l_orderkey": 4871i32, "l_partkey": 177i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 14.0d, "l_extendedprice": 15080.38d, "l_discount": 0.07d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-30", "l_commitdate": "1995-07-29", "l_receiptdate": "1995-10-18", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "inst the never ironic " }, { "l_orderkey": 5382i32, "l_partkey": 177i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 14.0d, "l_extendedprice": 15080.38d, "l_discount": 0.02d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-04-05", "l_commitdate": "1992-04-05", "l_receiptdate": "1992-05-04", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": " brave platelets. ev" }, { "l_orderkey": 5504i32, "l_partkey": 177i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 7.0d, "l_extendedprice": 7540.19d, "l_discount": 0.03d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-04-25", "l_commitdate": "1993-03-15", "l_receiptdate": "1993-05-06", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "packages detect furiously express reques" }, { "l_orderkey": 5923i32, "l_partkey": 177i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 27.0d, "l_extendedprice": 29083.59d, "l_discount": 0.08d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-16", "l_commitdate": "1997-06-27", "l_receiptdate": "1997-08-29", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "arefully i" } ] }
+{ "partkey": 178i32, "lines": [ { "l_orderkey": 197i32, "l_partkey": 178i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 8.0d, "l_extendedprice": 8625.36d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-04-17", "l_commitdate": "1995-07-01", "l_receiptdate": "1995-04-27", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "y blithely even deposits. blithely fina" }, { "l_orderkey": 1059i32, "l_partkey": 178i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 16.0d, "l_extendedprice": 17250.72d, "l_discount": 0.07d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-04-24", "l_commitdate": "1994-03-31", "l_receiptdate": "1994-04-28", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "y ironic pinto " }, { "l_orderkey": 1120i32, "l_partkey": 178i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 10.0d, "l_extendedprice": 10781.7d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-17", "l_commitdate": "1998-01-21", "l_receiptdate": "1997-12-23", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "dependencies. blithel" }, { "l_orderkey": 1123i32, "l_partkey": 178i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 39.0d, "l_extendedprice": 42048.63d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-25", "l_commitdate": "1996-10-21", "l_receiptdate": "1996-09-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "rding to the furiously ironic requests: r" }, { "l_orderkey": 1187i32, "l_partkey": 178i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 29.0d, "l_extendedprice": 31266.93d, "l_discount": 0.01d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-12-10", "l_commitdate": "1993-02-09", "l_receiptdate": "1992-12-29", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "riously express ac" }, { "l_orderkey": 1284i32, "l_partkey": 178i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 49.0d, "l_extendedprice": 52830.33d, "l_discount": 0.0d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-04-11", "l_commitdate": "1996-03-04", "l_receiptdate": "1996-04-16", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "lar packages. special packages ac" }, { "l_orderkey": 1286i32, "l_partkey": 178i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 49.0d, "l_extendedprice": 52830.33d, "l_discount": 0.08d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-06-24", "l_commitdate": "1993-08-12", "l_receiptdate": "1993-06-26", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "gged accoun" }, { "l_orderkey": 1382i32, "l_partkey": 178i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 43.0d, "l_extendedprice": 46361.31d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-09-02", "l_commitdate": "1993-10-06", "l_receiptdate": "1993-09-15", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "ress deposits. slyly ironic foxes are blit" }, { "l_orderkey": 1413i32, "l_partkey": 178i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 18.0d, "l_extendedprice": 19407.06d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-10-11", "l_commitdate": "1997-08-17", "l_receiptdate": "1997-10-25", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "yly bold packages haggle quickly acr" }, { "l_orderkey": 1504i32, "l_partkey": 178i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 9.0d, "l_extendedprice": 9703.53d, "l_discount": 0.07d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-11-02", "l_commitdate": "1992-10-12", "l_receiptdate": "1992-11-15", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "y slyly regular courts." }, { "l_orderkey": 1538i32, "l_partkey": 178i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 13.0d, "l_extendedprice": 14016.21d, "l_discount": 0.01d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-06-26", "l_commitdate": "1995-07-30", "l_receiptdate": "1995-07-25", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "ly. packages sleep f" }, { "l_orderkey": 1575i32, "l_partkey": 178i32, "l_suppkey": 6i32, "l_linenumber": 6i32, "l_quantity": 14.0d, "l_extendedprice": 15094.38d, "l_discount": 0.08d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-31", "l_commitdate": "1995-12-06", "l_receiptdate": "1995-11-30", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "beans breach among the furiously specia" }, { "l_orderkey": 1607i32, "l_partkey": 178i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 48.0d, "l_extendedprice": 51752.16d, "l_discount": 0.0d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-02-22", "l_commitdate": "1996-02-13", "l_receiptdate": "1996-03-09", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "ular forges. deposits a" }, { "l_orderkey": 1633i32, "l_partkey": 178i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 35.0d, "l_extendedprice": 37735.95d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-09", "l_commitdate": "1995-12-02", "l_receiptdate": "1996-01-21", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "ly against the dolph" }, { "l_orderkey": 1671i32, "l_partkey": 178i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 5.0d, "l_extendedprice": 5390.85d, "l_discount": 0.0d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-14", "l_commitdate": "1996-10-20", "l_receiptdate": "1996-11-25", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "luffily regular deposits" }, { "l_orderkey": 1825i32, "l_partkey": 178i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 33.0d, "l_extendedprice": 35579.61d, "l_discount": 0.04d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-12-07", "l_commitdate": "1994-03-01", "l_receiptdate": "1993-12-16", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "about the ne" }, { "l_orderkey": 1923i32, "l_partkey": 178i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 23.0d, "l_extendedprice": 24797.91d, "l_discount": 0.07d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-08", "l_commitdate": "1997-08-11", "l_receiptdate": "1997-09-14", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "aggle carefully. furiously permanent" }, { "l_orderkey": 1926i32, "l_partkey": 178i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 10.0d, "l_extendedprice": 10781.7d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-23", "l_commitdate": "1996-03-02", "l_receiptdate": "1996-06-04", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "usly bold accounts. express accounts" }, { "l_orderkey": 2181i32, "l_partkey": 178i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 4.0d, "l_extendedprice": 4312.68d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-25", "l_commitdate": "1995-11-12", "l_receiptdate": "1995-09-28", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "tes. slyly silent packages use along th" }, { "l_orderkey": 2209i32, "l_partkey": 178i32, "l_suppkey": 7i32, "l_linenumber": 6i32, "l_quantity": 7.0d, "l_extendedprice": 7547.19d, "l_discount": 0.09d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-08-18", "l_commitdate": "1992-09-09", "l_receiptdate": "1992-09-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": " quickly regular pack" }, { "l_orderkey": 2306i32, "l_partkey": 178i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 35.0d, "l_extendedprice": 37735.95d, "l_discount": 0.01d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-18", "l_commitdate": "1995-08-30", "l_receiptdate": "1995-08-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "raids along the furiously unusual asympto" }, { "l_orderkey": 2661i32, "l_partkey": 178i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 31.0d, "l_extendedprice": 33423.27d, "l_discount": 0.03d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-07", "l_commitdate": "1997-03-10", "l_receiptdate": "1997-04-23", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "e ironicall" }, { "l_orderkey": 3173i32, "l_partkey": 178i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 5.0d, "l_extendedprice": 5390.85d, "l_discount": 0.09d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-06", "l_commitdate": "1996-09-17", "l_receiptdate": "1996-12-07", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "express depo" }, { "l_orderkey": 3235i32, "l_partkey": 178i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 23.0d, "l_extendedprice": 24797.91d, "l_discount": 0.0d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-02-16", "l_commitdate": "1996-01-05", "l_receiptdate": "1996-03-07", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "ldly ironic pinto beans" }, { "l_orderkey": 3393i32, "l_partkey": 178i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 37.0d, "l_extendedprice": 39892.29d, "l_discount": 0.07d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-16", "l_commitdate": "1995-08-19", "l_receiptdate": "1995-10-19", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "ss the slyly ironic pinto beans. ironic," }, { "l_orderkey": 3521i32, "l_partkey": 178i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 38.0d, "l_extendedprice": 40970.46d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-02-15", "l_commitdate": "1992-12-10", "l_receiptdate": "1993-03-10", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "ges hang q" }, { "l_orderkey": 3809i32, "l_partkey": 178i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 43.0d, "l_extendedprice": 46361.31d, "l_discount": 0.0d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-06", "l_commitdate": "1996-06-22", "l_receiptdate": "1996-06-05", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "yly ironic decoys; regular, iron" }, { "l_orderkey": 3909i32, "l_partkey": 178i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 30.0d, "l_extendedprice": 32345.1d, "l_discount": 0.03d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-10-17", "l_commitdate": "1998-10-14", "l_receiptdate": "1998-10-28", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "ly even deposits across the ironic notorni" }, { "l_orderkey": 3940i32, "l_partkey": 178i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 33.0d, "l_extendedprice": 35579.61d, "l_discount": 0.1d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-19", "l_commitdate": "1996-04-19", "l_receiptdate": "1996-05-23", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "ly ironic packages about the pending accou" }, { "l_orderkey": 4130i32, "l_partkey": 178i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 44.0d, "l_extendedprice": 47439.48d, "l_discount": 0.07d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-14", "l_commitdate": "1996-04-15", "l_receiptdate": "1996-05-15", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "eaves haggle qui" }, { "l_orderkey": 4131i32, "l_partkey": 178i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 32.0d, "l_extendedprice": 34501.44d, "l_discount": 0.08d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-02", "l_commitdate": "1998-03-21", "l_receiptdate": "1998-03-07", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": " furiously regular asymptotes nod sly" }, { "l_orderkey": 4196i32, "l_partkey": 178i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 46.0d, "l_extendedprice": 49595.82d, "l_discount": 0.05d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-09-05", "l_commitdate": "1998-06-28", "l_receiptdate": "1998-09-10", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "according to t" }, { "l_orderkey": 4579i32, "l_partkey": 178i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 34.0d, "l_extendedprice": 36657.78d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-02-26", "l_commitdate": "1996-02-22", "l_receiptdate": "1996-03-16", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "hely. carefully blithe dependen" }, { "l_orderkey": 4580i32, "l_partkey": 178i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 5.0d, "l_extendedprice": 5390.85d, "l_discount": 0.07d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-01-28", "l_commitdate": "1993-12-17", "l_receiptdate": "1994-02-22", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "o beans. f" }, { "l_orderkey": 4646i32, "l_partkey": 178i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 26.0d, "l_extendedprice": 28032.42d, "l_discount": 0.07d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-02", "l_commitdate": "1996-08-25", "l_receiptdate": "1996-10-27", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "ix according to the slyly spe" }, { "l_orderkey": 4678i32, "l_partkey": 178i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 40.0d, "l_extendedprice": 43126.8d, "l_discount": 0.03d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-11-11", "l_commitdate": "1998-10-27", "l_receiptdate": "1998-11-24", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": ". final, unusual requests sleep thinl" }, { "l_orderkey": 5092i32, "l_partkey": 178i32, "l_suppkey": 6i32, "l_linenumber": 6i32, "l_quantity": 11.0d, "l_extendedprice": 11859.87d, "l_discount": 0.03d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-02", "l_commitdate": "1995-12-27", "l_receiptdate": "1995-12-11", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "ly against the slyly silen" }, { "l_orderkey": 5095i32, "l_partkey": 178i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 42.0d, "l_extendedprice": 45283.14d, "l_discount": 0.08d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-05-23", "l_commitdate": "1992-06-01", "l_receiptdate": "1992-06-18", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "ccounts. packages could have t" }, { "l_orderkey": 5443i32, "l_partkey": 178i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 14.0d, "l_extendedprice": 15094.38d, "l_discount": 0.02d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-27", "l_commitdate": "1996-11-11", "l_receiptdate": "1996-11-21", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "s after the regular, regular deposits hag" }, { "l_orderkey": 5472i32, "l_partkey": 178i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 45.0d, "l_extendedprice": 48517.65d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-06-05", "l_commitdate": "1993-05-14", "l_receiptdate": "1993-06-10", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": " idle packages. furi" }, { "l_orderkey": 5792i32, "l_partkey": 178i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 34.0d, "l_extendedprice": 36657.78d, "l_discount": 0.08d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-05-23", "l_commitdate": "1993-06-25", "l_receiptdate": "1993-06-12", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "requests are against t" } ] }
+{ "partkey": 179i32, "lines": [ { "l_orderkey": 67i32, "l_partkey": 179i32, "l_suppkey": 9i32, "l_linenumber": 6i32, "l_quantity": 29.0d, "l_extendedprice": 31295.93d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-25", "l_commitdate": "1997-01-27", "l_receiptdate": "1997-01-27", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "ultipliers " }, { "l_orderkey": 384i32, "l_partkey": 179i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 38.0d, "l_extendedprice": 41008.46d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-06-02", "l_commitdate": "1992-04-18", "l_receiptdate": "1992-06-10", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "totes cajole blithely against the even" }, { "l_orderkey": 898i32, "l_partkey": 179i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 37.0d, "l_extendedprice": 39929.29d, "l_discount": 0.03d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-08-17", "l_commitdate": "1993-08-04", "l_receiptdate": "1993-09-01", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "packages sleep furiously" }, { "l_orderkey": 1188i32, "l_partkey": 179i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 41.0d, "l_extendedprice": 44245.97d, "l_discount": 0.07d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-29", "l_commitdate": "1996-05-21", "l_receiptdate": "1996-07-21", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "althy packages. fluffily unusual ideas h" }, { "l_orderkey": 1287i32, "l_partkey": 179i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 21.0d, "l_extendedprice": 22662.57d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-10-06", "l_commitdate": "1994-09-25", "l_receiptdate": "1994-10-16", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "y quickly bold theodoli" }, { "l_orderkey": 1410i32, "l_partkey": 179i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 18.0d, "l_extendedprice": 19425.06d, "l_discount": 0.03d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-03", "l_commitdate": "1997-05-17", "l_receiptdate": "1997-06-07", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "gle furiously fluffily regular requests" }, { "l_orderkey": 1537i32, "l_partkey": 179i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 50.0d, "l_extendedprice": 53958.5d, "l_discount": 0.08d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-05-30", "l_commitdate": "1992-05-14", "l_receiptdate": "1992-06-23", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "special packages haggle slyly at the silent" }, { "l_orderkey": 2182i32, "l_partkey": 179i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 37.0d, "l_extendedprice": 39929.29d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-04-08", "l_commitdate": "1994-06-29", "l_receiptdate": "1994-04-18", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "ges. blithely ironic" }, { "l_orderkey": 2343i32, "l_partkey": 179i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 21.0d, "l_extendedprice": 22662.57d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-07", "l_commitdate": "1995-10-26", "l_receiptdate": "1995-10-07", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "osits. unusual theodolites boost furio" }, { "l_orderkey": 3459i32, "l_partkey": 179i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 31.0d, "l_extendedprice": 33454.27d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-09-05", "l_commitdate": "1994-10-20", "l_receiptdate": "1994-10-03", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "y regular pain" }, { "l_orderkey": 4066i32, "l_partkey": 179i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 49.0d, "l_extendedprice": 52879.33d, "l_discount": 0.01d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-17", "l_commitdate": "1997-03-24", "l_receiptdate": "1997-02-19", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "ial braids. furiously final deposits sl" }, { "l_orderkey": 4193i32, "l_partkey": 179i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 10.0d, "l_extendedprice": 10791.7d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-02-10", "l_commitdate": "1994-03-22", "l_receiptdate": "1994-03-09", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "uffily spe" }, { "l_orderkey": 4551i32, "l_partkey": 179i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 26.0d, "l_extendedprice": 28058.42d, "l_discount": 0.02d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-04-14", "l_commitdate": "1996-04-26", "l_receiptdate": "1996-04-17", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "le. carefully dogged accounts use furiousl" }, { "l_orderkey": 4578i32, "l_partkey": 179i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 15.0d, "l_extendedprice": 16187.55d, "l_discount": 0.01d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-10-23", "l_commitdate": "1992-11-22", "l_receiptdate": "1992-11-09", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "gular theodo" }, { "l_orderkey": 4642i32, "l_partkey": 179i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 41.0d, "l_extendedprice": 44245.97d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-04-08", "l_commitdate": "1995-04-13", "l_receiptdate": "1995-05-01", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "s are blithely. requests wake above the fur" }, { "l_orderkey": 4741i32, "l_partkey": 179i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 40.0d, "l_extendedprice": 43166.8d, "l_discount": 0.09d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-09-20", "l_commitdate": "1992-09-23", "l_receiptdate": "1992-10-09", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": " fluffily slow deposits. fluffily regu" }, { "l_orderkey": 4835i32, "l_partkey": 179i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 18.0d, "l_extendedprice": 19425.06d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-02-17", "l_commitdate": "1994-12-14", "l_receiptdate": "1995-03-17", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "eat furiously against the slyly " }, { "l_orderkey": 5315i32, "l_partkey": 179i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 39.0d, "l_extendedprice": 42087.63d, "l_discount": 0.0d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-11-09", "l_commitdate": "1992-12-29", "l_receiptdate": "1992-12-07", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "ly alongside of the ca" }, { "l_orderkey": 5922i32, "l_partkey": 179i32, "l_suppkey": 9i32, "l_linenumber": 6i32, "l_quantity": 10.0d, "l_extendedprice": 10791.7d, "l_discount": 0.04d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-23", "l_commitdate": "1996-12-26", "l_receiptdate": "1997-03-04", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "sly regular deposits haggle quickly ins" } ] }
+{ "partkey": 180i32, "lines": [ { "l_orderkey": 70i32, "l_partkey": 180i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 1.0d, "l_extendedprice": 1080.18d, "l_discount": 0.03d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-01-26", "l_commitdate": "1994-03-05", "l_receiptdate": "1994-01-28", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "quickly. fluffily unusual theodolites c" }, { "l_orderkey": 326i32, "l_partkey": 180i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 41.0d, "l_extendedprice": 44287.38d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-30", "l_commitdate": "1995-07-09", "l_receiptdate": "1995-09-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "ily quickly bold ideas." }, { "l_orderkey": 512i32, "l_partkey": 180i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 40.0d, "l_extendedprice": 43207.2d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-06", "l_commitdate": "1995-07-08", "l_receiptdate": "1995-07-08", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "quests are da" }, { "l_orderkey": 640i32, "l_partkey": 180i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 22.0d, "l_extendedprice": 23763.96d, "l_discount": 0.05d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-05-07", "l_commitdate": "1993-04-14", "l_receiptdate": "1993-05-21", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "osits across the slyly regular theodo" }, { "l_orderkey": 708i32, "l_partkey": 180i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 19.0d, "l_extendedprice": 20523.42d, "l_discount": 0.06d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-10-28", "l_commitdate": "1998-09-23", "l_receiptdate": "1998-11-25", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": " requests. even, thin ideas" }, { "l_orderkey": 772i32, "l_partkey": 180i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 10.0d, "l_extendedprice": 10801.8d, "l_discount": 0.08d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-05-17", "l_commitdate": "1993-06-09", "l_receiptdate": "1993-05-29", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "o the furiously final deposits. furi" }, { "l_orderkey": 899i32, "l_partkey": 180i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 14.0d, "l_extendedprice": 15122.52d, "l_discount": 0.05d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-21", "l_commitdate": "1998-05-28", "l_receiptdate": "1998-06-03", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "ades impress carefully" }, { "l_orderkey": 966i32, "l_partkey": 180i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 19.0d, "l_extendedprice": 20523.42d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-26", "l_commitdate": "1998-07-15", "l_receiptdate": "1998-05-29", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "efully final pinto beans. quickly " }, { "l_orderkey": 1253i32, "l_partkey": 180i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 14.0d, "l_extendedprice": 15122.52d, "l_discount": 0.0d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-04-03", "l_commitdate": "1993-04-16", "l_receiptdate": "1993-04-27", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "lar foxes sleep furiously final, final pack" }, { "l_orderkey": 1605i32, "l_partkey": 180i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 18.0d, "l_extendedprice": 19443.24d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-13", "l_commitdate": "1998-06-17", "l_receiptdate": "1998-06-03", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "ly regular foxes wake carefully. bol" }, { "l_orderkey": 1826i32, "l_partkey": 180i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 6.0d, "l_extendedprice": 6481.08d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-06-30", "l_commitdate": "1992-05-17", "l_receiptdate": "1992-07-30", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "kages. blithely silent" }, { "l_orderkey": 1923i32, "l_partkey": 180i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 11.0d, "l_extendedprice": 11881.98d, "l_discount": 0.03d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-12", "l_commitdate": "1997-09-04", "l_receiptdate": "1997-08-01", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "ages wake slyly about the furiously regular" }, { "l_orderkey": 2084i32, "l_partkey": 180i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 23.0d, "l_extendedprice": 24844.14d, "l_discount": 0.09d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-06-05", "l_commitdate": "1993-05-26", "l_receiptdate": "1993-06-06", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "es against " }, { "l_orderkey": 2881i32, "l_partkey": 180i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 16.0d, "l_extendedprice": 17282.88d, "l_discount": 0.02d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-06-21", "l_commitdate": "1992-06-27", "l_receiptdate": "1992-07-03", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "usly bold " }, { "l_orderkey": 2949i32, "l_partkey": 180i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 38.0d, "l_extendedprice": 41046.84d, "l_discount": 0.02d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-05-22", "l_commitdate": "1994-05-25", "l_receiptdate": "1994-05-27", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "se slyly requests. carefull" }, { "l_orderkey": 3431i32, "l_partkey": 180i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 41.0d, "l_extendedprice": 44287.38d, "l_discount": 0.03d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-09-26", "l_commitdate": "1993-10-13", "l_receiptdate": "1993-10-22", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": " sleep carefully ironically special" }, { "l_orderkey": 3652i32, "l_partkey": 180i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 24.0d, "l_extendedprice": 25924.32d, "l_discount": 0.05d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-07", "l_commitdate": "1997-04-07", "l_receiptdate": "1997-06-12", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "the final p" }, { "l_orderkey": 3713i32, "l_partkey": 180i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 19.0d, "l_extendedprice": 20523.42d, "l_discount": 0.03d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-19", "l_commitdate": "1998-07-06", "l_receiptdate": "1998-06-09", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "quests cajole careful" }, { "l_orderkey": 3906i32, "l_partkey": 180i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 15.0d, "l_extendedprice": 16202.7d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-07-30", "l_commitdate": "1992-08-26", "l_receiptdate": "1992-08-02", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "dependencies at the " }, { "l_orderkey": 4067i32, "l_partkey": 180i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 18.0d, "l_extendedprice": 19443.24d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-01-24", "l_commitdate": "1992-12-23", "l_receiptdate": "1993-02-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "e the slyly final packages d" }, { "l_orderkey": 4099i32, "l_partkey": 180i32, "l_suppkey": 8i32, "l_linenumber": 7i32, "l_quantity": 46.0d, "l_extendedprice": 49688.28d, "l_discount": 0.06d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-10-29", "l_commitdate": "1992-11-03", "l_receiptdate": "1992-11-10", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "ages nag requests." }, { "l_orderkey": 4515i32, "l_partkey": 180i32, "l_suppkey": 8i32, "l_linenumber": 6i32, "l_quantity": 23.0d, "l_extendedprice": 24844.14d, "l_discount": 0.04d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-05-23", "l_commitdate": "1992-06-15", "l_receiptdate": "1992-06-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "ns. bold r" }, { "l_orderkey": 4642i32, "l_partkey": 180i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 34.0d, "l_extendedprice": 36726.12d, "l_discount": 0.04d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-04-01", "l_commitdate": "1995-05-11", "l_receiptdate": "1995-04-23", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "theodolites detect among the ironically sp" }, { "l_orderkey": 4868i32, "l_partkey": 180i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 8.0d, "l_extendedprice": 8641.44d, "l_discount": 0.1d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-26", "l_commitdate": "1997-05-09", "l_receiptdate": "1997-04-16", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "ly special th" }, { "l_orderkey": 4964i32, "l_partkey": 180i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 12.0d, "l_extendedprice": 12962.16d, "l_discount": 0.08d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-03", "l_commitdate": "1997-10-25", "l_receiptdate": "1997-09-15", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "ully silent instructions ca" }, { "l_orderkey": 5092i32, "l_partkey": 180i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 14.0d, "l_extendedprice": 15122.52d, "l_discount": 0.04d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-02-20", "l_commitdate": "1995-11-30", "l_receiptdate": "1996-03-20", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": " deposits cajole furiously against the sly" }, { "l_orderkey": 5221i32, "l_partkey": 180i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 16.0d, "l_extendedprice": 17282.88d, "l_discount": 0.04d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-29", "l_commitdate": "1995-09-06", "l_receiptdate": "1995-09-12", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "ending request" }, { "l_orderkey": 5318i32, "l_partkey": 180i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 26.0d, "l_extendedprice": 28084.68d, "l_discount": 0.0d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-07-07", "l_commitdate": "1993-05-23", "l_receiptdate": "1993-07-28", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "al, express foxes. bold requests sleep alwa" }, { "l_orderkey": 5382i32, "l_partkey": 180i32, "l_suppkey": 9i32, "l_linenumber": 6i32, "l_quantity": 6.0d, "l_extendedprice": 6481.08d, "l_discount": 0.02d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-03-07", "l_commitdate": "1992-04-02", "l_receiptdate": "1992-03-18", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "y final foxes by the sl" } ] }
+{ "partkey": 181i32, "lines": [ { "l_orderkey": 770i32, "l_partkey": 181i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 39.0d, "l_extendedprice": 42166.02d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-19", "l_commitdate": "1998-08-09", "l_receiptdate": "1998-08-04", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "osits. foxes cajole " }, { "l_orderkey": 807i32, "l_partkey": 181i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 48.0d, "l_extendedprice": 51896.64d, "l_discount": 0.07d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-01-08", "l_commitdate": "1994-02-02", "l_receiptdate": "1994-01-15", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "kly across the f" }, { "l_orderkey": 998i32, "l_partkey": 181i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 7.0d, "l_extendedprice": 7568.26d, "l_discount": 0.1d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-03-24", "l_commitdate": "1995-01-18", "l_receiptdate": "1995-04-03", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "nic deposits. even asym" }, { "l_orderkey": 999i32, "l_partkey": 181i32, "l_suppkey": 2i32, "l_linenumber": 6i32, "l_quantity": 37.0d, "l_extendedprice": 40003.66d, "l_discount": 0.0d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-01-03", "l_commitdate": "1993-10-28", "l_receiptdate": "1994-01-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "ckly slyly unusual packages: packages hagg" }, { "l_orderkey": 1088i32, "l_partkey": 181i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 5.0d, "l_extendedprice": 5405.9d, "l_discount": 0.03d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-07-01", "l_commitdate": "1992-07-25", "l_receiptdate": "1992-07-02", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "refully ironic packages. r" }, { "l_orderkey": 1095i32, "l_partkey": 181i32, "l_suppkey": 2i32, "l_linenumber": 6i32, "l_quantity": 37.0d, "l_extendedprice": 40003.66d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-04", "l_commitdate": "1995-11-13", "l_receiptdate": "1995-10-12", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": ". quickly even dolphins sle" }, { "l_orderkey": 1349i32, "l_partkey": 181i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 1.0d, "l_extendedprice": 1081.18d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-07", "l_commitdate": "1998-01-14", "l_receiptdate": "1998-02-03", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": " express inst" }, { "l_orderkey": 1382i32, "l_partkey": 181i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 29.0d, "l_extendedprice": 31354.22d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-10-08", "l_commitdate": "1993-11-11", "l_receiptdate": "1993-10-10", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": " haggle: closely even asymptot" }, { "l_orderkey": 1382i32, "l_partkey": 181i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 11.0d, "l_extendedprice": 11892.98d, "l_discount": 0.04d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-09-17", "l_commitdate": "1993-09-29", "l_receiptdate": "1993-09-21", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "furiously unusual packages play quickly " }, { "l_orderkey": 1890i32, "l_partkey": 181i32, "l_suppkey": 2i32, "l_linenumber": 6i32, "l_quantity": 16.0d, "l_extendedprice": 17298.88d, "l_discount": 0.08d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-13", "l_commitdate": "1997-02-18", "l_receiptdate": "1997-03-12", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "ged pinto beans. regular, regular id" }, { "l_orderkey": 2209i32, "l_partkey": 181i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 39.0d, "l_extendedprice": 42166.02d, "l_discount": 0.08d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-11-04", "l_commitdate": "1992-09-02", "l_receiptdate": "1992-11-11", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "ly around the final packages. deposits ca" }, { "l_orderkey": 2566i32, "l_partkey": 181i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 42.0d, "l_extendedprice": 45409.56d, "l_discount": 0.08d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-12-20", "l_commitdate": "1992-12-22", "l_receiptdate": "1992-12-29", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "ously ironic accounts" }, { "l_orderkey": 2656i32, "l_partkey": 181i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 10.0d, "l_extendedprice": 10811.8d, "l_discount": 0.02d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-06-28", "l_commitdate": "1993-07-04", "l_receiptdate": "1993-07-12", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "s nag regularly about the deposits. slyly" }, { "l_orderkey": 2821i32, "l_partkey": 181i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 4.0d, "l_extendedprice": 4324.72d, "l_discount": 0.0d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-09-15", "l_commitdate": "1993-10-02", "l_receiptdate": "1993-09-17", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "nding foxes." }, { "l_orderkey": 2854i32, "l_partkey": 181i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 46.0d, "l_extendedprice": 49734.28d, "l_discount": 0.0d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-09-22", "l_commitdate": "1994-08-02", "l_receiptdate": "1994-09-30", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": ". furiously regular deposits across th" }, { "l_orderkey": 3013i32, "l_partkey": 181i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 17.0d, "l_extendedprice": 18380.06d, "l_discount": 0.01d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-26", "l_commitdate": "1997-05-02", "l_receiptdate": "1997-03-27", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "fully unusual account" }, { "l_orderkey": 3041i32, "l_partkey": 181i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 5.0d, "l_extendedprice": 5405.9d, "l_discount": 0.07d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-20", "l_commitdate": "1997-07-15", "l_receiptdate": "1997-08-17", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "posits dazzle special p" }, { "l_orderkey": 3232i32, "l_partkey": 181i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 3.0d, "l_extendedprice": 3243.54d, "l_discount": 0.04d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-12-14", "l_commitdate": "1992-12-11", "l_receiptdate": "1992-12-29", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "ily blithely ironic acco" }, { "l_orderkey": 3424i32, "l_partkey": 181i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 39.0d, "l_extendedprice": 42166.02d, "l_discount": 0.06d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-03", "l_commitdate": "1996-11-08", "l_receiptdate": "1996-11-23", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "bits boost closely slyly p" }, { "l_orderkey": 3653i32, "l_partkey": 181i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 17.0d, "l_extendedprice": 18380.06d, "l_discount": 0.09d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-06-24", "l_commitdate": "1994-06-02", "l_receiptdate": "1994-07-17", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "gle slyly regular" }, { "l_orderkey": 3872i32, "l_partkey": 181i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 28.0d, "l_extendedprice": 30273.04d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-05", "l_commitdate": "1996-11-10", "l_receiptdate": "1996-11-24", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "t after the carefully ironic excuses. f" }, { "l_orderkey": 4293i32, "l_partkey": 181i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 1.0d, "l_extendedprice": 1081.18d, "l_discount": 0.06d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-15", "l_commitdate": "1996-10-09", "l_receiptdate": "1996-11-26", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "eposits should boost along the " }, { "l_orderkey": 4417i32, "l_partkey": 181i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 1.0d, "l_extendedprice": 1081.18d, "l_discount": 0.06d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-10-23", "l_commitdate": "1998-08-22", "l_receiptdate": "1998-10-24", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "press deposits promise stealthily amo" }, { "l_orderkey": 4675i32, "l_partkey": 181i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 5.0d, "l_extendedprice": 5405.9d, "l_discount": 0.05d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-01-16", "l_commitdate": "1994-01-05", "l_receiptdate": "1994-01-18", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "lent pinto beans" }, { "l_orderkey": 5031i32, "l_partkey": 181i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 31.0d, "l_extendedprice": 33516.58d, "l_discount": 0.1d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-01-15", "l_commitdate": "1995-01-08", "l_receiptdate": "1995-02-09", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "ts across the even requests doze furiously" }, { "l_orderkey": 5540i32, "l_partkey": 181i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 42.0d, "l_extendedprice": 45409.56d, "l_discount": 0.02d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-12", "l_commitdate": "1996-12-18", "l_receiptdate": "1996-12-05", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "ss dolphins haggle " } ] }
+{ "partkey": 182i32, "lines": [ { "l_orderkey": 384i32, "l_partkey": 182i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 11.0d, "l_extendedprice": 11903.98d, "l_discount": 0.02d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-04-02", "l_commitdate": "1992-04-21", "l_receiptdate": "1992-04-15", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "ash carefully" }, { "l_orderkey": 547i32, "l_partkey": 182i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 3.0d, "l_extendedprice": 3246.54d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-04", "l_commitdate": "1996-08-01", "l_receiptdate": "1996-09-21", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "pinto beans. ironi" }, { "l_orderkey": 737i32, "l_partkey": 182i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 12.0d, "l_extendedprice": 12986.16d, "l_discount": 0.01d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-04-28", "l_commitdate": "1992-06-30", "l_receiptdate": "1992-05-08", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "posits after the slyly bold du" }, { "l_orderkey": 1057i32, "l_partkey": 182i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 20.0d, "l_extendedprice": 21643.6d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-03-02", "l_commitdate": "1992-05-19", "l_receiptdate": "1992-03-13", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "s wake bol" }, { "l_orderkey": 1122i32, "l_partkey": 182i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 29.0d, "l_extendedprice": 31383.22d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-07", "l_commitdate": "1997-04-07", "l_receiptdate": "1997-05-15", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "ptotes. quickl" }, { "l_orderkey": 1510i32, "l_partkey": 182i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 8.0d, "l_extendedprice": 8657.44d, "l_discount": 0.01d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-26", "l_commitdate": "1996-11-07", "l_receiptdate": "1996-10-30", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "blithely express" }, { "l_orderkey": 1954i32, "l_partkey": 182i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 1.0d, "l_extendedprice": 1082.18d, "l_discount": 0.03d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-16", "l_commitdate": "1997-07-08", "l_receiptdate": "1997-10-07", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "te. furiously final deposits hag" }, { "l_orderkey": 2022i32, "l_partkey": 182i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 16.0d, "l_extendedprice": 17314.88d, "l_discount": 0.05d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-06-23", "l_commitdate": "1992-05-22", "l_receiptdate": "1992-07-07", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "ages wake slyly care" }, { "l_orderkey": 2084i32, "l_partkey": 182i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 42.0d, "l_extendedprice": 45451.56d, "l_discount": 0.03d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-03-29", "l_commitdate": "1993-05-05", "l_receiptdate": "1993-04-22", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "y fluffily even foxes. " }, { "l_orderkey": 2401i32, "l_partkey": 182i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 39.0d, "l_extendedprice": 42205.02d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-29", "l_commitdate": "1997-10-21", "l_receiptdate": "1997-10-17", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "ould affix " }, { "l_orderkey": 3457i32, "l_partkey": 182i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 29.0d, "l_extendedprice": 31383.22d, "l_discount": 0.03d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-05-12", "l_commitdate": "1995-07-13", "l_receiptdate": "1995-06-05", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "refully final excuses wake" }, { "l_orderkey": 3713i32, "l_partkey": 182i32, "l_suppkey": 3i32, "l_linenumber": 6i32, "l_quantity": 29.0d, "l_extendedprice": 31383.22d, "l_discount": 0.09d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-04", "l_commitdate": "1998-06-13", "l_receiptdate": "1998-08-21", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "the regular dugouts wake furiously sil" }, { "l_orderkey": 3716i32, "l_partkey": 182i32, "l_suppkey": 3i32, "l_linenumber": 5i32, "l_quantity": 25.0d, "l_extendedprice": 27054.5d, "l_discount": 0.06d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-11-23", "l_commitdate": "1997-10-24", "l_receiptdate": "1997-11-24", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "fully unusual accounts. carefu" }, { "l_orderkey": 3719i32, "l_partkey": 182i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 12.0d, "l_extendedprice": 12986.16d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-10", "l_commitdate": "1997-05-04", "l_receiptdate": "1997-07-09", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "grate according to the " }, { "l_orderkey": 3810i32, "l_partkey": 182i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 11.0d, "l_extendedprice": 11903.98d, "l_discount": 0.06d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-12-18", "l_commitdate": "1992-12-11", "l_receiptdate": "1993-01-15", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": " the pending pinto beans. expr" }, { "l_orderkey": 3811i32, "l_partkey": 182i32, "l_suppkey": 3i32, "l_linenumber": 5i32, "l_quantity": 23.0d, "l_extendedprice": 24890.14d, "l_discount": 0.0d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-13", "l_commitdate": "1998-07-09", "l_receiptdate": "1998-08-29", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "nstructions sleep quickly. slyly final " }, { "l_orderkey": 4035i32, "l_partkey": 182i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 13.0d, "l_extendedprice": 14068.34d, "l_discount": 0.0d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-06-10", "l_commitdate": "1992-05-16", "l_receiptdate": "1992-07-10", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "s. furiously even courts wake slyly" }, { "l_orderkey": 4706i32, "l_partkey": 182i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 37.0d, "l_extendedprice": 40040.66d, "l_discount": 0.02d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-02-20", "l_commitdate": "1993-03-05", "l_receiptdate": "1993-03-03", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "kly final deposits c" }, { "l_orderkey": 5380i32, "l_partkey": 182i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 14.0d, "l_extendedprice": 15150.52d, "l_discount": 0.1d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-18", "l_commitdate": "1997-12-03", "l_receiptdate": "1998-01-06", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "final platelets." }, { "l_orderkey": 5505i32, "l_partkey": 182i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 33.0d, "l_extendedprice": 35711.94d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-11", "l_commitdate": "1997-11-11", "l_receiptdate": "1998-01-30", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "ithely unusual excuses integrat" }, { "l_orderkey": 5634i32, "l_partkey": 182i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 29.0d, "l_extendedprice": 31383.22d, "l_discount": 0.0d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-10", "l_commitdate": "1996-10-29", "l_receiptdate": "1996-08-11", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "ely final ideas. deposits sleep. reg" }, { "l_orderkey": 5664i32, "l_partkey": 182i32, "l_suppkey": 3i32, "l_linenumber": 7i32, "l_quantity": 9.0d, "l_extendedprice": 9739.62d, "l_discount": 0.01d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-11-04", "l_commitdate": "1998-10-15", "l_receiptdate": "1998-11-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "yly. express ideas agai" }, { "l_orderkey": 5824i32, "l_partkey": 182i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 42.0d, "l_extendedprice": 45451.56d, "l_discount": 0.09d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-01", "l_commitdate": "1997-02-20", "l_receiptdate": "1997-02-07", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "ts sleep. carefully regular accounts h" } ] }
+{ "partkey": 183i32, "lines": [ { "l_orderkey": 7i32, "l_partkey": 183i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 12.0d, "l_extendedprice": 12998.16d, "l_discount": 0.07d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-07", "l_commitdate": "1996-03-13", "l_receiptdate": "1996-06-03", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "ss pinto beans wake against th" }, { "l_orderkey": 102i32, "l_partkey": 183i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 25.0d, "l_extendedprice": 27079.5d, "l_discount": 0.01d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-31", "l_commitdate": "1997-07-24", "l_receiptdate": "1997-08-17", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "bits. ironic accoun" }, { "l_orderkey": 260i32, "l_partkey": 183i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 26.0d, "l_extendedprice": 28162.68d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-12", "l_commitdate": "1997-02-06", "l_receiptdate": "1996-12-15", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "ld theodolites boost fl" }, { "l_orderkey": 359i32, "l_partkey": 183i32, "l_suppkey": 4i32, "l_linenumber": 6i32, "l_quantity": 23.0d, "l_extendedprice": 24913.14d, "l_discount": 0.04d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-01-31", "l_commitdate": "1995-03-11", "l_receiptdate": "1995-02-16", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "ic courts snooze quickly furiously final fo" }, { "l_orderkey": 515i32, "l_partkey": 183i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 11.0d, "l_extendedprice": 11914.98d, "l_discount": 0.0d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-09-04", "l_commitdate": "1993-10-02", "l_receiptdate": "1993-09-05", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "ly pending accounts haggle blithel" }, { "l_orderkey": 774i32, "l_partkey": 183i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 49.0d, "l_extendedprice": 53075.82d, "l_discount": 0.08d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-06", "l_commitdate": "1996-01-07", "l_receiptdate": "1995-12-14", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "ess accounts are carefully " }, { "l_orderkey": 1570i32, "l_partkey": 183i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 25.0d, "l_extendedprice": 27079.5d, "l_discount": 0.0d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-03", "l_commitdate": "1998-06-02", "l_receiptdate": "1998-06-02", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "its. slyly regular sentiments" }, { "l_orderkey": 1571i32, "l_partkey": 183i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 6.0d, "l_extendedprice": 6499.08d, "l_discount": 0.03d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-01-08", "l_commitdate": "1993-02-13", "l_receiptdate": "1993-02-07", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": " special, ironic depo" }, { "l_orderkey": 1602i32, "l_partkey": 183i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 4.0d, "l_extendedprice": 4332.72d, "l_discount": 0.08d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-10-31", "l_commitdate": "1993-09-05", "l_receiptdate": "1993-11-21", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "y. even excuses" }, { "l_orderkey": 1605i32, "l_partkey": 183i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 25.0d, "l_extendedprice": 27079.5d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-26", "l_commitdate": "1998-06-14", "l_receiptdate": "1998-06-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "ole carefully car" }, { "l_orderkey": 2150i32, "l_partkey": 183i32, "l_suppkey": 4i32, "l_linenumber": 5i32, "l_quantity": 35.0d, "l_extendedprice": 37911.3d, "l_discount": 0.01d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-09-27", "l_commitdate": "1994-08-17", "l_receiptdate": "1994-10-13", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "refully pending dependen" }, { "l_orderkey": 2438i32, "l_partkey": 183i32, "l_suppkey": 4i32, "l_linenumber": 7i32, "l_quantity": 46.0d, "l_extendedprice": 49826.28d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-10-27", "l_commitdate": "1993-08-30", "l_receiptdate": "1993-11-14", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": " ironic requests cajole f" }, { "l_orderkey": 2533i32, "l_partkey": 183i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 37.0d, "l_extendedprice": 40077.66d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-10", "l_commitdate": "1997-04-26", "l_receiptdate": "1997-05-28", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": " haggle carefully " }, { "l_orderkey": 2721i32, "l_partkey": 183i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 49.0d, "l_extendedprice": 53075.82d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-02-14", "l_commitdate": "1996-04-26", "l_receiptdate": "1996-03-02", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "ounts poach carefu" }, { "l_orderkey": 3143i32, "l_partkey": 183i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 40.0d, "l_extendedprice": 43327.2d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-05-07", "l_commitdate": "1993-03-29", "l_receiptdate": "1993-05-17", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "sly unusual theodolites. slyly ev" }, { "l_orderkey": 3143i32, "l_partkey": 183i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 22.0d, "l_extendedprice": 23829.96d, "l_discount": 0.05d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-03-18", "l_commitdate": "1993-05-09", "l_receiptdate": "1993-04-14", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "beans. fluf" }, { "l_orderkey": 3202i32, "l_partkey": 183i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 30.0d, "l_extendedprice": 32495.4d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-03-18", "l_commitdate": "1993-03-10", "l_receiptdate": "1993-03-23", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "ven platelets. furiously final" }, { "l_orderkey": 3299i32, "l_partkey": 183i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 40.0d, "l_extendedprice": 43327.2d, "l_discount": 0.03d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-03-21", "l_commitdate": "1994-03-23", "l_receiptdate": "1994-04-12", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "lyly even request" }, { "l_orderkey": 3749i32, "l_partkey": 183i32, "l_suppkey": 4i32, "l_linenumber": 5i32, "l_quantity": 14.0d, "l_extendedprice": 15164.52d, "l_discount": 0.02d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "F", "l_shipdate": "1995-06-11", "l_commitdate": "1995-05-19", "l_receiptdate": "1995-07-11", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "press instruc" }, { "l_orderkey": 3942i32, "l_partkey": 183i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 6.0d, "l_extendedprice": 6499.08d, "l_discount": 0.05d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-07-01", "l_commitdate": "1993-09-14", "l_receiptdate": "1993-07-23", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "ep ruthlessly carefully final accounts: s" }, { "l_orderkey": 4070i32, "l_partkey": 183i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 2.0d, "l_extendedprice": 2166.36d, "l_discount": 0.09d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-03", "l_commitdate": "1995-09-10", "l_receiptdate": "1995-08-17", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "ptotes affix" }, { "l_orderkey": 4710i32, "l_partkey": 183i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 40.0d, "l_extendedprice": 43327.2d, "l_discount": 0.1d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-03-09", "l_commitdate": "1995-02-25", "l_receiptdate": "1995-03-29", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "cross the blithely bold packages. silen" }, { "l_orderkey": 4834i32, "l_partkey": 183i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 27.0d, "l_extendedprice": 29245.86d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-09", "l_commitdate": "1996-10-27", "l_receiptdate": "1997-01-27", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "es nag blithe" }, { "l_orderkey": 4994i32, "l_partkey": 183i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 29.0d, "l_extendedprice": 31412.22d, "l_discount": 0.08d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-26", "l_commitdate": "1996-09-27", "l_receiptdate": "1996-09-25", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "ptotes boost carefully" }, { "l_orderkey": 4998i32, "l_partkey": 183i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 15.0d, "l_extendedprice": 16247.7d, "l_discount": 0.06d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-04-24", "l_commitdate": "1992-03-21", "l_receiptdate": "1992-05-02", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "heodolites sleep quickly." }, { "l_orderkey": 5122i32, "l_partkey": 183i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 28.0d, "l_extendedprice": 30329.04d, "l_discount": 0.03d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-04-20", "l_commitdate": "1996-03-29", "l_receiptdate": "1996-04-29", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "g the busily ironic accounts boos" }, { "l_orderkey": 5191i32, "l_partkey": 183i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 7.0d, "l_extendedprice": 7582.26d, "l_discount": 0.01d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-03-24", "l_commitdate": "1995-01-30", "l_receiptdate": "1995-03-30", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "eposits. express" }, { "l_orderkey": 5408i32, "l_partkey": 183i32, "l_suppkey": 4i32, "l_linenumber": 5i32, "l_quantity": 8.0d, "l_extendedprice": 8665.44d, "l_discount": 0.03d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-10-24", "l_commitdate": "1992-09-06", "l_receiptdate": "1992-11-03", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "thely regular hocke" }, { "l_orderkey": 5475i32, "l_partkey": 183i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 10.0d, "l_extendedprice": 10831.8d, "l_discount": 0.09d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-19", "l_commitdate": "1996-08-22", "l_receiptdate": "1996-07-23", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "ding to the deposits wake fina" }, { "l_orderkey": 5734i32, "l_partkey": 183i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 29.0d, "l_extendedprice": 31412.22d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-01", "l_commitdate": "1997-12-08", "l_receiptdate": "1997-12-23", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "structions cajole final, express " }, { "l_orderkey": 5792i32, "l_partkey": 183i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 32.0d, "l_extendedprice": 34661.76d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-06-26", "l_commitdate": "1993-05-23", "l_receiptdate": "1993-07-07", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "s are slyly against the ev" } ] }
+{ "partkey": 184i32, "lines": [ { "l_orderkey": 3i32, "l_partkey": 184i32, "l_suppkey": 5i32, "l_linenumber": 5i32, "l_quantity": 28.0d, "l_extendedprice": 30357.04d, "l_discount": 0.04d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-12-14", "l_commitdate": "1994-01-10", "l_receiptdate": "1994-01-01", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "ages nag slyly pending" }, { "l_orderkey": 194i32, "l_partkey": 184i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 1.0d, "l_extendedprice": 1084.18d, "l_discount": 0.04d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-04-30", "l_commitdate": "1992-05-18", "l_receiptdate": "1992-05-23", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": " regular theodolites. regular, iron" }, { "l_orderkey": 322i32, "l_partkey": 184i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 10.0d, "l_extendedprice": 10841.8d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-04-12", "l_commitdate": "1992-05-13", "l_receiptdate": "1992-04-14", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": " deposits grow slyly according to th" }, { "l_orderkey": 326i32, "l_partkey": 184i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 25.0d, "l_extendedprice": 27104.5d, "l_discount": 0.03d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-03", "l_commitdate": "1995-07-27", "l_receiptdate": "1995-08-16", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "ily furiously unusual accounts. " }, { "l_orderkey": 390i32, "l_partkey": 184i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 46.0d, "l_extendedprice": 49872.28d, "l_discount": 0.07d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-06", "l_commitdate": "1998-05-20", "l_receiptdate": "1998-06-14", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "cial excuses. bold, pending packages" }, { "l_orderkey": 484i32, "l_partkey": 184i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 50.0d, "l_extendedprice": 54209.0d, "l_discount": 0.06d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-24", "l_commitdate": "1997-03-27", "l_receiptdate": "1997-02-22", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "uctions wake. final, silent requests haggle" }, { "l_orderkey": 897i32, "l_partkey": 184i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 26.0d, "l_extendedprice": 28188.68d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-01", "l_commitdate": "1995-06-10", "l_receiptdate": "1995-07-14", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "tions sleep according to the special" }, { "l_orderkey": 1024i32, "l_partkey": 184i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 13.0d, "l_extendedprice": 14094.34d, "l_discount": 0.02d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-11", "l_commitdate": "1998-02-26", "l_receiptdate": "1998-04-18", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "e slyly around the slyly special instructi" }, { "l_orderkey": 1092i32, "l_partkey": 184i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 48.0d, "l_extendedprice": 52040.64d, "l_discount": 0.04d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-06-25", "l_commitdate": "1995-04-06", "l_receiptdate": "1995-07-18", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "unusual accounts. fluffi" }, { "l_orderkey": 1286i32, "l_partkey": 184i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 37.0d, "l_extendedprice": 40114.66d, "l_discount": 0.0d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-05-27", "l_commitdate": "1993-07-11", "l_receiptdate": "1993-06-01", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "lyly ironic pinto beans cajole furiously s" }, { "l_orderkey": 1731i32, "l_partkey": 184i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 36.0d, "l_extendedprice": 39030.48d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-04-18", "l_commitdate": "1996-04-03", "l_receiptdate": "1996-04-29", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "ngside of the even instruct" }, { "l_orderkey": 1763i32, "l_partkey": 184i32, "l_suppkey": 5i32, "l_linenumber": 7i32, "l_quantity": 2.0d, "l_extendedprice": 2168.36d, "l_discount": 0.05d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-27", "l_commitdate": "1996-12-04", "l_receiptdate": "1997-03-27", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "even pinto beans snooze fluffi" }, { "l_orderkey": 1891i32, "l_partkey": 184i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 18.0d, "l_extendedprice": 19515.24d, "l_discount": 0.06d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-01-24", "l_commitdate": "1995-01-29", "l_receiptdate": "1995-02-14", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": " foxes above the carefu" }, { "l_orderkey": 1923i32, "l_partkey": 184i32, "l_suppkey": 5i32, "l_linenumber": 5i32, "l_quantity": 25.0d, "l_extendedprice": 27104.5d, "l_discount": 0.1d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-18", "l_commitdate": "1997-08-20", "l_receiptdate": "1997-09-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "the ideas: slyly pendin" }, { "l_orderkey": 1925i32, "l_partkey": 184i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 50.0d, "l_extendedprice": 54209.0d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-04-12", "l_commitdate": "1992-04-23", "l_receiptdate": "1992-05-08", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "usual pinto" }, { "l_orderkey": 2115i32, "l_partkey": 184i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 43.0d, "l_extendedprice": 46619.74d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-14", "l_commitdate": "1998-07-25", "l_receiptdate": "1998-07-24", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": " carefully pending requests alongs" }, { "l_orderkey": 2116i32, "l_partkey": 184i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 11.0d, "l_extendedprice": 11925.98d, "l_discount": 0.03d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-09-15", "l_commitdate": "1994-10-21", "l_receiptdate": "1994-09-21", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": " pinto beans. final, final sauternes play " }, { "l_orderkey": 2118i32, "l_partkey": 184i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 4.0d, "l_extendedprice": 4336.72d, "l_discount": 0.08d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-25", "l_commitdate": "1996-11-10", "l_receiptdate": "1996-11-22", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "theodolites affix according " }, { "l_orderkey": 2273i32, "l_partkey": 184i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 34.0d, "l_extendedprice": 36862.12d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-08", "l_commitdate": "1997-02-02", "l_receiptdate": "1997-01-23", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": " furiously carefully bold de" }, { "l_orderkey": 2533i32, "l_partkey": 184i32, "l_suppkey": 5i32, "l_linenumber": 6i32, "l_quantity": 20.0d, "l_extendedprice": 21683.6d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-04", "l_commitdate": "1997-04-30", "l_receiptdate": "1997-07-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "thless excuses are b" }, { "l_orderkey": 2695i32, "l_partkey": 184i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 21.0d, "l_extendedprice": 22767.78d, "l_discount": 0.07d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-04", "l_commitdate": "1996-11-02", "l_receiptdate": "1996-10-21", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "y regular pinto beans. evenly regular packa" }, { "l_orderkey": 2790i32, "l_partkey": 184i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 19.0d, "l_extendedprice": 20599.42d, "l_discount": 0.06d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-10-23", "l_commitdate": "1994-10-03", "l_receiptdate": "1994-10-26", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "uffily even excuses. furiously thin" }, { "l_orderkey": 2886i32, "l_partkey": 184i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 38.0d, "l_extendedprice": 41198.84d, "l_discount": 0.02d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-01-21", "l_commitdate": "1995-01-08", "l_receiptdate": "1995-01-30", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "old requests along the fur" }, { "l_orderkey": 3105i32, "l_partkey": 184i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 11.0d, "l_extendedprice": 11925.98d, "l_discount": 0.01d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-07", "l_commitdate": "1997-02-09", "l_receiptdate": "1997-03-01", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "kly bold depths caj" }, { "l_orderkey": 3303i32, "l_partkey": 184i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 25.0d, "l_extendedprice": 27104.5d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-25", "l_commitdate": "1998-01-31", "l_receiptdate": "1998-04-12", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "lly regular pi" }, { "l_orderkey": 3394i32, "l_partkey": 184i32, "l_suppkey": 5i32, "l_linenumber": 6i32, "l_quantity": 14.0d, "l_extendedprice": 15178.52d, "l_discount": 0.05d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-18", "l_commitdate": "1996-06-24", "l_receiptdate": "1996-07-17", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "arefully regular do" }, { "l_orderkey": 3397i32, "l_partkey": 184i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 1.0d, "l_extendedprice": 1084.18d, "l_discount": 0.07d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-08-03", "l_commitdate": "1994-07-30", "l_receiptdate": "1994-08-28", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": " regular packag" }, { "l_orderkey": 3525i32, "l_partkey": 184i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 28.0d, "l_extendedprice": 30357.04d, "l_discount": 0.03d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-22", "l_commitdate": "1996-02-08", "l_receiptdate": "1996-01-27", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": " nag according " }, { "l_orderkey": 3655i32, "l_partkey": 184i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 5.0d, "l_extendedprice": 5420.9d, "l_discount": 0.03d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-01-17", "l_commitdate": "1992-12-31", "l_receiptdate": "1993-01-23", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "riously bold pinto be" }, { "l_orderkey": 3810i32, "l_partkey": 184i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 49.0d, "l_extendedprice": 53124.82d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-11-27", "l_commitdate": "1992-10-30", "l_receiptdate": "1992-12-16", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "cajole. fur" }, { "l_orderkey": 3904i32, "l_partkey": 184i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 19.0d, "l_extendedprice": 20599.42d, "l_discount": 0.09d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-02-10", "l_commitdate": "1998-02-13", "l_receiptdate": "1998-02-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": " excuses sleep slyly according to th" }, { "l_orderkey": 4064i32, "l_partkey": 184i32, "l_suppkey": 5i32, "l_linenumber": 6i32, "l_quantity": 46.0d, "l_extendedprice": 49872.28d, "l_discount": 0.03d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-13", "l_commitdate": "1997-01-05", "l_receiptdate": "1996-11-06", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "alongside of the f" }, { "l_orderkey": 4069i32, "l_partkey": 184i32, "l_suppkey": 5i32, "l_linenumber": 7i32, "l_quantity": 50.0d, "l_extendedprice": 54209.0d, "l_discount": 0.0d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-09-03", "l_commitdate": "1992-06-14", "l_receiptdate": "1992-10-01", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "ages. carefully regular " }, { "l_orderkey": 4583i32, "l_partkey": 184i32, "l_suppkey": 5i32, "l_linenumber": 5i32, "l_quantity": 36.0d, "l_extendedprice": 39030.48d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-01-06", "l_commitdate": "1994-11-25", "l_receiptdate": "1995-01-29", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "ar requests haggle after the furiously " }, { "l_orderkey": 4705i32, "l_partkey": 184i32, "l_suppkey": 5i32, "l_linenumber": 6i32, "l_quantity": 23.0d, "l_extendedprice": 24936.14d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-06-22", "l_commitdate": "1992-06-11", "l_receiptdate": "1992-07-18", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": " above the furiously ev" }, { "l_orderkey": 4801i32, "l_partkey": 184i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 37.0d, "l_extendedprice": 40114.66d, "l_discount": 0.1d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-09", "l_commitdate": "1996-02-29", "l_receiptdate": "1996-03-25", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "uests hinder blithely against the instr" }, { "l_orderkey": 4992i32, "l_partkey": 184i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 42.0d, "l_extendedprice": 45535.56d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-07-19", "l_commitdate": "1992-06-16", "l_receiptdate": "1992-08-17", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "foxes about the quickly final platele" }, { "l_orderkey": 5121i32, "l_partkey": 184i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 23.0d, "l_extendedprice": 24936.14d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-05-18", "l_commitdate": "1992-06-20", "l_receiptdate": "1992-06-02", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "even courts are blithely ironically " }, { "l_orderkey": 5380i32, "l_partkey": 184i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 40.0d, "l_extendedprice": 43367.2d, "l_discount": 0.02d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-30", "l_commitdate": "1997-11-27", "l_receiptdate": "1998-01-09", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "ar asymptotes. blithely r" }, { "l_orderkey": 5472i32, "l_partkey": 184i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 37.0d, "l_extendedprice": 40114.66d, "l_discount": 0.07d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-06-15", "l_commitdate": "1993-07-03", "l_receiptdate": "1993-07-09", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "egrate carefully dependencies. " }, { "l_orderkey": 5474i32, "l_partkey": 184i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 38.0d, "l_extendedprice": 41198.84d, "l_discount": 0.01d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-07-15", "l_commitdate": "1992-07-16", "l_receiptdate": "1992-07-20", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": " slyly beneath " }, { "l_orderkey": 5543i32, "l_partkey": 184i32, "l_suppkey": 5i32, "l_linenumber": 6i32, "l_quantity": 1.0d, "l_extendedprice": 1084.18d, "l_discount": 0.03d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-10-29", "l_commitdate": "1993-11-11", "l_receiptdate": "1993-11-23", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "uriously. slyly" } ] }
+{ "partkey": 185i32, "lines": [ { "l_orderkey": 580i32, "l_partkey": 185i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 19.0d, "l_extendedprice": 20618.42d, "l_discount": 0.04d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-23", "l_commitdate": "1997-09-21", "l_receiptdate": "1997-08-15", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "mong the special packag" }, { "l_orderkey": 612i32, "l_partkey": 185i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 5.0d, "l_extendedprice": 5425.9d, "l_discount": 0.07d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-11-08", "l_commitdate": "1992-11-20", "l_receiptdate": "1992-12-03", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "structions. q" }, { "l_orderkey": 835i32, "l_partkey": 185i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 28.0d, "l_extendedprice": 30385.04d, "l_discount": 0.02d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-27", "l_commitdate": "1995-12-11", "l_receiptdate": "1996-01-21", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": " fluffily furious pinto beans" }, { "l_orderkey": 1347i32, "l_partkey": 185i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 23.0d, "l_extendedprice": 24959.14d, "l_discount": 0.03d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-31", "l_commitdate": "1997-08-25", "l_receiptdate": "1997-08-21", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "ronic pinto beans. express reques" }, { "l_orderkey": 1666i32, "l_partkey": 185i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 30.0d, "l_extendedprice": 32555.4d, "l_discount": 0.04d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-28", "l_commitdate": "1995-11-30", "l_receiptdate": "1995-11-18", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": " breach evenly final accounts. r" }, { "l_orderkey": 1796i32, "l_partkey": 185i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 8.0d, "l_extendedprice": 8681.44d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-01-07", "l_commitdate": "1993-01-04", "l_receiptdate": "1993-01-10", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "slyly bold accounts are furiously agains" }, { "l_orderkey": 2023i32, "l_partkey": 185i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 9.0d, "l_extendedprice": 9766.62d, "l_discount": 0.02d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-07-23", "l_commitdate": "1992-07-04", "l_receiptdate": "1992-08-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "nts maintain blithely alongside of the" }, { "l_orderkey": 2790i32, "l_partkey": 185i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 27.0d, "l_extendedprice": 29299.86d, "l_discount": 0.06d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-09-04", "l_commitdate": "1994-09-27", "l_receiptdate": "1994-09-16", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "ilent packages cajole. quickly ironic requ" }, { "l_orderkey": 3009i32, "l_partkey": 185i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 38.0d, "l_extendedprice": 41236.84d, "l_discount": 0.0d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-01", "l_commitdate": "1997-04-10", "l_receiptdate": "1997-05-17", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "nal packages should haggle slyly. quickl" }, { "l_orderkey": 3173i32, "l_partkey": 185i32, "l_suppkey": 6i32, "l_linenumber": 5i32, "l_quantity": 2.0d, "l_extendedprice": 2170.36d, "l_discount": 0.0d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-18", "l_commitdate": "1996-09-21", "l_receiptdate": "1996-09-07", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "fluffily above t" }, { "l_orderkey": 3267i32, "l_partkey": 185i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 33.0d, "l_extendedprice": 35810.94d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-30", "l_commitdate": "1997-03-25", "l_receiptdate": "1997-04-23", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "es boost. " }, { "l_orderkey": 3296i32, "l_partkey": 185i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 29.0d, "l_extendedprice": 31470.22d, "l_discount": 0.02d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-01-12", "l_commitdate": "1994-11-26", "l_receiptdate": "1995-02-06", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "ss ideas are reg" }, { "l_orderkey": 3712i32, "l_partkey": 185i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 13.0d, "l_extendedprice": 14107.34d, "l_discount": 0.03d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-04-30", "l_commitdate": "1992-02-11", "l_receiptdate": "1992-05-30", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "s around the furiously ironic account" }, { "l_orderkey": 4389i32, "l_partkey": 185i32, "l_suppkey": 6i32, "l_linenumber": 7i32, "l_quantity": 4.0d, "l_extendedprice": 4340.72d, "l_discount": 0.09d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-06-14", "l_commitdate": "1994-06-30", "l_receiptdate": "1994-07-06", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": " blithely even d" }, { "l_orderkey": 4577i32, "l_partkey": 185i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 43.0d, "l_extendedprice": 46662.74d, "l_discount": 0.01d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-16", "l_commitdate": "1998-07-09", "l_receiptdate": "1998-06-17", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "packages. " }, { "l_orderkey": 4609i32, "l_partkey": 185i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 3.0d, "l_extendedprice": 3255.54d, "l_discount": 0.09d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-28", "l_commitdate": "1997-02-06", "l_receiptdate": "1997-01-20", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "nstructions. furious instructions " }, { "l_orderkey": 4612i32, "l_partkey": 185i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 10.0d, "l_extendedprice": 10851.8d, "l_discount": 0.1d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-11-11", "l_commitdate": "1993-11-19", "l_receiptdate": "1993-11-13", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "unusual theodol" }, { "l_orderkey": 4643i32, "l_partkey": 185i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 50.0d, "l_extendedprice": 54259.0d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-11", "l_commitdate": "1995-08-13", "l_receiptdate": "1995-09-30", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": ". ironic deposits cajo" }, { "l_orderkey": 4739i32, "l_partkey": 185i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 31.0d, "l_extendedprice": 33640.58d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-06-20", "l_commitdate": "1993-05-18", "l_receiptdate": "1993-06-26", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "blithely special pin" }, { "l_orderkey": 5574i32, "l_partkey": 185i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 46.0d, "l_extendedprice": 49918.28d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-06-20", "l_commitdate": "1992-04-19", "l_receiptdate": "1992-07-11", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "arefully express requests wake furiousl" }, { "l_orderkey": 5634i32, "l_partkey": 185i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 26.0d, "l_extendedprice": 28214.68d, "l_discount": 0.1d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-29", "l_commitdate": "1996-09-15", "l_receiptdate": "1996-11-24", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "ptotes mold qu" } ] }
+{ "partkey": 186i32, "lines": [ { "l_orderkey": 129i32, "l_partkey": 186i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 36.0d, "l_extendedprice": 39102.48d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-11-25", "l_commitdate": "1992-12-25", "l_receiptdate": "1992-12-09", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "packages are care" }, { "l_orderkey": 230i32, "l_partkey": 186i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 46.0d, "l_extendedprice": 49964.28d, "l_discount": 0.09d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-02-03", "l_commitdate": "1994-01-15", "l_receiptdate": "1994-02-23", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "old packages ha" }, { "l_orderkey": 325i32, "l_partkey": 186i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 5.0d, "l_extendedprice": 5430.9d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-01-02", "l_commitdate": "1994-01-05", "l_receiptdate": "1994-01-04", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": " theodolites. " }, { "l_orderkey": 357i32, "l_partkey": 186i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 36.0d, "l_extendedprice": 39102.48d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-28", "l_commitdate": "1996-11-13", "l_receiptdate": "1997-01-24", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "d the carefully even requests. " }, { "l_orderkey": 481i32, "l_partkey": 186i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 42.0d, "l_extendedprice": 45619.56d, "l_discount": 0.08d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-11-27", "l_commitdate": "1992-11-11", "l_receiptdate": "1992-12-08", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "mptotes are furiously among the iron" }, { "l_orderkey": 518i32, "l_partkey": 186i32, "l_suppkey": 7i32, "l_linenumber": 7i32, "l_quantity": 48.0d, "l_extendedprice": 52136.64d, "l_discount": 0.03d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-06", "l_commitdate": "1998-04-22", "l_receiptdate": "1998-03-14", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": " slyly final platelets; quickly even deposi" }, { "l_orderkey": 610i32, "l_partkey": 186i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 17.0d, "l_extendedprice": 18465.06d, "l_discount": 0.03d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-01", "l_commitdate": "1995-10-30", "l_receiptdate": "1995-11-04", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "p quickly instead of the slyly pending foxe" }, { "l_orderkey": 613i32, "l_partkey": 186i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 3.0d, "l_extendedprice": 3258.54d, "l_discount": 0.03d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-27", "l_commitdate": "1995-09-11", "l_receiptdate": "1995-10-05", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "ccounts cajole. " }, { "l_orderkey": 710i32, "l_partkey": 186i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 12.0d, "l_extendedprice": 13034.16d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-02-18", "l_commitdate": "1993-02-27", "l_receiptdate": "1993-03-07", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "ions. slyly express theodolites al" }, { "l_orderkey": 870i32, "l_partkey": 186i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 5.0d, "l_extendedprice": 5430.9d, "l_discount": 0.06d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-08-13", "l_commitdate": "1993-09-11", "l_receiptdate": "1993-08-24", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "e slyly excuses. ironi" }, { "l_orderkey": 1573i32, "l_partkey": 186i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 5.0d, "l_extendedprice": 5430.9d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-04-24", "l_commitdate": "1993-03-13", "l_receiptdate": "1993-05-17", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "ymptotes could u" }, { "l_orderkey": 1670i32, "l_partkey": 186i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 41.0d, "l_extendedprice": 44533.38d, "l_discount": 0.07d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-19", "l_commitdate": "1997-08-05", "l_receiptdate": "1997-07-26", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "al gifts. speci" }, { "l_orderkey": 2114i32, "l_partkey": 186i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 26.0d, "l_extendedprice": 28240.68d, "l_discount": 0.02d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-04-30", "l_commitdate": "1995-04-16", "l_receiptdate": "1995-05-28", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "ar asymptotes sleep " }, { "l_orderkey": 2466i32, "l_partkey": 186i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 16.0d, "l_extendedprice": 17378.88d, "l_discount": 0.0d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-04-20", "l_commitdate": "1994-04-20", "l_receiptdate": "1994-05-09", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "to beans sl" }, { "l_orderkey": 2823i32, "l_partkey": 186i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 11.0d, "l_extendedprice": 11947.98d, "l_discount": 0.07d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-10", "l_commitdate": "1995-11-24", "l_receiptdate": "1995-12-21", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "bold requests nag blithely s" }, { "l_orderkey": 2947i32, "l_partkey": 186i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 10.0d, "l_extendedprice": 10861.8d, "l_discount": 0.09d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-06-07", "l_commitdate": "1995-06-26", "l_receiptdate": "1995-06-08", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "lly special " }, { "l_orderkey": 3174i32, "l_partkey": 186i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 6.0d, "l_extendedprice": 6517.08d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-13", "l_commitdate": "1996-02-09", "l_receiptdate": "1996-03-22", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": " furiously ironic" }, { "l_orderkey": 3206i32, "l_partkey": 186i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 24.0d, "l_extendedprice": 26068.32d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-25", "l_commitdate": "1996-10-01", "l_receiptdate": "1996-09-04", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "encies sleep deposits--" }, { "l_orderkey": 3298i32, "l_partkey": 186i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 27.0d, "l_extendedprice": 29326.86d, "l_discount": 0.06d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-10", "l_commitdate": "1996-05-21", "l_receiptdate": "1996-07-15", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "lar packages. regular deposit" }, { "l_orderkey": 3489i32, "l_partkey": 186i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 19.0d, "l_extendedprice": 20637.42d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-07-31", "l_commitdate": "1993-10-26", "l_receiptdate": "1993-08-15", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "c deposits alongside of the pending, fu" }, { "l_orderkey": 3623i32, "l_partkey": 186i32, "l_suppkey": 7i32, "l_linenumber": 6i32, "l_quantity": 7.0d, "l_extendedprice": 7603.26d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-05", "l_commitdate": "1997-03-26", "l_receiptdate": "1997-01-26", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "aves. slyly special packages cajole. fu" }, { "l_orderkey": 3653i32, "l_partkey": 186i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 9.0d, "l_extendedprice": 9775.62d, "l_discount": 0.1d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-04-03", "l_commitdate": "1994-05-19", "l_receiptdate": "1994-04-10", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "slyly silent account" }, { "l_orderkey": 4069i32, "l_partkey": 186i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 3.0d, "l_extendedprice": 3258.54d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-07-26", "l_commitdate": "1992-07-07", "l_receiptdate": "1992-08-04", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "l packages. even, " }, { "l_orderkey": 4321i32, "l_partkey": 186i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 23.0d, "l_extendedprice": 24982.14d, "l_discount": 0.01d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-11-03", "l_commitdate": "1994-10-08", "l_receiptdate": "1994-11-06", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "ly even orbits slee" }, { "l_orderkey": 5092i32, "l_partkey": 186i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 42.0d, "l_extendedprice": 45619.56d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-06", "l_commitdate": "1996-01-01", "l_receiptdate": "1995-12-06", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "s use along t" }, { "l_orderkey": 5283i32, "l_partkey": 186i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 1.0d, "l_extendedprice": 1086.18d, "l_discount": 0.1d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-06-20", "l_commitdate": "1994-08-03", "l_receiptdate": "1994-07-01", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "deposits within the furio" }, { "l_orderkey": 5286i32, "l_partkey": 186i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 38.0d, "l_extendedprice": 41274.84d, "l_discount": 0.07d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-11-29", "l_commitdate": "1997-11-26", "l_receiptdate": "1997-12-15", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "fluffily. special, ironic deposit" }, { "l_orderkey": 5444i32, "l_partkey": 186i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 21.0d, "l_extendedprice": 22809.78d, "l_discount": 0.01d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-04-11", "l_commitdate": "1995-04-25", "l_receiptdate": "1995-04-21", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "ar packages haggle above th" }, { "l_orderkey": 5670i32, "l_partkey": 186i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 43.0d, "l_extendedprice": 46705.74d, "l_discount": 0.06d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-07-09", "l_commitdate": "1993-06-03", "l_receiptdate": "1993-07-14", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "ests in place of the carefully sly depos" }, { "l_orderkey": 5891i32, "l_partkey": 186i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 9.0d, "l_extendedprice": 9775.62d, "l_discount": 0.03d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-01-20", "l_commitdate": "1993-02-27", "l_receiptdate": "1993-02-10", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "cajole carefully " } ] }
+{ "partkey": 187i32, "lines": [ { "l_orderkey": 39i32, "l_partkey": 187i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 26.0d, "l_extendedprice": 28266.68d, "l_discount": 0.08d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-04", "l_commitdate": "1996-10-20", "l_receiptdate": "1996-11-20", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "ckages across the slyly silent" }, { "l_orderkey": 293i32, "l_partkey": 187i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 11.0d, "l_extendedprice": 11958.98d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-12-24", "l_commitdate": "1992-12-01", "l_receiptdate": "1993-01-12", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": " affix carefully quickly special idea" }, { "l_orderkey": 614i32, "l_partkey": 187i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 48.0d, "l_extendedprice": 52184.64d, "l_discount": 0.07d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-03-09", "l_commitdate": "1993-01-19", "l_receiptdate": "1993-03-19", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "riously special excuses haggle along the" }, { "l_orderkey": 741i32, "l_partkey": 187i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 25.0d, "l_extendedprice": 27179.5d, "l_discount": 0.03d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-15", "l_commitdate": "1998-08-27", "l_receiptdate": "1998-08-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "accounts. blithely bold pa" }, { "l_orderkey": 1031i32, "l_partkey": 187i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 27.0d, "l_extendedprice": 29353.86d, "l_discount": 0.07d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-09-20", "l_commitdate": "1994-10-18", "l_receiptdate": "1994-10-10", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "gular deposits cajole. blithely unus" }, { "l_orderkey": 1346i32, "l_partkey": 187i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 30.0d, "l_extendedprice": 32615.4d, "l_discount": 0.01d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-10-01", "l_commitdate": "1992-07-22", "l_receiptdate": "1992-10-24", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": " nag blithely. unusual, ru" }, { "l_orderkey": 1475i32, "l_partkey": 187i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 50.0d, "l_extendedprice": 54359.0d, "l_discount": 0.03d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-14", "l_commitdate": "1997-12-13", "l_receiptdate": "1997-12-21", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": ". slyly bold re" }, { "l_orderkey": 1509i32, "l_partkey": 187i32, "l_suppkey": 8i32, "l_linenumber": 6i32, "l_quantity": 31.0d, "l_extendedprice": 33702.58d, "l_discount": 0.04d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-07-14", "l_commitdate": "1993-08-21", "l_receiptdate": "1993-08-06", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "ic deposits cajole carefully. quickly bold " }, { "l_orderkey": 1639i32, "l_partkey": 187i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 24.0d, "l_extendedprice": 26092.32d, "l_discount": 0.07d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-24", "l_commitdate": "1995-10-06", "l_receiptdate": "1995-08-31", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": " the regular packages. courts dou" }, { "l_orderkey": 2211i32, "l_partkey": 187i32, "l_suppkey": 8i32, "l_linenumber": 6i32, "l_quantity": 18.0d, "l_extendedprice": 19569.24d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-08-31", "l_commitdate": "1994-09-07", "l_receiptdate": "1994-09-22", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "c grouches. slyly express pinto " }, { "l_orderkey": 2406i32, "l_partkey": 187i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 25.0d, "l_extendedprice": 27179.5d, "l_discount": 0.08d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-03", "l_commitdate": "1996-12-14", "l_receiptdate": "1996-12-26", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "al, regular in" }, { "l_orderkey": 2849i32, "l_partkey": 187i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 39.0d, "l_extendedprice": 42400.02d, "l_discount": 0.1d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-22", "l_commitdate": "1996-07-18", "l_receiptdate": "1996-06-05", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "s sleep furiously silently regul" }, { "l_orderkey": 2950i32, "l_partkey": 187i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 45.0d, "l_extendedprice": 48923.1d, "l_discount": 0.08d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-05", "l_commitdate": "1997-09-23", "l_receiptdate": "1997-09-11", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "ides the b" }, { "l_orderkey": 2951i32, "l_partkey": 187i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 40.0d, "l_extendedprice": 43487.2d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-03", "l_commitdate": "1996-04-20", "l_receiptdate": "1996-05-22", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "ial deposits wake fluffily about th" }, { "l_orderkey": 2980i32, "l_partkey": 187i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 24.0d, "l_extendedprice": 26092.32d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-12", "l_commitdate": "1996-10-27", "l_receiptdate": "1997-01-14", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "elets. fluffily regular in" }, { "l_orderkey": 3334i32, "l_partkey": 187i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 20.0d, "l_extendedprice": 21743.6d, "l_discount": 0.04d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-21", "l_commitdate": "1996-04-08", "l_receiptdate": "1996-05-26", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "uses nag furiously. instructions are ca" }, { "l_orderkey": 3558i32, "l_partkey": 187i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 3.0d, "l_extendedprice": 3261.54d, "l_discount": 0.03d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-19", "l_commitdate": "1996-04-28", "l_receiptdate": "1996-05-26", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "l, final deposits haggle. fina" }, { "l_orderkey": 3650i32, "l_partkey": 187i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 19.0d, "l_extendedprice": 20656.42d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-08-29", "l_commitdate": "1992-08-09", "l_receiptdate": "1992-09-21", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "y even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even forges. fluffily furious accountsy even f" }, { "l_orderkey": 3748i32, "l_partkey": 187i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 5.0d, "l_extendedprice": 5435.9d, "l_discount": 0.0d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-29", "l_commitdate": "1998-05-06", "l_receiptdate": "1998-07-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": " regular accounts sleep quickly-- furious" }, { "l_orderkey": 3840i32, "l_partkey": 187i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 45.0d, "l_extendedprice": 48923.1d, "l_discount": 0.02d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-10-31", "l_commitdate": "1998-09-19", "l_receiptdate": "1998-11-30", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "o beans are. carefully final courts x" }, { "l_orderkey": 4391i32, "l_partkey": 187i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 45.0d, "l_extendedprice": 48923.1d, "l_discount": 0.07d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-04-01", "l_commitdate": "1992-05-01", "l_receiptdate": "1992-04-13", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "ep quickly after " }, { "l_orderkey": 4583i32, "l_partkey": 187i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 43.0d, "l_extendedprice": 46748.74d, "l_discount": 0.04d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-10-30", "l_commitdate": "1994-12-17", "l_receiptdate": "1994-11-16", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "fully after the speci" }, { "l_orderkey": 4647i32, "l_partkey": 187i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 2.0d, "l_extendedprice": 2174.36d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-05-27", "l_commitdate": "1994-08-05", "l_receiptdate": "1994-06-10", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": " pinto beans believe furiously slyly silent" }, { "l_orderkey": 4738i32, "l_partkey": 187i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 9.0d, "l_extendedprice": 9784.62d, "l_discount": 0.04d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-06-01", "l_commitdate": "1992-06-26", "l_receiptdate": "1992-06-02", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "posits serve slyly. unusual pint" }, { "l_orderkey": 4738i32, "l_partkey": 187i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 13.0d, "l_extendedprice": 14133.34d, "l_discount": 0.04d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-05-30", "l_commitdate": "1992-06-11", "l_receiptdate": "1992-06-26", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": " wake. unusual platelets for the" }, { "l_orderkey": 4930i32, "l_partkey": 187i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 35.0d, "l_extendedprice": 38051.3d, "l_discount": 0.03d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-07-09", "l_commitdate": "1994-07-30", "l_receiptdate": "1994-07-15", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "lose slyly regular dependencies. fur" }, { "l_orderkey": 5600i32, "l_partkey": 187i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 34.0d, "l_extendedprice": 36964.12d, "l_discount": 0.02d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-22", "l_commitdate": "1997-04-05", "l_receiptdate": "1997-04-09", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "ly above the stealthy ideas. permane" }, { "l_orderkey": 5827i32, "l_partkey": 187i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 30.0d, "l_extendedprice": 32615.4d, "l_discount": 0.03d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-11-11", "l_commitdate": "1998-09-27", "l_receiptdate": "1998-11-30", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "ounts may c" }, { "l_orderkey": 5920i32, "l_partkey": 187i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 50.0d, "l_extendedprice": 54359.0d, "l_discount": 0.06d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-03-13", "l_commitdate": "1995-01-03", "l_receiptdate": "1995-03-31", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "across the carefully pending platelets" } ] }
+{ "partkey": 188i32, "lines": [ { "l_orderkey": 578i32, "l_partkey": 188i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 23.0d, "l_extendedprice": 25028.14d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-06", "l_commitdate": "1997-03-03", "l_receiptdate": "1997-03-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "nstructions. ironic deposits" }, { "l_orderkey": 738i32, "l_partkey": 188i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 4.0d, "l_extendedprice": 4352.72d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-06-20", "l_commitdate": "1993-04-08", "l_receiptdate": "1993-07-09", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "ar packages. fluffily bo" }, { "l_orderkey": 739i32, "l_partkey": 188i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 30.0d, "l_extendedprice": 32645.4d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-19", "l_commitdate": "1998-08-26", "l_receiptdate": "1998-07-02", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "above the even deposits. ironic requests" }, { "l_orderkey": 836i32, "l_partkey": 188i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 6.0d, "l_extendedprice": 6529.08d, "l_discount": 0.09d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-09", "l_commitdate": "1997-01-31", "l_receiptdate": "1996-12-29", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "fully bold theodolites are daringly across" }, { "l_orderkey": 896i32, "l_partkey": 188i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 34.0d, "l_extendedprice": 36998.12d, "l_discount": 0.0d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-05-21", "l_commitdate": "1993-06-01", "l_receiptdate": "1993-05-23", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "ular, close requests cajo" }, { "l_orderkey": 962i32, "l_partkey": 188i32, "l_suppkey": 9i32, "l_linenumber": 6i32, "l_quantity": 5.0d, "l_extendedprice": 5440.9d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-08-29", "l_commitdate": "1994-07-15", "l_receiptdate": "1994-09-19", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "efully bold packages run slyly caref" }, { "l_orderkey": 1251i32, "l_partkey": 188i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 1.0d, "l_extendedprice": 1088.18d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-08", "l_commitdate": "1998-01-06", "l_receiptdate": "1998-01-01", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": " use quickly final packages. iron" }, { "l_orderkey": 1285i32, "l_partkey": 188i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 39.0d, "l_extendedprice": 42439.02d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-09-15", "l_commitdate": "1992-08-05", "l_receiptdate": "1992-10-05", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "uctions. car" }, { "l_orderkey": 1410i32, "l_partkey": 188i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 22.0d, "l_extendedprice": 23939.96d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-31", "l_commitdate": "1997-05-17", "l_receiptdate": "1997-08-19", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "gular account" }, { "l_orderkey": 1859i32, "l_partkey": 188i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 36.0d, "l_extendedprice": 39174.48d, "l_discount": 0.02d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-05", "l_commitdate": "1997-07-08", "l_receiptdate": "1997-05-25", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "regular requests. carefully unusual theo" }, { "l_orderkey": 2945i32, "l_partkey": 188i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 34.0d, "l_extendedprice": 36998.12d, "l_discount": 0.08d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-02-03", "l_commitdate": "1996-03-17", "l_receiptdate": "1996-02-29", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "at the unusual theodolite" }, { "l_orderkey": 2979i32, "l_partkey": 188i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 35.0d, "l_extendedprice": 38086.3d, "l_discount": 0.04d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-25", "l_commitdate": "1996-06-11", "l_receiptdate": "1996-06-24", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "old ideas beneath the blit" }, { "l_orderkey": 3079i32, "l_partkey": 188i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 2.0d, "l_extendedprice": 2176.36d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-27", "l_commitdate": "1997-10-25", "l_receiptdate": "1998-01-08", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "y regular asymptotes doz" }, { "l_orderkey": 3169i32, "l_partkey": 188i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 12.0d, "l_extendedprice": 13058.16d, "l_discount": 0.08d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-04-18", "l_commitdate": "1994-03-12", "l_receiptdate": "1994-05-08", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "atelets. pac" }, { "l_orderkey": 3203i32, "l_partkey": 188i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 22.0d, "l_extendedprice": 23939.96d, "l_discount": 0.03d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-02-12", "l_commitdate": "1998-01-01", "l_receiptdate": "1998-02-18", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "e the blithely regular accounts boost f" }, { "l_orderkey": 3362i32, "l_partkey": 188i32, "l_suppkey": 9i32, "l_linenumber": 6i32, "l_quantity": 46.0d, "l_extendedprice": 50056.28d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-02", "l_commitdate": "1995-10-12", "l_receiptdate": "1995-08-28", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "ly bold packages. regular deposits cajol" }, { "l_orderkey": 3653i32, "l_partkey": 188i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 41.0d, "l_extendedprice": 44615.38d, "l_discount": 0.08d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-06-18", "l_commitdate": "1994-05-18", "l_receiptdate": "1994-06-20", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "onic packages affix sly" }, { "l_orderkey": 3746i32, "l_partkey": 188i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 3.0d, "l_extendedprice": 3264.54d, "l_discount": 0.1d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-11-03", "l_commitdate": "1994-12-10", "l_receiptdate": "1994-11-12", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": " the silent ideas cajole carefully " }, { "l_orderkey": 3781i32, "l_partkey": 188i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 39.0d, "l_extendedprice": 42439.02d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-20", "l_commitdate": "1996-08-16", "l_receiptdate": "1996-09-01", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "unts are carefully. ir" }, { "l_orderkey": 3936i32, "l_partkey": 188i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 24.0d, "l_extendedprice": 26116.32d, "l_discount": 0.1d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-22", "l_commitdate": "1997-01-01", "l_receiptdate": "1996-12-08", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "ns. accounts mold fl" }, { "l_orderkey": 4226i32, "l_partkey": 188i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 27.0d, "l_extendedprice": 29380.86d, "l_discount": 0.06d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-05-03", "l_commitdate": "1993-04-12", "l_receiptdate": "1993-05-16", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "sly alongside of the slyly ironic pac" }, { "l_orderkey": 4320i32, "l_partkey": 188i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 33.0d, "l_extendedprice": 35909.94d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-11", "l_commitdate": "1997-02-27", "l_receiptdate": "1997-01-08", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "ess asymptotes so" }, { "l_orderkey": 4547i32, "l_partkey": 188i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 15.0d, "l_extendedprice": 16322.7d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-12-08", "l_commitdate": "1993-11-15", "l_receiptdate": "1993-12-22", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "ets haggle. regular dinos affix fu" }, { "l_orderkey": 4742i32, "l_partkey": 188i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 31.0d, "l_extendedprice": 33733.58d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "F", "l_shipdate": "1995-06-13", "l_commitdate": "1995-05-08", "l_receiptdate": "1995-06-24", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "ke slyly among the furiousl" }, { "l_orderkey": 4935i32, "l_partkey": 188i32, "l_suppkey": 9i32, "l_linenumber": 6i32, "l_quantity": 36.0d, "l_extendedprice": 39174.48d, "l_discount": 0.1d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-07-11", "l_commitdate": "1993-07-04", "l_receiptdate": "1993-08-01", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "requests across the quick" }, { "l_orderkey": 5155i32, "l_partkey": 188i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 5.0d, "l_extendedprice": 5440.9d, "l_discount": 0.08d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-06-30", "l_commitdate": "1994-08-13", "l_receiptdate": "1994-07-15", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "ole blithely slyly ironic " }, { "l_orderkey": 5381i32, "l_partkey": 188i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 37.0d, "l_extendedprice": 40262.66d, "l_discount": 0.04d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-04-08", "l_commitdate": "1993-04-07", "l_receiptdate": "1993-04-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "ly final deposits print carefully. unusua" }, { "l_orderkey": 5511i32, "l_partkey": 188i32, "l_suppkey": 9i32, "l_linenumber": 6i32, "l_quantity": 5.0d, "l_extendedprice": 5440.9d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-12-29", "l_commitdate": "1995-01-16", "l_receiptdate": "1995-01-24", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "al theodolites. blithely final de" }, { "l_orderkey": 5698i32, "l_partkey": 188i32, "l_suppkey": 9i32, "l_linenumber": 6i32, "l_quantity": 1.0d, "l_extendedprice": 1088.18d, "l_discount": 0.06d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-05-31", "l_commitdate": "1994-07-10", "l_receiptdate": "1994-06-03", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "nts. slyly quiet pinto beans nag carefu" }, { "l_orderkey": 5764i32, "l_partkey": 188i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 4.0d, "l_extendedprice": 4352.72d, "l_discount": 0.03d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-10-25", "l_commitdate": "1993-12-23", "l_receiptdate": "1993-11-06", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "ily regular courts haggle" }, { "l_orderkey": 5766i32, "l_partkey": 188i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 1.0d, "l_extendedprice": 1088.18d, "l_discount": 0.1d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-01-16", "l_commitdate": "1993-11-16", "l_receiptdate": "1994-01-23", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "blithely regular the" } ] }
+{ "partkey": 189i32, "lines": [ { "l_orderkey": 134i32, "l_partkey": 189i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 26.0d, "l_extendedprice": 28318.68d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-06-20", "l_commitdate": "1992-07-12", "l_receiptdate": "1992-07-16", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": " among the pending depos" }, { "l_orderkey": 512i32, "l_partkey": 189i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 19.0d, "l_extendedprice": 20694.42d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-12", "l_commitdate": "1995-07-11", "l_receiptdate": "1995-08-04", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": " sleep. requests alongside of the fluff" }, { "l_orderkey": 549i32, "l_partkey": 189i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 38.0d, "l_extendedprice": 41388.84d, "l_discount": 0.07d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-08-17", "l_commitdate": "1992-08-28", "l_receiptdate": "1992-09-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "the regular, furious excuses. carefu" }, { "l_orderkey": 583i32, "l_partkey": 189i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 13.0d, "l_extendedprice": 14159.34d, "l_discount": 0.04d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-23", "l_commitdate": "1997-05-29", "l_receiptdate": "1997-07-08", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "y sly theodolites. ironi" }, { "l_orderkey": 612i32, "l_partkey": 189i32, "l_suppkey": 10i32, "l_linenumber": 6i32, "l_quantity": 33.0d, "l_extendedprice": 35942.94d, "l_discount": 0.1d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-11-30", "l_commitdate": "1992-12-01", "l_receiptdate": "1992-12-12", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "bove the blithely even ideas. careful" }, { "l_orderkey": 705i32, "l_partkey": 189i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 46.0d, "l_extendedprice": 50102.28d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-18", "l_commitdate": "1997-05-06", "l_receiptdate": "1997-05-05", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "ss deposits. ironic packa" }, { "l_orderkey": 839i32, "l_partkey": 189i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 47.0d, "l_extendedprice": 51191.46d, "l_discount": 0.08d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-17", "l_commitdate": "1995-11-06", "l_receiptdate": "1995-11-10", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "refully final excuses about " }, { "l_orderkey": 1280i32, "l_partkey": 189i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 6.0d, "l_extendedprice": 6535.08d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-03-30", "l_commitdate": "1993-02-16", "l_receiptdate": "1993-04-18", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "gular deposits " }, { "l_orderkey": 1285i32, "l_partkey": 189i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 4.0d, "l_extendedprice": 4356.72d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-07-20", "l_commitdate": "1992-08-17", "l_receiptdate": "1992-07-26", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "l packages sleep slyly quiet i" }, { "l_orderkey": 1286i32, "l_partkey": 189i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 11.0d, "l_extendedprice": 11980.98d, "l_discount": 0.03d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-08-08", "l_commitdate": "1993-07-30", "l_receiptdate": "1993-09-05", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": " slyly even packages. requ" }, { "l_orderkey": 1543i32, "l_partkey": 189i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 42.0d, "l_extendedprice": 45745.56d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-11", "l_commitdate": "1997-04-11", "l_receiptdate": "1997-04-23", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "xpress instructions. regular acc" }, { "l_orderkey": 2049i32, "l_partkey": 189i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 25.0d, "l_extendedprice": 27229.5d, "l_discount": 0.08d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-31", "l_commitdate": "1996-02-29", "l_receiptdate": "1996-04-15", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": " excuses above the " }, { "l_orderkey": 2245i32, "l_partkey": 189i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 14.0d, "l_extendedprice": 15248.52d, "l_discount": 0.02d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-05-06", "l_commitdate": "1993-07-21", "l_receiptdate": "1993-05-19", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "nts. always unusual dep" }, { "l_orderkey": 2372i32, "l_partkey": 189i32, "l_suppkey": 10i32, "l_linenumber": 6i32, "l_quantity": 11.0d, "l_extendedprice": 11980.98d, "l_discount": 0.02d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-02-14", "l_commitdate": "1998-01-18", "l_receiptdate": "1998-03-10", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": " silent, pending de" }, { "l_orderkey": 2496i32, "l_partkey": 189i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 36.0d, "l_extendedprice": 39210.48d, "l_discount": 0.09d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-03-27", "l_commitdate": "1994-03-15", "l_receiptdate": "1994-04-17", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "ully ironic f" }, { "l_orderkey": 2565i32, "l_partkey": 189i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 26.0d, "l_extendedprice": 28318.68d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-07", "l_commitdate": "1998-04-09", "l_receiptdate": "1998-05-15", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": " pinto beans about the slyly regula" }, { "l_orderkey": 2624i32, "l_partkey": 189i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 12.0d, "l_extendedprice": 13070.16d, "l_discount": 0.07d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-24", "l_commitdate": "1997-02-22", "l_receiptdate": "1997-02-27", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "er the quickly unu" }, { "l_orderkey": 2690i32, "l_partkey": 189i32, "l_suppkey": 10i32, "l_linenumber": 6i32, "l_quantity": 3.0d, "l_extendedprice": 3267.54d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-04", "l_commitdate": "1996-05-28", "l_receiptdate": "1996-07-06", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": ". final reques" }, { "l_orderkey": 2725i32, "l_partkey": 189i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 15.0d, "l_extendedprice": 16337.7d, "l_discount": 0.07d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-08-06", "l_commitdate": "1994-08-09", "l_receiptdate": "1994-08-15", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "? furiously regular a" }, { "l_orderkey": 2883i32, "l_partkey": 189i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 47.0d, "l_extendedprice": 51191.46d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-01-29", "l_commitdate": "1995-04-19", "l_receiptdate": "1995-02-05", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "ep carefully ironic" }, { "l_orderkey": 3270i32, "l_partkey": 189i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 29.0d, "l_extendedprice": 31586.22d, "l_discount": 0.06d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-01", "l_commitdate": "1997-07-23", "l_receiptdate": "1997-07-10", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "sly regular asymptotes. slyly dog" }, { "l_orderkey": 3427i32, "l_partkey": 189i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 24.0d, "l_extendedprice": 26140.32d, "l_discount": 0.02d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-01", "l_commitdate": "1997-07-28", "l_receiptdate": "1997-07-30", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "y bold, sly deposits. pendi" }, { "l_orderkey": 3430i32, "l_partkey": 189i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 2.0d, "l_extendedprice": 2178.36d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-03-07", "l_commitdate": "1995-01-28", "l_receiptdate": "1995-03-30", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "sh furiously according to the evenly e" }, { "l_orderkey": 3459i32, "l_partkey": 189i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 10.0d, "l_extendedprice": 10891.8d, "l_discount": 0.02d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-08-01", "l_commitdate": "1994-10-17", "l_receiptdate": "1994-08-11", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": ". blithely ironic pinto beans above" }, { "l_orderkey": 3847i32, "l_partkey": 189i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 7.0d, "l_extendedprice": 7624.26d, "l_discount": 0.08d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-05-06", "l_commitdate": "1993-06-06", "l_receiptdate": "1993-05-22", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": " about the blithely daring Tiresias. fl" }, { "l_orderkey": 4448i32, "l_partkey": 189i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 13.0d, "l_extendedprice": 14159.34d, "l_discount": 0.0d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-26", "l_commitdate": "1998-07-03", "l_receiptdate": "1998-08-14", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "fluffily express accounts integrate furiou" }, { "l_orderkey": 4514i32, "l_partkey": 189i32, "l_suppkey": 10i32, "l_linenumber": 6i32, "l_quantity": 38.0d, "l_extendedprice": 41388.84d, "l_discount": 0.03d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-07-28", "l_commitdate": "1994-07-06", "l_receiptdate": "1994-08-25", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "ending excuses. sl" }, { "l_orderkey": 4580i32, "l_partkey": 189i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 39.0d, "l_extendedprice": 42478.02d, "l_discount": 0.03d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-12-28", "l_commitdate": "1993-12-26", "l_receiptdate": "1994-01-23", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": ". fluffily final dolphins use furiously al" }, { "l_orderkey": 4674i32, "l_partkey": 189i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 35.0d, "l_extendedprice": 38121.3d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-08-02", "l_commitdate": "1994-06-04", "l_receiptdate": "1994-08-21", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "le quickly after the express sent" }, { "l_orderkey": 4803i32, "l_partkey": 189i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 21.0d, "l_extendedprice": 22872.78d, "l_discount": 0.03d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-25", "l_commitdate": "1996-03-15", "l_receiptdate": "1996-06-09", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": " silent packages use. b" }, { "l_orderkey": 4805i32, "l_partkey": 189i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 45.0d, "l_extendedprice": 49013.1d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-06-16", "l_commitdate": "1992-06-08", "l_receiptdate": "1992-07-03", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "the furiously sly t" }, { "l_orderkey": 5413i32, "l_partkey": 189i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 5.0d, "l_extendedprice": 5445.9d, "l_discount": 0.1d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-11-28", "l_commitdate": "1997-11-24", "l_receiptdate": "1997-12-05", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "tes are al" }, { "l_orderkey": 5542i32, "l_partkey": 189i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 6.0d, "l_extendedprice": 6535.08d, "l_discount": 0.03d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-14", "l_commitdate": "1996-05-28", "l_receiptdate": "1996-07-11", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": " foxes doubt. theodolites ca" } ] }
+{ "partkey": 190i32, "lines": [ { "l_orderkey": 131i32, "l_partkey": 190i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 4.0d, "l_extendedprice": 4360.76d, "l_discount": 0.04d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-09-20", "l_commitdate": "1994-08-30", "l_receiptdate": "1994-09-23", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": " are carefully slyly i" }, { "l_orderkey": 162i32, "l_partkey": 190i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 2.0d, "l_extendedprice": 2180.38d, "l_discount": 0.02d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-02", "l_commitdate": "1995-06-17", "l_receiptdate": "1995-09-08", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "es! final somas integrate" }, { "l_orderkey": 224i32, "l_partkey": 190i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 41.0d, "l_extendedprice": 44697.79d, "l_discount": 0.07d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-09-01", "l_commitdate": "1994-09-15", "l_receiptdate": "1994-09-02", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "after the furiou" }, { "l_orderkey": 358i32, "l_partkey": 190i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 32.0d, "l_extendedprice": 34886.08d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-10-18", "l_commitdate": "1993-12-12", "l_receiptdate": "1993-10-31", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "y final foxes sleep blithely sl" }, { "l_orderkey": 389i32, "l_partkey": 190i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 2.0d, "l_extendedprice": 2180.38d, "l_discount": 0.09d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-04-13", "l_commitdate": "1994-04-10", "l_receiptdate": "1994-04-25", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "fts. courts eat blithely even dependenc" }, { "l_orderkey": 610i32, "l_partkey": 190i32, "l_suppkey": 1i32, "l_linenumber": 7i32, "l_quantity": 27.0d, "l_extendedprice": 29435.13d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-02", "l_commitdate": "1995-09-19", "l_receiptdate": "1995-09-15", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": " ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle. blithe ironic pinto beans haggle" }, { "l_orderkey": 643i32, "l_partkey": 190i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 47.0d, "l_extendedprice": 51238.93d, "l_discount": 0.1d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-04-05", "l_commitdate": "1995-06-14", "l_receiptdate": "1995-04-26", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "y against " }, { "l_orderkey": 672i32, "l_partkey": 190i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 9.0d, "l_extendedprice": 9811.71d, "l_discount": 0.03d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-06-25", "l_commitdate": "1994-06-06", "l_receiptdate": "1994-07-19", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "haggle carefully carefully reg" }, { "l_orderkey": 704i32, "l_partkey": 190i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 40.0d, "l_extendedprice": 43607.6d, "l_discount": 0.05d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-30", "l_commitdate": "1997-01-10", "l_receiptdate": "1997-02-20", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "ggle quickly. r" }, { "l_orderkey": 871i32, "l_partkey": 190i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 29.0d, "l_extendedprice": 31615.51d, "l_discount": 0.06d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-16", "l_commitdate": "1996-01-27", "l_receiptdate": "1995-12-16", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "ests are carefu" }, { "l_orderkey": 1059i32, "l_partkey": 190i32, "l_suppkey": 1i32, "l_linenumber": 6i32, "l_quantity": 50.0d, "l_extendedprice": 54509.5d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-06-15", "l_commitdate": "1994-05-11", "l_receiptdate": "1994-06-29", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "s impress furiously about" }, { "l_orderkey": 1185i32, "l_partkey": 190i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 12.0d, "l_extendedprice": 13082.28d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-10-12", "l_commitdate": "1992-09-26", "l_receiptdate": "1992-11-11", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "instructions. daringly pend" }, { "l_orderkey": 1344i32, "l_partkey": 190i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 29.0d, "l_extendedprice": 31615.51d, "l_discount": 0.09d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-07-17", "l_commitdate": "1992-06-07", "l_receiptdate": "1992-07-21", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "ffily quiet foxes wake blithely. slyly " }, { "l_orderkey": 1510i32, "l_partkey": 190i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 36.0d, "l_extendedprice": 39246.84d, "l_discount": 0.07d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-02", "l_commitdate": "1996-11-23", "l_receiptdate": "1996-10-05", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "old deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefullyold deposits along the carefully" }, { "l_orderkey": 1607i32, "l_partkey": 190i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 2.0d, "l_extendedprice": 2180.38d, "l_discount": 0.02d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-11", "l_commitdate": "1996-02-15", "l_receiptdate": "1996-01-19", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "packages haggle. regular requests boost s" }, { "l_orderkey": 1856i32, "l_partkey": 190i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 14.0d, "l_extendedprice": 15262.66d, "l_discount": 0.01d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-04-14", "l_commitdate": "1992-05-02", "l_receiptdate": "1992-05-11", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "ans are even requests. deposits caj" }, { "l_orderkey": 2182i32, "l_partkey": 190i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 3.0d, "l_extendedprice": 3270.57d, "l_discount": 0.05d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-04-20", "l_commitdate": "1994-07-04", "l_receiptdate": "1994-04-24", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "y bold theodolites wi" }, { "l_orderkey": 2437i32, "l_partkey": 190i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 26.0d, "l_extendedprice": 28344.94d, "l_discount": 0.0d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-06-25", "l_commitdate": "1993-05-22", "l_receiptdate": "1993-07-07", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "lyly regular accounts." }, { "l_orderkey": 2885i32, "l_partkey": 190i32, "l_suppkey": 1i32, "l_linenumber": 6i32, "l_quantity": 5.0d, "l_extendedprice": 5450.95d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-01-06", "l_commitdate": "1992-11-13", "l_receiptdate": "1993-02-05", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "s. slyly express th" }, { "l_orderkey": 3334i32, "l_partkey": 190i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 7.0d, "l_extendedprice": 7631.33d, "l_discount": 0.09d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-04-28", "l_commitdate": "1996-04-08", "l_receiptdate": "1996-05-25", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "nts sublate slyly express pack" }, { "l_orderkey": 3622i32, "l_partkey": 190i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 46.0d, "l_extendedprice": 50148.74d, "l_discount": 0.07d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-18", "l_commitdate": "1996-01-23", "l_receiptdate": "1996-01-12", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "sits wake. blithe" }, { "l_orderkey": 3780i32, "l_partkey": 190i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 40.0d, "l_extendedprice": 43607.6d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-06", "l_commitdate": "1996-05-29", "l_receiptdate": "1996-07-01", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "gular deposits-- furiously regular " }, { "l_orderkey": 4034i32, "l_partkey": 190i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 48.0d, "l_extendedprice": 52329.12d, "l_discount": 0.03d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-03-01", "l_commitdate": "1994-01-16", "l_receiptdate": "1994-03-16", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": " blithely regular requests play carefull" }, { "l_orderkey": 4327i32, "l_partkey": 190i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 39.0d, "l_extendedprice": 42517.41d, "l_discount": 0.01d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-06-23", "l_commitdate": "1995-04-18", "l_receiptdate": "1995-07-13", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "kages against the blit" }, { "l_orderkey": 4421i32, "l_partkey": 190i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 32.0d, "l_extendedprice": 34886.08d, "l_discount": 0.06d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-28", "l_commitdate": "1997-06-14", "l_receiptdate": "1997-08-13", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "uickly final pinto beans impress. bold " }, { "l_orderkey": 4481i32, "l_partkey": 190i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 27.0d, "l_extendedprice": 29435.13d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-04-06", "l_commitdate": "1996-05-17", "l_receiptdate": "1996-04-12", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "ackages haggle even, " }, { "l_orderkey": 4484i32, "l_partkey": 190i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 38.0d, "l_extendedprice": 41427.22d, "l_discount": 0.06d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-07", "l_commitdate": "1997-01-31", "l_receiptdate": "1997-04-01", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": ". even requests un" }, { "l_orderkey": 4487i32, "l_partkey": 190i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 1.0d, "l_extendedprice": 1090.19d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-05-11", "l_commitdate": "1993-05-23", "l_receiptdate": "1993-05-17", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "ithely final asym" }, { "l_orderkey": 4641i32, "l_partkey": 190i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 45.0d, "l_extendedprice": 49058.55d, "l_discount": 0.07d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-05-11", "l_commitdate": "1993-04-19", "l_receiptdate": "1993-05-21", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": " about the close " }, { "l_orderkey": 4679i32, "l_partkey": 190i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 7.0d, "l_extendedprice": 7631.33d, "l_discount": 0.1d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-05-11", "l_commitdate": "1993-04-11", "l_receiptdate": "1993-05-16", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "kages. bold, regular packa" }, { "l_orderkey": 4773i32, "l_partkey": 190i32, "l_suppkey": 1i32, "l_linenumber": 6i32, "l_quantity": 11.0d, "l_extendedprice": 11992.09d, "l_discount": 0.1d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-02", "l_commitdate": "1996-01-29", "l_receiptdate": "1996-01-24", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "en accounts. slyly b" }, { "l_orderkey": 4807i32, "l_partkey": 190i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 32.0d, "l_extendedprice": 34886.08d, "l_discount": 0.05d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-04", "l_commitdate": "1997-03-21", "l_receiptdate": "1997-04-16", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "efully even dolphins slee" }, { "l_orderkey": 4930i32, "l_partkey": 190i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 38.0d, "l_extendedprice": 41427.22d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-06-06", "l_commitdate": "1994-06-18", "l_receiptdate": "1994-07-03", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "bold requests sleep never" }, { "l_orderkey": 5154i32, "l_partkey": 190i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 11.0d, "l_extendedprice": 11992.09d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-06", "l_commitdate": "1997-06-30", "l_receiptdate": "1997-09-04", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "luffily bold foxes. final" }, { "l_orderkey": 5413i32, "l_partkey": 190i32, "l_suppkey": 1i32, "l_linenumber": 6i32, "l_quantity": 32.0d, "l_extendedprice": 34886.08d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-10-28", "l_commitdate": "1998-01-03", "l_receiptdate": "1997-11-10", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "refully special package" }, { "l_orderkey": 5446i32, "l_partkey": 190i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 27.0d, "l_extendedprice": 29435.13d, "l_discount": 0.05d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-07-21", "l_commitdate": "1994-08-25", "l_receiptdate": "1994-08-17", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "ously across the quic" }, { "l_orderkey": 5763i32, "l_partkey": 190i32, "l_suppkey": 1i32, "l_linenumber": 6i32, "l_quantity": 9.0d, "l_extendedprice": 9811.71d, "l_discount": 0.08d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-09-24", "l_commitdate": "1998-09-01", "l_receiptdate": "1998-10-02", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": " deposits. instru" }, { "l_orderkey": 5926i32, "l_partkey": 190i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 23.0d, "l_extendedprice": 25074.37d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-07-23", "l_commitdate": "1994-08-10", "l_receiptdate": "1994-07-27", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "ickly special packages among " }, { "l_orderkey": 5984i32, "l_partkey": 190i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 35.0d, "l_extendedprice": 38156.65d, "l_discount": 0.0d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-08-25", "l_commitdate": "1994-08-05", "l_receiptdate": "1994-08-31", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "le fluffily regula" } ] }
+{ "partkey": 191i32, "lines": [ { "l_orderkey": 163i32, "l_partkey": 191i32, "l_suppkey": 4i32, "l_linenumber": 6i32, "l_quantity": 20.0d, "l_extendedprice": 21823.8d, "l_discount": 0.0d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-27", "l_commitdate": "1997-11-15", "l_receiptdate": "1997-10-07", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "tructions integrate b" }, { "l_orderkey": 358i32, "l_partkey": 191i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 41.0d, "l_extendedprice": 44738.79d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-11-18", "l_commitdate": "1993-11-14", "l_receiptdate": "1993-11-28", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "ely frets. furious deposits sleep " }, { "l_orderkey": 550i32, "l_partkey": 191i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 31.0d, "l_extendedprice": 33826.89d, "l_discount": 0.04d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-24", "l_commitdate": "1995-09-27", "l_receiptdate": "1995-11-04", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "thely silent packages. unusual" }, { "l_orderkey": 993i32, "l_partkey": 191i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 40.0d, "l_extendedprice": 43647.6d, "l_discount": 0.01d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-16", "l_commitdate": "1995-11-01", "l_receiptdate": "1995-12-05", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "gle above the furiously " }, { "l_orderkey": 1031i32, "l_partkey": 191i32, "l_suppkey": 5i32, "l_linenumber": 5i32, "l_quantity": 44.0d, "l_extendedprice": 48012.36d, "l_discount": 0.01d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-11-20", "l_commitdate": "1994-11-24", "l_receiptdate": "1994-12-11", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "re slyly above the furio" }, { "l_orderkey": 1506i32, "l_partkey": 191i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 28.0d, "l_extendedprice": 30553.32d, "l_discount": 0.1d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-09-22", "l_commitdate": "1992-11-19", "l_receiptdate": "1992-10-09", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": " unwind carefully: theodolit" }, { "l_orderkey": 1574i32, "l_partkey": 191i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 50.0d, "l_extendedprice": 54559.5d, "l_discount": 0.0d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-14", "l_commitdate": "1997-02-14", "l_receiptdate": "1996-12-16", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "le regular, regular foxes. blithely e" }, { "l_orderkey": 1574i32, "l_partkey": 191i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 6.0d, "l_extendedprice": 6547.14d, "l_discount": 0.03d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-24", "l_commitdate": "1997-02-03", "l_receiptdate": "1997-03-01", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "e silent, final packages. speci" }, { "l_orderkey": 1632i32, "l_partkey": 191i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 47.0d, "l_extendedprice": 51285.93d, "l_discount": 0.08d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-25", "l_commitdate": "1997-02-09", "l_receiptdate": "1997-02-19", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "g to the closely special no" }, { "l_orderkey": 1668i32, "l_partkey": 191i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 9.0d, "l_extendedprice": 9820.71d, "l_discount": 0.05d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-10-17", "l_commitdate": "1997-09-05", "l_receiptdate": "1997-11-01", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "wake furiously even instructions. sil" }, { "l_orderkey": 1792i32, "l_partkey": 191i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 45.0d, "l_extendedprice": 49103.55d, "l_discount": 0.0d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-02-27", "l_commitdate": "1993-12-24", "l_receiptdate": "1994-03-07", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "ests are. ironic, regular asy" }, { "l_orderkey": 1859i32, "l_partkey": 191i32, "l_suppkey": 2i32, "l_linenumber": 4i32, "l_quantity": 21.0d, "l_extendedprice": 22914.99d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-06", "l_commitdate": "1997-05-29", "l_receiptdate": "1997-08-26", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "lar packages wake quickly exp" }, { "l_orderkey": 2176i32, "l_partkey": 191i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 38.0d, "l_extendedprice": 41465.22d, "l_discount": 0.02d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-11-29", "l_commitdate": "1993-01-14", "l_receiptdate": "1992-12-22", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "lithely ironic pinto beans. furious" }, { "l_orderkey": 2373i32, "l_partkey": 191i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 17.0d, "l_extendedprice": 18550.23d, "l_discount": 0.02d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-03-29", "l_commitdate": "1994-05-19", "l_receiptdate": "1994-04-20", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "auternes. blithely even pinto bea" }, { "l_orderkey": 2531i32, "l_partkey": 191i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 36.0d, "l_extendedprice": 39282.84d, "l_discount": 0.08d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-11", "l_commitdate": "1996-07-26", "l_receiptdate": "1996-06-27", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "y ironic, bold packages. blithely e" }, { "l_orderkey": 3265i32, "l_partkey": 191i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 28.0d, "l_extendedprice": 30553.32d, "l_discount": 0.09d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-10-22", "l_commitdate": "1992-08-23", "l_receiptdate": "1992-10-25", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "n requests. quickly final dinos" }, { "l_orderkey": 3298i32, "l_partkey": 191i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 1.0d, "l_extendedprice": 1091.19d, "l_discount": 0.1d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-31", "l_commitdate": "1996-05-23", "l_receiptdate": "1996-08-24", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "refully regular requ" }, { "l_orderkey": 3361i32, "l_partkey": 191i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 31.0d, "l_extendedprice": 33826.89d, "l_discount": 0.06d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-08-29", "l_commitdate": "1992-10-13", "l_receiptdate": "1992-09-08", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "ts. pending, regular accounts sleep fur" }, { "l_orderkey": 3363i32, "l_partkey": 191i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 21.0d, "l_extendedprice": 22914.99d, "l_discount": 0.08d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-10", "l_commitdate": "1995-10-28", "l_receiptdate": "1995-12-28", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "he regular, brave deposits. f" }, { "l_orderkey": 3590i32, "l_partkey": 191i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 37.0d, "l_extendedprice": 40374.03d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-01", "l_commitdate": "1995-06-29", "l_receiptdate": "1995-09-10", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "ccounts above the silent waters thrash f" }, { "l_orderkey": 3809i32, "l_partkey": 191i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 17.0d, "l_extendedprice": 18550.23d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-14", "l_commitdate": "1996-07-05", "l_receiptdate": "1996-09-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "es detect furiously sil" }, { "l_orderkey": 3909i32, "l_partkey": 191i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 46.0d, "l_extendedprice": 50194.74d, "l_discount": 0.03d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-10-08", "l_commitdate": "1998-10-15", "l_receiptdate": "1998-10-24", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "the blithely unusual ideas" }, { "l_orderkey": 3971i32, "l_partkey": 191i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 2.0d, "l_extendedprice": 2182.38d, "l_discount": 0.04d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-15", "l_commitdate": "1996-08-12", "l_receiptdate": "1996-07-26", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "haggle abou" }, { "l_orderkey": 4421i32, "l_partkey": 191i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 32.0d, "l_extendedprice": 34918.08d, "l_discount": 0.06d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-09", "l_commitdate": "1997-06-03", "l_receiptdate": "1997-07-25", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "ar ideas eat among the furiousl" }, { "l_orderkey": 4485i32, "l_partkey": 191i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 1.0d, "l_extendedprice": 1091.19d, "l_discount": 0.03d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-12-04", "l_commitdate": "1995-02-07", "l_receiptdate": "1994-12-09", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "play according to the ironic, ironic" }, { "l_orderkey": 4519i32, "l_partkey": 191i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 37.0d, "l_extendedprice": 40374.03d, "l_discount": 0.06d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-07-22", "l_commitdate": "1993-06-16", "l_receiptdate": "1993-08-19", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "ly slyly furious depth" }, { "l_orderkey": 4646i32, "l_partkey": 191i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 24.0d, "l_extendedprice": 26188.56d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-18", "l_commitdate": "1996-08-09", "l_receiptdate": "1996-09-21", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "ic platelets lose carefully. blithely unu" }, { "l_orderkey": 4708i32, "l_partkey": 191i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 18.0d, "l_extendedprice": 19641.42d, "l_discount": 0.02d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-11-11", "l_commitdate": "1994-11-15", "l_receiptdate": "1994-11-26", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "special, eve" }, { "l_orderkey": 4737i32, "l_partkey": 191i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 37.0d, "l_extendedprice": 40374.03d, "l_discount": 0.03d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-05-17", "l_commitdate": "1993-04-10", "l_receiptdate": "1993-05-30", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "s. fluffily regular " }, { "l_orderkey": 4868i32, "l_partkey": 191i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 49.0d, "l_extendedprice": 53468.31d, "l_discount": 0.09d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-23", "l_commitdate": "1997-05-07", "l_receiptdate": "1997-04-26", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "ys engage. th" }, { "l_orderkey": 5350i32, "l_partkey": 191i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 44.0d, "l_extendedprice": 48012.36d, "l_discount": 0.04d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-10-30", "l_commitdate": "1993-11-23", "l_receiptdate": "1993-11-25", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "p above the ironic, pending dep" }, { "l_orderkey": 5443i32, "l_partkey": 191i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 6.0d, "l_extendedprice": 6547.14d, "l_discount": 0.05d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-17", "l_commitdate": "1996-12-03", "l_receiptdate": "1996-11-30", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "p fluffily foxe" }, { "l_orderkey": 5669i32, "l_partkey": 191i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 7.0d, "l_extendedprice": 7638.33d, "l_discount": 0.06d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-19", "l_commitdate": "1996-07-07", "l_receiptdate": "1996-07-11", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "yly regular requests lose blithely. careful" }, { "l_orderkey": 5699i32, "l_partkey": 191i32, "l_suppkey": 5i32, "l_linenumber": 6i32, "l_quantity": 30.0d, "l_extendedprice": 32735.7d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-11-13", "l_commitdate": "1992-10-01", "l_receiptdate": "1992-12-11", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": " the carefully final " }, { "l_orderkey": 5767i32, "l_partkey": 191i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 42.0d, "l_extendedprice": 45829.98d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-07-31", "l_commitdate": "1992-06-09", "l_receiptdate": "1992-08-09", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": " blithe deposi" }, { "l_orderkey": 5829i32, "l_partkey": 191i32, "l_suppkey": 5i32, "l_linenumber": 5i32, "l_quantity": 49.0d, "l_extendedprice": 53468.31d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-31", "l_commitdate": "1997-03-13", "l_receiptdate": "1997-02-18", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": " ironic excuses use fluf" }, { "l_orderkey": 5831i32, "l_partkey": 191i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 2.0d, "l_extendedprice": 2182.38d, "l_discount": 0.1d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-09", "l_commitdate": "1997-01-20", "l_receiptdate": "1997-03-07", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "quickly silent req" }, { "l_orderkey": 5859i32, "l_partkey": 191i32, "l_suppkey": 5i32, "l_linenumber": 7i32, "l_quantity": 27.0d, "l_extendedprice": 29462.13d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-30", "l_commitdate": "1997-07-08", "l_receiptdate": "1997-08-08", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": " across th" }, { "l_orderkey": 5861i32, "l_partkey": 191i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 32.0d, "l_extendedprice": 34918.08d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-27", "l_commitdate": "1997-05-29", "l_receiptdate": "1997-05-28", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "nt asymptotes. carefully express request" }, { "l_orderkey": 5952i32, "l_partkey": 191i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 11.0d, "l_extendedprice": 12003.09d, "l_discount": 0.1d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-13", "l_commitdate": "1997-06-04", "l_receiptdate": "1997-05-27", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "y nag blithely aga" } ] }
+{ "partkey": 192i32, "lines": [ { "l_orderkey": 262i32, "l_partkey": 192i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 39.0d, "l_extendedprice": 42595.41d, "l_discount": 0.01d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-15", "l_commitdate": "1996-02-18", "l_receiptdate": "1996-01-28", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "usual, regular requests" }, { "l_orderkey": 679i32, "l_partkey": 192i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 9.0d, "l_extendedprice": 9829.71d, "l_discount": 0.09d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-20", "l_commitdate": "1996-01-27", "l_receiptdate": "1996-01-07", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "leep slyly. entici" }, { "l_orderkey": 742i32, "l_partkey": 192i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 16.0d, "l_extendedprice": 17475.04d, "l_discount": 0.01d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-01-15", "l_commitdate": "1995-02-25", "l_receiptdate": "1995-01-24", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "eodolites haggle carefully regul" }, { "l_orderkey": 742i32, "l_partkey": 192i32, "l_suppkey": 6i32, "l_linenumber": 6i32, "l_quantity": 49.0d, "l_extendedprice": 53517.31d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-01-13", "l_commitdate": "1995-02-13", "l_receiptdate": "1995-01-26", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": " carefully bold foxes sle" }, { "l_orderkey": 743i32, "l_partkey": 192i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 21.0d, "l_extendedprice": 22935.99d, "l_discount": 0.01d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-26", "l_commitdate": "1996-11-05", "l_receiptdate": "1996-11-11", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "d requests. packages afte" }, { "l_orderkey": 1153i32, "l_partkey": 192i32, "l_suppkey": 4i32, "l_linenumber": 7i32, "l_quantity": 5.0d, "l_extendedprice": 5460.95d, "l_discount": 0.02d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-03", "l_commitdate": "1996-06-12", "l_receiptdate": "1996-05-28", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "special excuses promi" }, { "l_orderkey": 1255i32, "l_partkey": 192i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 12.0d, "l_extendedprice": 13106.28d, "l_discount": 0.0d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-08-17", "l_commitdate": "1994-06-29", "l_receiptdate": "1994-09-04", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": " regular, express accounts are " }, { "l_orderkey": 1283i32, "l_partkey": 192i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 40.0d, "l_extendedprice": 43687.6d, "l_discount": 0.07d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-09", "l_commitdate": "1996-11-23", "l_receiptdate": "1996-11-28", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "riously. even, ironic instructions after" }, { "l_orderkey": 1445i32, "l_partkey": 192i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 7.0d, "l_extendedprice": 7645.33d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-04-25", "l_commitdate": "1995-02-25", "l_receiptdate": "1995-05-10", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "structions: slyly regular re" }, { "l_orderkey": 1538i32, "l_partkey": 192i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 27.0d, "l_extendedprice": 29489.13d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-19", "l_commitdate": "1995-08-03", "l_receiptdate": "1995-09-24", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "ngly even packag" }, { "l_orderkey": 2339i32, "l_partkey": 192i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 22.0d, "l_extendedprice": 24028.18d, "l_discount": 0.03d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-01-06", "l_commitdate": "1994-03-06", "l_receiptdate": "1994-01-10", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": " furiously above " }, { "l_orderkey": 2500i32, "l_partkey": 192i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 40.0d, "l_extendedprice": 43687.6d, "l_discount": 0.0d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-09-02", "l_commitdate": "1992-09-30", "l_receiptdate": "1992-09-06", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "efully unusual dolphins s" }, { "l_orderkey": 2593i32, "l_partkey": 192i32, "l_suppkey": 5i32, "l_linenumber": 7i32, "l_quantity": 11.0d, "l_extendedprice": 12014.09d, "l_discount": 0.0d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-11-01", "l_commitdate": "1993-11-19", "l_receiptdate": "1993-11-28", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "express packages sleep bold re" }, { "l_orderkey": 3169i32, "l_partkey": 192i32, "l_suppkey": 4i32, "l_linenumber": 1i32, "l_quantity": 12.0d, "l_extendedprice": 13106.28d, "l_discount": 0.01d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-01-05", "l_commitdate": "1994-03-18", "l_receiptdate": "1994-01-21", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": " regular d" }, { "l_orderkey": 3174i32, "l_partkey": 192i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 13.0d, "l_extendedprice": 14198.47d, "l_discount": 0.08d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-11", "l_commitdate": "1996-01-26", "l_receiptdate": "1996-02-01", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "leep quickly? slyly special platelets" }, { "l_orderkey": 3523i32, "l_partkey": 192i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 36.0d, "l_extendedprice": 39318.84d, "l_discount": 0.06d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-26", "l_commitdate": "1998-06-04", "l_receiptdate": "1998-06-25", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "accounts. fluffily regu" }, { "l_orderkey": 3554i32, "l_partkey": 192i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 41.0d, "l_extendedprice": 44779.79d, "l_discount": 0.02d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-13", "l_commitdate": "1995-08-28", "l_receiptdate": "1995-07-27", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "ent dependencies. sly" }, { "l_orderkey": 3685i32, "l_partkey": 192i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 39.0d, "l_extendedprice": 42595.41d, "l_discount": 0.1d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-02-19", "l_commitdate": "1992-04-06", "l_receiptdate": "1992-03-02", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "ic courts nag carefully after the " }, { "l_orderkey": 4291i32, "l_partkey": 192i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 3.0d, "l_extendedprice": 3276.57d, "l_discount": 0.08d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-03-17", "l_commitdate": "1994-02-21", "l_receiptdate": "1994-03-27", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "tes sleep slyly above the quickly sl" }, { "l_orderkey": 4454i32, "l_partkey": 192i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 45.0d, "l_extendedprice": 49148.55d, "l_discount": 0.07d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-03-29", "l_commitdate": "1994-03-26", "l_receiptdate": "1994-04-04", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "ests promise. packages print fur" }, { "l_orderkey": 4513i32, "l_partkey": 192i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 13.0d, "l_extendedprice": 14198.47d, "l_discount": 0.08d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-04-12", "l_commitdate": "1996-05-19", "l_receiptdate": "1996-04-25", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "l, final excuses detect furi" }, { "l_orderkey": 4582i32, "l_partkey": 192i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 17.0d, "l_extendedprice": 18567.23d, "l_discount": 0.09d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-17", "l_commitdate": "1996-08-26", "l_receiptdate": "1996-08-20", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "ng packages. depo" }, { "l_orderkey": 5250i32, "l_partkey": 192i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 27.0d, "l_extendedprice": 29489.13d, "l_discount": 0.1d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-24", "l_commitdate": "1995-09-03", "l_receiptdate": "1995-11-18", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "l forges are. furiously unusual pin" }, { "l_orderkey": 5254i32, "l_partkey": 192i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 32.0d, "l_extendedprice": 34950.08d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-08-10", "l_commitdate": "1992-09-21", "l_receiptdate": "1992-08-16", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "ts impress closely furi" }, { "l_orderkey": 5345i32, "l_partkey": 192i32, "l_suppkey": 5i32, "l_linenumber": 3i32, "l_quantity": 46.0d, "l_extendedprice": 50240.74d, "l_discount": 0.06d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-10-06", "l_commitdate": "1997-09-27", "l_receiptdate": "1997-10-18", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "slyly special deposits. fin" }, { "l_orderkey": 5346i32, "l_partkey": 192i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 13.0d, "l_extendedprice": 14198.47d, "l_discount": 0.04d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-02-03", "l_commitdate": "1994-02-05", "l_receiptdate": "1994-02-09", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "y. fluffily bold accounts grow. furio" }, { "l_orderkey": 5381i32, "l_partkey": 192i32, "l_suppkey": 3i32, "l_linenumber": 3i32, "l_quantity": 13.0d, "l_extendedprice": 14198.47d, "l_discount": 0.08d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-05-09", "l_commitdate": "1993-04-26", "l_receiptdate": "1993-05-25", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "s after the f" }, { "l_orderkey": 5731i32, "l_partkey": 192i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 13.0d, "l_extendedprice": 14198.47d, "l_discount": 0.02d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-30", "l_commitdate": "1997-06-23", "l_receiptdate": "1997-08-13", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "ngside of the quickly regular depos" }, { "l_orderkey": 5857i32, "l_partkey": 192i32, "l_suppkey": 4i32, "l_linenumber": 5i32, "l_quantity": 14.0d, "l_extendedprice": 15290.66d, "l_discount": 0.07d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-10", "l_commitdate": "1998-01-06", "l_receiptdate": "1998-01-04", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "ffily pendin" } ] }
+{ "partkey": 193i32, "lines": [ { "l_orderkey": 163i32, "l_partkey": 193i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 5.0d, "l_extendedprice": 5465.95d, "l_discount": 0.02d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-11-17", "l_commitdate": "1997-10-09", "l_receiptdate": "1997-12-05", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": " must belie" }, { "l_orderkey": 259i32, "l_partkey": 193i32, "l_suppkey": 6i32, "l_linenumber": 5i32, "l_quantity": 6.0d, "l_extendedprice": 6559.14d, "l_discount": 0.0d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-12-05", "l_commitdate": "1993-12-22", "l_receiptdate": "1993-12-21", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": " requests sleep" }, { "l_orderkey": 320i32, "l_partkey": 193i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 13.0d, "l_extendedprice": 14211.47d, "l_discount": 0.03d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-16", "l_commitdate": "1997-12-26", "l_receiptdate": "1997-12-17", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "he furiously regular pinto beans. car" }, { "l_orderkey": 710i32, "l_partkey": 193i32, "l_suppkey": 4i32, "l_linenumber": 2i32, "l_quantity": 38.0d, "l_extendedprice": 41541.22d, "l_discount": 0.07d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-04-18", "l_commitdate": "1993-03-12", "l_receiptdate": "1993-05-15", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "sts boost fluffily aft" }, { "l_orderkey": 898i32, "l_partkey": 193i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 36.0d, "l_extendedprice": 39354.84d, "l_discount": 0.04d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-08-04", "l_commitdate": "1993-07-25", "l_receiptdate": "1993-08-23", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": " after the carefully " }, { "l_orderkey": 1057i32, "l_partkey": 193i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 29.0d, "l_extendedprice": 31702.51d, "l_discount": 0.1d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-05-05", "l_commitdate": "1992-05-05", "l_receiptdate": "1992-06-03", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "es wake according to the q" }, { "l_orderkey": 1254i32, "l_partkey": 193i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 6.0d, "l_extendedprice": 6559.14d, "l_discount": 0.08d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-02-02", "l_commitdate": "1996-03-21", "l_receiptdate": "1996-02-29", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "lithely even deposits eat!" }, { "l_orderkey": 1383i32, "l_partkey": 193i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 14.0d, "l_extendedprice": 15304.66d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-08-25", "l_commitdate": "1993-07-09", "l_receiptdate": "1993-09-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "ole carefully silent requests. car" }, { "l_orderkey": 1440i32, "l_partkey": 193i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 3.0d, "l_extendedprice": 3279.57d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-30", "l_commitdate": "1995-10-17", "l_receiptdate": "1995-11-08", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "instructions boost. fluffily regul" }, { "l_orderkey": 1696i32, "l_partkey": 193i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 21.0d, "l_extendedprice": 22956.99d, "l_discount": 0.05d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-04", "l_commitdate": "1998-02-18", "l_receiptdate": "1998-05-07", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "y players sleep along the final, pending " }, { "l_orderkey": 1923i32, "l_partkey": 193i32, "l_suppkey": 5i32, "l_linenumber": 4i32, "l_quantity": 49.0d, "l_extendedprice": 53566.31d, "l_discount": 0.06d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-21", "l_commitdate": "1997-08-08", "l_receiptdate": "1997-07-26", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "de of the carefully expre" }, { "l_orderkey": 2180i32, "l_partkey": 193i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 39.0d, "l_extendedprice": 42634.41d, "l_discount": 0.01d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-03", "l_commitdate": "1996-10-29", "l_receiptdate": "1997-01-25", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "ep furiously furiously final request" }, { "l_orderkey": 2244i32, "l_partkey": 193i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 16.0d, "l_extendedprice": 17491.04d, "l_discount": 0.01d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-02-12", "l_commitdate": "1993-03-09", "l_receiptdate": "1993-02-28", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "rate around the reques" }, { "l_orderkey": 2336i32, "l_partkey": 193i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 20.0d, "l_extendedprice": 21863.8d, "l_discount": 0.01d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-12", "l_commitdate": "1996-02-25", "l_receiptdate": "1996-03-18", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "across the fi" }, { "l_orderkey": 2340i32, "l_partkey": 193i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 21.0d, "l_extendedprice": 22956.99d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-17", "l_commitdate": "1996-03-04", "l_receiptdate": "1996-01-29", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": " asymptotes. unusual theo" }, { "l_orderkey": 2403i32, "l_partkey": 193i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 27.0d, "l_extendedprice": 29516.13d, "l_discount": 0.05d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-27", "l_commitdate": "1998-07-08", "l_receiptdate": "1998-08-03", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "deposits sleep slyly special theodolit" }, { "l_orderkey": 3937i32, "l_partkey": 193i32, "l_suppkey": 6i32, "l_linenumber": 6i32, "l_quantity": 6.0d, "l_extendedprice": 6559.14d, "l_discount": 0.0d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-24", "l_commitdate": "1998-02-13", "l_receiptdate": "1998-01-27", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "into beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside ointo beans. slyly silent orbits alongside oin" }, { "l_orderkey": 4295i32, "l_partkey": 193i32, "l_suppkey": 4i32, "l_linenumber": 3i32, "l_quantity": 3.0d, "l_extendedprice": 3279.57d, "l_discount": 0.04d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-06-04", "l_commitdate": "1996-04-24", "l_receiptdate": "1996-06-24", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "telets cajole bravely" }, { "l_orderkey": 4359i32, "l_partkey": 193i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 32.0d, "l_extendedprice": 34982.08d, "l_discount": 0.1d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-06-18", "l_commitdate": "1993-04-04", "l_receiptdate": "1993-07-18", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "olites nag quietly caref" }, { "l_orderkey": 4837i32, "l_partkey": 193i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 16.0d, "l_extendedprice": 17491.04d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-19", "l_commitdate": "1998-06-18", "l_receiptdate": "1998-08-26", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "counts cajole slyly furiou" }, { "l_orderkey": 4964i32, "l_partkey": 193i32, "l_suppkey": 7i32, "l_linenumber": 6i32, "l_quantity": 22.0d, "l_extendedprice": 24050.18d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-11", "l_commitdate": "1997-10-06", "l_receiptdate": "1997-09-29", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "equests doubt quickly. caref" }, { "l_orderkey": 5058i32, "l_partkey": 193i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 16.0d, "l_extendedprice": 17491.04d, "l_discount": 0.09d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-12", "l_commitdate": "1998-06-09", "l_receiptdate": "1998-07-15", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": " the special foxes " }, { "l_orderkey": 5285i32, "l_partkey": 193i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 31.0d, "l_extendedprice": 33888.89d, "l_discount": 0.08d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-04-17", "l_commitdate": "1994-04-05", "l_receiptdate": "1994-05-09", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "ubt. quickly blithe " }, { "l_orderkey": 5477i32, "l_partkey": 193i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 16.0d, "l_extendedprice": 17491.04d, "l_discount": 0.0d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-07", "l_commitdate": "1998-03-12", "l_receiptdate": "1998-04-06", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "regular, s" }, { "l_orderkey": 5666i32, "l_partkey": 193i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 39.0d, "l_extendedprice": 42634.41d, "l_discount": 0.0d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-05-13", "l_commitdate": "1994-04-02", "l_receiptdate": "1994-06-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "the even, final foxes. quickly iron" }, { "l_orderkey": 5795i32, "l_partkey": 193i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 34.0d, "l_extendedprice": 37168.46d, "l_discount": 0.09d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-08-21", "l_commitdate": "1992-07-30", "l_receiptdate": "1992-08-27", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "al instructions must affix along the ironic" }, { "l_orderkey": 5954i32, "l_partkey": 193i32, "l_suppkey": 5i32, "l_linenumber": 6i32, "l_quantity": 39.0d, "l_extendedprice": 42634.41d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-02-27", "l_commitdate": "1993-02-25", "l_receiptdate": "1993-03-29", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": " always regular dolphins. furiously p" } ] }
+{ "partkey": 194i32, "lines": [ { "l_orderkey": 354i32, "l_partkey": 194i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 24.0d, "l_extendedprice": 26260.56d, "l_discount": 0.01d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-08", "l_commitdate": "1996-05-17", "l_receiptdate": "1996-06-07", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "y silent requests. regular, even accounts" }, { "l_orderkey": 963i32, "l_partkey": 194i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 7.0d, "l_extendedprice": 7659.33d, "l_discount": 0.01d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-09-12", "l_commitdate": "1994-07-18", "l_receiptdate": "1994-09-17", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "s. slyly regular depe" }, { "l_orderkey": 1255i32, "l_partkey": 194i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 46.0d, "l_extendedprice": 50332.74d, "l_discount": 0.07d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-07-06", "l_commitdate": "1994-07-14", "l_receiptdate": "1994-08-05", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "ons nag qui" }, { "l_orderkey": 1378i32, "l_partkey": 194i32, "l_suppkey": 6i32, "l_linenumber": 6i32, "l_quantity": 29.0d, "l_extendedprice": 31731.51d, "l_discount": 0.05d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-04-15", "l_commitdate": "1996-04-23", "l_receiptdate": "1996-05-14", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "ual packages are furiously blith" }, { "l_orderkey": 1536i32, "l_partkey": 194i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 5.0d, "l_extendedprice": 5470.95d, "l_discount": 0.08d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-08", "l_commitdate": "1997-03-11", "l_receiptdate": "1997-03-02", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "requests sleep pe" }, { "l_orderkey": 1573i32, "l_partkey": 194i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 11.0d, "l_extendedprice": 12036.09d, "l_discount": 0.09d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-03-23", "l_commitdate": "1993-03-24", "l_receiptdate": "1993-04-12", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "nently pending" }, { "l_orderkey": 1954i32, "l_partkey": 194i32, "l_suppkey": 5i32, "l_linenumber": 7i32, "l_quantity": 49.0d, "l_extendedprice": 53615.31d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-04", "l_commitdate": "1997-08-29", "l_receiptdate": "1997-06-14", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "eans. final pinto beans sleep furiousl" }, { "l_orderkey": 2084i32, "l_partkey": 194i32, "l_suppkey": 6i32, "l_linenumber": 7i32, "l_quantity": 34.0d, "l_extendedprice": 37202.46d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-06-20", "l_commitdate": "1993-05-28", "l_receiptdate": "1993-06-25", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": " carefully ironic requests. fluffil" }, { "l_orderkey": 2214i32, "l_partkey": 194i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 50.0d, "l_extendedprice": 54709.5d, "l_discount": 0.0d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-06", "l_commitdate": "1998-06-16", "l_receiptdate": "1998-07-16", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "accounts. blith" }, { "l_orderkey": 2657i32, "l_partkey": 194i32, "l_suppkey": 7i32, "l_linenumber": 6i32, "l_quantity": 31.0d, "l_extendedprice": 33919.89d, "l_discount": 0.01d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-10", "l_commitdate": "1995-11-27", "l_receiptdate": "1995-12-06", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "re blithely " }, { "l_orderkey": 2917i32, "l_partkey": 194i32, "l_suppkey": 8i32, "l_linenumber": 6i32, "l_quantity": 7.0d, "l_extendedprice": 7659.33d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-21", "l_commitdate": "1998-03-03", "l_receiptdate": "1998-03-25", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "ly about the regular accounts. carefully pe" }, { "l_orderkey": 3073i32, "l_partkey": 194i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 16.0d, "l_extendedprice": 17507.04d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-03-02", "l_commitdate": "1994-03-23", "l_receiptdate": "1994-03-31", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "n requests. ironi" }, { "l_orderkey": 3174i32, "l_partkey": 194i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 4.0d, "l_extendedprice": 4376.76d, "l_discount": 0.01d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-17", "l_commitdate": "1996-01-08", "l_receiptdate": "1995-11-27", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "deas sleep thi" }, { "l_orderkey": 3586i32, "l_partkey": 194i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 2.0d, "l_extendedprice": 2188.38d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-02-10", "l_commitdate": "1994-01-07", "l_receiptdate": "1994-03-03", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "he even, unusual decoy" }, { "l_orderkey": 3590i32, "l_partkey": 194i32, "l_suppkey": 7i32, "l_linenumber": 7i32, "l_quantity": 44.0d, "l_extendedprice": 48144.36d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "F", "l_shipdate": "1995-06-07", "l_commitdate": "1995-06-15", "l_receiptdate": "1995-06-27", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "s sleep after the regular platelets. blit" }, { "l_orderkey": 3716i32, "l_partkey": 194i32, "l_suppkey": 5i32, "l_linenumber": 2i32, "l_quantity": 39.0d, "l_extendedprice": 42673.41d, "l_discount": 0.02d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-11-27", "l_commitdate": "1997-10-23", "l_receiptdate": "1997-12-24", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "even deposits." }, { "l_orderkey": 3842i32, "l_partkey": 194i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 28.0d, "l_extendedprice": 30637.32d, "l_discount": 0.0d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-06-20", "l_commitdate": "1992-05-22", "l_receiptdate": "1992-07-13", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "lly alongside of the" }, { "l_orderkey": 3942i32, "l_partkey": 194i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 5.0d, "l_extendedprice": 5470.95d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-09-27", "l_commitdate": "1993-09-24", "l_receiptdate": "1993-10-07", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": ". fluffily pending deposits above the flu" }, { "l_orderkey": 4195i32, "l_partkey": 194i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 19.0d, "l_extendedprice": 20789.61d, "l_discount": 0.01d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-09-06", "l_commitdate": "1993-08-13", "l_receiptdate": "1993-09-15", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "telets sleep even requests. final, even i" }, { "l_orderkey": 4355i32, "l_partkey": 194i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 14.0d, "l_extendedprice": 15318.66d, "l_discount": 0.04d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-08", "l_commitdate": "1997-01-22", "l_receiptdate": "1997-03-26", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "he furiously ironic accounts. quickly iro" }, { "l_orderkey": 4356i32, "l_partkey": 194i32, "l_suppkey": 5i32, "l_linenumber": 1i32, "l_quantity": 35.0d, "l_extendedprice": 38296.65d, "l_discount": 0.0d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-05-30", "l_commitdate": "1994-06-14", "l_receiptdate": "1994-06-08", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "arefully ironic " }, { "l_orderkey": 4642i32, "l_partkey": 194i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 11.0d, "l_extendedprice": 12036.09d, "l_discount": 0.04d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-05-23", "l_commitdate": "1995-04-26", "l_receiptdate": "1995-06-04", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "lithely express asympt" }, { "l_orderkey": 4803i32, "l_partkey": 194i32, "l_suppkey": 5i32, "l_linenumber": 6i32, "l_quantity": 19.0d, "l_extendedprice": 20789.61d, "l_discount": 0.07d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-04-20", "l_commitdate": "1996-03-25", "l_receiptdate": "1996-04-27", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "sts. enticing, even" }, { "l_orderkey": 4931i32, "l_partkey": 194i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 1.0d, "l_extendedprice": 1094.19d, "l_discount": 0.08d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-01-24", "l_commitdate": "1994-12-19", "l_receiptdate": "1995-02-07", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": " furiously " }, { "l_orderkey": 4966i32, "l_partkey": 194i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 6.0d, "l_extendedprice": 6565.14d, "l_discount": 0.02d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-09", "l_commitdate": "1996-11-29", "l_receiptdate": "1996-12-30", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "d deposits are sly excuses. slyly iro" }, { "l_orderkey": 5062i32, "l_partkey": 194i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 25.0d, "l_extendedprice": 27354.75d, "l_discount": 0.08d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-12-15", "l_commitdate": "1992-11-17", "l_receiptdate": "1993-01-01", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "uthless excuses ag" }, { "l_orderkey": 5188i32, "l_partkey": 194i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 36.0d, "l_extendedprice": 39390.84d, "l_discount": 0.04d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-03-09", "l_commitdate": "1995-05-16", "l_receiptdate": "1995-03-19", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "packages? blithely s" }, { "l_orderkey": 5409i32, "l_partkey": 194i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 27.0d, "l_extendedprice": 29543.13d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-02-14", "l_commitdate": "1992-03-18", "l_receiptdate": "1992-02-23", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "eodolites " } ] }
+{ "partkey": 195i32, "lines": [ { "l_orderkey": 103i32, "l_partkey": 195i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 6.0d, "l_extendedprice": 6571.14d, "l_discount": 0.03d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-11", "l_commitdate": "1996-07-25", "l_receiptdate": "1996-10-28", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "cajole. carefully ex" }, { "l_orderkey": 230i32, "l_partkey": 195i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 6.0d, "l_extendedprice": 6571.14d, "l_discount": 0.03d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-01-26", "l_commitdate": "1994-01-25", "l_receiptdate": "1994-02-13", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": " sleep furiously about the p" }, { "l_orderkey": 612i32, "l_partkey": 195i32, "l_suppkey": 7i32, "l_linenumber": 2i32, "l_quantity": 28.0d, "l_extendedprice": 30665.32d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-01-02", "l_commitdate": "1992-12-11", "l_receiptdate": "1993-01-30", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "regular instructions affix bl" }, { "l_orderkey": 614i32, "l_partkey": 195i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 21.0d, "l_extendedprice": 22998.99d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-03-29", "l_commitdate": "1993-01-06", "l_receiptdate": "1993-04-16", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "arefully. slyly express packag" }, { "l_orderkey": 1156i32, "l_partkey": 195i32, "l_suppkey": 9i32, "l_linenumber": 6i32, "l_quantity": 42.0d, "l_extendedprice": 45997.98d, "l_discount": 0.02d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-27", "l_commitdate": "1997-01-09", "l_receiptdate": "1997-01-28", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "even requests boost ironic deposits. pe" }, { "l_orderkey": 1506i32, "l_partkey": 195i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 15.0d, "l_extendedprice": 16427.85d, "l_discount": 0.05d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-09-24", "l_commitdate": "1992-11-11", "l_receiptdate": "1992-10-05", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": " carefully fluffy packages-- caref" }, { "l_orderkey": 1667i32, "l_partkey": 195i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 2.0d, "l_extendedprice": 2190.38d, "l_discount": 0.07d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-17", "l_commitdate": "1997-11-22", "l_receiptdate": "1998-01-16", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "pecial requests hag" }, { "l_orderkey": 1702i32, "l_partkey": 195i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 46.0d, "l_extendedprice": 50378.74d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-14", "l_commitdate": "1995-06-30", "l_receiptdate": "1995-07-20", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "y even foxes. carefully final dependencies " }, { "l_orderkey": 2018i32, "l_partkey": 195i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 2.0d, "l_extendedprice": 2190.38d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-06-25", "l_commitdate": "1995-06-20", "l_receiptdate": "1995-07-04", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "ly ironic accounts against the slyly sly" }, { "l_orderkey": 2241i32, "l_partkey": 195i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 38.0d, "l_extendedprice": 41617.22d, "l_discount": 0.04d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-08-04", "l_commitdate": "1993-07-31", "l_receiptdate": "1993-08-06", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": " silent, unusual d" }, { "l_orderkey": 2309i32, "l_partkey": 195i32, "l_suppkey": 8i32, "l_linenumber": 6i32, "l_quantity": 21.0d, "l_extendedprice": 22998.99d, "l_discount": 0.09d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-11-05", "l_commitdate": "1995-11-07", "l_receiptdate": "1995-11-22", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "unts around the dolphins ar" }, { "l_orderkey": 2341i32, "l_partkey": 195i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 8.0d, "l_extendedprice": 8761.52d, "l_discount": 0.03d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-06-08", "l_commitdate": "1993-07-09", "l_receiptdate": "1993-06-10", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "ns affix above the iron" }, { "l_orderkey": 2439i32, "l_partkey": 195i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 33.0d, "l_extendedprice": 36141.27d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-01", "l_commitdate": "1997-05-15", "l_receiptdate": "1997-06-07", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "asymptotes wake packages-- furiously" }, { "l_orderkey": 2468i32, "l_partkey": 195i32, "l_suppkey": 6i32, "l_linenumber": 3i32, "l_quantity": 44.0d, "l_extendedprice": 48188.36d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-10-01", "l_commitdate": "1997-08-02", "l_receiptdate": "1997-10-09", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "egular, silent sheave" }, { "l_orderkey": 2690i32, "l_partkey": 195i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 12.0d, "l_extendedprice": 13142.28d, "l_discount": 0.04d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-18", "l_commitdate": "1996-06-03", "l_receiptdate": "1996-07-25", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "nal, regular atta" }, { "l_orderkey": 2848i32, "l_partkey": 195i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 18.0d, "l_extendedprice": 19713.42d, "l_discount": 0.07d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-04-10", "l_commitdate": "1992-06-01", "l_receiptdate": "1992-05-05", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "osits haggle. stealthily ironic packa" }, { "l_orderkey": 2883i32, "l_partkey": 195i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 36.0d, "l_extendedprice": 39426.84d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1995-05-02", "l_commitdate": "1995-03-14", "l_receiptdate": "1995-05-30", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "ests detect slyly special packages" }, { "l_orderkey": 3012i32, "l_partkey": 195i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 49.0d, "l_extendedprice": 53664.31d, "l_discount": 0.0d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-08-07", "l_commitdate": "1993-07-01", "l_receiptdate": "1993-08-08", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": " quickly furious packages. silently unusua" }, { "l_orderkey": 3173i32, "l_partkey": 195i32, "l_suppkey": 6i32, "l_linenumber": 1i32, "l_quantity": 35.0d, "l_extendedprice": 38331.65d, "l_discount": 0.01d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-09", "l_commitdate": "1996-10-15", "l_receiptdate": "1996-10-04", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": " across the slyly even requests." }, { "l_orderkey": 3205i32, "l_partkey": 195i32, "l_suppkey": 8i32, "l_linenumber": 6i32, "l_quantity": 19.0d, "l_extendedprice": 20808.61d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-05-28", "l_commitdate": "1992-05-30", "l_receiptdate": "1992-06-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "yly pending packages snooz" }, { "l_orderkey": 3239i32, "l_partkey": 195i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 26.0d, "l_extendedprice": 28474.94d, "l_discount": 0.03d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-21", "l_commitdate": "1998-03-21", "l_receiptdate": "1998-02-08", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "ngly pending platelets are fluff" }, { "l_orderkey": 3362i32, "l_partkey": 195i32, "l_suppkey": 6i32, "l_linenumber": 2i32, "l_quantity": 41.0d, "l_extendedprice": 44902.79d, "l_discount": 0.05d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-31", "l_commitdate": "1995-09-04", "l_receiptdate": "1995-11-17", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "ake alongside of the " }, { "l_orderkey": 3397i32, "l_partkey": 195i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 8.0d, "l_extendedprice": 8761.52d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-08-05", "l_commitdate": "1994-08-11", "l_receiptdate": "1994-08-08", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "y final foxes" }, { "l_orderkey": 3648i32, "l_partkey": 195i32, "l_suppkey": 6i32, "l_linenumber": 7i32, "l_quantity": 49.0d, "l_extendedprice": 53664.31d, "l_discount": 0.09d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-06-27", "l_commitdate": "1993-07-27", "l_receiptdate": "1993-07-24", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "egular instructions. slyly regular pinto" }, { "l_orderkey": 3744i32, "l_partkey": 195i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 30.0d, "l_extendedprice": 32855.7d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-05-07", "l_commitdate": "1992-02-12", "l_receiptdate": "1992-05-17", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "nts among " }, { "l_orderkey": 4135i32, "l_partkey": 195i32, "l_suppkey": 6i32, "l_linenumber": 4i32, "l_quantity": 13.0d, "l_extendedprice": 14237.47d, "l_discount": 0.04d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-16", "l_commitdate": "1997-05-19", "l_receiptdate": "1997-04-03", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "efully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully special accountefully spe" }, { "l_orderkey": 4355i32, "l_partkey": 195i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 32.0d, "l_extendedprice": 35046.08d, "l_discount": 0.1d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-29", "l_commitdate": "1997-02-08", "l_receiptdate": "1997-01-24", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "y silent deposits. b" }, { "l_orderkey": 5252i32, "l_partkey": 195i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 9.0d, "l_extendedprice": 9856.71d, "l_discount": 0.09d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-30", "l_commitdate": "1996-05-03", "l_receiptdate": "1996-06-26", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "x. slyly special depos" }, { "l_orderkey": 5731i32, "l_partkey": 195i32, "l_suppkey": 6i32, "l_linenumber": 5i32, "l_quantity": 19.0d, "l_extendedprice": 20808.61d, "l_discount": 0.08d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-29", "l_commitdate": "1997-06-27", "l_receiptdate": "1997-07-15", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "ly unusual ideas above the " }, { "l_orderkey": 5857i32, "l_partkey": 195i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 50.0d, "l_extendedprice": 54759.5d, "l_discount": 0.06d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-12-04", "l_commitdate": "1997-12-16", "l_receiptdate": "1997-12-20", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "y regular d" } ] }
+{ "partkey": 196i32, "lines": [ { "l_orderkey": 71i32, "l_partkey": 196i32, "l_suppkey": 9i32, "l_linenumber": 6i32, "l_quantity": 34.0d, "l_extendedprice": 37270.46d, "l_discount": 0.04d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-05", "l_commitdate": "1998-04-22", "l_receiptdate": "1998-03-30", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "s cajole. " }, { "l_orderkey": 259i32, "l_partkey": 196i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 3.0d, "l_extendedprice": 3288.57d, "l_discount": 0.08d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-10-04", "l_commitdate": "1993-11-07", "l_receiptdate": "1993-10-14", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "ng slyly at the accounts." }, { "l_orderkey": 482i32, "l_partkey": 196i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 8.0d, "l_extendedprice": 8769.52d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-04-19", "l_commitdate": "1996-05-05", "l_receiptdate": "1996-04-21", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "tructions near the final, regular ideas de" }, { "l_orderkey": 549i32, "l_partkey": 196i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 18.0d, "l_extendedprice": 19731.42d, "l_discount": 0.07d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-10-19", "l_commitdate": "1992-08-12", "l_receiptdate": "1992-11-13", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "furiously according to the ironic, regular " }, { "l_orderkey": 614i32, "l_partkey": 196i32, "l_suppkey": 8i32, "l_linenumber": 5i32, "l_quantity": 30.0d, "l_extendedprice": 32885.7d, "l_discount": 0.08d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-01-16", "l_commitdate": "1993-02-08", "l_receiptdate": "1993-02-12", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "tructions are f" }, { "l_orderkey": 768i32, "l_partkey": 196i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 39.0d, "l_extendedprice": 42751.41d, "l_discount": 0.06d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-25", "l_commitdate": "1996-10-27", "l_receiptdate": "1996-10-20", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "out the ironic" }, { "l_orderkey": 1060i32, "l_partkey": 196i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 8.0d, "l_extendedprice": 8769.52d, "l_discount": 0.07d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-05-21", "l_commitdate": "1993-05-06", "l_receiptdate": "1993-06-10", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "iously. furiously regular in" }, { "l_orderkey": 1154i32, "l_partkey": 196i32, "l_suppkey": 8i32, "l_linenumber": 6i32, "l_quantity": 50.0d, "l_extendedprice": 54809.5d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-03-04", "l_commitdate": "1992-04-01", "l_receiptdate": "1992-04-01", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": " even, special " }, { "l_orderkey": 1155i32, "l_partkey": 196i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 39.0d, "l_extendedprice": 42751.41d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-01-29", "l_commitdate": "1998-01-03", "l_receiptdate": "1998-02-01", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "ckly final pinto beans was." }, { "l_orderkey": 1539i32, "l_partkey": 196i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 21.0d, "l_extendedprice": 23019.99d, "l_discount": 0.08d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-04-19", "l_commitdate": "1995-05-10", "l_receiptdate": "1995-04-27", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "ounts haggle. busy" }, { "l_orderkey": 1731i32, "l_partkey": 196i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 23.0d, "l_extendedprice": 25212.37d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-04-22", "l_commitdate": "1996-02-25", "l_receiptdate": "1996-05-16", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "rays? bold, express pac" }, { "l_orderkey": 1828i32, "l_partkey": 196i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 11.0d, "l_extendedprice": 12058.09d, "l_discount": 0.07d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-07-21", "l_commitdate": "1994-05-28", "l_receiptdate": "1994-08-13", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": " wake blithely " }, { "l_orderkey": 2115i32, "l_partkey": 196i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 27.0d, "l_extendedprice": 29597.13d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-09-01", "l_commitdate": "1998-07-29", "l_receiptdate": "1998-09-04", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "de of the carefully bold accounts " }, { "l_orderkey": 2214i32, "l_partkey": 196i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 22.0d, "l_extendedprice": 24116.18d, "l_discount": 0.01d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-30", "l_commitdate": "1998-07-02", "l_receiptdate": "1998-06-09", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "t the blithely" }, { "l_orderkey": 2306i32, "l_partkey": 196i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 50.0d, "l_extendedprice": 54809.5d, "l_discount": 0.09d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-27", "l_commitdate": "1995-09-26", "l_receiptdate": "1995-08-06", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "y quickly " }, { "l_orderkey": 3106i32, "l_partkey": 196i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 6.0d, "l_extendedprice": 6577.14d, "l_discount": 0.1d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-02-02", "l_commitdate": "1997-04-11", "l_receiptdate": "1997-02-27", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "symptotes. slyly bold platelets cajol" }, { "l_orderkey": 3717i32, "l_partkey": 196i32, "l_suppkey": 7i32, "l_linenumber": 3i32, "l_quantity": 45.0d, "l_extendedprice": 49328.55d, "l_discount": 0.05d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-09-19", "l_commitdate": "1998-07-22", "l_receiptdate": "1998-09-28", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "s the blithely unu" }, { "l_orderkey": 3845i32, "l_partkey": 196i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 27.0d, "l_extendedprice": 29597.13d, "l_discount": 0.0d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-08-20", "l_commitdate": "1992-07-17", "l_receiptdate": "1992-09-02", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "kages. care" }, { "l_orderkey": 4000i32, "l_partkey": 196i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 41.0d, "l_extendedprice": 44943.79d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-03-02", "l_commitdate": "1992-03-14", "l_receiptdate": "1992-03-27", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "ve the even, fi" }, { "l_orderkey": 4034i32, "l_partkey": 196i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 7.0d, "l_extendedprice": 7673.33d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-03-04", "l_commitdate": "1994-01-22", "l_receiptdate": "1994-04-01", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "y even theodolites. slyly regular instru" }, { "l_orderkey": 4038i32, "l_partkey": 196i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 40.0d, "l_extendedprice": 43847.6d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-01-15", "l_commitdate": "1996-03-13", "l_receiptdate": "1996-01-25", "l_shipinstruct": "COLLECT COD", "l_shipmode": "TRUCK", "l_comment": "t. slyly silent pinto beans amo" }, { "l_orderkey": 4128i32, "l_partkey": 196i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 5.0d, "l_extendedprice": 5480.95d, "l_discount": 0.04d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-18", "l_commitdate": "1995-11-28", "l_receiptdate": "1995-10-28", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "ake permanently " }, { "l_orderkey": 4230i32, "l_partkey": 196i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 10.0d, "l_extendedprice": 10961.9d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-06-11", "l_commitdate": "1992-04-11", "l_receiptdate": "1992-07-02", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "ar packages are " }, { "l_orderkey": 4263i32, "l_partkey": 196i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 28.0d, "l_extendedprice": 30693.32d, "l_discount": 0.05d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-06-24", "l_commitdate": "1998-06-08", "l_receiptdate": "1998-07-14", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "ideas for the carefully re" }, { "l_orderkey": 4289i32, "l_partkey": 196i32, "l_suppkey": 7i32, "l_linenumber": 1i32, "l_quantity": 19.0d, "l_extendedprice": 20827.61d, "l_discount": 0.06d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-12-31", "l_commitdate": "1993-11-06", "l_receiptdate": "1994-01-23", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "e carefully regular ideas. sl" }, { "l_orderkey": 4390i32, "l_partkey": 196i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 28.0d, "l_extendedprice": 30693.32d, "l_discount": 0.03d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-07", "l_commitdate": "1995-06-22", "l_receiptdate": "1995-10-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "ld braids haggle atop the for" }, { "l_orderkey": 4583i32, "l_partkey": 196i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 28.0d, "l_extendedprice": 30693.32d, "l_discount": 0.0d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-10-29", "l_commitdate": "1994-11-21", "l_receiptdate": "1994-11-28", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "to beans haggle sly" }, { "l_orderkey": 4613i32, "l_partkey": 196i32, "l_suppkey": 8i32, "l_linenumber": 6i32, "l_quantity": 47.0d, "l_extendedprice": 51520.93d, "l_discount": 0.04d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-03", "l_commitdate": "1998-05-26", "l_receiptdate": "1998-07-09", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "uriously special requests wak" }, { "l_orderkey": 4736i32, "l_partkey": 196i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 26.0d, "l_extendedprice": 28500.94d, "l_discount": 0.03d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-02-02", "l_commitdate": "1996-01-18", "l_receiptdate": "1996-02-09", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "efully speci" }, { "l_orderkey": 4803i32, "l_partkey": 196i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 42.0d, "l_extendedprice": 46039.98d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-04-27", "l_commitdate": "1996-05-05", "l_receiptdate": "1996-05-17", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": " accounts affix quickly ar" }, { "l_orderkey": 4902i32, "l_partkey": 196i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 22.0d, "l_extendedprice": 24116.18d, "l_discount": 0.0d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-10-17", "l_commitdate": "1998-08-10", "l_receiptdate": "1998-10-21", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "r the furiously final fox" }, { "l_orderkey": 5185i32, "l_partkey": 196i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 41.0d, "l_extendedprice": 44943.79d, "l_discount": 0.0d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-10-15", "l_commitdate": "1997-10-11", "l_receiptdate": "1997-11-02", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "ly blithe deposits. furi" }, { "l_orderkey": 5637i32, "l_partkey": 196i32, "l_suppkey": 7i32, "l_linenumber": 5i32, "l_quantity": 10.0d, "l_extendedprice": 10961.9d, "l_discount": 0.01d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-08-25", "l_commitdate": "1996-08-11", "l_receiptdate": "1996-09-23", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "ickly ironic gifts. blithely even cour" }, { "l_orderkey": 5922i32, "l_partkey": 196i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 9.0d, "l_extendedprice": 9865.71d, "l_discount": 0.07d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-04", "l_commitdate": "1997-01-20", "l_receiptdate": "1996-12-08", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "haggle slyly even packages. packages" }, { "l_orderkey": 5959i32, "l_partkey": 196i32, "l_suppkey": 7i32, "l_linenumber": 4i32, "l_quantity": 13.0d, "l_extendedprice": 14250.47d, "l_discount": 0.03d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-07-29", "l_commitdate": "1992-07-13", "l_receiptdate": "1992-08-20", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "ar forges. deposits det" }, { "l_orderkey": 5986i32, "l_partkey": 196i32, "l_suppkey": 8i32, "l_linenumber": 2i32, "l_quantity": 25.0d, "l_extendedprice": 27404.75d, "l_discount": 0.03d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-06-16", "l_commitdate": "1992-07-17", "l_receiptdate": "1992-06-29", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": " instructions. slyly regular de" } ] }
+{ "partkey": 197i32, "lines": [ { "l_orderkey": 70i32, "l_partkey": 197i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 13.0d, "l_extendedprice": 14263.47d, "l_discount": 0.06d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-03-03", "l_commitdate": "1994-02-13", "l_receiptdate": "1994-03-26", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "lyly special packag" }, { "l_orderkey": 192i32, "l_partkey": 197i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 2.0d, "l_extendedprice": 2194.38d, "l_discount": 0.06d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-06", "l_commitdate": "1998-02-03", "l_receiptdate": "1998-03-24", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "s. dependencies nag furiously alongside" }, { "l_orderkey": 258i32, "l_partkey": 197i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 40.0d, "l_extendedprice": 43887.6d, "l_discount": 0.1d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-03-13", "l_commitdate": "1994-02-23", "l_receiptdate": "1994-04-05", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "silent frets nod daringly busy, bold" }, { "l_orderkey": 518i32, "l_partkey": 197i32, "l_suppkey": 10i32, "l_linenumber": 6i32, "l_quantity": 39.0d, "l_extendedprice": 42790.41d, "l_discount": 0.09d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-02-26", "l_commitdate": "1998-03-17", "l_receiptdate": "1998-03-21", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": " the bold, special deposits are carefully " }, { "l_orderkey": 548i32, "l_partkey": 197i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 2.0d, "l_extendedprice": 2194.38d, "l_discount": 0.06d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-11-26", "l_commitdate": "1994-11-06", "l_receiptdate": "1994-12-06", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "ests haggle quickly eve" }, { "l_orderkey": 706i32, "l_partkey": 197i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 23.0d, "l_extendedprice": 25235.37d, "l_discount": 0.05d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-06", "l_commitdate": "1995-12-02", "l_receiptdate": "1995-12-16", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "ckey players. requests above the" }, { "l_orderkey": 961i32, "l_partkey": 197i32, "l_suppkey": 8i32, "l_linenumber": 6i32, "l_quantity": 30.0d, "l_extendedprice": 32915.7d, "l_discount": 0.09d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-07-06", "l_commitdate": "1995-07-20", "l_receiptdate": "1995-07-26", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "warhorses slee" }, { "l_orderkey": 1283i32, "l_partkey": 197i32, "l_suppkey": 8i32, "l_linenumber": 7i32, "l_quantity": 21.0d, "l_extendedprice": 23040.99d, "l_discount": 0.04d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-12", "l_commitdate": "1996-10-02", "l_receiptdate": "1996-10-12", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "fully regular " }, { "l_orderkey": 1378i32, "l_partkey": 197i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 34.0d, "l_extendedprice": 37304.46d, "l_discount": 0.09d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-08", "l_commitdate": "1996-04-23", "l_receiptdate": "1996-07-09", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "le furiously slyly final accounts. careful" }, { "l_orderkey": 1671i32, "l_partkey": 197i32, "l_suppkey": 9i32, "l_linenumber": 6i32, "l_quantity": 46.0d, "l_extendedprice": 50470.74d, "l_discount": 0.08d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-13", "l_commitdate": "1996-10-14", "l_receiptdate": "1996-09-28", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": ". slyly bold instructions boost. furiousl" }, { "l_orderkey": 1892i32, "l_partkey": 197i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 14.0d, "l_extendedprice": 15360.66d, "l_discount": 0.06d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-04-08", "l_commitdate": "1994-06-12", "l_receiptdate": "1994-04-27", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "furiously about the furiously" }, { "l_orderkey": 2080i32, "l_partkey": 197i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 39.0d, "l_extendedprice": 42790.41d, "l_discount": 0.07d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-08-22", "l_commitdate": "1993-09-09", "l_receiptdate": "1993-08-23", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "ic deposits haggle slyly carefully eve" }, { "l_orderkey": 2180i32, "l_partkey": 197i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 24.0d, "l_extendedprice": 26332.56d, "l_discount": 0.03d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-03", "l_commitdate": "1996-10-24", "l_receiptdate": "1997-01-19", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "uriously f" }, { "l_orderkey": 2789i32, "l_partkey": 197i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 23.0d, "l_extendedprice": 25235.37d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-25", "l_commitdate": "1998-05-10", "l_receiptdate": "1998-04-24", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "cording to the careful de" }, { "l_orderkey": 2790i32, "l_partkey": 197i32, "l_suppkey": 8i32, "l_linenumber": 4i32, "l_quantity": 24.0d, "l_extendedprice": 26332.56d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-12-04", "l_commitdate": "1994-10-10", "l_receiptdate": "1994-12-25", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "ments. slyly f" }, { "l_orderkey": 2820i32, "l_partkey": 197i32, "l_suppkey": 9i32, "l_linenumber": 4i32, "l_quantity": 40.0d, "l_extendedprice": 43887.6d, "l_discount": 0.06d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-08-08", "l_commitdate": "1994-07-30", "l_receiptdate": "1994-08-21", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "g multipliers. final c" }, { "l_orderkey": 2882i32, "l_partkey": 197i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 29.0d, "l_extendedprice": 31818.51d, "l_discount": 0.1d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-09-10", "l_commitdate": "1995-11-01", "l_receiptdate": "1995-10-02", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "kages. furiously ironic" }, { "l_orderkey": 3138i32, "l_partkey": 197i32, "l_suppkey": 8i32, "l_linenumber": 3i32, "l_quantity": 32.0d, "l_extendedprice": 35110.08d, "l_discount": 0.0d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-02-24", "l_commitdate": "1994-05-07", "l_receiptdate": "1994-02-28", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "inal foxes affix slyly. fluffily regul" }, { "l_orderkey": 3296i32, "l_partkey": 197i32, "l_suppkey": 1i32, "l_linenumber": 6i32, "l_quantity": 40.0d, "l_extendedprice": 43887.6d, "l_discount": 0.0d, "l_tax": 0.04d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-12-28", "l_commitdate": "1994-12-08", "l_receiptdate": "1995-01-13", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "ronic ideas across the" }, { "l_orderkey": 3552i32, "l_partkey": 197i32, "l_suppkey": 8i32, "l_linenumber": 1i32, "l_quantity": 18.0d, "l_extendedprice": 19749.42d, "l_discount": 0.01d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-11", "l_commitdate": "1997-07-14", "l_receiptdate": "1997-08-15", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "s deposits against the blithely unusual pin" }, { "l_orderkey": 3587i32, "l_partkey": 197i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 5.0d, "l_extendedprice": 5485.95d, "l_discount": 0.09d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-03", "l_commitdate": "1996-07-05", "l_receiptdate": "1996-09-11", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "ithely regular decoys above the " }, { "l_orderkey": 3616i32, "l_partkey": 197i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 30.0d, "l_extendedprice": 32915.7d, "l_discount": 0.01d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-05-05", "l_commitdate": "1994-04-24", "l_receiptdate": "1994-05-12", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "ly ironic accounts unwind b" }, { "l_orderkey": 3748i32, "l_partkey": 197i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 19.0d, "l_extendedprice": 20846.61d, "l_discount": 0.05d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-04-23", "l_commitdate": "1998-05-17", "l_receiptdate": "1998-05-23", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "pinto beans run carefully quic" }, { "l_orderkey": 3969i32, "l_partkey": 197i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 26.0d, "l_extendedprice": 28526.94d, "l_discount": 0.05d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-08", "l_commitdate": "1997-07-30", "l_receiptdate": "1997-07-10", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "fluffily; braids detect." }, { "l_orderkey": 4064i32, "l_partkey": 197i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 32.0d, "l_extendedprice": 35110.08d, "l_discount": 0.04d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-14", "l_commitdate": "1997-01-01", "l_receiptdate": "1997-01-21", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "es boost. careful" }, { "l_orderkey": 4194i32, "l_partkey": 197i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 43.0d, "l_extendedprice": 47179.17d, "l_discount": 0.08d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-11-06", "l_commitdate": "1994-12-09", "l_receiptdate": "1994-11-16", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "olites are after the exp" }, { "l_orderkey": 4773i32, "l_partkey": 197i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 36.0d, "l_extendedprice": 39498.84d, "l_discount": 0.09d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-04-08", "l_commitdate": "1996-03-03", "l_receiptdate": "1996-05-01", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": " dependencies. quickly" }, { "l_orderkey": 5056i32, "l_partkey": 197i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 19.0d, "l_extendedprice": 20846.61d, "l_discount": 0.04d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-03-24", "l_commitdate": "1997-05-05", "l_receiptdate": "1997-04-23", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "c theodolites. ironic a" }, { "l_orderkey": 5185i32, "l_partkey": 197i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 37.0d, "l_extendedprice": 40596.03d, "l_discount": 0.0d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-08", "l_commitdate": "1997-09-08", "l_receiptdate": "1997-08-14", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": "gainst the courts dazzle care" }, { "l_orderkey": 5313i32, "l_partkey": 197i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 16.0d, "l_extendedprice": 17555.04d, "l_discount": 0.08d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-10-04", "l_commitdate": "1997-08-02", "l_receiptdate": "1997-10-25", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "ckages wake carefully aga" }, { "l_orderkey": 5509i32, "l_partkey": 197i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 3.0d, "l_extendedprice": 3291.57d, "l_discount": 0.03d, "l_tax": 0.02d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-06-14", "l_commitdate": "1994-05-11", "l_receiptdate": "1994-06-17", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": " quickly fin" }, { "l_orderkey": 5536i32, "l_partkey": 197i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 35.0d, "l_extendedprice": 38401.65d, "l_discount": 0.07d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-19", "l_commitdate": "1998-06-08", "l_receiptdate": "1998-06-05", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "c, final theo" } ] }
+{ "partkey": 198i32, "lines": [ { "l_orderkey": 32i32, "l_partkey": 198i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 32.0d, "l_extendedprice": 35142.08d, "l_discount": 0.02d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-14", "l_commitdate": "1995-10-07", "l_receiptdate": "1995-08-27", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "lithely regular deposits. fluffily " }, { "l_orderkey": 295i32, "l_partkey": 198i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 29.0d, "l_extendedprice": 31847.51d, "l_discount": 0.02d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-11-09", "l_commitdate": "1994-12-08", "l_receiptdate": "1994-12-07", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "inst the carefully ironic pinto beans. blit" }, { "l_orderkey": 453i32, "l_partkey": 198i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 45.0d, "l_extendedprice": 49418.55d, "l_discount": 0.01d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-30", "l_commitdate": "1997-08-20", "l_receiptdate": "1997-07-19", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "ifts wake carefully." }, { "l_orderkey": 608i32, "l_partkey": 198i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 40.0d, "l_extendedprice": 43927.6d, "l_discount": 0.03d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-21", "l_commitdate": "1996-04-11", "l_receiptdate": "1996-06-02", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": " alongside of the regular tithes. sly" }, { "l_orderkey": 709i32, "l_partkey": 198i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 15.0d, "l_extendedprice": 16472.85d, "l_discount": 0.08d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-10", "l_commitdate": "1998-06-26", "l_receiptdate": "1998-08-09", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "ily regular deposits. sauternes was accor" }, { "l_orderkey": 738i32, "l_partkey": 198i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 34.0d, "l_extendedprice": 37338.46d, "l_discount": 0.0d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-06-09", "l_commitdate": "1993-04-15", "l_receiptdate": "1993-07-09", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "s against the ironic exc" }, { "l_orderkey": 805i32, "l_partkey": 198i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 25.0d, "l_extendedprice": 27454.75d, "l_discount": 0.07d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-05", "l_commitdate": "1995-09-30", "l_receiptdate": "1995-08-06", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "ide of the pending, sly requests. quickly f" }, { "l_orderkey": 865i32, "l_partkey": 198i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 16.0d, "l_extendedprice": 17571.04d, "l_discount": 0.07d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-08-24", "l_commitdate": "1993-06-26", "l_receiptdate": "1993-08-28", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "TRUCK", "l_comment": "y even accounts. quickly bold decoys" }, { "l_orderkey": 896i32, "l_partkey": 198i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 10.0d, "l_extendedprice": 10981.9d, "l_discount": 0.03d, "l_tax": 0.07d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-07-07", "l_commitdate": "1993-06-03", "l_receiptdate": "1993-07-24", "l_shipinstruct": "COLLECT COD", "l_shipmode": "SHIP", "l_comment": " quickly even theodolites. carefully regu" }, { "l_orderkey": 1124i32, "l_partkey": 198i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 1.0d, "l_extendedprice": 1098.19d, "l_discount": 0.09d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-10-06", "l_commitdate": "1998-10-02", "l_receiptdate": "1998-10-30", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": " instructions cajole qu" }, { "l_orderkey": 1314i32, "l_partkey": 198i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 5.0d, "l_extendedprice": 5490.95d, "l_discount": 0.03d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-05-26", "l_commitdate": "1994-08-06", "l_receiptdate": "1994-05-31", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "equests nag across the furious" }, { "l_orderkey": 1316i32, "l_partkey": 198i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 33.0d, "l_extendedprice": 36240.27d, "l_discount": 0.1d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-03-31", "l_commitdate": "1994-01-23", "l_receiptdate": "1994-04-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "manently; blithely special deposits" }, { "l_orderkey": 1345i32, "l_partkey": 198i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 49.0d, "l_extendedprice": 53811.31d, "l_discount": 0.08d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-12-27", "l_commitdate": "1993-01-23", "l_receiptdate": "1993-01-06", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "sly. furiously final accounts are blithely " }, { "l_orderkey": 1891i32, "l_partkey": 198i32, "l_suppkey": 9i32, "l_linenumber": 3i32, "l_quantity": 15.0d, "l_extendedprice": 16472.85d, "l_discount": 0.03d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-03-11", "l_commitdate": "1995-03-05", "l_receiptdate": "1995-03-18", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": " accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou accounts are furiou account" }, { "l_orderkey": 2277i32, "l_partkey": 198i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 4.0d, "l_extendedprice": 4392.76d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-04-27", "l_commitdate": "1995-03-16", "l_receiptdate": "1995-04-29", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": ". quickly unusual deposi" }, { "l_orderkey": 2407i32, "l_partkey": 198i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 14.0d, "l_extendedprice": 15374.66d, "l_discount": 0.04d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-09-24", "l_commitdate": "1998-08-18", "l_receiptdate": "1998-10-06", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "tructions wake stealt" }, { "l_orderkey": 2533i32, "l_partkey": 198i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 5.0d, "l_extendedprice": 5490.95d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-05-26", "l_commitdate": "1997-06-02", "l_receiptdate": "1997-06-24", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "ccounts. ironic, special accounts boo" }, { "l_orderkey": 3011i32, "l_partkey": 198i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 5.0d, "l_extendedprice": 5490.95d, "l_discount": 0.02d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-04-21", "l_commitdate": "1992-02-23", "l_receiptdate": "1992-05-15", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "nusual sentiments. carefully bold idea" }, { "l_orderkey": 3200i32, "l_partkey": 198i32, "l_suppkey": 9i32, "l_linenumber": 5i32, "l_quantity": 16.0d, "l_extendedprice": 17571.04d, "l_discount": 0.05d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-02-28", "l_commitdate": "1996-03-13", "l_receiptdate": "1996-03-11", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "ly against the quiet packages. blith" }, { "l_orderkey": 3396i32, "l_partkey": 198i32, "l_suppkey": 2i32, "l_linenumber": 7i32, "l_quantity": 31.0d, "l_extendedprice": 34043.89d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-06-07", "l_commitdate": "1994-06-23", "l_receiptdate": "1994-06-19", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "l, express pinto beans. quic" }, { "l_orderkey": 3428i32, "l_partkey": 198i32, "l_suppkey": 9i32, "l_linenumber": 1i32, "l_quantity": 4.0d, "l_extendedprice": 4392.76d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-05-09", "l_commitdate": "1996-06-13", "l_receiptdate": "1996-06-02", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "sly pending requests int" }, { "l_orderkey": 3494i32, "l_partkey": 198i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 40.0d, "l_extendedprice": 43927.6d, "l_discount": 0.02d, "l_tax": 0.08d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-05-30", "l_commitdate": "1993-07-02", "l_receiptdate": "1993-06-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "uests cajole blithely" }, { "l_orderkey": 3943i32, "l_partkey": 198i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 15.0d, "l_extendedprice": 16472.85d, "l_discount": 0.03d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-13", "l_commitdate": "1996-12-17", "l_receiptdate": "1997-02-02", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": " grow fluffily according to the " }, { "l_orderkey": 4002i32, "l_partkey": 198i32, "l_suppkey": 9i32, "l_linenumber": 2i32, "l_quantity": 20.0d, "l_extendedprice": 21963.8d, "l_discount": 0.0d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-15", "l_commitdate": "1997-05-20", "l_receiptdate": "1997-07-11", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "lly even ins" }, { "l_orderkey": 4263i32, "l_partkey": 198i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 14.0d, "l_extendedprice": 15374.66d, "l_discount": 0.09d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-05-06", "l_commitdate": "1998-04-17", "l_receiptdate": "1998-05-11", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "d accounts. daringly regular accounts hagg" }, { "l_orderkey": 4294i32, "l_partkey": 198i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 30.0d, "l_extendedprice": 32945.7d, "l_discount": 0.01d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1992-09-12", "l_commitdate": "1992-11-06", "l_receiptdate": "1992-09-25", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "olites. bold foxes affix ironic theodolite" }, { "l_orderkey": 4551i32, "l_partkey": 198i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 27.0d, "l_extendedprice": 29651.13d, "l_discount": 0.0d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-04-28", "l_commitdate": "1996-03-22", "l_receiptdate": "1996-05-22", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "y along the slyly even " }, { "l_orderkey": 5061i32, "l_partkey": 198i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 8.0d, "l_extendedprice": 8785.52d, "l_discount": 0.01d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-09-07", "l_commitdate": "1993-10-31", "l_receiptdate": "1993-10-04", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "regular foxes. ir" }, { "l_orderkey": 5159i32, "l_partkey": 198i32, "l_suppkey": 10i32, "l_linenumber": 5i32, "l_quantity": 36.0d, "l_extendedprice": 39534.84d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-24", "l_commitdate": "1996-11-07", "l_receiptdate": "1997-02-08", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "packages wake." }, { "l_orderkey": 5186i32, "l_partkey": 198i32, "l_suppkey": 10i32, "l_linenumber": 7i32, "l_quantity": 44.0d, "l_extendedprice": 48320.36d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-23", "l_commitdate": "1996-10-14", "l_receiptdate": "1996-10-01", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "old, final accounts cajole sl" }, { "l_orderkey": 5761i32, "l_partkey": 198i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 49.0d, "l_extendedprice": 53811.31d, "l_discount": 0.04d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-14", "l_commitdate": "1998-08-20", "l_receiptdate": "1998-07-25", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "ly bold accounts wake above the" } ] }
+{ "partkey": 199i32, "lines": [ { "l_orderkey": 135i32, "l_partkey": 199i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 21.0d, "l_extendedprice": 23082.99d, "l_discount": 0.0d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-02-11", "l_commitdate": "1996-01-12", "l_receiptdate": "1996-02-13", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": " deposits believe. furiously regular p" }, { "l_orderkey": 225i32, "l_partkey": 199i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 45.0d, "l_extendedprice": 49463.55d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-08-17", "l_commitdate": "1995-08-20", "l_receiptdate": "1995-08-30", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "the slyly even platelets use aro" }, { "l_orderkey": 231i32, "l_partkey": 199i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 50.0d, "l_extendedprice": 54959.5d, "l_discount": 0.09d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-12-11", "l_commitdate": "1994-12-14", "l_receiptdate": "1994-12-13", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "onic packages haggle fluffily a" }, { "l_orderkey": 678i32, "l_partkey": 199i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 48.0d, "l_extendedprice": 52761.12d, "l_discount": 0.08d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-02-28", "l_commitdate": "1993-04-04", "l_receiptdate": "1993-03-24", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "ithely. slyly express foxes" }, { "l_orderkey": 740i32, "l_partkey": 199i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 29.0d, "l_extendedprice": 31876.51d, "l_discount": 0.06d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-26", "l_commitdate": "1995-09-17", "l_receiptdate": "1995-10-29", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "FOB", "l_comment": "ntly bold pinto beans sleep quickl" }, { "l_orderkey": 804i32, "l_partkey": 199i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 2.0d, "l_extendedprice": 2198.38d, "l_discount": 0.02d, "l_tax": 0.0d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-06-23", "l_commitdate": "1993-04-30", "l_receiptdate": "1993-06-25", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly silent slyly si" }, { "l_orderkey": 900i32, "l_partkey": 199i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 44.0d, "l_extendedprice": 48364.36d, "l_discount": 0.01d, "l_tax": 0.06d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-12-15", "l_commitdate": "1994-12-03", "l_receiptdate": "1994-12-27", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": " detect quick" }, { "l_orderkey": 964i32, "l_partkey": 199i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 39.0d, "l_extendedprice": 42868.41d, "l_discount": 0.04d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-06-21", "l_commitdate": "1995-07-24", "l_receiptdate": "1995-06-24", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "se furiously regular instructions. blith" }, { "l_orderkey": 999i32, "l_partkey": 199i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 41.0d, "l_extendedprice": 45066.79d, "l_discount": 0.08d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-10-16", "l_commitdate": "1993-12-04", "l_receiptdate": "1993-11-03", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "us depths. carefully ironic instruc" }, { "l_orderkey": 1024i32, "l_partkey": 199i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 49.0d, "l_extendedprice": 53860.31d, "l_discount": 0.03d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-06", "l_commitdate": "1998-01-26", "l_receiptdate": "1998-03-29", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "ts. asymptotes nag fur" }, { "l_orderkey": 1348i32, "l_partkey": 199i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 40.0d, "l_extendedprice": 43967.6d, "l_discount": 0.07d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-14", "l_commitdate": "1998-07-10", "l_receiptdate": "1998-08-27", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "fter the regu" }, { "l_orderkey": 1728i32, "l_partkey": 199i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 31.0d, "l_extendedprice": 34074.89d, "l_discount": 0.09d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-26", "l_commitdate": "1996-06-28", "l_receiptdate": "1996-08-14", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "kly sly theodolites." }, { "l_orderkey": 1792i32, "l_partkey": 199i32, "l_suppkey": 2i32, "l_linenumber": 5i32, "l_quantity": 35.0d, "l_extendedprice": 38471.65d, "l_discount": 0.06d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-01-31", "l_commitdate": "1994-01-20", "l_receiptdate": "1994-02-17", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "e against the quic" }, { "l_orderkey": 1954i32, "l_partkey": 199i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 11.0d, "l_extendedprice": 12091.09d, "l_discount": 0.07d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-08-07", "l_commitdate": "1997-07-23", "l_receiptdate": "1997-08-25", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "y carefully ironi" }, { "l_orderkey": 1985i32, "l_partkey": 199i32, "l_suppkey": 10i32, "l_linenumber": 4i32, "l_quantity": 30.0d, "l_extendedprice": 32975.7d, "l_discount": 0.05d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-09-06", "l_commitdate": "1994-10-10", "l_receiptdate": "1994-09-26", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "uickly. instr" }, { "l_orderkey": 1988i32, "l_partkey": 199i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 19.0d, "l_extendedprice": 20884.61d, "l_discount": 0.08d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-02-03", "l_commitdate": "1995-12-10", "l_receiptdate": "1996-02-14", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "lly about the slyly thin instructions. f" }, { "l_orderkey": 2115i32, "l_partkey": 199i32, "l_suppkey": 3i32, "l_linenumber": 5i32, "l_quantity": 13.0d, "l_extendedprice": 14289.47d, "l_discount": 0.04d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-08-07", "l_commitdate": "1998-08-06", "l_receiptdate": "1998-08-13", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "into beans. even accounts abou" }, { "l_orderkey": 2535i32, "l_partkey": 199i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 5.0d, "l_extendedprice": 5495.95d, "l_discount": 0.06d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-09-07", "l_commitdate": "1993-07-25", "l_receiptdate": "1993-09-29", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": ", unusual reque" }, { "l_orderkey": 2752i32, "l_partkey": 199i32, "l_suppkey": 10i32, "l_linenumber": 7i32, "l_quantity": 38.0d, "l_extendedprice": 41769.22d, "l_discount": 0.08d, "l_tax": 0.0d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-02-23", "l_commitdate": "1993-12-23", "l_receiptdate": "1994-03-24", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "es boost. slyly silent ideas" }, { "l_orderkey": 2818i32, "l_partkey": 199i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 22.0d, "l_extendedprice": 24182.18d, "l_discount": 0.06d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-02-28", "l_commitdate": "1995-03-10", "l_receiptdate": "1995-03-06", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "RAIL", "l_comment": "egrate toward the carefully iron" }, { "l_orderkey": 2850i32, "l_partkey": 199i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 4.0d, "l_extendedprice": 4396.76d, "l_discount": 0.04d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-10-28", "l_commitdate": "1996-12-26", "l_receiptdate": "1996-11-07", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "al deposits cajole carefully quickly " }, { "l_orderkey": 3333i32, "l_partkey": 199i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 36.0d, "l_extendedprice": 39570.84d, "l_discount": 0.08d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-11-20", "l_commitdate": "1992-11-06", "l_receiptdate": "1992-12-16", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "foxes sleep neve" }, { "l_orderkey": 3495i32, "l_partkey": 199i32, "l_suppkey": 10i32, "l_linenumber": 3i32, "l_quantity": 16.0d, "l_extendedprice": 17587.04d, "l_discount": 0.08d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-30", "l_commitdate": "1996-04-02", "l_receiptdate": "1996-04-12", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": "y bold dependencies; blithely idle sautern" }, { "l_orderkey": 3749i32, "l_partkey": 199i32, "l_suppkey": 2i32, "l_linenumber": 3i32, "l_quantity": 31.0d, "l_extendedprice": 34074.89d, "l_discount": 0.0d, "l_tax": 0.05d, "l_returnflag": "N", "l_linestatus": "F", "l_shipdate": "1995-06-11", "l_commitdate": "1995-05-20", "l_receiptdate": "1995-06-27", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "s. foxes sleep slyly unusual grouc" }, { "l_orderkey": 4002i32, "l_partkey": 199i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 6.0d, "l_extendedprice": 6595.14d, "l_discount": 0.06d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-07-01", "l_commitdate": "1997-05-15", "l_receiptdate": "1997-07-31", "l_shipinstruct": "NONE", "l_shipmode": "MAIL", "l_comment": "he slyly iro" }, { "l_orderkey": 4064i32, "l_partkey": 199i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 3.0d, "l_extendedprice": 3297.57d, "l_discount": 0.1d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-04", "l_commitdate": "1997-01-01", "l_receiptdate": "1997-01-23", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "its! quickly sp" }, { "l_orderkey": 4224i32, "l_partkey": 199i32, "l_suppkey": 10i32, "l_linenumber": 1i32, "l_quantity": 27.0d, "l_extendedprice": 29678.13d, "l_discount": 0.05d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-09-05", "l_commitdate": "1997-08-19", "l_receiptdate": "1997-09-30", "l_shipinstruct": "NONE", "l_shipmode": "SHIP", "l_comment": "ly special deposits sleep qui" }, { "l_orderkey": 4230i32, "l_partkey": 199i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 43.0d, "l_extendedprice": 47265.17d, "l_discount": 0.02d, "l_tax": 0.08d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-03-14", "l_commitdate": "1992-05-13", "l_receiptdate": "1992-03-28", "l_shipinstruct": "NONE", "l_shipmode": "FOB", "l_comment": "ses lose blithely slyly final e" }, { "l_orderkey": 4293i32, "l_partkey": 199i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 47.0d, "l_extendedprice": 51661.93d, "l_discount": 0.08d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-09-07", "l_commitdate": "1996-10-24", "l_receiptdate": "1996-09-15", "l_shipinstruct": "NONE", "l_shipmode": "RAIL", "l_comment": "ithely pending deposits af" }, { "l_orderkey": 5028i32, "l_partkey": 199i32, "l_suppkey": 10i32, "l_linenumber": 2i32, "l_quantity": 15.0d, "l_extendedprice": 16487.85d, "l_discount": 0.03d, "l_tax": 0.07d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-08-02", "l_commitdate": "1992-07-09", "l_receiptdate": "1992-08-30", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "gular, bold pinto bea" }, { "l_orderkey": 5286i32, "l_partkey": 199i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 1.0d, "l_extendedprice": 1099.19d, "l_discount": 0.01d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-11-25", "l_commitdate": "1997-11-07", "l_receiptdate": "1997-12-17", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "ly! furiously final pack" }, { "l_orderkey": 5379i32, "l_partkey": 199i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 40.0d, "l_extendedprice": 43967.6d, "l_discount": 0.01d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-01", "l_commitdate": "1995-10-19", "l_receiptdate": "1995-10-30", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": "carefully final accounts haggle blithely. " } ] }
+{ "partkey": 200i32, "lines": [ { "l_orderkey": 324i32, "l_partkey": 200i32, "l_suppkey": 3i32, "l_linenumber": 1i32, "l_quantity": 26.0d, "l_extendedprice": 28605.2d, "l_discount": 0.07d, "l_tax": 0.01d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1992-04-19", "l_commitdate": "1992-05-28", "l_receiptdate": "1992-05-12", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "RAIL", "l_comment": "ross the slyly regular s" }, { "l_orderkey": 1121i32, "l_partkey": 200i32, "l_suppkey": 1i32, "l_linenumber": 6i32, "l_quantity": 50.0d, "l_extendedprice": 55010.0d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-21", "l_commitdate": "1997-02-16", "l_receiptdate": "1997-04-25", "l_shipinstruct": "NONE", "l_shipmode": "TRUCK", "l_comment": "odolites. slyly even accounts" }, { "l_orderkey": 1254i32, "l_partkey": 200i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 47.0d, "l_extendedprice": 51709.4d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-03-07", "l_commitdate": "1996-02-20", "l_receiptdate": "1996-04-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "MAIL", "l_comment": " platelets cajol" }, { "l_orderkey": 1411i32, "l_partkey": 200i32, "l_suppkey": 3i32, "l_linenumber": 4i32, "l_quantity": 20.0d, "l_extendedprice": 22004.0d, "l_discount": 0.01d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-04-06", "l_commitdate": "1995-03-16", "l_receiptdate": "1995-04-17", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "s against the" }, { "l_orderkey": 1447i32, "l_partkey": 200i32, "l_suppkey": 3i32, "l_linenumber": 6i32, "l_quantity": 41.0d, "l_extendedprice": 45108.2d, "l_discount": 0.08d, "l_tax": 0.02d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1993-01-06", "l_commitdate": "1993-01-05", "l_receiptdate": "1993-01-13", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "MAIL", "l_comment": "rts boost s" }, { "l_orderkey": 1827i32, "l_partkey": 200i32, "l_suppkey": 1i32, "l_linenumber": 3i32, "l_quantity": 37.0d, "l_extendedprice": 40707.4d, "l_discount": 0.01d, "l_tax": 0.07d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-07-20", "l_commitdate": "1996-08-18", "l_receiptdate": "1996-08-08", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "REG AIR", "l_comment": "ously ironic theodolites serve quickly af" }, { "l_orderkey": 2086i32, "l_partkey": 200i32, "l_suppkey": 3i32, "l_linenumber": 6i32, "l_quantity": 20.0d, "l_extendedprice": 22004.0d, "l_discount": 0.01d, "l_tax": 0.03d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-11-30", "l_commitdate": "1994-12-28", "l_receiptdate": "1994-12-07", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "lithely ironic acc" }, { "l_orderkey": 2304i32, "l_partkey": 200i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 42.0d, "l_extendedprice": 46208.4d, "l_discount": 0.0d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-01-20", "l_commitdate": "1994-03-04", "l_receiptdate": "1994-02-05", "l_shipinstruct": "COLLECT COD", "l_shipmode": "RAIL", "l_comment": "quests are blithely alongside of" }, { "l_orderkey": 2819i32, "l_partkey": 200i32, "l_suppkey": 3i32, "l_linenumber": 5i32, "l_quantity": 6.0d, "l_extendedprice": 6601.2d, "l_discount": 0.03d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-07-22", "l_commitdate": "1994-08-02", "l_receiptdate": "1994-07-29", "l_shipinstruct": "NONE", "l_shipmode": "REG AIR", "l_comment": "eas after the carefully express pack" }, { "l_orderkey": 3008i32, "l_partkey": 200i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 31.0d, "l_extendedprice": 34106.2d, "l_discount": 0.05d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-12-14", "l_commitdate": "1995-12-11", "l_receiptdate": "1995-12-31", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "AIR", "l_comment": " bold packages. quic" }, { "l_orderkey": 3169i32, "l_partkey": 200i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 17.0d, "l_extendedprice": 18703.4d, "l_discount": 0.05d, "l_tax": 0.04d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1994-03-02", "l_commitdate": "1994-01-21", "l_receiptdate": "1994-03-03", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "TRUCK", "l_comment": "usly regular packages. ironi" }, { "l_orderkey": 3264i32, "l_partkey": 200i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 39.0d, "l_extendedprice": 42907.8d, "l_discount": 0.06d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-11-07", "l_commitdate": "1996-12-12", "l_receiptdate": "1996-11-20", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "REG AIR", "l_comment": "sleep carefully after the slyly final" }, { "l_orderkey": 3363i32, "l_partkey": 200i32, "l_suppkey": 4i32, "l_linenumber": 5i32, "l_quantity": 4.0d, "l_extendedprice": 4400.8d, "l_discount": 0.0d, "l_tax": 0.08d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1995-10-30", "l_commitdate": "1995-11-17", "l_receiptdate": "1995-11-22", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": " ironic dependencie" }, { "l_orderkey": 3686i32, "l_partkey": 200i32, "l_suppkey": 2i32, "l_linenumber": 2i32, "l_quantity": 38.0d, "l_extendedprice": 41807.6d, "l_discount": 0.06d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-09-04", "l_commitdate": "1998-08-11", "l_receiptdate": "1998-09-19", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "y silent foxes! carefully ruthless cour" }, { "l_orderkey": 3878i32, "l_partkey": 200i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 6.0d, "l_extendedprice": 6601.2d, "l_discount": 0.07d, "l_tax": 0.04d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-21", "l_commitdate": "1997-05-22", "l_receiptdate": "1997-07-01", "l_shipinstruct": "COLLECT COD", "l_shipmode": "FOB", "l_comment": "s. regular instru" }, { "l_orderkey": 4064i32, "l_partkey": 200i32, "l_suppkey": 2i32, "l_linenumber": 7i32, "l_quantity": 9.0d, "l_extendedprice": 9901.8d, "l_discount": 0.01d, "l_tax": 0.06d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1996-12-17", "l_commitdate": "1996-12-13", "l_receiptdate": "1997-01-12", "l_shipinstruct": "NONE", "l_shipmode": "AIR", "l_comment": "furiously f" }, { "l_orderkey": 4098i32, "l_partkey": 200i32, "l_suppkey": 1i32, "l_linenumber": 1i32, "l_quantity": 46.0d, "l_extendedprice": 50609.2d, "l_discount": 0.07d, "l_tax": 0.03d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-01-26", "l_commitdate": "1997-01-27", "l_receiptdate": "1997-02-13", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "SHIP", "l_comment": "e slyly blithely silent deposits. fluff" }, { "l_orderkey": 4227i32, "l_partkey": 200i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 2.0d, "l_extendedprice": 2200.4d, "l_discount": 0.02d, "l_tax": 0.05d, "l_returnflag": "R", "l_linestatus": "F", "l_shipdate": "1995-04-24", "l_commitdate": "1995-05-09", "l_receiptdate": "1995-05-21", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "ep. specia" }, { "l_orderkey": 4931i32, "l_partkey": 200i32, "l_suppkey": 4i32, "l_linenumber": 4i32, "l_quantity": 50.0d, "l_extendedprice": 55010.0d, "l_discount": 0.04d, "l_tax": 0.01d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1994-12-15", "l_commitdate": "1994-12-18", "l_receiptdate": "1994-12-23", "l_shipinstruct": "COLLECT COD", "l_shipmode": "REG AIR", "l_comment": "s haggle al" }, { "l_orderkey": 5730i32, "l_partkey": 200i32, "l_suppkey": 1i32, "l_linenumber": 2i32, "l_quantity": 9.0d, "l_extendedprice": 9901.8d, "l_discount": 0.1d, "l_tax": 0.01d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-03-05", "l_commitdate": "1998-02-02", "l_receiptdate": "1998-03-28", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "MAIL", "l_comment": "s lose blithely. specia" }, { "l_orderkey": 5764i32, "l_partkey": 200i32, "l_suppkey": 3i32, "l_linenumber": 2i32, "l_quantity": 20.0d, "l_extendedprice": 22004.0d, "l_discount": 0.1d, "l_tax": 0.05d, "l_returnflag": "A", "l_linestatus": "F", "l_shipdate": "1993-10-17", "l_commitdate": "1993-12-24", "l_receiptdate": "1993-10-18", "l_shipinstruct": "TAKE BACK RETURN", "l_shipmode": "FOB", "l_comment": "ng to the fluffily qu" }, { "l_orderkey": 5827i32, "l_partkey": 200i32, "l_suppkey": 1i32, "l_linenumber": 4i32, "l_quantity": 26.0d, "l_extendedprice": 28605.2d, "l_discount": 0.06d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1998-07-29", "l_commitdate": "1998-09-24", "l_receiptdate": "1998-07-30", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "SHIP", "l_comment": "arefully special packages wake thin" }, { "l_orderkey": 5895i32, "l_partkey": 200i32, "l_suppkey": 1i32, "l_linenumber": 5i32, "l_quantity": 20.0d, "l_extendedprice": 22004.0d, "l_discount": 0.07d, "l_tax": 0.0d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-04-30", "l_commitdate": "1997-02-07", "l_receiptdate": "1997-05-08", "l_shipinstruct": "DELIVER IN PERSON", "l_shipmode": "AIR", "l_comment": "gular deposits wake blithely carefully fin" }, { "l_orderkey": 5952i32, "l_partkey": 200i32, "l_suppkey": 2i32, "l_linenumber": 1i32, "l_quantity": 49.0d, "l_extendedprice": 53909.8d, "l_discount": 0.1d, "l_tax": 0.02d, "l_returnflag": "N", "l_linestatus": "O", "l_shipdate": "1997-06-30", "l_commitdate": "1997-07-10", "l_receiptdate": "1997-07-02", "l_shipinstruct": "COLLECT COD", "l_shipmode": "AIR", "l_comment": "e furiously regular" } ] }
diff --git a/asterix-app/src/test/resources/runtimets/results/cross-dataverse/cross-dv15/cross-dv15.1.adm b/asterix-app/src/test/resources/runtimets/results/cross-dataverse/cross-dv15/cross-dv15.1.adm
index 05deeeb..f6b9984 100644
--- a/asterix-app/src/test/resources/runtimets/results/cross-dataverse/cross-dv15/cross-dv15.1.adm
+++ b/asterix-app/src/test/resources/runtimets/results/cross-dataverse/cross-dv15/cross-dv15.1.adm
@@ -1,3 +1,3 @@
-{ "DataverseName": "testdv1", "Name": "fun01", "Arity": "0", "Params": [ ], "ReturnType": "VOID", "Definition": "100", "Language": "AQL", "Kind": "SCALAR" }
-{ "DataverseName": "testdv1", "Name": "fun02", "Arity": "1", "Params": [ "$a" ], "ReturnType": "VOID", "Definition": "\"function 02\"", "Language": "AQL", "Kind": "SCALAR" }
-{ "DataverseName": "testdv1", "Name": "fun03", "Arity": "2", "Params": [ "$b", "$c" ], "ReturnType": "VOID", "Definition": "$b+$c", "Language": "AQL", "Kind": "SCALAR" }
+{ "DataverseName": "testdv1", "Name": "fun01", "Arity": "0", "ReturnType": "VOID", "Language": "AQL" }
+{ "DataverseName": "testdv1", "Name": "fun02", "Arity": "1", "ReturnType": "VOID", "Language": "AQL" }
+{ "DataverseName": "testdv1", "Name": "fun03", "Arity": "2", "ReturnType": "VOID", "Language": "AQL" }
diff --git a/asterix-app/src/test/resources/runtimets/results/tpch/nest_aggregate/nest_aggregate.1.adm b/asterix-app/src/test/resources/runtimets/results/tpch/nest_aggregate/nest_aggregate.1.adm
index 69ac8ee..428af08 100644
--- a/asterix-app/src/test/resources/runtimets/results/tpch/nest_aggregate/nest_aggregate.1.adm
+++ b/asterix-app/src/test/resources/runtimets/results/tpch/nest_aggregate/nest_aggregate.1.adm
@@ -1,11 +1,11 @@
-{ "nation_key": 21, "name": "VIETNAM", "aggregates": [ { "order_date": "1994-02-17", "sum_price": 1984.14d }, { "order_date": "1995-08-05", "sum_price": 16922.51d }, { "order_date": "1994-06-01", "sum_price": 21088.59d } ] }
-{ "nation_key": 23, "name": "UNITED KINGDOM", "aggregates": [ { "order_date": "1997-12-18", "sum_price": 10934.84d }, { "order_date": "1995-05-26", "sum_price": 11474.95d }, { "order_date": "1997-05-13", "sum_price": 18307.45d } ] }
+{ "nation_key": 0, "name": "ALGERIA", "aggregates": [ { "order_date": "1994-05-27", "sum_price": 1051.15d }, { "order_date": "1994-05-08", "sum_price": 4819.91d }, { "order_date": "1993-08-27", "sum_price": 10500.27d } ] }
{ "nation_key": 1, "name": "ARGENTINA", "aggregates": [ { "order_date": "1997-08-14", "sum_price": 16763.95d }, { "order_date": "1997-11-26", "sum_price": 18653.09d }, { "order_date": "1998-04-20", "sum_price": 24637.96d } ] }
{ "nation_key": 2, "name": "BRAZIL", "aggregates": [ { "order_date": "1993-03-05", "sum_price": 8225.96d }, { "order_date": "1994-08-31", "sum_price": 19056.99d }, { "order_date": "1997-05-04", "sum_price": 23984.88d } ] }
+{ "nation_key": 3, "name": "CANADA", "aggregates": [ { "order_date": "1992-02-22", "sum_price": 1084.38d }, { "order_date": "1992-11-28", "sum_price": 4766.19d }, { "order_date": "1995-02-17", "sum_price": 4913.06d } ] }
{ "nation_key": 4, "name": "EGYPT", "aggregates": [ { "order_date": "1998-04-19", "sum_price": 3089.42d }, { "order_date": "1996-03-12", "sum_price": 3892.77d }, { "order_date": "1997-07-25", "sum_price": 11405.4d } ] }
{ "nation_key": 19, "name": "ROMANIA", "aggregates": [ { "order_date": "1994-07-05", "sum_price": 7108.12d }, { "order_date": "1994-11-17", "sum_price": 13282.23d }, { "order_date": "1997-02-07", "sum_price": 16689.19d } ] }
{ "nation_key": 20, "name": "SAUDI ARABIA", "aggregates": [ { "order_date": "1994-04-30", "sum_price": 6406.29d }, { "order_date": "1992-05-10", "sum_price": 45695.84d }, { "order_date": "1994-01-31", "sum_price": 62316.61d } ] }
+{ "nation_key": 21, "name": "VIETNAM", "aggregates": [ { "order_date": "1994-02-17", "sum_price": 1984.14d }, { "order_date": "1995-08-05", "sum_price": 16922.51d }, { "order_date": "1994-06-01", "sum_price": 21088.59d } ] }
{ "nation_key": 22, "name": "RUSSIA", "aggregates": [ { "order_date": "1993-11-16", "sum_price": 7471.75d }, { "order_date": "1996-01-11", "sum_price": 8720.45d }, { "order_date": "1995-07-15", "sum_price": 27016.74d } ] }
+{ "nation_key": 23, "name": "UNITED KINGDOM", "aggregates": [ { "order_date": "1997-12-18", "sum_price": 10934.84d }, { "order_date": "1995-05-26", "sum_price": 11474.95d }, { "order_date": "1997-05-13", "sum_price": 18307.45d } ] }
{ "nation_key": 24, "name": "UNITED STATES", "aggregates": [ ] }
-{ "nation_key": 0, "name": "ALGERIA", "aggregates": [ { "order_date": "1994-05-27", "sum_price": 1051.15d }, { "order_date": "1994-05-08", "sum_price": 4819.91d }, { "order_date": "1993-08-27", "sum_price": 10500.27d } ] }
-{ "nation_key": 3, "name": "CANADA", "aggregates": [ { "order_date": "1992-02-22", "sum_price": 1084.38d }, { "order_date": "1992-11-28", "sum_price": 4766.19d }, { "order_date": "1995-02-17", "sum_price": 4913.06d } ] }
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/aggregate-sql/query-issue400/query-issue400.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/aggregate-sql/query-issue400/query-issue400.3.ast
index e69de29..99938b6 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/aggregate-sql/query-issue400/query-issue400.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/aggregate-sql/query-issue400/query-issue400.3.ast
@@ -0,0 +1,26 @@
+Query:
+FunctionCall null.sql-count@1[
+ (
+ SELECT ELEMENT [
+ Variable [ Name=i ]
+ ]
+ FROM [ OrderedListConstructor [
+ OrderedListConstructor [
+ LiteralExpr [LONG] [1]
+ LiteralExpr [LONG] [2]
+ LiteralExpr [LONG] [3]
+ LiteralExpr [LONG] [4]
+ LiteralExpr [LONG] [5]
+ ]
+ OrderedListConstructor [
+ LiteralExpr [LONG] [6]
+ LiteralExpr [LONG] [7]
+ LiteralExpr [LONG] [8]
+ LiteralExpr [LONG] [9]
+ ]
+ ]
+ AS
+ Variable [ Name=i ]
+ ]
+ )
+]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/aggregate/query-issue400/query-issue400.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/aggregate/query-issue400/query-issue400.3.ast
index e69de29..3ab430c 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/aggregate/query-issue400/query-issue400.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/aggregate/query-issue400/query-issue400.3.ast
@@ -0,0 +1,26 @@
+Query:
+FunctionCall null.count@1[
+ (
+ SELECT ELEMENT [
+ Variable [ Name=i ]
+ ]
+ FROM [ OrderedListConstructor [
+ OrderedListConstructor [
+ LiteralExpr [LONG] [1]
+ LiteralExpr [LONG] [2]
+ LiteralExpr [LONG] [3]
+ LiteralExpr [LONG] [4]
+ LiteralExpr [LONG] [5]
+ ]
+ OrderedListConstructor [
+ LiteralExpr [LONG] [6]
+ LiteralExpr [LONG] [7]
+ LiteralExpr [LONG] [8]
+ LiteralExpr [LONG] [9]
+ ]
+ ]
+ AS
+ Variable [ Name=i ]
+ ]
+ )
+]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/big-object/big_object_groupby-2/big_object_groupby.1.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/big-object/big_object_groupby-2/big_object_groupby.1.ast
index e69de29..5556ac7 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/big-object/big_object_groupby-2/big_object_groupby.1.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/big-object/big_object_groupby-2/big_object_groupby.1.ast
@@ -0,0 +1,49 @@
+DataverseUse test
+TypeDecl LineType [
+ closed RecordType {
+ l_orderkey : int32,
+ l_partkey : int32,
+ l_suppkey : int32,
+ l_linenumber : int32,
+ l_quantity : double,
+ l_extendedprice : double,
+ l_discount : double,
+ l_tax : double,
+ l_returnflag : string,
+ l_linestatus : string,
+ l_shipdate : string,
+ l_commitdate : string,
+ l_receiptdate : string,
+ l_shipinstruct : string,
+ l_shipmode : string,
+ l_comment : string
+ }
+]
+TypeDecl OrderType [
+ closed RecordType {
+ o_orderkey : int32,
+ o_custkey : int32,
+ o_orderstatus : string,
+ o_totalprice : double,
+ o_orderdate : string,
+ o_orderpriority : string,
+ o_clerk : string,
+ o_shippriority : int32,
+ o_comment : string
+ }
+]
+TypeDecl CustomerType [
+ closed RecordType {
+ c_custkey : int32,
+ c_name : string,
+ c_address : string,
+ c_nationkey : int32,
+ c_phone : string,
+ c_acctbal : double,
+ c_mktsegment : string,
+ c_comment : string
+ }
+]
+DatasetDecl Line(LineType)is an external dataset
+DatasetDecl Order(OrderType)is an external dataset
+DatasetDecl Customer(CustomerType)is an external dataset
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/big-object/big_object_groupby-2/big_object_groupby.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/big-object/big_object_groupby-2/big_object_groupby.3.ast
index e69de29..cb72b70 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/big-object/big_object_groupby-2/big_object_groupby.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/big-object/big_object_groupby-2/big_object_groupby.3.ast
@@ -0,0 +1,55 @@
+DataverseUse test
+Query:
+SELECT ELEMENT [
+RecordConstructor [
+ (
+ LiteralExpr [STRING] [id]
+ :
+ Variable [ Name=id ]
+ )
+ (
+ LiteralExpr [STRING] [length]
+ :
+ FunctionCall test.string-length@1[
+ Variable [ Name=comment ]
+ ]
+ )
+ (
+ LiteralExpr [STRING] [comment]
+ :
+ Variable [ Name=comment ]
+ )
+]
+]
+FROM [ FunctionCall Metadata.dataset@1[
+ LiteralExpr [STRING] [Line]
+ ]
+ AS
+ Variable [ Name=i ]
+]
+Groupby
+ Variable [ Name=comment ]
+ :=
+ FieldAccessor [
+ Variable [ Name=i ]
+ Field=l_comment
+ ]
+ Variable [ Name=id ]
+ :=
+ FieldAccessor [
+ Variable [ Name=i ]
+ Field=l_orderkey
+ ]
+ With
+ Variable [ Name=i ]
+
+Orderby
+ Variable [ Name=id ]
+ ASC
+ FunctionCall test.string-length@1[
+ Variable [ Name=comment ]
+ ]
+ ASC
+ Variable [ Name=comment ]
+ ASC
+
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/big-object/big_object_groupby/big_object_groupby.1.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/big-object/big_object_groupby/big_object_groupby.1.ast
index e69de29..5556ac7 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/big-object/big_object_groupby/big_object_groupby.1.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/big-object/big_object_groupby/big_object_groupby.1.ast
@@ -0,0 +1,49 @@
+DataverseUse test
+TypeDecl LineType [
+ closed RecordType {
+ l_orderkey : int32,
+ l_partkey : int32,
+ l_suppkey : int32,
+ l_linenumber : int32,
+ l_quantity : double,
+ l_extendedprice : double,
+ l_discount : double,
+ l_tax : double,
+ l_returnflag : string,
+ l_linestatus : string,
+ l_shipdate : string,
+ l_commitdate : string,
+ l_receiptdate : string,
+ l_shipinstruct : string,
+ l_shipmode : string,
+ l_comment : string
+ }
+]
+TypeDecl OrderType [
+ closed RecordType {
+ o_orderkey : int32,
+ o_custkey : int32,
+ o_orderstatus : string,
+ o_totalprice : double,
+ o_orderdate : string,
+ o_orderpriority : string,
+ o_clerk : string,
+ o_shippriority : int32,
+ o_comment : string
+ }
+]
+TypeDecl CustomerType [
+ closed RecordType {
+ c_custkey : int32,
+ c_name : string,
+ c_address : string,
+ c_nationkey : int32,
+ c_phone : string,
+ c_acctbal : double,
+ c_mktsegment : string,
+ c_comment : string
+ }
+]
+DatasetDecl Line(LineType)is an external dataset
+DatasetDecl Order(OrderType)is an external dataset
+DatasetDecl Customer(CustomerType)is an external dataset
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/big-object/big_object_groupby/big_object_groupby.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/big-object/big_object_groupby/big_object_groupby.3.ast
index e69de29..7d82c98 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/big-object/big_object_groupby/big_object_groupby.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/big-object/big_object_groupby/big_object_groupby.3.ast
@@ -0,0 +1,36 @@
+DataverseUse test
+Query:
+SELECT ELEMENT [
+RecordConstructor [
+ (
+ LiteralExpr [STRING] [partkey]
+ :
+ Variable [ Name=partkey ]
+ )
+ (
+ LiteralExpr [STRING] [lines]
+ :
+ Variable [ Name=i ]
+ )
+]
+]
+FROM [ FunctionCall Metadata.dataset@1[
+ LiteralExpr [STRING] [Line]
+ ]
+ AS
+ Variable [ Name=i ]
+]
+Groupby
+ Variable [ Name=partkey ]
+ :=
+ FieldAccessor [
+ Variable [ Name=i ]
+ Field=l_partkey
+ ]
+ With
+ Variable [ Name=i ]
+
+Orderby
+ Variable [ Name=partkey ]
+ ASC
+
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/big-object/big_object_join/big_object_join.1.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/big-object/big_object_join/big_object_join.1.ast
index e69de29..5556ac7 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/big-object/big_object_join/big_object_join.1.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/big-object/big_object_join/big_object_join.1.ast
@@ -0,0 +1,49 @@
+DataverseUse test
+TypeDecl LineType [
+ closed RecordType {
+ l_orderkey : int32,
+ l_partkey : int32,
+ l_suppkey : int32,
+ l_linenumber : int32,
+ l_quantity : double,
+ l_extendedprice : double,
+ l_discount : double,
+ l_tax : double,
+ l_returnflag : string,
+ l_linestatus : string,
+ l_shipdate : string,
+ l_commitdate : string,
+ l_receiptdate : string,
+ l_shipinstruct : string,
+ l_shipmode : string,
+ l_comment : string
+ }
+]
+TypeDecl OrderType [
+ closed RecordType {
+ o_orderkey : int32,
+ o_custkey : int32,
+ o_orderstatus : string,
+ o_totalprice : double,
+ o_orderdate : string,
+ o_orderpriority : string,
+ o_clerk : string,
+ o_shippriority : int32,
+ o_comment : string
+ }
+]
+TypeDecl CustomerType [
+ closed RecordType {
+ c_custkey : int32,
+ c_name : string,
+ c_address : string,
+ c_nationkey : int32,
+ c_phone : string,
+ c_acctbal : double,
+ c_mktsegment : string,
+ c_comment : string
+ }
+]
+DatasetDecl Line(LineType)is an external dataset
+DatasetDecl Order(OrderType)is an external dataset
+DatasetDecl Customer(CustomerType)is an external dataset
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/big-object/big_object_join/big_object_join.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/big-object/big_object_join/big_object_join.3.ast
index e69de29..0e8cdce 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/big-object/big_object_join/big_object_join.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/big-object/big_object_join/big_object_join.3.ast
@@ -0,0 +1,74 @@
+DataverseUse test
+Query:
+SELECT ELEMENT [
+RecordConstructor [
+ (
+ LiteralExpr [STRING] [c_custkey]
+ :
+ FieldAccessor [
+ Variable [ Name=c ]
+ Field=c_custkey
+ ]
+ )
+ (
+ LiteralExpr [STRING] [o_orderkey]
+ :
+ FieldAccessor [
+ Variable [ Name=o ]
+ Field=o_orderkey
+ ]
+ )
+ (
+ LiteralExpr [STRING] [len_c_comment]
+ :
+ FunctionCall test.string-length@1[
+ FieldAccessor [
+ Variable [ Name=c ]
+ Field=c_comment
+ ]
+ ]
+ )
+ (
+ LiteralExpr [STRING] [len_o_comment]
+ :
+ FunctionCall test.string-length@1[
+ FieldAccessor [
+ Variable [ Name=o ]
+ Field=o_comment
+ ]
+ ]
+ )
+ (
+ LiteralExpr [STRING] [c_comment]
+ :
+ FieldAccessor [
+ Variable [ Name=c ]
+ Field=c_comment
+ ]
+ )
+]
+]
+FROM [ FunctionCall Metadata.dataset@1[
+ LiteralExpr [STRING] [Customer]
+ ]
+ AS
+ Variable [ Name=c ]
+,
+ FunctionCall Metadata.dataset@1[
+ LiteralExpr [STRING] [Order]
+ ]
+ AS
+ Variable [ Name=o ]
+]
+Where
+ OperatorExpr [
+ FieldAccessor [
+ Variable [ Name=c ]
+ Field=c_custkey
+ ]
+ =
+ FieldAccessor [
+ Variable [ Name=o ]
+ Field=o_custkey
+ ]
+ ]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/big-object/big_object_sort/big_object_sort.1.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/big-object/big_object_sort/big_object_sort.1.ast
index e69de29..5556ac7 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/big-object/big_object_sort/big_object_sort.1.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/big-object/big_object_sort/big_object_sort.1.ast
@@ -0,0 +1,49 @@
+DataverseUse test
+TypeDecl LineType [
+ closed RecordType {
+ l_orderkey : int32,
+ l_partkey : int32,
+ l_suppkey : int32,
+ l_linenumber : int32,
+ l_quantity : double,
+ l_extendedprice : double,
+ l_discount : double,
+ l_tax : double,
+ l_returnflag : string,
+ l_linestatus : string,
+ l_shipdate : string,
+ l_commitdate : string,
+ l_receiptdate : string,
+ l_shipinstruct : string,
+ l_shipmode : string,
+ l_comment : string
+ }
+]
+TypeDecl OrderType [
+ closed RecordType {
+ o_orderkey : int32,
+ o_custkey : int32,
+ o_orderstatus : string,
+ o_totalprice : double,
+ o_orderdate : string,
+ o_orderpriority : string,
+ o_clerk : string,
+ o_shippriority : int32,
+ o_comment : string
+ }
+]
+TypeDecl CustomerType [
+ closed RecordType {
+ c_custkey : int32,
+ c_name : string,
+ c_address : string,
+ c_nationkey : int32,
+ c_phone : string,
+ c_acctbal : double,
+ c_mktsegment : string,
+ c_comment : string
+ }
+]
+DatasetDecl Line(LineType)is an external dataset
+DatasetDecl Order(OrderType)is an external dataset
+DatasetDecl Customer(CustomerType)is an external dataset
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/big-object/big_object_sort/big_object_sort.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/big-object/big_object_sort/big_object_sort.3.ast
index e69de29..4d0117e 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/big-object/big_object_sort/big_object_sort.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/big-object/big_object_sort/big_object_sort.3.ast
@@ -0,0 +1,58 @@
+DataverseUse test
+Query:
+SELECT ELEMENT [
+RecordConstructor [
+ (
+ LiteralExpr [STRING] [custkey]
+ :
+ FieldAccessor [
+ Variable [ Name=o ]
+ Field=o_custkey
+ ]
+ )
+ (
+ LiteralExpr [STRING] [orderkey]
+ :
+ FieldAccessor [
+ Variable [ Name=o ]
+ Field=o_orderkey
+ ]
+ )
+ (
+ LiteralExpr [STRING] [len-comment]
+ :
+ FunctionCall test.string-length@1[
+ FieldAccessor [
+ Variable [ Name=o ]
+ Field=o_comment
+ ]
+ ]
+ )
+ (
+ LiteralExpr [STRING] [comment]
+ :
+ FieldAccessor [
+ Variable [ Name=o ]
+ Field=o_comment
+ ]
+ )
+]
+]
+FROM [ FunctionCall Metadata.dataset@1[
+ LiteralExpr [STRING] [Order]
+ ]
+ AS
+ Variable [ Name=o ]
+]
+Orderby
+ FieldAccessor [
+ Variable [ Name=o ]
+ Field=o_custkey
+ ]
+ ASC
+ FieldAccessor [
+ Variable [ Name=o ]
+ Field=o_orderkey
+ ]
+ ASC
+
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/binary/find/find.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/binary/find/find.3.ast
index d7a8788..cd2f25c 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/binary/find/find.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/binary/find/find.3.ast
@@ -2,106 +2,98 @@
Query:
OrderedListConstructor [
OperatorExpr [
- OperatorExpr [
- FunctionCall test.find-binary@2[
- FunctionCall test.hex@1[
- LiteralExpr [STRING] [aabbccddaa]
- ]
- FunctionCall test.hex@1[
- LiteralExpr [STRING] []
- ]
+ FunctionCall test.find-binary@2[
+ FunctionCall test.hex@1[
+ LiteralExpr [STRING] [aabbccddaa]
]
- =
+ FunctionCall test.hex@1[
+ LiteralExpr [STRING] []
+ ]
+ ]
+ =
+ LiteralExpr [LONG] [1]
+ ]
+ OperatorExpr [
+ FunctionCall test.find-binary@2[
+ FunctionCall test.hex@1[
+ LiteralExpr [STRING] [aabbccddaa]
+ ]
+ FunctionCall test.hex@1[
+ LiteralExpr [STRING] [aa]
+ ]
+ ]
+ =
+ LiteralExpr [LONG] [1]
+ ]
+ OperatorExpr [
+ FunctionCall test.find-binary@3[
+ FunctionCall test.hex@1[
+ LiteralExpr [STRING] [aabbccddaa]
+ ]
+ FunctionCall test.hex@1[
+ LiteralExpr [STRING] [aa]
+ ]
LiteralExpr [LONG] [1]
]
- and
- OperatorExpr [
- FunctionCall test.find-binary@2[
- FunctionCall test.hex@1[
- LiteralExpr [STRING] [aabbccddaa]
- ]
- FunctionCall test.hex@1[
- LiteralExpr [STRING] [aa]
- ]
+ =
+ LiteralExpr [LONG] [5]
+ ]
+ OperatorExpr [
+ FunctionCall test.find-binary@3[
+ FunctionCall test.hex@1[
+ LiteralExpr [STRING] [aabbccddaa]
]
- =
- LiteralExpr [LONG] [1]
- ]
- and
- OperatorExpr [
- FunctionCall test.find-binary@3[
- FunctionCall test.hex@1[
- LiteralExpr [STRING] [aabbccddaa]
- ]
- FunctionCall test.hex@1[
- LiteralExpr [STRING] [aa]
- ]
- LiteralExpr [LONG] [1]
+ FunctionCall test.hex@1[
+ LiteralExpr [STRING] [aabb]
]
- =
- LiteralExpr [LONG] [5]
- ]
- and
- OperatorExpr [
- FunctionCall test.find-binary@3[
- FunctionCall test.hex@1[
- LiteralExpr [STRING] [aabbccddaa]
- ]
- FunctionCall test.hex@1[
- LiteralExpr [STRING] [aabb]
- ]
- LiteralExpr [LONG] [0]
- ]
- =
- FunctionCall test.find-binary@2[
- FunctionCall test.hex@1[
- LiteralExpr [STRING] [aabbccddaa]
- ]
- FunctionCall test.hex@1[
- LiteralExpr [STRING] [aabb]
- ]
- ]
- ]
- and
- OperatorExpr [
- FunctionCall test.find-binary@2[
- FunctionCall test.hex@1[
- LiteralExpr [STRING] [aabbccddaa]
- ]
- FunctionCall test.hex@1[
- LiteralExpr [STRING] [11]
- ]
- ]
- =
LiteralExpr [LONG] [0]
]
- and
- OperatorExpr [
- FunctionCall test.find-binary@2[
- FunctionCall test.hex@1[
- LiteralExpr [STRING] [aabbccddaa]
- ]
- FunctionCall test.hex@1[
- LiteralExpr [STRING] [ccddaa]
- ]
+ =
+ FunctionCall test.find-binary@2[
+ FunctionCall test.hex@1[
+ LiteralExpr [STRING] [aabbccddaa]
]
- =
- LiteralExpr [LONG] [3]
- ]
- and
- OperatorExpr [
- FunctionCall test.find-binary@2[
- FunctionCall test.hex@1[
- LiteralExpr [STRING] [aabbccddaa]
- ]
- FunctionCall test.hex@1[
- LiteralExpr [STRING] [ccddaabb]
- ]
+ FunctionCall test.hex@1[
+ LiteralExpr [STRING] [aabb]
]
- =
- LiteralExpr [LONG] [0]
]
]
+ OperatorExpr [
+ FunctionCall test.find-binary@2[
+ FunctionCall test.hex@1[
+ LiteralExpr [STRING] [aabbccddaa]
+ ]
+ FunctionCall test.hex@1[
+ LiteralExpr [STRING] [11]
+ ]
+ ]
+ =
+ LiteralExpr [LONG] [0]
+ ]
+ OperatorExpr [
+ FunctionCall test.find-binary@2[
+ FunctionCall test.hex@1[
+ LiteralExpr [STRING] [aabbccddaa]
+ ]
+ FunctionCall test.hex@1[
+ LiteralExpr [STRING] [ccddaa]
+ ]
+ ]
+ =
+ LiteralExpr [LONG] [3]
+ ]
+ OperatorExpr [
+ FunctionCall test.find-binary@2[
+ FunctionCall test.hex@1[
+ LiteralExpr [STRING] [aabbccddaa]
+ ]
+ FunctionCall test.hex@1[
+ LiteralExpr [STRING] [ccddaabb]
+ ]
+ ]
+ =
+ LiteralExpr [LONG] [0]
+ ]
FunctionCall test.find-binary@2[
FunctionCall test.hex@1[
LiteralExpr [STRING] [aabbccddaa]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/binary/subbinary/subbinary_01.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/binary/subbinary/subbinary_01.3.ast
index af550bc..79aa35a 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/binary/subbinary/subbinary_01.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/binary/subbinary/subbinary_01.3.ast
@@ -1,6 +1,6 @@
DataverseUse test
Query:
-OperatorExpr [
+OrderedListConstructor [
OperatorExpr [
FunctionCall test.sub-binary@2[
FunctionCall test.hex@1[
@@ -13,7 +13,6 @@
LiteralExpr [STRING] []
]
]
- and
OperatorExpr [
FunctionCall test.sub-binary@2[
FunctionCall test.hex@1[
@@ -26,7 +25,6 @@
LiteralExpr [STRING] []
]
]
- and
OperatorExpr [
FunctionCall test.sub-binary@2[
FunctionCall test.hex@1[
@@ -39,7 +37,6 @@
LiteralExpr [STRING] []
]
]
- and
OperatorExpr [
FunctionCall test.sub-binary@3[
FunctionCall test.hex@1[
@@ -57,7 +54,6 @@
LiteralExpr [STRING] [aabbccdd]
]
]
- and
OperatorExpr [
FunctionCall test.sub-binary@3[
FunctionCall test.hex@1[
@@ -71,7 +67,6 @@
LiteralExpr [STRING] [bb]
]
]
- and
OperatorExpr [
FunctionCall test.sub-binary@2[
FunctionCall test.hex@1[
@@ -84,7 +79,6 @@
LiteralExpr [STRING] [bbccdd]
]
]
- and
OperatorExpr [
FunctionCall test.sub-binary@3[
FunctionCall test.hex@1[
@@ -98,7 +92,6 @@
LiteralExpr [STRING] []
]
]
- and
OperatorExpr [
FunctionCall test.sub-binary@3[
FunctionCall test.hex@1[
@@ -112,7 +105,6 @@
LiteralExpr [STRING] [dd]
]
]
- and
OperatorExpr [
FunctionCall test.sub-binary@3[
FunctionCall test.hex@1[
@@ -126,7 +118,6 @@
LiteralExpr [STRING] [bbcc]
]
]
- and
OperatorExpr [
FunctionCall test.sub-binary@2[
FunctionCall test.hex@1[
@@ -139,7 +130,6 @@
LiteralExpr [STRING] [aabbccdd]
]
]
- and
OperatorExpr [
FunctionCall test.sub-binary@2[
FunctionCall test.hex@1[
@@ -152,7 +142,6 @@
LiteralExpr [STRING] [aabbccdd]
]
]
- and
OperatorExpr [
FunctionCall test.sub-binary@3[
FunctionCall test.hex@1[
@@ -166,7 +155,6 @@
LiteralExpr [STRING] [aabbccdd]
]
]
- and
OperatorExpr [
FunctionCall test.sub-binary@3[
FunctionCall test.hex@1[
@@ -180,7 +168,6 @@
LiteralExpr [STRING] [bbccdd]
]
]
- and
OperatorExpr [
FunctionCall test.sub-binary@3[
FunctionCall test.hex@1[
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/boolean/and_01/and_01.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/boolean/and_01/and_01.3.ast
index 6146ab9..85aa549 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/boolean/and_01/and_01.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/boolean/and_01/and_01.3.ast
@@ -1,21 +1,11 @@
DataverseUse test
Query:
-SELECT ELEMENT [
OperatorExpr [
- Variable [ Name=x ]
- and
- Variable [ Name=y ]
-]
-]
-FROM [ OrderedListConstructor [
+ FunctionCall test.boolean@1[
LiteralExpr [STRING] [true]
]
- AS
- Variable [ Name=x ]
-,
- OrderedListConstructor [
+ and
+ FunctionCall test.boolean@1[
LiteralExpr [STRING] [false]
]
- AS
- Variable [ Name=y ]
]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/comparison/binary_null/binary_null.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/comparison/binary_null/binary_null.3.ast
index 3dae925..9ab8ffb 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/comparison/binary_null/binary_null.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/comparison/binary_null/binary_null.3.ast
@@ -13,9 +13,7 @@
OrderedListConstructor [
LiteralExpr [LONG] [1]
]
- Index: OrderedListConstructor [
- LiteralExpr [LONG] [1]
- ]
+ Index: LiteralExpr [LONG] [1]
]
]
)
@@ -27,9 +25,7 @@
OrderedListConstructor [
LiteralExpr [LONG] [1]
]
- Index: OrderedListConstructor [
- LiteralExpr [LONG] [1]
- ]
+ Index: LiteralExpr [LONG] [1]
]
>=
FunctionCall test.hex@1[
@@ -49,9 +45,7 @@
OrderedListConstructor [
LiteralExpr [LONG] [1]
]
- Index: OrderedListConstructor [
- LiteralExpr [LONG] [1]
- ]
+ Index: LiteralExpr [LONG] [1]
]
]
)
@@ -63,9 +57,7 @@
OrderedListConstructor [
LiteralExpr [LONG] [1]
]
- Index: OrderedListConstructor [
- LiteralExpr [LONG] [1]
- ]
+ Index: LiteralExpr [LONG] [1]
]
<=
FunctionCall test.hex@1[
@@ -85,9 +77,7 @@
OrderedListConstructor [
LiteralExpr [LONG] [1]
]
- Index: OrderedListConstructor [
- LiteralExpr [LONG] [1]
- ]
+ Index: LiteralExpr [LONG] [1]
]
]
)
@@ -99,9 +89,7 @@
OrderedListConstructor [
LiteralExpr [LONG] [1]
]
- Index: OrderedListConstructor [
- LiteralExpr [LONG] [1]
- ]
+ Index: LiteralExpr [LONG] [1]
]
!=
FunctionCall test.hex@1[
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/comparison/double_null/double_null.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/comparison/double_null/double_null.3.ast
index 346f8f1..cafbcbb 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/comparison/double_null/double_null.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/comparison/double_null/double_null.3.ast
@@ -13,9 +13,7 @@
OrderedListConstructor [
LiteralExpr [LONG] [1]
]
- Index: OrderedListConstructor [
- LiteralExpr [LONG] [1]
- ]
+ Index: LiteralExpr [LONG] [1]
]
]
)
@@ -27,9 +25,7 @@
OrderedListConstructor [
LiteralExpr [LONG] [1]
]
- Index: OrderedListConstructor [
- LiteralExpr [LONG] [1]
- ]
+ Index: LiteralExpr [LONG] [1]
]
>=
FunctionCall test.double@1[
@@ -49,9 +45,7 @@
OrderedListConstructor [
LiteralExpr [LONG] [1]
]
- Index: OrderedListConstructor [
- LiteralExpr [LONG] [1]
- ]
+ Index: LiteralExpr [LONG] [1]
]
]
)
@@ -63,9 +57,7 @@
OrderedListConstructor [
LiteralExpr [LONG] [1]
]
- Index: OrderedListConstructor [
- LiteralExpr [LONG] [1]
- ]
+ Index: LiteralExpr [LONG] [1]
]
<=
FunctionCall test.double@1[
@@ -85,9 +77,7 @@
OrderedListConstructor [
LiteralExpr [LONG] [1]
]
- Index: OrderedListConstructor [
- LiteralExpr [LONG] [1]
- ]
+ Index: LiteralExpr [LONG] [1]
]
]
)
@@ -99,9 +89,7 @@
OrderedListConstructor [
LiteralExpr [LONG] [1]
]
- Index: OrderedListConstructor [
- LiteralExpr [LONG] [1]
- ]
+ Index: LiteralExpr [LONG] [1]
]
!=
FunctionCall test.double@1[
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/comparison/float_null/float_null.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/comparison/float_null/float_null.3.ast
index 4cc0876..576da34 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/comparison/float_null/float_null.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/comparison/float_null/float_null.3.ast
@@ -13,9 +13,7 @@
OrderedListConstructor [
LiteralExpr [LONG] [1]
]
- Index: OrderedListConstructor [
- LiteralExpr [LONG] [1]
- ]
+ Index: LiteralExpr [LONG] [1]
]
]
)
@@ -27,9 +25,7 @@
OrderedListConstructor [
LiteralExpr [LONG] [1]
]
- Index: OrderedListConstructor [
- LiteralExpr [LONG] [1]
- ]
+ Index: LiteralExpr [LONG] [1]
]
>=
FunctionCall test.float@1[
@@ -49,9 +45,7 @@
OrderedListConstructor [
LiteralExpr [LONG] [1]
]
- Index: OrderedListConstructor [
- LiteralExpr [LONG] [1]
- ]
+ Index: LiteralExpr [LONG] [1]
]
]
)
@@ -63,9 +57,7 @@
OrderedListConstructor [
LiteralExpr [LONG] [1]
]
- Index: OrderedListConstructor [
- LiteralExpr [LONG] [1]
- ]
+ Index: LiteralExpr [LONG] [1]
]
<=
FunctionCall test.float@1[
@@ -85,9 +77,7 @@
OrderedListConstructor [
LiteralExpr [LONG] [1]
]
- Index: OrderedListConstructor [
- LiteralExpr [LONG] [1]
- ]
+ Index: LiteralExpr [LONG] [1]
]
]
)
@@ -99,9 +89,7 @@
OrderedListConstructor [
LiteralExpr [LONG] [1]
]
- Index: OrderedListConstructor [
- LiteralExpr [LONG] [1]
- ]
+ Index: LiteralExpr [LONG] [1]
]
!=
FunctionCall test.float@1[
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/comparison/int16_null/int16_null.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/comparison/int16_null/int16_null.3.ast
index 30c32d2..1a83a4a 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/comparison/int16_null/int16_null.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/comparison/int16_null/int16_null.3.ast
@@ -13,9 +13,7 @@
OrderedListConstructor [
LiteralExpr [LONG] [1]
]
- Index: OrderedListConstructor [
- LiteralExpr [LONG] [1]
- ]
+ Index: LiteralExpr [LONG] [1]
]
]
)
@@ -27,9 +25,7 @@
OrderedListConstructor [
LiteralExpr [LONG] [1]
]
- Index: OrderedListConstructor [
- LiteralExpr [LONG] [1]
- ]
+ Index: LiteralExpr [LONG] [1]
]
>=
FunctionCall test.int16@1[
@@ -49,9 +45,7 @@
OrderedListConstructor [
LiteralExpr [LONG] [1]
]
- Index: OrderedListConstructor [
- LiteralExpr [LONG] [1]
- ]
+ Index: LiteralExpr [LONG] [1]
]
]
)
@@ -63,9 +57,7 @@
OrderedListConstructor [
LiteralExpr [LONG] [1]
]
- Index: OrderedListConstructor [
- LiteralExpr [LONG] [1]
- ]
+ Index: LiteralExpr [LONG] [1]
]
<=
FunctionCall test.int16@1[
@@ -85,9 +77,7 @@
OrderedListConstructor [
LiteralExpr [LONG] [1]
]
- Index: OrderedListConstructor [
- LiteralExpr [LONG] [1]
- ]
+ Index: LiteralExpr [LONG] [1]
]
]
)
@@ -99,9 +89,7 @@
OrderedListConstructor [
LiteralExpr [LONG] [1]
]
- Index: OrderedListConstructor [
- LiteralExpr [LONG] [1]
- ]
+ Index: LiteralExpr [LONG] [1]
]
!=
FunctionCall test.int16@1[
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/comparison/int32_null/int32_null.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/comparison/int32_null/int32_null.3.ast
index 82f94f1..c3937bf 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/comparison/int32_null/int32_null.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/comparison/int32_null/int32_null.3.ast
@@ -12,9 +12,7 @@
OrderedListConstructor [
LiteralExpr [LONG] [1]
]
- Index: OrderedListConstructor [
- LiteralExpr [LONG] [1]
- ]
+ Index: LiteralExpr [LONG] [1]
]
]
)
@@ -26,9 +24,7 @@
OrderedListConstructor [
LiteralExpr [LONG] [1]
]
- Index: OrderedListConstructor [
- LiteralExpr [LONG] [1]
- ]
+ Index: LiteralExpr [LONG] [1]
]
>=
FunctionCall null.int32@1[
@@ -48,9 +44,7 @@
OrderedListConstructor [
LiteralExpr [LONG] [1]
]
- Index: OrderedListConstructor [
- LiteralExpr [LONG] [1]
- ]
+ Index: LiteralExpr [LONG] [1]
]
]
)
@@ -62,9 +56,7 @@
OrderedListConstructor [
LiteralExpr [LONG] [1]
]
- Index: OrderedListConstructor [
- LiteralExpr [LONG] [1]
- ]
+ Index: LiteralExpr [LONG] [1]
]
<=
FunctionCall null.int32@1[
@@ -84,9 +76,7 @@
OrderedListConstructor [
LiteralExpr [LONG] [1]
]
- Index: OrderedListConstructor [
- LiteralExpr [LONG] [1]
- ]
+ Index: LiteralExpr [LONG] [1]
]
]
)
@@ -98,9 +88,7 @@
OrderedListConstructor [
LiteralExpr [LONG] [1]
]
- Index: OrderedListConstructor [
- LiteralExpr [LONG] [1]
- ]
+ Index: LiteralExpr [LONG] [1]
]
!=
FunctionCall null.int32@1[
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/comparison/int64_null/int64_null.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/comparison/int64_null/int64_null.3.ast
index d599378..8a4a713 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/comparison/int64_null/int64_null.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/comparison/int64_null/int64_null.3.ast
@@ -13,9 +13,7 @@
OrderedListConstructor [
LiteralExpr [LONG] [1]
]
- Index: OrderedListConstructor [
- LiteralExpr [LONG] [1]
- ]
+ Index: LiteralExpr [LONG] [1]
]
]
)
@@ -27,9 +25,7 @@
OrderedListConstructor [
LiteralExpr [LONG] [1]
]
- Index: OrderedListConstructor [
- LiteralExpr [LONG] [1]
- ]
+ Index: LiteralExpr [LONG] [1]
]
>=
FunctionCall test.int64@1[
@@ -49,9 +45,7 @@
OrderedListConstructor [
LiteralExpr [LONG] [1]
]
- Index: OrderedListConstructor [
- LiteralExpr [LONG] [1]
- ]
+ Index: LiteralExpr [LONG] [1]
]
]
)
@@ -63,9 +57,7 @@
OrderedListConstructor [
LiteralExpr [LONG] [1]
]
- Index: OrderedListConstructor [
- LiteralExpr [LONG] [1]
- ]
+ Index: LiteralExpr [LONG] [1]
]
<=
FunctionCall test.int64@1[
@@ -85,9 +77,7 @@
OrderedListConstructor [
LiteralExpr [LONG] [1]
]
- Index: OrderedListConstructor [
- LiteralExpr [LONG] [1]
- ]
+ Index: LiteralExpr [LONG] [1]
]
]
)
@@ -99,9 +89,7 @@
OrderedListConstructor [
LiteralExpr [LONG] [1]
]
- Index: OrderedListConstructor [
- LiteralExpr [LONG] [1]
- ]
+ Index: LiteralExpr [LONG] [1]
]
!=
FunctionCall test.int64@1[
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/comparison/int8_null/int8_null.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/comparison/int8_null/int8_null.3.ast
index 671e5e5..2671116 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/comparison/int8_null/int8_null.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/comparison/int8_null/int8_null.3.ast
@@ -13,9 +13,7 @@
OrderedListConstructor [
LiteralExpr [LONG] [1]
]
- Index: OrderedListConstructor [
- LiteralExpr [LONG] [1]
- ]
+ Index: LiteralExpr [LONG] [1]
]
]
)
@@ -27,9 +25,7 @@
OrderedListConstructor [
LiteralExpr [LONG] [1]
]
- Index: OrderedListConstructor [
- LiteralExpr [LONG] [1]
- ]
+ Index: LiteralExpr [LONG] [1]
]
>=
FunctionCall test.int8@1[
@@ -49,9 +45,7 @@
OrderedListConstructor [
LiteralExpr [LONG] [1]
]
- Index: OrderedListConstructor [
- LiteralExpr [LONG] [1]
- ]
+ Index: LiteralExpr [LONG] [1]
]
]
)
@@ -63,9 +57,7 @@
OrderedListConstructor [
LiteralExpr [LONG] [1]
]
- Index: OrderedListConstructor [
- LiteralExpr [LONG] [1]
- ]
+ Index: LiteralExpr [LONG] [1]
]
<=
FunctionCall test.int8@1[
@@ -85,9 +77,7 @@
OrderedListConstructor [
LiteralExpr [LONG] [1]
]
- Index: OrderedListConstructor [
- LiteralExpr [LONG] [1]
- ]
+ Index: LiteralExpr [LONG] [1]
]
]
)
@@ -99,9 +89,7 @@
OrderedListConstructor [
LiteralExpr [LONG] [1]
]
- Index: OrderedListConstructor [
- LiteralExpr [LONG] [1]
- ]
+ Index: LiteralExpr [LONG] [1]
]
!=
FunctionCall test.int8@1[
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/comparison/string_null/string_null.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/comparison/string_null/string_null.3.ast
index b4b5079..e80e881 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/comparison/string_null/string_null.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/comparison/string_null/string_null.3.ast
@@ -11,9 +11,7 @@
OrderedListConstructor [
LiteralExpr [LONG] [1]
]
- Index: OrderedListConstructor [
- LiteralExpr [LONG] [1]
- ]
+ Index: LiteralExpr [LONG] [1]
]
]
)
@@ -25,9 +23,7 @@
OrderedListConstructor [
LiteralExpr [LONG] [1]
]
- Index: OrderedListConstructor [
- LiteralExpr [LONG] [1]
- ]
+ Index: LiteralExpr [LONG] [1]
]
>=
LiteralExpr [STRING] [AA]
@@ -43,9 +39,7 @@
OrderedListConstructor [
LiteralExpr [LONG] [1]
]
- Index: OrderedListConstructor [
- LiteralExpr [LONG] [1]
- ]
+ Index: LiteralExpr [LONG] [1]
]
]
)
@@ -57,9 +51,7 @@
OrderedListConstructor [
LiteralExpr [LONG] [1]
]
- Index: OrderedListConstructor [
- LiteralExpr [LONG] [1]
- ]
+ Index: LiteralExpr [LONG] [1]
]
<=
LiteralExpr [STRING] [AA]
@@ -75,9 +67,7 @@
OrderedListConstructor [
LiteralExpr [LONG] [1]
]
- Index: OrderedListConstructor [
- LiteralExpr [LONG] [1]
- ]
+ Index: LiteralExpr [LONG] [1]
]
]
)
@@ -89,9 +79,7 @@
OrderedListConstructor [
LiteralExpr [LONG] [1]
]
- Index: OrderedListConstructor [
- LiteralExpr [LONG] [1]
- ]
+ Index: LiteralExpr [LONG] [1]
]
!=
LiteralExpr [STRING] [AA]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/cross-dataverse/cross-dv15/cross-dv15.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/cross-dataverse/cross-dv15/cross-dv15.3.ast
index b6b1bb4..6732c8a 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/cross-dataverse/cross-dv15/cross-dv15.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/cross-dataverse/cross-dv15/cross-dv15.3.ast
@@ -1,6 +1,47 @@
Query:
SELECT ELEMENT [
-Variable [ Name=l ]
+RecordConstructor [
+ (
+ LiteralExpr [STRING] [DataverseName]
+ :
+ FieldAccessor [
+ Variable [ Name=l ]
+ Field=DataverseName
+ ]
+ )
+ (
+ LiteralExpr [STRING] [Name]
+ :
+ FieldAccessor [
+ Variable [ Name=l ]
+ Field=Name
+ ]
+ )
+ (
+ LiteralExpr [STRING] [Arity]
+ :
+ FieldAccessor [
+ Variable [ Name=l ]
+ Field=Arity
+ ]
+ )
+ (
+ LiteralExpr [STRING] [ReturnType]
+ :
+ FieldAccessor [
+ Variable [ Name=l ]
+ Field=ReturnType
+ ]
+ )
+ (
+ LiteralExpr [STRING] [Language]
+ :
+ FieldAccessor [
+ Variable [ Name=l ]
+ Field=Language
+ ]
+ )
+]
]
FROM [ FunctionCall Metadata.dataset@1[
LiteralExpr [STRING] [Metadata.Function]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/custord/customer_q_06/customer_q_06.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/custord/customer_q_06/customer_q_06.3.ast
index 641bb90..85d9c0c 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/custord/customer_q_06/customer_q_06.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/custord/customer_q_06/customer_q_06.3.ast
@@ -50,10 +50,10 @@
]
IndexAccessor [
Variable [ Name=m ]
- Index: Variable [ Name=m ]
+ Index: LiteralExpr [LONG] [1]
]
IndexAccessor [
Variable [ Name=m ]
- Index: Variable [ Name=m ]
+ Index: LiteralExpr [LONG] [4]
]
]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/custord/customer_q_07/customer_q_07.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/custord/customer_q_07/customer_q_07.3.ast
index 578f555..79cca47 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/custord/customer_q_07/customer_q_07.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/custord/customer_q_07/customer_q_07.3.ast
@@ -50,10 +50,10 @@
]
IndexAccessor [
Variable [ Name=m ]
- Index: Variable [ Name=m ]
+ Index: LiteralExpr [LONG] [1]
]
IndexAccessor [
Variable [ Name=m ]
- Index: Variable [ Name=m ]
+ Index: LiteralExpr [LONG] [4]
]
]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/custord/join_q_03/join_q_03.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/custord/join_q_03/join_q_03.3.ast
index ca77585..fd77802 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/custord/join_q_03/join_q_03.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/custord/join_q_03/join_q_03.3.ast
@@ -33,7 +33,7 @@
:
IndexAccessor [
Variable [ Name=ol ]
- Index: Variable [ Name=ol ]
+ Index: LiteralExpr [LONG] [0]
]
)
(
@@ -41,7 +41,7 @@
:
IndexAccessor [
Variable [ Name=ol ]
- Index: Variable [ Name=ol ]
+ Index: LiteralExpr [LONG] [1]
]
)
(
@@ -49,7 +49,7 @@
:
IndexAccessor [
Variable [ Name=ol ]
- Index: Variable [ Name=ol ]
+ Index: LiteralExpr [LONG] [4]
]
)
(
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/custord/join_q_04/join_q_04.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/custord/join_q_04/join_q_04.3.ast
index e69de29..a47942b 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/custord/join_q_04/join_q_04.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/custord/join_q_04/join_q_04.3.ast
@@ -0,0 +1,64 @@
+DataverseUse test
+Query:
+SELECT ELEMENT [
+RecordConstructor [
+ (
+ LiteralExpr [STRING] [cust_name]
+ :
+ FieldAccessor [
+ Variable [ Name=c ]
+ Field=name
+ ]
+ )
+ (
+ LiteralExpr [STRING] [order_ids]
+ :
+ (
+ SELECT ELEMENT [
+ FieldAccessor [
+ Variable [ Name=o ]
+ Field=oid
+ ]
+ ]
+ FROM [ FunctionCall Metadata.dataset@1[
+ LiteralExpr [STRING] [Orders]
+ ]
+ AS
+ Variable [ Name=o ]
+ ]
+ Where
+ OperatorExpr [
+ FieldAccessor [
+ Variable [ Name=c ]
+ Field=cid
+ ]
+ =
+ FieldAccessor [
+ Variable [ Name=o ]
+ Field=cid
+ ]
+ ]
+ Orderby
+ FieldAccessor [
+ Variable [ Name=o ]
+ Field=oid
+ ]
+ ASC
+
+ )
+ )
+]
+]
+FROM [ FunctionCall Metadata.dataset@1[
+ LiteralExpr [STRING] [Customers]
+ ]
+ AS
+ Variable [ Name=c ]
+]
+Orderby
+ FieldAccessor [
+ Variable [ Name=c ]
+ Field=name
+ ]
+ ASC
+
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/custord/order_q_03/order_q_03.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/custord/order_q_03/order_q_03.3.ast
index 2431b79..326ec5d 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/custord/order_q_03/order_q_03.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/custord/order_q_03/order_q_03.3.ast
@@ -28,7 +28,7 @@
:
IndexAccessor [
Variable [ Name=c1 ]
- Index: Variable [ Name=c1 ]
+ Index: LiteralExpr [LONG] [0]
]
)
(
@@ -36,7 +36,7 @@
:
IndexAccessor [
Variable [ Name=c1 ]
- Index: Variable [ Name=c1 ]
+ Index: LiteralExpr [LONG] [1]
]
)
(
@@ -44,7 +44,7 @@
:
IndexAccessor [
Variable [ Name=c1 ]
- Index: Variable [ Name=c1 ]
+ Index: LiteralExpr [LONG] [2]
]
)
]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/custord/order_q_04/order_q_04.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/custord/order_q_04/order_q_04.3.ast
index 29368a4..1a26176 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/custord/order_q_04/order_q_04.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/custord/order_q_04/order_q_04.3.ast
@@ -28,7 +28,7 @@
:
IndexAccessor [
Variable [ Name=c3 ]
- Index: Variable [ Name=c3 ]
+ Index: LiteralExpr [LONG] [0]
]
)
(
@@ -36,7 +36,7 @@
:
IndexAccessor [
Variable [ Name=c3 ]
- Index: Variable [ Name=c3 ]
+ Index: LiteralExpr [LONG] [1]
]
)
(
@@ -44,7 +44,7 @@
:
IndexAccessor [
Variable [ Name=c3 ]
- Index: Variable [ Name=c3 ]
+ Index: LiteralExpr [LONG] [5]
]
)
(
@@ -52,7 +52,7 @@
:
IndexAccessor [
Variable [ Name=c3 ]
- Index: Variable [ Name=c3 ]
+ Index: LiteralExpr [LONG] [10]
]
)
]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/custord/order_q_05/order_q_05.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/custord/order_q_05/order_q_05.3.ast
index 9b46c2b..8a9b1ee 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/custord/order_q_05/order_q_05.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/custord/order_q_05/order_q_05.3.ast
@@ -33,7 +33,7 @@
:
IndexAccessor [
Variable [ Name=c1 ]
- Index: Variable [ Name=c1 ]
+ Index: LiteralExpr [LONG] [0]
]
)
(
@@ -41,7 +41,7 @@
:
IndexAccessor [
Variable [ Name=c1 ]
- Index: Variable [ Name=c1 ]
+ Index: LiteralExpr [LONG] [4]
]
)
(
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/dapd/q2/q2.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/dapd/q2/q2.3.ast
index ac677df..8158af7 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/dapd/q2/q2.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/dapd/q2/q2.3.ast
@@ -98,11 +98,11 @@
]
With
Variable [ Name=e ]
- Variable [ Name=by_chapter ]
Variable [ Name=sig_sponsorship_count ]
- Variable [ Name=es ]
Variable [ Name=sponsor ]
+ Variable [ Name=sig_id ]
Variable [ Name=event ]
+ Variable [ Name=es ]
)
Orderby
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/distinct/query-issue443-2/query-issue443-2.1.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/distinct/query-issue443-2/query-issue443-2.1.ast
index 4073865..4f89fc4 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/distinct/query-issue443-2/query-issue443-2.1.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/distinct/query-issue443-2/query-issue443-2.1.ast
@@ -24,7 +24,7 @@
(
LiteralExpr [STRING] [g]
:
- LiteralExpr [LONG] [2]
+ LiteralExpr [LONG] [4]
)
]
RecordConstructor [
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/distinct/query-issue443/query-issue443.1.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/distinct/query-issue443/query-issue443.1.ast
index e69de29..3bccb41 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/distinct/query-issue443/query-issue443.1.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/distinct/query-issue443/query-issue443.1.ast
@@ -0,0 +1,44 @@
+Query:
+SELECT ELEMENT [
+Variable [ Name=a ]
+]
+FROM [ OrderedListConstructor [
+ RecordConstructor [
+ (
+ LiteralExpr [STRING] [f]
+ :
+ LiteralExpr [LONG] [19]
+ )
+ ]
+ RecordConstructor [
+ (
+ LiteralExpr [STRING] [f]
+ :
+ LiteralExpr [LONG] [12]
+ )
+ ]
+ RecordConstructor [
+ (
+ LiteralExpr [STRING] [f]
+ :
+ LiteralExpr [LONG] [10]
+ )
+ ]
+ RecordConstructor [
+ (
+ LiteralExpr [STRING] [f]
+ :
+ LiteralExpr [LONG] [17]
+ )
+ ]
+ RecordConstructor [
+ (
+ LiteralExpr [STRING] [f]
+ :
+ LiteralExpr [LONG] [12]
+ )
+ ]
+ ]
+ AS
+ Variable [ Name=a ]
+]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/dml/insert-and-scan-joined-datasets/insert-and-scan-joined-datasets.1.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/dml/insert-and-scan-joined-datasets/insert-and-scan-joined-datasets.1.ast
index e69de29..894f97c 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/dml/insert-and-scan-joined-datasets/insert-and-scan-joined-datasets.1.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/dml/insert-and-scan-joined-datasets/insert-and-scan-joined-datasets.1.ast
@@ -0,0 +1,8 @@
+DataverseUse test
+TypeDecl myDataType [
+ open RecordType {
+ id : int64
+ }
+]
+DatasetDecl myData(myDataType) partitioned by [[id]]
+DatasetDecl myData2(myDataType) partitioned by [[id]]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/dml/insert-and-scan-joined-datasets/insert-and-scan-joined-datasets.2.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/dml/insert-and-scan-joined-datasets/insert-and-scan-joined-datasets.2.ast
index e69de29..916a59e 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/dml/insert-and-scan-joined-datasets/insert-and-scan-joined-datasets.2.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/dml/insert-and-scan-joined-datasets/insert-and-scan-joined-datasets.2.ast
@@ -0,0 +1 @@
+DataverseUse test
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/dml/insert-and-scan-joined-datasets/insert-and-scan-joined-datasets.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/dml/insert-and-scan-joined-datasets/insert-and-scan-joined-datasets.3.ast
index e69de29..c200c21 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/dml/insert-and-scan-joined-datasets/insert-and-scan-joined-datasets.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/dml/insert-and-scan-joined-datasets/insert-and-scan-joined-datasets.3.ast
@@ -0,0 +1,18 @@
+DataverseUse test
+Query:
+SELECT ELEMENT [
+Variable [ Name=c ]
+]
+FROM [ FunctionCall Metadata.dataset@1[
+ LiteralExpr [STRING] [myData]
+ ]
+ AS
+ Variable [ Name=c ]
+]
+Orderby
+ FieldAccessor [
+ Variable [ Name=c ]
+ Field=id
+ ]
+ ASC
+
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/dml/load-with-word-index-open/load-with-word-index-open.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/dml/load-with-word-index-open/load-with-word-index-open.3.ast
index 0009875..744a345 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/dml/load-with-word-index-open/load-with-word-index-open.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/dml/load-with-word-index-open/load-with-word-index-open.3.ast
@@ -26,5 +26,5 @@
Where
IndexAccessor [
Variable [ Name=jacc ]
- Index: Variable [ Name=jacc ]
+ Index: LiteralExpr [LONG] [0]
]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/dml/load-with-word-index/load-with-word-index.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/dml/load-with-word-index/load-with-word-index.3.ast
index 996effe..e8fa4dd 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/dml/load-with-word-index/load-with-word-index.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/dml/load-with-word-index/load-with-word-index.3.ast
@@ -26,5 +26,5 @@
Where
IndexAccessor [
Variable [ Name=jacc ]
- Index: Variable [ Name=jacc ]
+ Index: LiteralExpr [LONG] [0]
]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/dml/query-issue205/query-issue205.1.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/dml/query-issue205/query-issue205.1.ast
index e69de29..e824e26 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/dml/query-issue205/query-issue205.1.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/dml/query-issue205/query-issue205.1.ast
@@ -0,0 +1,15 @@
+DataverseUse test
+TypeDecl EmployeeStat [
+ open RecordType {
+ age : int64,
+ salary : int64
+ }
+]
+TypeDecl EmployeeType [
+ closed RecordType {
+ id : string,
+ stat : EmployeeStat,
+ deptCode : int64
+ }
+]
+DatasetDecl Employees(EmployeeType) partitioned by [[id]]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/dml/query-issue205/query-issue205.2.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/dml/query-issue205/query-issue205.2.ast
index e69de29..916a59e 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/dml/query-issue205/query-issue205.2.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/dml/query-issue205/query-issue205.2.ast
@@ -0,0 +1 @@
+DataverseUse test
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/dml/query-issue205/query-issue205.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/dml/query-issue205/query-issue205.3.ast
index e69de29..52568ce 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/dml/query-issue205/query-issue205.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/dml/query-issue205/query-issue205.3.ast
@@ -0,0 +1,11 @@
+DataverseUse test
+Query:
+SELECT ELEMENT [
+Variable [ Name=l ]
+]
+FROM [ FunctionCall Metadata.dataset@1[
+ LiteralExpr [STRING] [Employees]
+ ]
+ AS
+ Variable [ Name=l ]
+]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/dml/query-issue288/query-issue288.1.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/dml/query-issue288/query-issue288.1.ast
index e69de29..a3a6877 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/dml/query-issue288/query-issue288.1.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/dml/query-issue288/query-issue288.1.ast
@@ -0,0 +1,10 @@
+DataverseUse test
+TypeDecl LineIDType [
+ closed RecordType {
+ l_orderkey : int64,
+ l_linenumber : int64,
+ l_suppkey : int64
+ }
+]
+DatasetDecl LineID(LineIDType) partitioned by [[l_orderkey], [l_linenumber]]
+DatasetDecl LineID2(LineIDType) partitioned by [[l_orderkey], [l_linenumber]]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/dml/query-issue288/query-issue288.2.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/dml/query-issue288/query-issue288.2.ast
index e69de29..916a59e 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/dml/query-issue288/query-issue288.2.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/dml/query-issue288/query-issue288.2.ast
@@ -0,0 +1 @@
+DataverseUse test
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/dml/query-issue288/query-issue288.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/dml/query-issue288/query-issue288.3.ast
index e69de29..916a59e 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/dml/query-issue288/query-issue288.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/dml/query-issue288/query-issue288.3.ast
@@ -0,0 +1 @@
+DataverseUse test
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/dml/query-issue288/query-issue288.4.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/dml/query-issue288/query-issue288.4.ast
index e69de29..916a59e 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/dml/query-issue288/query-issue288.4.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/dml/query-issue288/query-issue288.4.ast
@@ -0,0 +1 @@
+DataverseUse test
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/dml/query-issue288/query-issue288.5.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/dml/query-issue288/query-issue288.5.ast
index e69de29..2cc3f9b 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/dml/query-issue288/query-issue288.5.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/dml/query-issue288/query-issue288.5.ast
@@ -0,0 +1,20 @@
+DataverseUse test
+Query:
+SELECT ELEMENT [
+Variable [ Name=c ]
+]
+FROM [ FunctionCall Metadata.dataset@1[
+ LiteralExpr [STRING] [LineID2]
+ ]
+ AS
+ Variable [ Name=c ]
+]
+Where
+ OperatorExpr [
+ FieldAccessor [
+ Variable [ Name=c ]
+ Field=l_linenumber
+ ]
+ =
+ LiteralExpr [LONG] [2]
+ ]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/dml/query-issue433/query-issue433.1.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/dml/query-issue433/query-issue433.1.ast
index e69de29..c52821e 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/dml/query-issue433/query-issue433.1.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/dml/query-issue433/query-issue433.1.ast
@@ -0,0 +1,16 @@
+DataverseUse insertIssue
+TypeDecl subElem [
+ closed RecordType {
+ n : string,
+ e : int64?
+ }
+]
+TypeDecl elem [
+ closed RecordType {
+ id : int64,
+ name : string,
+ sub : OrderedList [subElem]
+
+ }
+]
+DatasetDecl myDataset(elem) partitioned by [[id]]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/dml/query-issue433/query-issue433.2.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/dml/query-issue433/query-issue433.2.ast
index e69de29..0ed60b8 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/dml/query-issue433/query-issue433.2.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/dml/query-issue433/query-issue433.2.ast
@@ -0,0 +1 @@
+DataverseUse insertIssue
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/dml/query-issue433/query-issue433.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/dml/query-issue433/query-issue433.3.ast
index e69de29..5698d739 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/dml/query-issue433/query-issue433.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/dml/query-issue433/query-issue433.3.ast
@@ -0,0 +1,18 @@
+DataverseUse insertIssue
+Query:
+SELECT ELEMENT [
+Variable [ Name=d ]
+]
+FROM [ FunctionCall Metadata.dataset@1[
+ LiteralExpr [STRING] [myDataset]
+ ]
+ AS
+ Variable [ Name=d ]
+]
+Orderby
+ FieldAccessor [
+ Variable [ Name=d ]
+ Field=id
+ ]
+ ASC
+
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/dml/scan-delete-inverted-index-word-secondary-index-nullable/scan-delete-inverted-index-word-secondary-index-nullable.5.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/dml/scan-delete-inverted-index-word-secondary-index-nullable/scan-delete-inverted-index-word-secondary-index-nullable.5.ast
index 996effe..e8fa4dd 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/dml/scan-delete-inverted-index-word-secondary-index-nullable/scan-delete-inverted-index-word-secondary-index-nullable.5.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/dml/scan-delete-inverted-index-word-secondary-index-nullable/scan-delete-inverted-index-word-secondary-index-nullable.5.ast
@@ -26,5 +26,5 @@
Where
IndexAccessor [
Variable [ Name=jacc ]
- Index: Variable [ Name=jacc ]
+ Index: LiteralExpr [LONG] [0]
]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/dml/scan-delete-inverted-index-word-secondary-index-open/scan-delete-inverted-index-word-secondary-index-open.5.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/dml/scan-delete-inverted-index-word-secondary-index-open/scan-delete-inverted-index-word-secondary-index-open.5.ast
index 0009875..744a345 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/dml/scan-delete-inverted-index-word-secondary-index-open/scan-delete-inverted-index-word-secondary-index-open.5.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/dml/scan-delete-inverted-index-word-secondary-index-open/scan-delete-inverted-index-word-secondary-index-open.5.ast
@@ -26,5 +26,5 @@
Where
IndexAccessor [
Variable [ Name=jacc ]
- Index: Variable [ Name=jacc ]
+ Index: LiteralExpr [LONG] [0]
]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/dml/scan-delete-inverted-index-word-secondary-index/scan-delete-inverted-index-word-secondary-index.5.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/dml/scan-delete-inverted-index-word-secondary-index/scan-delete-inverted-index-word-secondary-index.5.ast
index 996effe..e8fa4dd 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/dml/scan-delete-inverted-index-word-secondary-index/scan-delete-inverted-index-word-secondary-index.5.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/dml/scan-delete-inverted-index-word-secondary-index/scan-delete-inverted-index-word-secondary-index.5.ast
@@ -26,5 +26,5 @@
Where
IndexAccessor [
Variable [ Name=jacc ]
- Index: Variable [ Name=jacc ]
+ Index: LiteralExpr [LONG] [0]
]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/dml/scan-insert-inverted-index-word-secondary-index-nullable/scan-insert-inverted-index-word-secondary-index-nullable.5.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/dml/scan-insert-inverted-index-word-secondary-index-nullable/scan-insert-inverted-index-word-secondary-index-nullable.5.ast
index f175f19..0025905 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/dml/scan-insert-inverted-index-word-secondary-index-nullable/scan-insert-inverted-index-word-secondary-index-nullable.5.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/dml/scan-insert-inverted-index-word-secondary-index-nullable/scan-insert-inverted-index-word-secondary-index-nullable.5.ast
@@ -26,5 +26,5 @@
Where
IndexAccessor [
Variable [ Name=jacc ]
- Index: Variable [ Name=jacc ]
+ Index: LiteralExpr [LONG] [0]
]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/dml/scan-insert-inverted-index-word-secondary-index-open/scan-insert-inverted-index-word-secondary-index-open.5.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/dml/scan-insert-inverted-index-word-secondary-index-open/scan-insert-inverted-index-word-secondary-index-open.5.ast
index 0009875..744a345 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/dml/scan-insert-inverted-index-word-secondary-index-open/scan-insert-inverted-index-word-secondary-index-open.5.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/dml/scan-insert-inverted-index-word-secondary-index-open/scan-insert-inverted-index-word-secondary-index-open.5.ast
@@ -26,5 +26,5 @@
Where
IndexAccessor [
Variable [ Name=jacc ]
- Index: Variable [ Name=jacc ]
+ Index: LiteralExpr [LONG] [0]
]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/dml/scan-insert-inverted-index-word-secondary-index/scan-insert-inverted-index-word-secondary-index.5.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/dml/scan-insert-inverted-index-word-secondary-index/scan-insert-inverted-index-word-secondary-index.5.ast
index f175f19..0025905 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/dml/scan-insert-inverted-index-word-secondary-index/scan-insert-inverted-index-word-secondary-index.5.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/dml/scan-insert-inverted-index-word-secondary-index/scan-insert-inverted-index-word-secondary-index.5.ast
@@ -26,5 +26,5 @@
Where
IndexAccessor [
Variable [ Name=jacc ]
- Index: Variable [ Name=jacc ]
+ Index: LiteralExpr [LONG] [0]
]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/employee/q_02/q_02.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/employee/q_02/q_02.3.ast
index 742e574..b0ddf39 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/employee/q_02/q_02.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/employee/q_02/q_02.3.ast
@@ -51,10 +51,7 @@
Variable [ Name=e ]
Field=children
]
- Index: FieldAccessor [
- Variable [ Name=e ]
- Field=children
- ]
+ Index: LiteralExpr [LONG] [1]
]
)
]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/external-indexing/rc-format/rc-format.1.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/external-indexing/rc-format/rc-format.1.ast
index e69de29..431e6f1 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/external-indexing/rc-format/rc-format.1.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/external-indexing/rc-format/rc-format.1.ast
@@ -0,0 +1,9 @@
+DataverseUse test
+TypeDecl EmployeeType [
+ closed RecordType {
+ id : int64,
+ name : string,
+ age : int64
+ }
+]
+DatasetDecl EmployeeDataset(EmployeeType)is an external dataset
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/external-indexing/rc-format/rc-format.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/external-indexing/rc-format/rc-format.3.ast
index e69de29..4ce2f9f 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/external-indexing/rc-format/rc-format.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/external-indexing/rc-format/rc-format.3.ast
@@ -0,0 +1,20 @@
+DataverseUse test
+Query:
+SELECT ELEMENT [
+Variable [ Name=emp ]
+]
+FROM [ FunctionCall Metadata.dataset@1[
+ LiteralExpr [STRING] [EmployeeDataset]
+ ]
+ AS
+ Variable [ Name=emp ]
+]
+Where
+ OperatorExpr [
+ FieldAccessor [
+ Variable [ Name=emp ]
+ Field=age
+ ]
+ =
+ LiteralExpr [LONG] [22]
+ ]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/external-indexing/sequence-format/sequence-format.1.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/external-indexing/sequence-format/sequence-format.1.ast
index e69de29..431e6f1 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/external-indexing/sequence-format/sequence-format.1.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/external-indexing/sequence-format/sequence-format.1.ast
@@ -0,0 +1,9 @@
+DataverseUse test
+TypeDecl EmployeeType [
+ closed RecordType {
+ id : int64,
+ name : string,
+ age : int64
+ }
+]
+DatasetDecl EmployeeDataset(EmployeeType)is an external dataset
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/external-indexing/sequence-format/sequence-format.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/external-indexing/sequence-format/sequence-format.3.ast
index e69de29..4ce2f9f 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/external-indexing/sequence-format/sequence-format.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/external-indexing/sequence-format/sequence-format.3.ast
@@ -0,0 +1,20 @@
+DataverseUse test
+Query:
+SELECT ELEMENT [
+Variable [ Name=emp ]
+]
+FROM [ FunctionCall Metadata.dataset@1[
+ LiteralExpr [STRING] [EmployeeDataset]
+ ]
+ AS
+ Variable [ Name=emp ]
+]
+Where
+ OperatorExpr [
+ FieldAccessor [
+ Variable [ Name=emp ]
+ Field=age
+ ]
+ =
+ LiteralExpr [LONG] [22]
+ ]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/external-indexing/text-format/text-format.1.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/external-indexing/text-format/text-format.1.ast
index e69de29..431e6f1 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/external-indexing/text-format/text-format.1.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/external-indexing/text-format/text-format.1.ast
@@ -0,0 +1,9 @@
+DataverseUse test
+TypeDecl EmployeeType [
+ closed RecordType {
+ id : int64,
+ name : string,
+ age : int64
+ }
+]
+DatasetDecl EmployeeDataset(EmployeeType)is an external dataset
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/external-indexing/text-format/text-format.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/external-indexing/text-format/text-format.3.ast
index e69de29..a638988 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/external-indexing/text-format/text-format.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/external-indexing/text-format/text-format.3.ast
@@ -0,0 +1,27 @@
+DataverseUse test
+Query:
+SELECT ELEMENT [
+Variable [ Name=emp ]
+]
+FROM [ FunctionCall Metadata.dataset@1[
+ LiteralExpr [STRING] [EmployeeDataset]
+ ]
+ AS
+ Variable [ Name=emp ]
+]
+Where
+ OperatorExpr [
+ FieldAccessor [
+ Variable [ Name=emp ]
+ Field=age
+ ]
+ =
+ LiteralExpr [LONG] [22]
+ ]
+Orderby
+ FieldAccessor [
+ Variable [ Name=emp ]
+ Field=id
+ ]
+ ASC
+
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/flwor/at00/at00.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/flwor/at00/at00.3.ast
index d3860d0..60a1d56 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/flwor/at00/at00.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/flwor/at00/at00.3.ast
@@ -40,9 +40,29 @@
)
]
]
- FROM [ FunctionCall Metadata.dataset@1[
- LiteralExpr [STRING] [LineItem]
- ]
+ FROM [ (
+ SELECT ELEMENT [
+ Variable [ Name=l ]
+ ]
+ FROM [ FunctionCall Metadata.dataset@1[
+ LiteralExpr [STRING] [LineItem]
+ ]
+ AS
+ Variable [ Name=l ]
+ ]
+ Orderby
+ FieldAccessor [
+ Variable [ Name=l ]
+ Field=l_partkey
+ ]
+ ASC
+ FieldAccessor [
+ Variable [ Name=l ]
+ Field=l_shipdate
+ ]
+ ASC
+
+ )
AS
Variable [ Name=i ]
]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/flwor/at00/at00.4.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/flwor/at00/at00.4.ast
index d3860d0..60a1d56 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/flwor/at00/at00.4.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/flwor/at00/at00.4.ast
@@ -40,9 +40,29 @@
)
]
]
- FROM [ FunctionCall Metadata.dataset@1[
- LiteralExpr [STRING] [LineItem]
- ]
+ FROM [ (
+ SELECT ELEMENT [
+ Variable [ Name=l ]
+ ]
+ FROM [ FunctionCall Metadata.dataset@1[
+ LiteralExpr [STRING] [LineItem]
+ ]
+ AS
+ Variable [ Name=l ]
+ ]
+ Orderby
+ FieldAccessor [
+ Variable [ Name=l ]
+ Field=l_partkey
+ ]
+ ASC
+ FieldAccessor [
+ Variable [ Name=l ]
+ Field=l_shipdate
+ ]
+ ASC
+
+ )
AS
Variable [ Name=i ]
]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/flwor/at00/at00.5.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/flwor/at00/at00.5.ast
index d3860d0..60a1d56 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/flwor/at00/at00.5.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/flwor/at00/at00.5.ast
@@ -40,9 +40,29 @@
)
]
]
- FROM [ FunctionCall Metadata.dataset@1[
- LiteralExpr [STRING] [LineItem]
- ]
+ FROM [ (
+ SELECT ELEMENT [
+ Variable [ Name=l ]
+ ]
+ FROM [ FunctionCall Metadata.dataset@1[
+ LiteralExpr [STRING] [LineItem]
+ ]
+ AS
+ Variable [ Name=l ]
+ ]
+ Orderby
+ FieldAccessor [
+ Variable [ Name=l ]
+ Field=l_partkey
+ ]
+ ASC
+ FieldAccessor [
+ Variable [ Name=l ]
+ Field=l_shipdate
+ ]
+ ASC
+
+ )
AS
Variable [ Name=i ]
]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/flwor/at06/at06.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/flwor/at06/at06.3.ast
index 224ce62..1eed705 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/flwor/at06/at06.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/flwor/at06/at06.3.ast
@@ -37,20 +37,35 @@
SELECT ELEMENT [
RecordConstructor [
(
- LiteralExpr [STRING] [partkey]
- :
- Variable [ Name=partkey ]
- )
- (
LiteralExpr [STRING] [i]
:
Variable [ Name=i ]
)
+ (
+ LiteralExpr [STRING] [partkey]
+ :
+ Variable [ Name=partkey ]
+ )
]
]
- FROM [ FunctionCall Metadata.dataset@1[
- LiteralExpr [STRING] [LineItem]
- ]
+ FROM [ (
+ SELECT ELEMENT [
+ Variable [ Name=l ]
+ ]
+ FROM [ FunctionCall Metadata.dataset@1[
+ LiteralExpr [STRING] [LineItem]
+ ]
+ AS
+ Variable [ Name=l ]
+ ]
+ Orderby
+ FieldAccessor [
+ Variable [ Name=l ]
+ Field=l_partkey
+ ]
+ ASC
+
+ )
AS
Variable [ Name=i ]
]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-2.1_5.3.1/dblp-2.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-2.1_5.3.1/dblp-2.3.ast
index 1b78185..db61b3e 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-2.1_5.3.1/dblp-2.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-2.1_5.3.1/dblp-2.3.ast
@@ -104,7 +104,6 @@
Variable [ Name=paper ]
Variable [ Name=token ]
Variable [ Name=tokenUnranked ]
- Variable [ Name=tokensDBLP ]
Variable [ Name=lenDBLP ]
Variable [ Name=tokensUnrankedDBLP ]
Variable [ Name=idDBLP ]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-2_1/dblp-2_1.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-2_1/dblp-2_1.3.ast
index a2c468a..66dcb7b 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-2_1/dblp-2_1.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-2_1/dblp-2_1.3.ast
@@ -66,7 +66,6 @@
Variable [ Name=paper ]
Variable [ Name=token ]
Variable [ Name=tokenUnranked ]
- Variable [ Name=tokensDBLP ]
Variable [ Name=paperDBLP ]
Orderby
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-2_2/dblp-2_2.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-2_2/dblp-2_2.3.ast
index 41ce531..7f265d8 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-2_2/dblp-2_2.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-2_2/dblp-2_2.3.ast
@@ -73,7 +73,6 @@
Variable [ Name=paper ]
Variable [ Name=token ]
Variable [ Name=tokenUnranked ]
- Variable [ Name=tokensDBLP ]
Variable [ Name=paperDBLP ]
Orderby
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-2_3/dblp-2_3.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-2_3/dblp-2_3.3.ast
index c9e4e57..136f460 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-2_3/dblp-2_3.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-2_3/dblp-2_3.3.ast
@@ -76,7 +76,6 @@
Variable [ Name=paper ]
Variable [ Name=token ]
Variable [ Name=tokenUnranked ]
- Variable [ Name=tokensDBLP ]
Variable [ Name=idDBLP ]
Variable [ Name=paperDBLP ]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-2_4/dblp-2_4.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-2_4/dblp-2_4.3.ast
index 30f198b..7ea0932 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-2_4/dblp-2_4.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-2_4/dblp-2_4.3.ast
@@ -79,7 +79,6 @@
Variable [ Name=paper ]
Variable [ Name=token ]
Variable [ Name=tokenUnranked ]
- Variable [ Name=tokensDBLP ]
Variable [ Name=tokensUnrankedDBLP ]
Variable [ Name=idDBLP ]
Variable [ Name=paperDBLP ]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-2_5.1/dblp-2_5.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-2_5.1/dblp-2_5.3.ast
index 079ed12..2fa4b09 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-2_5.1/dblp-2_5.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-2_5.1/dblp-2_5.3.ast
@@ -89,7 +89,6 @@
Variable [ Name=paper ]
Variable [ Name=token ]
Variable [ Name=tokenUnranked ]
- Variable [ Name=tokensDBLP ]
Variable [ Name=lenDBLP ]
Variable [ Name=tokensUnrankedDBLP ]
Variable [ Name=idDBLP ]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-2_5.2/dblp-2_5.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-2_5.2/dblp-2_5.3.ast
index 079ed12..2fa4b09 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-2_5.2/dblp-2_5.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-2_5.2/dblp-2_5.3.ast
@@ -89,7 +89,6 @@
Variable [ Name=paper ]
Variable [ Name=token ]
Variable [ Name=tokenUnranked ]
- Variable [ Name=tokensDBLP ]
Variable [ Name=lenDBLP ]
Variable [ Name=tokensUnrankedDBLP ]
Variable [ Name=idDBLP ]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-2_5.3.1/dblp-2_5.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-2_5.3.1/dblp-2_5.3.ast
index 079ed12..2fa4b09 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-2_5.3.1/dblp-2_5.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-2_5.3.1/dblp-2_5.3.ast
@@ -89,7 +89,6 @@
Variable [ Name=paper ]
Variable [ Name=token ]
Variable [ Name=tokenUnranked ]
- Variable [ Name=tokensDBLP ]
Variable [ Name=lenDBLP ]
Variable [ Name=tokensUnrankedDBLP ]
Variable [ Name=idDBLP ]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-2_5.3/dblp-2_5.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-2_5.3/dblp-2_5.3.ast
index 079ed12..2fa4b09 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-2_5.3/dblp-2_5.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-2_5.3/dblp-2_5.3.ast
@@ -89,7 +89,6 @@
Variable [ Name=paper ]
Variable [ Name=token ]
Variable [ Name=tokenUnranked ]
- Variable [ Name=tokensDBLP ]
Variable [ Name=lenDBLP ]
Variable [ Name=tokensUnrankedDBLP ]
Variable [ Name=idDBLP ]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-2_5/dblp-2_5.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-2_5/dblp-2_5.3.ast
index 146d718..ff63e7d 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-2_5/dblp-2_5.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-2_5/dblp-2_5.3.ast
@@ -89,7 +89,6 @@
Variable [ Name=paper ]
Variable [ Name=token ]
Variable [ Name=tokenUnranked ]
- Variable [ Name=tokensDBLP ]
Variable [ Name=lenDBLP ]
Variable [ Name=tokensUnrankedDBLP ]
Variable [ Name=idDBLP ]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-3_1.1/dblp-3_1.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-3_1.1/dblp-3_1.3.ast
index dd8bc7d..b4f1685 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-3_1.1/dblp-3_1.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-3_1.1/dblp-3_1.3.ast
@@ -41,7 +41,7 @@
:
IndexAccessor [
Variable [ Name=sim ]
- Index: Variable [ Name=sim ]
+ Index: LiteralExpr [LONG] [0]
]
)
]
@@ -140,7 +140,6 @@
Variable [ Name=paper ]
Variable [ Name=token ]
Variable [ Name=tokenUnranked ]
- Variable [ Name=tokensLeft ]
Variable [ Name=lenLeft ]
Variable [ Name=paperLeft ]
Variable [ Name=paperRight ]
@@ -224,7 +223,6 @@
Variable [ Name=paper ]
Variable [ Name=token ]
Variable [ Name=tokenUnranked ]
- Variable [ Name=tokensRight ]
Variable [ Name=lenRight ]
Variable [ Name=tokensLeft ]
Variable [ Name=lenLeft ]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-3_1.2/dblp-3_1.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-3_1.2/dblp-3_1.3.ast
index dd8bc7d..b4f1685 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-3_1.2/dblp-3_1.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-3_1.2/dblp-3_1.3.ast
@@ -41,7 +41,7 @@
:
IndexAccessor [
Variable [ Name=sim ]
- Index: Variable [ Name=sim ]
+ Index: LiteralExpr [LONG] [0]
]
)
]
@@ -140,7 +140,6 @@
Variable [ Name=paper ]
Variable [ Name=token ]
Variable [ Name=tokenUnranked ]
- Variable [ Name=tokensLeft ]
Variable [ Name=lenLeft ]
Variable [ Name=paperLeft ]
Variable [ Name=paperRight ]
@@ -224,7 +223,6 @@
Variable [ Name=paper ]
Variable [ Name=token ]
Variable [ Name=tokenUnranked ]
- Variable [ Name=tokensRight ]
Variable [ Name=lenRight ]
Variable [ Name=tokensLeft ]
Variable [ Name=lenLeft ]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-3_1/dblp-3_1.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-3_1/dblp-3_1.3.ast
index 0881303..2fb2585 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-3_1/dblp-3_1.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-3_1/dblp-3_1.3.ast
@@ -53,7 +53,7 @@
:
IndexAccessor [
Variable [ Name=sim ]
- Index: Variable [ Name=sim ]
+ Index: LiteralExpr [LONG] [0]
]
)
]
@@ -152,14 +152,11 @@
Variable [ Name=paper ]
Variable [ Name=token ]
Variable [ Name=tokenUnranked ]
- Variable [ Name=tokensLeft ]
Variable [ Name=lenLeft ]
Variable [ Name=paperLeft ]
Variable [ Name=paperRight ]
Variable [ Name=prefixTokenRight ]
Variable [ Name=prefixTokenLeft ]
- Variable [ Name=paperLeft ]
- Variable [ Name=paperRight ]
Orderby
FunctionCall fuzzyjoin.count@1[
@@ -238,7 +235,6 @@
Variable [ Name=paper ]
Variable [ Name=token ]
Variable [ Name=tokenUnranked ]
- Variable [ Name=tokensRight ]
Variable [ Name=lenRight ]
Variable [ Name=tokensLeft ]
Variable [ Name=lenLeft ]
@@ -246,8 +242,6 @@
Variable [ Name=paperRight ]
Variable [ Name=prefixTokenRight ]
Variable [ Name=prefixTokenLeft ]
- Variable [ Name=paperLeft ]
- Variable [ Name=paperRight ]
Orderby
FunctionCall fuzzyjoin.count@1[
@@ -335,8 +329,6 @@
Variable [ Name=paperRight ]
Variable [ Name=prefixTokenRight ]
Variable [ Name=prefixTokenLeft ]
- Variable [ Name=paperLeft ]
- Variable [ Name=paperRight ]
)
AS
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-csx-2_1/dblp-csx-2_1.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-csx-2_1/dblp-csx-2_1.3.ast
index 2b3eae0..8f15de3 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-csx-2_1/dblp-csx-2_1.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-csx-2_1/dblp-csx-2_1.3.ast
@@ -18,7 +18,7 @@
:
IndexAccessor [
Variable [ Name=sim ]
- Index: Variable [ Name=sim ]
+ Index: LiteralExpr [LONG] [0]
]
)
]
@@ -111,7 +111,6 @@
Variable [ Name=paper ]
Variable [ Name=token ]
Variable [ Name=tokenUnranked ]
- Variable [ Name=tokensDBLP ]
Variable [ Name=paperDBLP ]
Variable [ Name=prefixTokenDBLP ]
Variable [ Name=prefixTokenCSX ]
@@ -184,7 +183,6 @@
Variable [ Name=paper ]
Variable [ Name=token ]
Variable [ Name=tokenUnranked ]
- Variable [ Name=tokensCSX ]
Variable [ Name=tokensDBLP ]
Variable [ Name=paperDBLP ]
Variable [ Name=prefixTokenDBLP ]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-csx-2_2/dblp-csx-2_2.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-csx-2_2/dblp-csx-2_2.3.ast
index cb13cd0..e6786e2 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-csx-2_2/dblp-csx-2_2.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-csx-2_2/dblp-csx-2_2.3.ast
@@ -18,7 +18,7 @@
:
IndexAccessor [
Variable [ Name=sim ]
- Index: Variable [ Name=sim ]
+ Index: LiteralExpr [LONG] [0]
]
)
]
@@ -118,7 +118,6 @@
Variable [ Name=paper ]
Variable [ Name=token ]
Variable [ Name=tokenUnranked ]
- Variable [ Name=tokensDBLP ]
Variable [ Name=paperDBLP ]
Variable [ Name=prefixTokenDBLP ]
Variable [ Name=prefixTokenCSX ]
@@ -198,7 +197,6 @@
Variable [ Name=paper ]
Variable [ Name=token ]
Variable [ Name=tokenUnranked ]
- Variable [ Name=tokensCSX ]
Variable [ Name=tokensDBLP ]
Variable [ Name=paperDBLP ]
Variable [ Name=prefixTokenDBLP ]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-csx-2_3/dblp-csx-2_3.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-csx-2_3/dblp-csx-2_3.3.ast
index ffc00ff..90cb49f 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-csx-2_3/dblp-csx-2_3.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-csx-2_3/dblp-csx-2_3.3.ast
@@ -18,7 +18,7 @@
:
IndexAccessor [
Variable [ Name=sim ]
- Index: Variable [ Name=sim ]
+ Index: LiteralExpr [LONG] [0]
]
)
]
@@ -124,7 +124,6 @@
Variable [ Name=paper ]
Variable [ Name=token ]
Variable [ Name=tokenUnranked ]
- Variable [ Name=tokensDBLP ]
Variable [ Name=idDBLP ]
Variable [ Name=paperDBLP ]
Variable [ Name=prefixTokenDBLP ]
@@ -211,7 +210,6 @@
Variable [ Name=paper ]
Variable [ Name=token ]
Variable [ Name=tokenUnranked ]
- Variable [ Name=tokensCSX ]
Variable [ Name=idCSX ]
Variable [ Name=tokensDBLP ]
Variable [ Name=idDBLP ]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-csx-2_4/dblp-csx-2_4.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-csx-2_4/dblp-csx-2_4.3.ast
index ccb4e12..037d123 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-csx-2_4/dblp-csx-2_4.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-csx-2_4/dblp-csx-2_4.3.ast
@@ -18,7 +18,7 @@
:
IndexAccessor [
Variable [ Name=sim ]
- Index: Variable [ Name=sim ]
+ Index: LiteralExpr [LONG] [0]
]
)
]
@@ -127,7 +127,6 @@
Variable [ Name=paper ]
Variable [ Name=token ]
Variable [ Name=tokenUnranked ]
- Variable [ Name=tokensDBLP ]
Variable [ Name=tokensUnrankedDBLP ]
Variable [ Name=idDBLP ]
Variable [ Name=paperDBLP ]
@@ -218,7 +217,6 @@
Variable [ Name=paper ]
Variable [ Name=token ]
Variable [ Name=tokenUnranked ]
- Variable [ Name=tokensCSX ]
Variable [ Name=tokensUnrankedCSX ]
Variable [ Name=idCSX ]
Variable [ Name=tokensDBLP ]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-csx-2_5.1/dblp-csx-2_5.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-csx-2_5.1/dblp-csx-2_5.3.ast
index 4996286..ed1f277 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-csx-2_5.1/dblp-csx-2_5.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-csx-2_5.1/dblp-csx-2_5.3.ast
@@ -18,7 +18,7 @@
:
IndexAccessor [
Variable [ Name=sim ]
- Index: Variable [ Name=sim ]
+ Index: LiteralExpr [LONG] [0]
]
)
]
@@ -132,7 +132,6 @@
Variable [ Name=paper ]
Variable [ Name=token ]
Variable [ Name=tokenUnranked ]
- Variable [ Name=tokensDBLP ]
Variable [ Name=lenDBLP ]
Variable [ Name=tokensUnrankedDBLP ]
Variable [ Name=idDBLP ]
@@ -229,7 +228,6 @@
Variable [ Name=paper ]
Variable [ Name=token ]
Variable [ Name=tokenUnranked ]
- Variable [ Name=tokensCSX ]
Variable [ Name=lenCSX ]
Variable [ Name=tokensUnrankedCSX ]
Variable [ Name=idCSX ]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-csx-2_5.2/dblp-csx-2_5.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-csx-2_5.2/dblp-csx-2_5.3.ast
index 4996286..ed1f277 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-csx-2_5.2/dblp-csx-2_5.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-csx-2_5.2/dblp-csx-2_5.3.ast
@@ -18,7 +18,7 @@
:
IndexAccessor [
Variable [ Name=sim ]
- Index: Variable [ Name=sim ]
+ Index: LiteralExpr [LONG] [0]
]
)
]
@@ -132,7 +132,6 @@
Variable [ Name=paper ]
Variable [ Name=token ]
Variable [ Name=tokenUnranked ]
- Variable [ Name=tokensDBLP ]
Variable [ Name=lenDBLP ]
Variable [ Name=tokensUnrankedDBLP ]
Variable [ Name=idDBLP ]
@@ -229,7 +228,6 @@
Variable [ Name=paper ]
Variable [ Name=token ]
Variable [ Name=tokenUnranked ]
- Variable [ Name=tokensCSX ]
Variable [ Name=lenCSX ]
Variable [ Name=tokensUnrankedCSX ]
Variable [ Name=idCSX ]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-csx-2_5.3.1/dblp-csx-2_5.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-csx-2_5.3.1/dblp-csx-2_5.3.ast
index c131cbc..5844826 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-csx-2_5.3.1/dblp-csx-2_5.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-csx-2_5.3.1/dblp-csx-2_5.3.ast
@@ -18,7 +18,7 @@
:
IndexAccessor [
Variable [ Name=sim ]
- Index: Variable [ Name=sim ]
+ Index: LiteralExpr [LONG] [0]
]
)
]
@@ -132,7 +132,6 @@
Variable [ Name=paper ]
Variable [ Name=token ]
Variable [ Name=tokenUnranked ]
- Variable [ Name=tokensDBLP ]
Variable [ Name=lenDBLP ]
Variable [ Name=tokensUnrankedDBLP ]
Variable [ Name=idDBLP ]
@@ -229,7 +228,6 @@
Variable [ Name=paper ]
Variable [ Name=token ]
Variable [ Name=tokenUnranked ]
- Variable [ Name=tokensCSX ]
Variable [ Name=lenCSX ]
Variable [ Name=tokensUnrankedCSX ]
Variable [ Name=idCSX ]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-csx-2_5.3/dblp-csx-2_5.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-csx-2_5.3/dblp-csx-2_5.3.ast
index 4996286..ed1f277 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-csx-2_5.3/dblp-csx-2_5.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-csx-2_5.3/dblp-csx-2_5.3.ast
@@ -18,7 +18,7 @@
:
IndexAccessor [
Variable [ Name=sim ]
- Index: Variable [ Name=sim ]
+ Index: LiteralExpr [LONG] [0]
]
)
]
@@ -132,7 +132,6 @@
Variable [ Name=paper ]
Variable [ Name=token ]
Variable [ Name=tokenUnranked ]
- Variable [ Name=tokensDBLP ]
Variable [ Name=lenDBLP ]
Variable [ Name=tokensUnrankedDBLP ]
Variable [ Name=idDBLP ]
@@ -229,7 +228,6 @@
Variable [ Name=paper ]
Variable [ Name=token ]
Variable [ Name=tokenUnranked ]
- Variable [ Name=tokensCSX ]
Variable [ Name=lenCSX ]
Variable [ Name=tokensUnrankedCSX ]
Variable [ Name=idCSX ]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-csx-2_5/dblp-csx-2_5.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-csx-2_5/dblp-csx-2_5.3.ast
index c131cbc..5844826 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-csx-2_5/dblp-csx-2_5.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-csx-2_5/dblp-csx-2_5.3.ast
@@ -18,7 +18,7 @@
:
IndexAccessor [
Variable [ Name=sim ]
- Index: Variable [ Name=sim ]
+ Index: LiteralExpr [LONG] [0]
]
)
]
@@ -132,7 +132,6 @@
Variable [ Name=paper ]
Variable [ Name=token ]
Variable [ Name=tokenUnranked ]
- Variable [ Name=tokensDBLP ]
Variable [ Name=lenDBLP ]
Variable [ Name=tokensUnrankedDBLP ]
Variable [ Name=idDBLP ]
@@ -229,7 +228,6 @@
Variable [ Name=paper ]
Variable [ Name=token ]
Variable [ Name=tokenUnranked ]
- Variable [ Name=tokensCSX ]
Variable [ Name=lenCSX ]
Variable [ Name=tokensUnrankedCSX ]
Variable [ Name=idCSX ]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-csx-3_1/dblp-csx-3_1.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-csx-3_1/dblp-csx-3_1.3.ast
index 35c6120..75fe415 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-csx-3_1/dblp-csx-3_1.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-csx-3_1/dblp-csx-3_1.3.ast
@@ -41,7 +41,7 @@
:
IndexAccessor [
Variable [ Name=sim ]
- Index: Variable [ Name=sim ]
+ Index: LiteralExpr [LONG] [0]
]
)
]
@@ -134,7 +134,6 @@
Variable [ Name=paper ]
Variable [ Name=token ]
Variable [ Name=tokenUnranked ]
- Variable [ Name=tokensDBLP ]
Variable [ Name=paperDBLP ]
Variable [ Name=prefixTokenDBLP ]
Variable [ Name=prefixTokenCSX ]
@@ -207,7 +206,6 @@
Variable [ Name=paper ]
Variable [ Name=token ]
Variable [ Name=tokenUnranked ]
- Variable [ Name=tokensCSX ]
Variable [ Name=tokensDBLP ]
Variable [ Name=paperDBLP ]
Variable [ Name=prefixTokenDBLP ]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-csx-3_2/dblp-csx-3_2.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-csx-3_2/dblp-csx-3_2.3.ast
index 4b67ba9..45ee790 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-csx-3_2/dblp-csx-3_2.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-csx-3_2/dblp-csx-3_2.3.ast
@@ -41,7 +41,7 @@
:
IndexAccessor [
Variable [ Name=sim ]
- Index: Variable [ Name=sim ]
+ Index: LiteralExpr [LONG] [0]
]
)
]
@@ -141,7 +141,6 @@
Variable [ Name=paper ]
Variable [ Name=token ]
Variable [ Name=tokenUnranked ]
- Variable [ Name=tokensDBLP ]
Variable [ Name=paperDBLP ]
Variable [ Name=prefixTokenDBLP ]
Variable [ Name=prefixTokenCSX ]
@@ -221,7 +220,6 @@
Variable [ Name=paper ]
Variable [ Name=token ]
Variable [ Name=tokenUnranked ]
- Variable [ Name=tokensCSX ]
Variable [ Name=tokensDBLP ]
Variable [ Name=paperDBLP ]
Variable [ Name=prefixTokenDBLP ]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-csx-3_3/dblp-csx-3_3.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-csx-3_3/dblp-csx-3_3.3.ast
index 635bea5..133f403 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-csx-3_3/dblp-csx-3_3.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-csx-3_3/dblp-csx-3_3.3.ast
@@ -41,7 +41,7 @@
:
IndexAccessor [
Variable [ Name=sim ]
- Index: Variable [ Name=sim ]
+ Index: LiteralExpr [LONG] [0]
]
)
]
@@ -147,7 +147,6 @@
Variable [ Name=paper ]
Variable [ Name=token ]
Variable [ Name=tokenUnranked ]
- Variable [ Name=tokensDBLP ]
Variable [ Name=idDBLP ]
Variable [ Name=paperDBLP ]
Variable [ Name=prefixTokenDBLP ]
@@ -234,7 +233,6 @@
Variable [ Name=paper ]
Variable [ Name=token ]
Variable [ Name=tokenUnranked ]
- Variable [ Name=tokensCSX ]
Variable [ Name=idCSX ]
Variable [ Name=tokensDBLP ]
Variable [ Name=idDBLP ]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-csx-3_4/dblp-csx-3_4.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-csx-3_4/dblp-csx-3_4.3.ast
index f7d802a..342922b 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-csx-3_4/dblp-csx-3_4.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-csx-3_4/dblp-csx-3_4.3.ast
@@ -41,7 +41,7 @@
:
IndexAccessor [
Variable [ Name=sim ]
- Index: Variable [ Name=sim ]
+ Index: LiteralExpr [LONG] [0]
]
)
]
@@ -150,7 +150,6 @@
Variable [ Name=paper ]
Variable [ Name=token ]
Variable [ Name=tokenUnranked ]
- Variable [ Name=tokensDBLP ]
Variable [ Name=tokensUnrankedDBLP ]
Variable [ Name=idDBLP ]
Variable [ Name=paperDBLP ]
@@ -241,7 +240,6 @@
Variable [ Name=paper ]
Variable [ Name=token ]
Variable [ Name=tokenUnranked ]
- Variable [ Name=tokensCSX ]
Variable [ Name=tokensUnrankedCSX ]
Variable [ Name=idCSX ]
Variable [ Name=tokensDBLP ]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-csx-3_5.1/dblp-csx-3_5.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-csx-3_5.1/dblp-csx-3_5.3.ast
index ae3194f..bf53a65 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-csx-3_5.1/dblp-csx-3_5.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-csx-3_5.1/dblp-csx-3_5.3.ast
@@ -41,7 +41,7 @@
:
IndexAccessor [
Variable [ Name=sim ]
- Index: Variable [ Name=sim ]
+ Index: LiteralExpr [LONG] [0]
]
)
]
@@ -155,7 +155,6 @@
Variable [ Name=paper ]
Variable [ Name=token ]
Variable [ Name=tokenUnranked ]
- Variable [ Name=tokensDBLP ]
Variable [ Name=lenDBLP ]
Variable [ Name=tokensUnrankedDBLP ]
Variable [ Name=idDBLP ]
@@ -252,7 +251,6 @@
Variable [ Name=paper ]
Variable [ Name=token ]
Variable [ Name=tokenUnranked ]
- Variable [ Name=tokensCSX ]
Variable [ Name=lenCSX ]
Variable [ Name=tokensUnrankedCSX ]
Variable [ Name=idCSX ]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-csx-3_5.2/dblp-csx-3_5.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-csx-3_5.2/dblp-csx-3_5.3.ast
index ae3194f..bf53a65 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-csx-3_5.2/dblp-csx-3_5.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-csx-3_5.2/dblp-csx-3_5.3.ast
@@ -41,7 +41,7 @@
:
IndexAccessor [
Variable [ Name=sim ]
- Index: Variable [ Name=sim ]
+ Index: LiteralExpr [LONG] [0]
]
)
]
@@ -155,7 +155,6 @@
Variable [ Name=paper ]
Variable [ Name=token ]
Variable [ Name=tokenUnranked ]
- Variable [ Name=tokensDBLP ]
Variable [ Name=lenDBLP ]
Variable [ Name=tokensUnrankedDBLP ]
Variable [ Name=idDBLP ]
@@ -252,7 +251,6 @@
Variable [ Name=paper ]
Variable [ Name=token ]
Variable [ Name=tokenUnranked ]
- Variable [ Name=tokensCSX ]
Variable [ Name=lenCSX ]
Variable [ Name=tokensUnrankedCSX ]
Variable [ Name=idCSX ]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-csx-3_5.3.1/dblp-csx-3_5.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-csx-3_5.3.1/dblp-csx-3_5.3.ast
index ae3194f..bf53a65 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-csx-3_5.3.1/dblp-csx-3_5.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-csx-3_5.3.1/dblp-csx-3_5.3.ast
@@ -41,7 +41,7 @@
:
IndexAccessor [
Variable [ Name=sim ]
- Index: Variable [ Name=sim ]
+ Index: LiteralExpr [LONG] [0]
]
)
]
@@ -155,7 +155,6 @@
Variable [ Name=paper ]
Variable [ Name=token ]
Variable [ Name=tokenUnranked ]
- Variable [ Name=tokensDBLP ]
Variable [ Name=lenDBLP ]
Variable [ Name=tokensUnrankedDBLP ]
Variable [ Name=idDBLP ]
@@ -252,7 +251,6 @@
Variable [ Name=paper ]
Variable [ Name=token ]
Variable [ Name=tokenUnranked ]
- Variable [ Name=tokensCSX ]
Variable [ Name=lenCSX ]
Variable [ Name=tokensUnrankedCSX ]
Variable [ Name=idCSX ]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-csx-3_5.3/dblp-csx-3_5.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-csx-3_5.3/dblp-csx-3_5.3.ast
index 10e93a2..7ca0193 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-csx-3_5.3/dblp-csx-3_5.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-csx-3_5.3/dblp-csx-3_5.3.ast
@@ -41,7 +41,7 @@
:
IndexAccessor [
Variable [ Name=sim ]
- Index: Variable [ Name=sim ]
+ Index: LiteralExpr [LONG] [0]
]
)
]
@@ -155,7 +155,6 @@
Variable [ Name=paper ]
Variable [ Name=token ]
Variable [ Name=tokenUnranked ]
- Variable [ Name=tokensDBLP ]
Variable [ Name=lenDBLP ]
Variable [ Name=tokensUnrankedDBLP ]
Variable [ Name=idDBLP ]
@@ -252,7 +251,6 @@
Variable [ Name=paper ]
Variable [ Name=token ]
Variable [ Name=tokenUnranked ]
- Variable [ Name=tokensCSX ]
Variable [ Name=lenCSX ]
Variable [ Name=tokensUnrankedCSX ]
Variable [ Name=idCSX ]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-csx-3_5.4.1/dblp-csx-3_5.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-csx-3_5.4.1/dblp-csx-3_5.3.ast
index 20d2c82..d778b00 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-csx-3_5.4.1/dblp-csx-3_5.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-csx-3_5.4.1/dblp-csx-3_5.3.ast
@@ -90,7 +90,7 @@
:
IndexAccessor [
Variable [ Name=sim ]
- Index: Variable [ Name=sim ]
+ Index: LiteralExpr [LONG] [0]
]
)
]
@@ -204,7 +204,6 @@
Variable [ Name=paper ]
Variable [ Name=token ]
Variable [ Name=tokenUnranked ]
- Variable [ Name=tokensDBLP ]
Variable [ Name=lenDBLP ]
Variable [ Name=tokensUnrankedDBLP ]
Variable [ Name=idDBLP ]
@@ -212,8 +211,6 @@
Variable [ Name=prefixTokenDBLP ]
Variable [ Name=prefixTokenCSX ]
Variable [ Name=paperCSX ]
- Variable [ Name=paperDBLP ]
- Variable [ Name=paperCSX ]
Orderby
FunctionCall fuzzyjoin.count@1[
@@ -303,7 +300,6 @@
Variable [ Name=paper ]
Variable [ Name=token ]
Variable [ Name=tokenUnranked ]
- Variable [ Name=tokensCSX ]
Variable [ Name=lenCSX ]
Variable [ Name=tokensUnrankedCSX ]
Variable [ Name=idCSX ]
@@ -315,8 +311,6 @@
Variable [ Name=prefixTokenDBLP ]
Variable [ Name=prefixTokenCSX ]
Variable [ Name=paperCSX ]
- Variable [ Name=paperDBLP ]
- Variable [ Name=paperCSX ]
Orderby
FunctionCall fuzzyjoin.count@1[
@@ -388,8 +382,6 @@
Variable [ Name=prefixTokenDBLP ]
Variable [ Name=prefixTokenCSX ]
Variable [ Name=paperCSX ]
- Variable [ Name=paperDBLP ]
- Variable [ Name=paperCSX ]
)
AS
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-csx-3_5.4/dblp-csx-3_5.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-csx-3_5.4/dblp-csx-3_5.3.ast
index 8cb40fd..b94b776 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-csx-3_5.4/dblp-csx-3_5.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-csx-3_5.4/dblp-csx-3_5.3.ast
@@ -90,7 +90,7 @@
:
IndexAccessor [
Variable [ Name=sim ]
- Index: Variable [ Name=sim ]
+ Index: LiteralExpr [LONG] [0]
]
)
]
@@ -204,7 +204,6 @@
Variable [ Name=paper ]
Variable [ Name=token ]
Variable [ Name=tokenUnranked ]
- Variable [ Name=tokensDBLP ]
Variable [ Name=lenDBLP ]
Variable [ Name=tokensUnrankedDBLP ]
Variable [ Name=idDBLP ]
@@ -212,8 +211,6 @@
Variable [ Name=prefixTokenDBLP ]
Variable [ Name=prefixTokenCSX ]
Variable [ Name=paperCSX ]
- Variable [ Name=paperDBLP ]
- Variable [ Name=paperCSX ]
Orderby
FunctionCall fuzzyjoin.count@1[
@@ -303,7 +300,6 @@
Variable [ Name=paper ]
Variable [ Name=token ]
Variable [ Name=tokenUnranked ]
- Variable [ Name=tokensCSX ]
Variable [ Name=lenCSX ]
Variable [ Name=tokensUnrankedCSX ]
Variable [ Name=idCSX ]
@@ -315,8 +311,6 @@
Variable [ Name=prefixTokenDBLP ]
Variable [ Name=prefixTokenCSX ]
Variable [ Name=paperCSX ]
- Variable [ Name=paperDBLP ]
- Variable [ Name=paperCSX ]
Orderby
FunctionCall fuzzyjoin.count@1[
@@ -388,8 +382,6 @@
Variable [ Name=prefixTokenDBLP ]
Variable [ Name=prefixTokenCSX ]
Variable [ Name=paperCSX ]
- Variable [ Name=paperDBLP ]
- Variable [ Name=paperCSX ]
)
AS
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-csx-3_5/dblp-csx-3_5.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-csx-3_5/dblp-csx-3_5.3.ast
index 10e93a2..7ca0193 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-csx-3_5/dblp-csx-3_5.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/fuzzyjoin/dblp-csx-3_5/dblp-csx-3_5.3.ast
@@ -41,7 +41,7 @@
:
IndexAccessor [
Variable [ Name=sim ]
- Index: Variable [ Name=sim ]
+ Index: LiteralExpr [LONG] [0]
]
)
]
@@ -155,7 +155,6 @@
Variable [ Name=paper ]
Variable [ Name=token ]
Variable [ Name=tokenUnranked ]
- Variable [ Name=tokensDBLP ]
Variable [ Name=lenDBLP ]
Variable [ Name=tokensUnrankedDBLP ]
Variable [ Name=idDBLP ]
@@ -252,7 +251,6 @@
Variable [ Name=paper ]
Variable [ Name=token ]
Variable [ Name=tokenUnranked ]
- Variable [ Name=tokensCSX ]
Variable [ Name=lenCSX ]
Variable [ Name=tokensUnrankedCSX ]
Variable [ Name=idCSX ]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/hdfs/hdfs_02/hdfs_02.1.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/hdfs/hdfs_02/hdfs_02.1.ast
index e69de29..8d2aa22 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/hdfs/hdfs_02/hdfs_02.1.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/hdfs/hdfs_02/hdfs_02.1.ast
@@ -0,0 +1,7 @@
+DataverseUse test
+TypeDecl LineType [
+ closed RecordType {
+ content : string
+ }
+]
+DatasetDecl TextDataset(LineType)is an external dataset
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/hdfs/hdfs_02/hdfs_02.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/hdfs/hdfs_02/hdfs_02.3.ast
index e69de29..583e6f3 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/hdfs/hdfs_02/hdfs_02.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/hdfs/hdfs_02/hdfs_02.3.ast
@@ -0,0 +1,45 @@
+DataverseUse test
+Query:
+SELECT ELEMENT [
+RecordConstructor [
+ (
+ LiteralExpr [STRING] [word]
+ :
+ Variable [ Name=tok ]
+ )
+ (
+ LiteralExpr [STRING] [count]
+ :
+ FunctionCall test.count@1[
+ Variable [ Name=token ]
+ ]
+ )
+]
+]
+FROM [ FunctionCall Metadata.dataset@1[
+ LiteralExpr [STRING] [TextDataset]
+ ]
+ AS
+ Variable [ Name=line ]
+,
+ FunctionCall test.word-tokens@1[
+ FieldAccessor [
+ Variable [ Name=line ]
+ Field=content
+ ]
+ ]
+ AS
+ Variable [ Name=token ]
+]
+Groupby
+ Variable [ Name=tok ]
+ :=
+ Variable [ Name=token ]
+ With
+ Variable [ Name=line ]
+ Variable [ Name=token ]
+
+Orderby
+ Variable [ Name=tok ]
+ ASC
+
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/hdfs/hdfs_03/hdfs_03.1.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/hdfs/hdfs_03/hdfs_03.1.ast
index e69de29..8d2aa22 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/hdfs/hdfs_03/hdfs_03.1.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/hdfs/hdfs_03/hdfs_03.1.ast
@@ -0,0 +1,7 @@
+DataverseUse test
+TypeDecl LineType [
+ closed RecordType {
+ content : string
+ }
+]
+DatasetDecl TextDataset(LineType)is an external dataset
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/hdfs/hdfs_03/hdfs_03.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/hdfs/hdfs_03/hdfs_03.3.ast
index e69de29..583e6f3 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/hdfs/hdfs_03/hdfs_03.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/hdfs/hdfs_03/hdfs_03.3.ast
@@ -0,0 +1,45 @@
+DataverseUse test
+Query:
+SELECT ELEMENT [
+RecordConstructor [
+ (
+ LiteralExpr [STRING] [word]
+ :
+ Variable [ Name=tok ]
+ )
+ (
+ LiteralExpr [STRING] [count]
+ :
+ FunctionCall test.count@1[
+ Variable [ Name=token ]
+ ]
+ )
+]
+]
+FROM [ FunctionCall Metadata.dataset@1[
+ LiteralExpr [STRING] [TextDataset]
+ ]
+ AS
+ Variable [ Name=line ]
+,
+ FunctionCall test.word-tokens@1[
+ FieldAccessor [
+ Variable [ Name=line ]
+ Field=content
+ ]
+ ]
+ AS
+ Variable [ Name=token ]
+]
+Groupby
+ Variable [ Name=tok ]
+ :=
+ Variable [ Name=token ]
+ With
+ Variable [ Name=line ]
+ Variable [ Name=token ]
+
+Orderby
+ Variable [ Name=tok ]
+ ASC
+
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/hdfs/hdfs_shortcircuit/hdfs_shortcircuit.1.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/hdfs/hdfs_shortcircuit/hdfs_shortcircuit.1.ast
index e69de29..8d2aa22 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/hdfs/hdfs_shortcircuit/hdfs_shortcircuit.1.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/hdfs/hdfs_shortcircuit/hdfs_shortcircuit.1.ast
@@ -0,0 +1,7 @@
+DataverseUse test
+TypeDecl LineType [
+ closed RecordType {
+ content : string
+ }
+]
+DatasetDecl TextDataset(LineType)is an external dataset
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/hdfs/hdfs_shortcircuit/hdfs_shortcircuit.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/hdfs/hdfs_shortcircuit/hdfs_shortcircuit.3.ast
index e69de29..583e6f3 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/hdfs/hdfs_shortcircuit/hdfs_shortcircuit.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/hdfs/hdfs_shortcircuit/hdfs_shortcircuit.3.ast
@@ -0,0 +1,45 @@
+DataverseUse test
+Query:
+SELECT ELEMENT [
+RecordConstructor [
+ (
+ LiteralExpr [STRING] [word]
+ :
+ Variable [ Name=tok ]
+ )
+ (
+ LiteralExpr [STRING] [count]
+ :
+ FunctionCall test.count@1[
+ Variable [ Name=token ]
+ ]
+ )
+]
+]
+FROM [ FunctionCall Metadata.dataset@1[
+ LiteralExpr [STRING] [TextDataset]
+ ]
+ AS
+ Variable [ Name=line ]
+,
+ FunctionCall test.word-tokens@1[
+ FieldAccessor [
+ Variable [ Name=line ]
+ Field=content
+ ]
+ ]
+ AS
+ Variable [ Name=token ]
+]
+Groupby
+ Variable [ Name=tok ]
+ :=
+ Variable [ Name=token ]
+ With
+ Variable [ Name=line ]
+ Variable [ Name=token ]
+
+Orderby
+ Variable [ Name=tok ]
+ ASC
+
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/hdfs/issue_245_hdfs/issue_245_hdfs.1.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/hdfs/issue_245_hdfs/issue_245_hdfs.1.ast
index e69de29..74d802a 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/hdfs/issue_245_hdfs/issue_245_hdfs.1.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/hdfs/issue_245_hdfs/issue_245_hdfs.1.ast
@@ -0,0 +1,7 @@
+DataverseUse test
+TypeDecl LineType [
+ closed RecordType {
+ line : string
+ }
+]
+DatasetDecl TextDataset(LineType)is an external dataset
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/hdfs/issue_245_hdfs/issue_245_hdfs.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/hdfs/issue_245_hdfs/issue_245_hdfs.3.ast
index e69de29..9abc4c7 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/hdfs/issue_245_hdfs/issue_245_hdfs.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/hdfs/issue_245_hdfs/issue_245_hdfs.3.ast
@@ -0,0 +1,18 @@
+DataverseUse test
+Query:
+SELECT ELEMENT [
+Variable [ Name=x ]
+]
+FROM [ FunctionCall Metadata.dataset@1[
+ LiteralExpr [STRING] [TextDataset]
+ ]
+ AS
+ Variable [ Name=x ]
+]
+Orderby
+ FieldAccessor [
+ Variable [ Name=x ]
+ Field=line
+ ]
+ ASC
+
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/hints/issue_251_dataset_hint_5/issue_251_dataset_hint_5.1.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/hints/issue_251_dataset_hint_5/issue_251_dataset_hint_5.1.ast
index e69de29..7d94e66 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/hints/issue_251_dataset_hint_5/issue_251_dataset_hint_5.1.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/hints/issue_251_dataset_hint_5/issue_251_dataset_hint_5.1.ast
@@ -0,0 +1,11 @@
+DataverseUse test
+TypeDecl DBLPType [
+ closed RecordType {
+ id : int64,
+ dblpid : string,
+ title : string,
+ authors : string,
+ misc : string
+ }
+]
+DatasetDecl DBLPadm(DBLPType) partitioned by [[id]]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/hints/issue_251_dataset_hint_5/issue_251_dataset_hint_5.2.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/hints/issue_251_dataset_hint_5/issue_251_dataset_hint_5.2.ast
index e69de29..916a59e 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/hints/issue_251_dataset_hint_5/issue_251_dataset_hint_5.2.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/hints/issue_251_dataset_hint_5/issue_251_dataset_hint_5.2.ast
@@ -0,0 +1 @@
+DataverseUse test
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/hints/issue_251_dataset_hint_5/issue_251_dataset_hint_5.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/hints/issue_251_dataset_hint_5/issue_251_dataset_hint_5.3.ast
index e69de29..7f1360c 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/hints/issue_251_dataset_hint_5/issue_251_dataset_hint_5.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/hints/issue_251_dataset_hint_5/issue_251_dataset_hint_5.3.ast
@@ -0,0 +1,18 @@
+DataverseUse test
+Query:
+SELECT ELEMENT [
+Variable [ Name=paper ]
+]
+FROM [ FunctionCall Metadata.dataset@1[
+ LiteralExpr [STRING] [DBLPadm]
+ ]
+ AS
+ Variable [ Name=paper ]
+]
+Orderby
+ FieldAccessor [
+ Variable [ Name=paper ]
+ Field=id
+ ]
+ ASC
+
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/hints/issue_251_dataset_hint_6/issue_251_dataset_hint_6.1.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/hints/issue_251_dataset_hint_6/issue_251_dataset_hint_6.1.ast
index e69de29..8d2aa22 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/hints/issue_251_dataset_hint_6/issue_251_dataset_hint_6.1.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/hints/issue_251_dataset_hint_6/issue_251_dataset_hint_6.1.ast
@@ -0,0 +1,7 @@
+DataverseUse test
+TypeDecl LineType [
+ closed RecordType {
+ content : string
+ }
+]
+DatasetDecl TextDataset(LineType)is an external dataset
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/hints/issue_251_dataset_hint_6/issue_251_dataset_hint_6.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/hints/issue_251_dataset_hint_6/issue_251_dataset_hint_6.3.ast
index e69de29..583e6f3 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/hints/issue_251_dataset_hint_6/issue_251_dataset_hint_6.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/hints/issue_251_dataset_hint_6/issue_251_dataset_hint_6.3.ast
@@ -0,0 +1,45 @@
+DataverseUse test
+Query:
+SELECT ELEMENT [
+RecordConstructor [
+ (
+ LiteralExpr [STRING] [word]
+ :
+ Variable [ Name=tok ]
+ )
+ (
+ LiteralExpr [STRING] [count]
+ :
+ FunctionCall test.count@1[
+ Variable [ Name=token ]
+ ]
+ )
+]
+]
+FROM [ FunctionCall Metadata.dataset@1[
+ LiteralExpr [STRING] [TextDataset]
+ ]
+ AS
+ Variable [ Name=line ]
+,
+ FunctionCall test.word-tokens@1[
+ FieldAccessor [
+ Variable [ Name=line ]
+ Field=content
+ ]
+ ]
+ AS
+ Variable [ Name=token ]
+]
+Groupby
+ Variable [ Name=tok ]
+ :=
+ Variable [ Name=token ]
+ With
+ Variable [ Name=line ]
+ Variable [ Name=token ]
+
+Orderby
+ Variable [ Name=tok ]
+ ASC
+
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/hints/issue_251_dataset_hint_7/issue_251_dataset_hint_7.1.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/hints/issue_251_dataset_hint_7/issue_251_dataset_hint_7.1.ast
index e69de29..1f50c0c 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/hints/issue_251_dataset_hint_7/issue_251_dataset_hint_7.1.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/hints/issue_251_dataset_hint_7/issue_251_dataset_hint_7.1.ast
@@ -0,0 +1,11 @@
+DataverseUse feeds
+TypeDecl TweetType [
+ closed RecordType {
+ id : string,
+ username : string,
+ location : string,
+ text : string,
+ timestamp : string
+ }
+]
+DatasetDecl Tweets(TweetType) partitioned by [[id]]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/hints/issue_251_dataset_hint_7/issue_251_dataset_hint_7.2.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/hints/issue_251_dataset_hint_7/issue_251_dataset_hint_7.2.ast
index e69de29..a7e2eda 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/hints/issue_251_dataset_hint_7/issue_251_dataset_hint_7.2.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/hints/issue_251_dataset_hint_7/issue_251_dataset_hint_7.2.ast
@@ -0,0 +1,2 @@
+DataverseUse feeds
+Set wait-for-completion-feed=true
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/hints/issue_251_dataset_hint_7/issue_251_dataset_hint_7.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/hints/issue_251_dataset_hint_7/issue_251_dataset_hint_7.3.ast
index e69de29..6c74030 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/hints/issue_251_dataset_hint_7/issue_251_dataset_hint_7.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/hints/issue_251_dataset_hint_7/issue_251_dataset_hint_7.3.ast
@@ -0,0 +1,18 @@
+DataverseUse feeds
+Query:
+SELECT ELEMENT [
+Variable [ Name=x ]
+]
+FROM [ FunctionCall Metadata.dataset@1[
+ LiteralExpr [STRING] [Tweets]
+ ]
+ AS
+ Variable [ Name=x ]
+]
+Orderby
+ FieldAccessor [
+ Variable [ Name=x ]
+ Field=id
+ ]
+ ASC
+
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/index-leftouterjoin/probe-pidx-with-join-invidx-sidx1/probe-pidx-with-join-invidx-sidx1.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/index-leftouterjoin/probe-pidx-with-join-invidx-sidx1/probe-pidx-with-join-invidx-sidx1.3.ast
index af29f31..f6a0c35 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/index-leftouterjoin/probe-pidx-with-join-invidx-sidx1/probe-pidx-with-join-invidx-sidx1.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/index-leftouterjoin/probe-pidx-with-join-invidx-sidx1/probe-pidx-with-join-invidx-sidx1.3.ast
@@ -71,7 +71,7 @@
OperatorExpr [
IndexAccessor [
Variable [ Name=sim ]
- Index: Variable [ Name=sim ]
+ Index: LiteralExpr [LONG] [0]
]
and
OperatorExpr [
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/index-leftouterjoin/probe-pidx-with-join-invidx-sidx2/probe-pidx-with-join-invidx-sidx2.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/index-leftouterjoin/probe-pidx-with-join-invidx-sidx2/probe-pidx-with-join-invidx-sidx2.3.ast
index a0c5e3d..873c814 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/index-leftouterjoin/probe-pidx-with-join-invidx-sidx2/probe-pidx-with-join-invidx-sidx2.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/index-leftouterjoin/probe-pidx-with-join-invidx-sidx2/probe-pidx-with-join-invidx-sidx2.3.ast
@@ -71,7 +71,7 @@
OperatorExpr [
IndexAccessor [
Variable [ Name=sim ]
- Index: Variable [ Name=sim ]
+ Index: LiteralExpr [LONG] [0]
]
and
OperatorExpr [
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/index-selection/inverted-index-ngram-edit-distance-contains/inverted-index-ngram-edit-distance-contains.4.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/index-selection/inverted-index-ngram-edit-distance-contains/inverted-index-ngram-edit-distance-contains.4.ast
index 8ce7812..f2263bc 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/index-selection/inverted-index-ngram-edit-distance-contains/inverted-index-ngram-edit-distance-contains.4.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/index-selection/inverted-index-ngram-edit-distance-contains/inverted-index-ngram-edit-distance-contains.4.ast
@@ -36,14 +36,7 @@
LiteralExpr [STRING] [Multmedia]
LiteralExpr [LONG] [1]
]
- Index: FunctionCall test.edit-distance-contains@3[
- FieldAccessor [
- Variable [ Name=paper ]
- Field=title
- ]
- LiteralExpr [STRING] [Multmedia]
- LiteralExpr [LONG] [1]
- ]
+ Index: LiteralExpr [LONG] [0]
]
Orderby
FieldAccessor [
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/index-selection/inverted-index-ngram-edit-distance-panic/inverted-index-ngram-edit-distance-panic.4.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/index-selection/inverted-index-ngram-edit-distance-panic/inverted-index-ngram-edit-distance-panic.4.ast
index 3d36aa6..e2eae18 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/index-selection/inverted-index-ngram-edit-distance-panic/inverted-index-ngram-edit-distance-panic.4.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/index-selection/inverted-index-ngram-edit-distance-panic/inverted-index-ngram-edit-distance-panic.4.ast
@@ -22,5 +22,5 @@
Where
IndexAccessor [
Variable [ Name=ed ]
- Index: Variable [ Name=ed ]
+ Index: LiteralExpr [LONG] [0]
]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/index-selection/inverted-index-ngram-edit-distance-word-tokens/inverted-index-ngram-edit-distance-word-tokens.4.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/index-selection/inverted-index-ngram-edit-distance-word-tokens/inverted-index-ngram-edit-distance-word-tokens.4.ast
index 8a83757..81a4e5e 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/index-selection/inverted-index-ngram-edit-distance-word-tokens/inverted-index-ngram-edit-distance-word-tokens.4.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/index-selection/inverted-index-ngram-edit-distance-word-tokens/inverted-index-ngram-edit-distance-word-tokens.4.ast
@@ -42,11 +42,7 @@
LiteralExpr [STRING] [Multmedia]
LiteralExpr [LONG] [1]
]
- Index: FunctionCall test.edit-distance-check@3[
- Variable [ Name=word ]
- LiteralExpr [STRING] [Multmedia]
- LiteralExpr [LONG] [1]
- ]
+ Index: LiteralExpr [LONG] [0]
]
Orderby
FieldAccessor [
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/index-selection/inverted-index-ngram-edit-distance/inverted-index-ngram-edit-distance.4.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/index-selection/inverted-index-ngram-edit-distance/inverted-index-ngram-edit-distance.4.ast
index 64b85b9..17024f4 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/index-selection/inverted-index-ngram-edit-distance/inverted-index-ngram-edit-distance.4.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/index-selection/inverted-index-ngram-edit-distance/inverted-index-ngram-edit-distance.4.ast
@@ -22,5 +22,5 @@
Where
IndexAccessor [
Variable [ Name=ed ]
- Index: Variable [ Name=ed ]
+ Index: LiteralExpr [LONG] [0]
]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/index-selection/inverted-index-ngram-jaccard/inverted-index-ngram-jaccard.4.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/index-selection/inverted-index-ngram-jaccard/inverted-index-ngram-jaccard.4.ast
index d1319d5..ffd9986 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/index-selection/inverted-index-ngram-jaccard/inverted-index-ngram-jaccard.4.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/index-selection/inverted-index-ngram-jaccard/inverted-index-ngram-jaccard.4.ast
@@ -31,5 +31,5 @@
Where
IndexAccessor [
Variable [ Name=jacc ]
- Index: Variable [ Name=jacc ]
+ Index: LiteralExpr [LONG] [0]
]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/index-selection/inverted-index-olist-edit-distance-panic/inverted-index-olist-edit-distance-panic.4.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/index-selection/inverted-index-olist-edit-distance-panic/inverted-index-olist-edit-distance-panic.4.ast
index dedb9b2..70aa962 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/index-selection/inverted-index-olist-edit-distance-panic/inverted-index-olist-edit-distance-panic.4.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/index-selection/inverted-index-olist-edit-distance-panic/inverted-index-olist-edit-distance-panic.4.ast
@@ -26,7 +26,7 @@
Where
IndexAccessor [
Variable [ Name=ed ]
- Index: Variable [ Name=ed ]
+ Index: LiteralExpr [LONG] [0]
]
Orderby
FieldAccessor [
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/index-selection/inverted-index-olist-edit-distance/inverted-index-olist-edit-distance.4.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/index-selection/inverted-index-olist-edit-distance/inverted-index-olist-edit-distance.4.ast
index 9f22ba3..ddafd0e 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/index-selection/inverted-index-olist-edit-distance/inverted-index-olist-edit-distance.4.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/index-selection/inverted-index-olist-edit-distance/inverted-index-olist-edit-distance.4.ast
@@ -26,7 +26,7 @@
Where
IndexAccessor [
Variable [ Name=ed ]
- Index: Variable [ Name=ed ]
+ Index: LiteralExpr [LONG] [0]
]
Orderby
FieldAccessor [
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/index-selection/inverted-index-olist-jaccard/inverted-index-olist-jaccard.4.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/index-selection/inverted-index-olist-jaccard/inverted-index-olist-jaccard.4.ast
index 0cde310..9f1c165 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/index-selection/inverted-index-olist-jaccard/inverted-index-olist-jaccard.4.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/index-selection/inverted-index-olist-jaccard/inverted-index-olist-jaccard.4.ast
@@ -26,5 +26,5 @@
Where
IndexAccessor [
Variable [ Name=jacc ]
- Index: Variable [ Name=jacc ]
+ Index: LiteralExpr [LONG] [0]
]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/index-selection/inverted-index-ulist-jaccard/inverted-index-ulist-jaccard.4.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/index-selection/inverted-index-ulist-jaccard/inverted-index-ulist-jaccard.4.ast
index 98914ee..c67b4b8 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/index-selection/inverted-index-ulist-jaccard/inverted-index-ulist-jaccard.4.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/index-selection/inverted-index-ulist-jaccard/inverted-index-ulist-jaccard.4.ast
@@ -26,5 +26,5 @@
Where
IndexAccessor [
Variable [ Name=jacc ]
- Index: Variable [ Name=jacc ]
+ Index: LiteralExpr [LONG] [0]
]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/index-selection/inverted-index-word-jaccard/inverted-index-word-jaccard.4.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/index-selection/inverted-index-word-jaccard/inverted-index-word-jaccard.4.ast
index 996effe..e8fa4dd 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/index-selection/inverted-index-word-jaccard/inverted-index-word-jaccard.4.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/index-selection/inverted-index-word-jaccard/inverted-index-word-jaccard.4.ast
@@ -26,5 +26,5 @@
Where
IndexAccessor [
Variable [ Name=jacc ]
- Index: Variable [ Name=jacc ]
+ Index: LiteralExpr [LONG] [0]
]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/list/get-item_01/get-item_01.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/list/get-item_01/get-item_01.3.ast
index f414383..f5c5334 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/list/get-item_01/get-item_01.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/list/get-item_01/get-item_01.3.ast
@@ -7,10 +7,5 @@
LiteralExpr [LONG] [3]
LiteralExpr [LONG] [4]
]
- Index: OrderedListConstructor [
- LiteralExpr [LONG] [1]
- LiteralExpr [LONG] [2]
- LiteralExpr [LONG] [3]
- LiteralExpr [LONG] [4]
- ]
+ Index: LiteralExpr [LONG] [2]
]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/list/get-item_02/get-item_02.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/list/get-item_02/get-item_02.3.ast
index f414383..487a64a 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/list/get-item_02/get-item_02.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/list/get-item_02/get-item_02.3.ast
@@ -7,10 +7,9 @@
LiteralExpr [LONG] [3]
LiteralExpr [LONG] [4]
]
- Index: OrderedListConstructor [
- LiteralExpr [LONG] [1]
+ Index: OperatorExpr [
LiteralExpr [LONG] [2]
- LiteralExpr [LONG] [3]
- LiteralExpr [LONG] [4]
+ +
+ LiteralExpr [LONG] [1]
]
]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/list/listify_01/listify_01.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/list/listify_01/listify_01.3.ast
index ae2e0f9..3c7cc1a 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/list/listify_01/listify_01.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/list/listify_01/listify_01.3.ast
@@ -1,13 +1,20 @@
DataverseUse test
Query:
+LetVariable [ Name=token_list ]
+ :=
+ (
+ SELECT ELEMENT [
+ Variable [ Name=token ]
+ ]
+ FROM [ OrderedListConstructor [
+ LiteralExpr [LONG] [1]
+ LiteralExpr [LONG] [2]
+ LiteralExpr [LONG] [3]
+ ]
+ AS
+ Variable [ Name=token ]
+ ]
+ )
SELECT ELEMENT [
-Variable [ Name=token ]
-]
-FROM [ OrderedListConstructor [
- LiteralExpr [LONG] [1]
- LiteralExpr [LONG] [2]
- LiteralExpr [LONG] [3]
- ]
- AS
- Variable [ Name=token ]
+Variable [ Name=token_list ]
]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/list/listify_02/listify_02.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/list/listify_02/listify_02.3.ast
index f11aab2..4d1a23c 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/list/listify_02/listify_02.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/list/listify_02/listify_02.3.ast
@@ -1,12 +1,19 @@
DataverseUse test
Query:
+LetVariable [ Name=token_list ]
+ :=
+ (
+ SELECT ELEMENT [
+ Variable [ Name=token ]
+ ]
+ FROM [ OrderedListConstructor [
+ LiteralExpr [STRING] [foo]
+ LiteralExpr [STRING] [bar]
+ ]
+ AS
+ Variable [ Name=token ]
+ ]
+ )
SELECT ELEMENT [
-Variable [ Name=token ]
-]
-FROM [ OrderedListConstructor [
- LiteralExpr [STRING] [foo]
- LiteralExpr [STRING] [bar]
- ]
- AS
- Variable [ Name=token ]
+Variable [ Name=token_list ]
]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/list/query-issue428/query-issue428.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/list/query-issue428/query-issue428.3.ast
index e69de29..912a549 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/list/query-issue428/query-issue428.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/list/query-issue428/query-issue428.3.ast
@@ -0,0 +1,48 @@
+Query:
+SELECT ELEMENT [
+QuantifiedExpression SOME [
+ [Variable [ Name=a1 ]
+ In
+ Variable [ Name=a ]
+ ]
+ [Variable [ Name=b1 ]
+ In
+ Variable [ Name=b ]
+ ]
+ Satifies [
+ OperatorExpr [
+ Variable [ Name=a1 ]
+ <
+ Variable [ Name=b1 ]
+ ]
+ ]
+]
+]
+FROM [ OrderedListConstructor [
+ OrderedListConstructor [
+ LiteralExpr [LONG] [1]
+ LiteralExpr [LONG] [2]
+ ]
+ OrderedListConstructor [
+ LiteralExpr [LONG] [3]
+ LiteralExpr [LONG] [4]
+ LiteralExpr [LONG] [5]
+ ]
+ ]
+ AS
+ Variable [ Name=a ]
+,
+ OrderedListConstructor [
+ OrderedListConstructor [
+ LiteralExpr [LONG] [6]
+ LiteralExpr [LONG] [7]
+ ]
+ OrderedListConstructor [
+ LiteralExpr [LONG] [8]
+ LiteralExpr [LONG] [9]
+ LiteralExpr [LONG] [10]
+ ]
+ ]
+ AS
+ Variable [ Name=b ]
+]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/misc/groupby-orderby-count/groupby-orderby-count.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/misc/groupby-orderby-count/groupby-orderby-count.3.ast
index d920145..c68fa11 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/misc/groupby-orderby-count/groupby-orderby-count.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/misc/groupby-orderby-count/groupby-orderby-count.3.ast
@@ -22,26 +22,20 @@
AS
Variable [ Name=t ]
,
- FunctionCall Metadata.dataset@1[
- LiteralExpr [STRING] [tokens]
- ]
- AS
- Variable [ Name=token ]
-]
-LetVariable [ Name=tokens ]
- :=
FunctionCall twitter.word-tokens@1[
FieldAccessor [
Variable [ Name=t ]
Field=text
]
]
+ AS
+ Variable [ Name=token ]
+]
Groupby
Variable [ Name=tok ]
:=
Variable [ Name=token ]
With
- Variable [ Name=tokens ]
Variable [ Name=t ]
Variable [ Name=token ]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-index-dml/delete-from-loaded-dataset-with-index/delete-from-loaded-dataset-with-index.5.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-index-dml/delete-from-loaded-dataset-with-index/delete-from-loaded-dataset-with-index.5.ast
index 3322539..8daa275 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-index-dml/delete-from-loaded-dataset-with-index/delete-from-loaded-dataset-with-index.5.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-index-dml/delete-from-loaded-dataset-with-index/delete-from-loaded-dataset-with-index.5.ast
@@ -21,3 +21,10 @@
<
LiteralExpr [LONG] [473]
]
+Orderby
+ FieldAccessor [
+ Variable [ Name=c ]
+ Field=tweetid
+ ]
+ ASC
+
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-index-dml/insert-into-loaded-dataset-with-index_02/insert-into-loaded-dataset-with-index_02.5.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-index-dml/insert-into-loaded-dataset-with-index_02/insert-into-loaded-dataset-with-index_02.5.ast
index f275f5f..a7e785e 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-index-dml/insert-into-loaded-dataset-with-index_02/insert-into-loaded-dataset-with-index_02.5.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-index-dml/insert-into-loaded-dataset-with-index_02/insert-into-loaded-dataset-with-index_02.5.ast
@@ -35,3 +35,10 @@
LiteralExpr [LONG] [473]
]
]
+Orderby
+ FieldAccessor [
+ Variable [ Name=c ]
+ Field=tweetid
+ ]
+ ASC
+
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-index-dml/load-with-word-index/load-with-word-index.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-index-dml/load-with-word-index/load-with-word-index.3.ast
index b3b9260..31da348 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-index-dml/load-with-word-index/load-with-word-index.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-index-dml/load-with-word-index/load-with-word-index.3.ast
@@ -29,7 +29,7 @@
Where
IndexAccessor [
Variable [ Name=jacc ]
- Index: Variable [ Name=jacc ]
+ Index: LiteralExpr [LONG] [0]
]
Orderby
FieldAccessor [
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-index-dml/scan-delete-inverted-index-word-secondary-index-nullable/scan-delete-inverted-index-word-secondary-index-nullable.5.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-index-dml/scan-delete-inverted-index-word-secondary-index-nullable/scan-delete-inverted-index-word-secondary-index-nullable.5.ast
index 18c05a8..522ef24 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-index-dml/scan-delete-inverted-index-word-secondary-index-nullable/scan-delete-inverted-index-word-secondary-index-nullable.5.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-index-dml/scan-delete-inverted-index-word-secondary-index-nullable/scan-delete-inverted-index-word-secondary-index-nullable.5.ast
@@ -32,5 +32,5 @@
Where
IndexAccessor [
Variable [ Name=jacc ]
- Index: Variable [ Name=jacc ]
+ Index: LiteralExpr [LONG] [0]
]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-index-dml/scan-delete-inverted-index-word-secondary-index/scan-delete-inverted-index-word-secondary-index.5.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-index-dml/scan-delete-inverted-index-word-secondary-index/scan-delete-inverted-index-word-secondary-index.5.ast
index 18c05a8..522ef24 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-index-dml/scan-delete-inverted-index-word-secondary-index/scan-delete-inverted-index-word-secondary-index.5.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-index-dml/scan-delete-inverted-index-word-secondary-index/scan-delete-inverted-index-word-secondary-index.5.ast
@@ -32,5 +32,5 @@
Where
IndexAccessor [
Variable [ Name=jacc ]
- Index: Variable [ Name=jacc ]
+ Index: LiteralExpr [LONG] [0]
]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-index-dml/scan-insert-inverted-index-word-secondary-index-nullable/scan-insert-inverted-index-word-secondary-index-nullable.5.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-index-dml/scan-insert-inverted-index-word-secondary-index-nullable/scan-insert-inverted-index-word-secondary-index-nullable.5.ast
index 18c05a8..522ef24 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-index-dml/scan-insert-inverted-index-word-secondary-index-nullable/scan-insert-inverted-index-word-secondary-index-nullable.5.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-index-dml/scan-insert-inverted-index-word-secondary-index-nullable/scan-insert-inverted-index-word-secondary-index-nullable.5.ast
@@ -32,5 +32,5 @@
Where
IndexAccessor [
Variable [ Name=jacc ]
- Index: Variable [ Name=jacc ]
+ Index: LiteralExpr [LONG] [0]
]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-index-dml/scan-insert-inverted-index-word-secondary-index/scan-insert-inverted-index-word-secondary-index.5.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-index-dml/scan-insert-inverted-index-word-secondary-index/scan-insert-inverted-index-word-secondary-index.5.ast
index 18c05a8..522ef24 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-index-dml/scan-insert-inverted-index-word-secondary-index/scan-insert-inverted-index-word-secondary-index.5.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-index-dml/scan-insert-inverted-index-word-secondary-index/scan-insert-inverted-index-word-secondary-index.5.ast
@@ -32,5 +32,5 @@
Where
IndexAccessor [
Variable [ Name=jacc ]
- Index: Variable [ Name=jacc ]
+ Index: LiteralExpr [LONG] [0]
]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-index/external-indexing/adm-format/adm-format.1.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-index/external-indexing/adm-format/adm-format.1.ast
index e69de29..3893877 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-index/external-indexing/adm-format/adm-format.1.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-index/external-indexing/adm-format/adm-format.1.ast
@@ -0,0 +1,20 @@
+DataverseUse test
+TypeDecl MyRecordNested [
+ closed RecordType {
+ id : int64,
+ point : point,
+ kwds : string,
+ line1 : line,
+ line2 : line,
+ poly1 : polygon,
+ poly2 : polygon,
+ rec : rectangle,
+ circle : circle
+ }
+]
+TypeDecl MyRecord [
+ closed RecordType {
+ nested : MyRecordNested
+ }
+]
+DatasetDecl MyData(MyRecord)is an external dataset
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-index/external-indexing/adm-format/adm-format.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-index/external-indexing/adm-format/adm-format.3.ast
index e69de29..eec61a4 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-index/external-indexing/adm-format/adm-format.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-index/external-indexing/adm-format/adm-format.3.ast
@@ -0,0 +1,123 @@
+DataverseUse test
+Query:
+SELECT ELEMENT [
+RecordConstructor [
+ (
+ LiteralExpr [STRING] [id]
+ :
+ FieldAccessor [
+ FieldAccessor [
+ Variable [ Name=d ]
+ Field=nested
+ ]
+ Field=id
+ ]
+ )
+ (
+ LiteralExpr [STRING] [point]
+ :
+ FieldAccessor [
+ FieldAccessor [
+ Variable [ Name=d ]
+ Field=nested
+ ]
+ Field=point
+ ]
+ )
+ (
+ LiteralExpr [STRING] [kwds]
+ :
+ FieldAccessor [
+ FieldAccessor [
+ Variable [ Name=d ]
+ Field=nested
+ ]
+ Field=kwds
+ ]
+ )
+ (
+ LiteralExpr [STRING] [line1]
+ :
+ FieldAccessor [
+ FieldAccessor [
+ Variable [ Name=d ]
+ Field=nested
+ ]
+ Field=line1
+ ]
+ )
+ (
+ LiteralExpr [STRING] [line2]
+ :
+ FieldAccessor [
+ FieldAccessor [
+ Variable [ Name=d ]
+ Field=nested
+ ]
+ Field=line2
+ ]
+ )
+ (
+ LiteralExpr [STRING] [poly1]
+ :
+ FieldAccessor [
+ FieldAccessor [
+ Variable [ Name=d ]
+ Field=nested
+ ]
+ Field=poly1
+ ]
+ )
+ (
+ LiteralExpr [STRING] [poly2]
+ :
+ FieldAccessor [
+ FieldAccessor [
+ Variable [ Name=d ]
+ Field=nested
+ ]
+ Field=poly2
+ ]
+ )
+ (
+ LiteralExpr [STRING] [rec]
+ :
+ FieldAccessor [
+ FieldAccessor [
+ Variable [ Name=d ]
+ Field=nested
+ ]
+ Field=rec
+ ]
+ )
+ (
+ LiteralExpr [STRING] [circle]
+ :
+ FieldAccessor [
+ FieldAccessor [
+ Variable [ Name=d ]
+ Field=nested
+ ]
+ Field=circle
+ ]
+ )
+]
+]
+FROM [ FunctionCall Metadata.dataset@1[
+ LiteralExpr [STRING] [MyData]
+ ]
+ AS
+ Variable [ Name=d ]
+]
+Where
+ OperatorExpr [
+ FieldAccessor [
+ FieldAccessor [
+ Variable [ Name=d ]
+ Field=nested
+ ]
+ Field=id
+ ]
+ =
+ LiteralExpr [LONG] [10]
+ ]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-index/index-leftouterjoin/probe-pidx-with-join-invidx-sidx1/probe-pidx-with-join-invidx-sidx1.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-index/index-leftouterjoin/probe-pidx-with-join-invidx-sidx1/probe-pidx-with-join-invidx-sidx1.3.ast
index e6de9dd..b164f90 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-index/index-leftouterjoin/probe-pidx-with-join-invidx-sidx1/probe-pidx-with-join-invidx-sidx1.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-index/index-leftouterjoin/probe-pidx-with-join-invidx-sidx1/probe-pidx-with-join-invidx-sidx1.3.ast
@@ -89,7 +89,7 @@
OperatorExpr [
IndexAccessor [
Variable [ Name=sim ]
- Index: Variable [ Name=sim ]
+ Index: LiteralExpr [LONG] [0]
]
and
OperatorExpr [
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-index/index-leftouterjoin/probe-pidx-with-join-invidx-sidx2/probe-pidx-with-join-invidx-sidx2.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-index/index-leftouterjoin/probe-pidx-with-join-invidx-sidx2/probe-pidx-with-join-invidx-sidx2.3.ast
index 3079d43..86d00ac 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-index/index-leftouterjoin/probe-pidx-with-join-invidx-sidx2/probe-pidx-with-join-invidx-sidx2.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-index/index-leftouterjoin/probe-pidx-with-join-invidx-sidx2/probe-pidx-with-join-invidx-sidx2.3.ast
@@ -89,7 +89,7 @@
OperatorExpr [
IndexAccessor [
Variable [ Name=sim ]
- Index: Variable [ Name=sim ]
+ Index: LiteralExpr [LONG] [0]
]
and
OperatorExpr [
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-index/index-selection/inverted-index-ngram-edit-distance-contains/inverted-index-ngram-edit-distance-contains.4.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-index/index-selection/inverted-index-ngram-edit-distance-contains/inverted-index-ngram-edit-distance-contains.4.ast
index 10557ee..bee7846 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-index/index-selection/inverted-index-ngram-edit-distance-contains/inverted-index-ngram-edit-distance-contains.4.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-index/index-selection/inverted-index-ngram-edit-distance-contains/inverted-index-ngram-edit-distance-contains.4.ast
@@ -45,17 +45,7 @@
LiteralExpr [STRING] [Multmedia]
LiteralExpr [LONG] [1]
]
- Index: FunctionCall test.edit-distance-contains@3[
- FieldAccessor [
- FieldAccessor [
- Variable [ Name=paper ]
- Field=nested
- ]
- Field=title
- ]
- LiteralExpr [STRING] [Multmedia]
- LiteralExpr [LONG] [1]
- ]
+ Index: LiteralExpr [LONG] [0]
]
Orderby
FieldAccessor [
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-index/index-selection/inverted-index-ngram-edit-distance-panic/inverted-index-ngram-edit-distance-panic.4.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-index/index-selection/inverted-index-ngram-edit-distance-panic/inverted-index-ngram-edit-distance-panic.4.ast
index e841a79..52f5d52 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-index/index-selection/inverted-index-ngram-edit-distance-panic/inverted-index-ngram-edit-distance-panic.4.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-index/index-selection/inverted-index-ngram-edit-distance-panic/inverted-index-ngram-edit-distance-panic.4.ast
@@ -28,5 +28,5 @@
Where
IndexAccessor [
Variable [ Name=ed ]
- Index: Variable [ Name=ed ]
+ Index: LiteralExpr [LONG] [0]
]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-index/index-selection/inverted-index-ngram-edit-distance-word-tokens/inverted-index-ngram-edit-distance-word-tokens.4.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-index/index-selection/inverted-index-ngram-edit-distance-word-tokens/inverted-index-ngram-edit-distance-word-tokens.4.ast
index ab4ea4f..df078be 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-index/index-selection/inverted-index-ngram-edit-distance-word-tokens/inverted-index-ngram-edit-distance-word-tokens.4.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-index/index-selection/inverted-index-ngram-edit-distance-word-tokens/inverted-index-ngram-edit-distance-word-tokens.4.ast
@@ -51,11 +51,7 @@
LiteralExpr [STRING] [Multmedia]
LiteralExpr [LONG] [1]
]
- Index: FunctionCall test.edit-distance-check@3[
- Variable [ Name=word ]
- LiteralExpr [STRING] [Multmedia]
- LiteralExpr [LONG] [1]
- ]
+ Index: LiteralExpr [LONG] [0]
]
Orderby
FieldAccessor [
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-index/index-selection/inverted-index-ngram-edit-distance/inverted-index-ngram-edit-distance.4.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-index/index-selection/inverted-index-ngram-edit-distance/inverted-index-ngram-edit-distance.4.ast
index ccc037f..a4ac5f5 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-index/index-selection/inverted-index-ngram-edit-distance/inverted-index-ngram-edit-distance.4.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-index/index-selection/inverted-index-ngram-edit-distance/inverted-index-ngram-edit-distance.4.ast
@@ -28,5 +28,5 @@
Where
IndexAccessor [
Variable [ Name=ed ]
- Index: Variable [ Name=ed ]
+ Index: LiteralExpr [LONG] [0]
]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-index/index-selection/inverted-index-ngram-jaccard/inverted-index-ngram-jaccard.4.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-index/index-selection/inverted-index-ngram-jaccard/inverted-index-ngram-jaccard.4.ast
index fc953dc..9b7c3f8 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-index/index-selection/inverted-index-ngram-jaccard/inverted-index-ngram-jaccard.4.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-index/index-selection/inverted-index-ngram-jaccard/inverted-index-ngram-jaccard.4.ast
@@ -37,5 +37,5 @@
Where
IndexAccessor [
Variable [ Name=jacc ]
- Index: Variable [ Name=jacc ]
+ Index: LiteralExpr [LONG] [0]
]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-index/index-selection/inverted-index-olist-edit-distance-panic/inverted-index-olist-edit-distance-panic.4.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-index/index-selection/inverted-index-olist-edit-distance-panic/inverted-index-olist-edit-distance-panic.4.ast
index 817393c..7be42cb 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-index/index-selection/inverted-index-olist-edit-distance-panic/inverted-index-olist-edit-distance-panic.4.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-index/index-selection/inverted-index-olist-edit-distance-panic/inverted-index-olist-edit-distance-panic.4.ast
@@ -32,7 +32,7 @@
Where
IndexAccessor [
Variable [ Name=ed ]
- Index: Variable [ Name=ed ]
+ Index: LiteralExpr [LONG] [0]
]
Orderby
FieldAccessor [
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-index/index-selection/inverted-index-olist-edit-distance/inverted-index-olist-edit-distance.4.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-index/index-selection/inverted-index-olist-edit-distance/inverted-index-olist-edit-distance.4.ast
index 13c695b..1517ba1 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-index/index-selection/inverted-index-olist-edit-distance/inverted-index-olist-edit-distance.4.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-index/index-selection/inverted-index-olist-edit-distance/inverted-index-olist-edit-distance.4.ast
@@ -32,7 +32,7 @@
Where
IndexAccessor [
Variable [ Name=ed ]
- Index: Variable [ Name=ed ]
+ Index: LiteralExpr [LONG] [0]
]
Orderby
FieldAccessor [
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-index/index-selection/inverted-index-olist-jaccard/inverted-index-olist-jaccard.4.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-index/index-selection/inverted-index-olist-jaccard/inverted-index-olist-jaccard.4.ast
index e3dc042..22f03a0 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-index/index-selection/inverted-index-olist-jaccard/inverted-index-olist-jaccard.4.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-index/index-selection/inverted-index-olist-jaccard/inverted-index-olist-jaccard.4.ast
@@ -32,5 +32,5 @@
Where
IndexAccessor [
Variable [ Name=jacc ]
- Index: Variable [ Name=jacc ]
+ Index: LiteralExpr [LONG] [0]
]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-index/index-selection/inverted-index-ulist-jaccard/inverted-index-ulist-jaccard.4.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-index/index-selection/inverted-index-ulist-jaccard/inverted-index-ulist-jaccard.4.ast
index 8ff23a6..015bb92 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-index/index-selection/inverted-index-ulist-jaccard/inverted-index-ulist-jaccard.4.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-index/index-selection/inverted-index-ulist-jaccard/inverted-index-ulist-jaccard.4.ast
@@ -32,5 +32,5 @@
Where
IndexAccessor [
Variable [ Name=jacc ]
- Index: Variable [ Name=jacc ]
+ Index: LiteralExpr [LONG] [0]
]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-index/index-selection/inverted-index-word-jaccard/inverted-index-word-jaccard.4.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-index/index-selection/inverted-index-word-jaccard/inverted-index-word-jaccard.4.ast
index 18c05a8..522ef24 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-index/index-selection/inverted-index-word-jaccard/inverted-index-word-jaccard.4.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-index/index-selection/inverted-index-word-jaccard/inverted-index-word-jaccard.4.ast
@@ -32,5 +32,5 @@
Where
IndexAccessor [
Variable [ Name=jacc ]
- Index: Variable [ Name=jacc ]
+ Index: LiteralExpr [LONG] [0]
]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-open-index/external-indexing/adm-format/adm-format.1.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-open-index/external-indexing/adm-format/adm-format.1.ast
index e69de29..16b7c54 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-open-index/external-indexing/adm-format/adm-format.1.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-open-index/external-indexing/adm-format/adm-format.1.ast
@@ -0,0 +1,19 @@
+DataverseUse test
+TypeDecl MyRecordNested [
+ open RecordType {
+ point : point,
+ kwds : string,
+ line1 : line,
+ line2 : line,
+ poly1 : polygon,
+ poly2 : polygon,
+ rec : rectangle,
+ circle : circle
+ }
+]
+TypeDecl MyRecord [
+ closed RecordType {
+ nested : MyRecordNested
+ }
+]
+DatasetDecl MyData(MyRecord)is an external dataset
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-open-index/external-indexing/adm-format/adm-format.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-open-index/external-indexing/adm-format/adm-format.3.ast
index e69de29..eec61a4 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-open-index/external-indexing/adm-format/adm-format.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-open-index/external-indexing/adm-format/adm-format.3.ast
@@ -0,0 +1,123 @@
+DataverseUse test
+Query:
+SELECT ELEMENT [
+RecordConstructor [
+ (
+ LiteralExpr [STRING] [id]
+ :
+ FieldAccessor [
+ FieldAccessor [
+ Variable [ Name=d ]
+ Field=nested
+ ]
+ Field=id
+ ]
+ )
+ (
+ LiteralExpr [STRING] [point]
+ :
+ FieldAccessor [
+ FieldAccessor [
+ Variable [ Name=d ]
+ Field=nested
+ ]
+ Field=point
+ ]
+ )
+ (
+ LiteralExpr [STRING] [kwds]
+ :
+ FieldAccessor [
+ FieldAccessor [
+ Variable [ Name=d ]
+ Field=nested
+ ]
+ Field=kwds
+ ]
+ )
+ (
+ LiteralExpr [STRING] [line1]
+ :
+ FieldAccessor [
+ FieldAccessor [
+ Variable [ Name=d ]
+ Field=nested
+ ]
+ Field=line1
+ ]
+ )
+ (
+ LiteralExpr [STRING] [line2]
+ :
+ FieldAccessor [
+ FieldAccessor [
+ Variable [ Name=d ]
+ Field=nested
+ ]
+ Field=line2
+ ]
+ )
+ (
+ LiteralExpr [STRING] [poly1]
+ :
+ FieldAccessor [
+ FieldAccessor [
+ Variable [ Name=d ]
+ Field=nested
+ ]
+ Field=poly1
+ ]
+ )
+ (
+ LiteralExpr [STRING] [poly2]
+ :
+ FieldAccessor [
+ FieldAccessor [
+ Variable [ Name=d ]
+ Field=nested
+ ]
+ Field=poly2
+ ]
+ )
+ (
+ LiteralExpr [STRING] [rec]
+ :
+ FieldAccessor [
+ FieldAccessor [
+ Variable [ Name=d ]
+ Field=nested
+ ]
+ Field=rec
+ ]
+ )
+ (
+ LiteralExpr [STRING] [circle]
+ :
+ FieldAccessor [
+ FieldAccessor [
+ Variable [ Name=d ]
+ Field=nested
+ ]
+ Field=circle
+ ]
+ )
+]
+]
+FROM [ FunctionCall Metadata.dataset@1[
+ LiteralExpr [STRING] [MyData]
+ ]
+ AS
+ Variable [ Name=d ]
+]
+Where
+ OperatorExpr [
+ FieldAccessor [
+ FieldAccessor [
+ Variable [ Name=d ]
+ Field=nested
+ ]
+ Field=id
+ ]
+ =
+ LiteralExpr [LONG] [10]
+ ]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-open-index/highly-open-highly-nested/bottom-closed-top-closed/bottom-closed-top-closed.1.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-open-index/highly-open-highly-nested/bottom-closed-top-closed/bottom-closed-top-closed.1.ast
index e69de29..5760351 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-open-index/highly-open-highly-nested/bottom-closed-top-closed/bottom-closed-top-closed.1.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-open-index/highly-open-highly-nested/bottom-closed-top-closed/bottom-closed-top-closed.1.ast
@@ -0,0 +1,68 @@
+DataverseUse test
+TypeDecl S [
+ closed RecordType {
+ id : int64,
+ Species : string
+ }
+]
+TypeDecl GS [
+ closed RecordType {
+ id : int64,
+ Genus : string,
+ lower : S
+ }
+]
+TypeDecl FGS [
+ open RecordType {
+ id : int64,
+ Family : string
+ }
+]
+TypeDecl OFGS [
+ closed RecordType {
+ id : int64,
+ Order : string,
+ lower : FGS
+ }
+]
+TypeDecl COFGS [
+ closed RecordType {
+ id : int64,
+ Class : string,
+ lower : OFGS
+ }
+]
+TypeDecl PCOFGS [
+ closed RecordType {
+ id : int64,
+ Phylum : string,
+ lower : COFGS
+ }
+]
+TypeDecl KPCOFGS [
+ open RecordType {
+ id : int64,
+ Kingdom : string
+ }
+]
+TypeDecl Classification [
+ closed RecordType {
+ id : int64,
+ fullClassification : KPCOFGS
+ }
+]
+TypeDecl Animal [
+ closed RecordType {
+ id : int64,
+ class : Classification
+ }
+]
+DatasetDecl Animals(Animal) partitioned by [[id]]
+DatasetDecl Classifications(Classification) partitioned by [[id]]
+DatasetDecl KPCOFGSs(KPCOFGS) partitioned by [[id]]
+DatasetDecl Ss(S) partitioned by [[id]]
+DatasetDecl GSs(GS) partitioned by [[id]]
+DatasetDecl FGSs(FGS) partitioned by [[id]]
+DatasetDecl OFGSs(OFGS) partitioned by [[id]]
+DatasetDecl COFGSs(COFGS) partitioned by [[id]]
+DatasetDecl PCOFGSs(PCOFGS) partitioned by [[id]]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-open-index/highly-open-highly-nested/bottom-closed-top-closed/bottom-closed-top-closed.2.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-open-index/highly-open-highly-nested/bottom-closed-top-closed/bottom-closed-top-closed.2.ast
index e69de29..916a59e 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-open-index/highly-open-highly-nested/bottom-closed-top-closed/bottom-closed-top-closed.2.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-open-index/highly-open-highly-nested/bottom-closed-top-closed/bottom-closed-top-closed.2.ast
@@ -0,0 +1 @@
+DataverseUse test
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-open-index/highly-open-highly-nested/bottom-closed-top-closed/bottom-closed-top-closed.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-open-index/highly-open-highly-nested/bottom-closed-top-closed/bottom-closed-top-closed.3.ast
index e69de29..00d2bb7 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-open-index/highly-open-highly-nested/bottom-closed-top-closed/bottom-closed-top-closed.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-open-index/highly-open-highly-nested/bottom-closed-top-closed/bottom-closed-top-closed.3.ast
@@ -0,0 +1,44 @@
+DataverseUse test
+Query:
+SELECT ELEMENT [
+Variable [ Name=test ]
+]
+FROM [ FunctionCall Metadata.dataset@1[
+ LiteralExpr [STRING] [Animals]
+ ]
+ AS
+ Variable [ Name=test ]
+]
+Where
+ OperatorExpr [
+ FieldAccessor [
+ FieldAccessor [
+ FieldAccessor [
+ FieldAccessor [
+ FieldAccessor [
+ FieldAccessor [
+ FieldAccessor [
+ FieldAccessor [
+ FieldAccessor [
+ Variable [ Name=test ]
+ Field=class
+ ]
+ Field=fullClassification
+ ]
+ Field=lower
+ ]
+ Field=lower
+ ]
+ Field=lower
+ ]
+ Field=lower
+ ]
+ Field=lower
+ ]
+ Field=lower
+ ]
+ Field=Species
+ ]
+ =
+ LiteralExpr [STRING] [Gulo]
+ ]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-open-index/highly-open-highly-nested/bottom-closed-top-open/bottom-closed-top-open.1.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-open-index/highly-open-highly-nested/bottom-closed-top-open/bottom-closed-top-open.1.ast
index e69de29..ec02678 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-open-index/highly-open-highly-nested/bottom-closed-top-open/bottom-closed-top-open.1.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-open-index/highly-open-highly-nested/bottom-closed-top-open/bottom-closed-top-open.1.ast
@@ -0,0 +1,67 @@
+DataverseUse test
+TypeDecl S [
+ closed RecordType {
+ id : int64,
+ Species : string
+ }
+]
+TypeDecl GS [
+ closed RecordType {
+ id : int64,
+ Genus : string,
+ lower : S
+ }
+]
+TypeDecl FGS [
+ open RecordType {
+ id : int64,
+ Family : string
+ }
+]
+TypeDecl OFGS [
+ closed RecordType {
+ id : int64,
+ Order : string,
+ lower : FGS
+ }
+]
+TypeDecl COFGS [
+ closed RecordType {
+ id : int64,
+ Class : string,
+ lower : OFGS
+ }
+]
+TypeDecl PCOFGS [
+ closed RecordType {
+ id : int64,
+ Phylum : string,
+ lower : COFGS
+ }
+]
+TypeDecl KPCOFGS [
+ open RecordType {
+ id : int64,
+ Kingdom : string
+ }
+]
+TypeDecl Classification [
+ closed RecordType {
+ id : int64,
+ fullClassification : KPCOFGS
+ }
+]
+TypeDecl Animal [
+ open RecordType {
+ id : int64
+ }
+]
+DatasetDecl Animals(Animal) partitioned by [[id]]
+DatasetDecl Classifications(Classification) partitioned by [[id]]
+DatasetDecl KPCOFGSs(KPCOFGS) partitioned by [[id]]
+DatasetDecl Ss(S) partitioned by [[id]]
+DatasetDecl GSs(GS) partitioned by [[id]]
+DatasetDecl FGSs(FGS) partitioned by [[id]]
+DatasetDecl OFGSs(OFGS) partitioned by [[id]]
+DatasetDecl COFGSs(COFGS) partitioned by [[id]]
+DatasetDecl PCOFGSs(PCOFGS) partitioned by [[id]]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-open-index/highly-open-highly-nested/bottom-closed-top-open/bottom-closed-top-open.2.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-open-index/highly-open-highly-nested/bottom-closed-top-open/bottom-closed-top-open.2.ast
index e69de29..916a59e 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-open-index/highly-open-highly-nested/bottom-closed-top-open/bottom-closed-top-open.2.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-open-index/highly-open-highly-nested/bottom-closed-top-open/bottom-closed-top-open.2.ast
@@ -0,0 +1 @@
+DataverseUse test
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-open-index/highly-open-highly-nested/bottom-closed-top-open/bottom-closed-top-open.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-open-index/highly-open-highly-nested/bottom-closed-top-open/bottom-closed-top-open.3.ast
index e69de29..00d2bb7 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-open-index/highly-open-highly-nested/bottom-closed-top-open/bottom-closed-top-open.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-open-index/highly-open-highly-nested/bottom-closed-top-open/bottom-closed-top-open.3.ast
@@ -0,0 +1,44 @@
+DataverseUse test
+Query:
+SELECT ELEMENT [
+Variable [ Name=test ]
+]
+FROM [ FunctionCall Metadata.dataset@1[
+ LiteralExpr [STRING] [Animals]
+ ]
+ AS
+ Variable [ Name=test ]
+]
+Where
+ OperatorExpr [
+ FieldAccessor [
+ FieldAccessor [
+ FieldAccessor [
+ FieldAccessor [
+ FieldAccessor [
+ FieldAccessor [
+ FieldAccessor [
+ FieldAccessor [
+ FieldAccessor [
+ Variable [ Name=test ]
+ Field=class
+ ]
+ Field=fullClassification
+ ]
+ Field=lower
+ ]
+ Field=lower
+ ]
+ Field=lower
+ ]
+ Field=lower
+ ]
+ Field=lower
+ ]
+ Field=lower
+ ]
+ Field=Species
+ ]
+ =
+ LiteralExpr [STRING] [Gulo]
+ ]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-open-index/highly-open-highly-nested/bottom-open-top-closed/bottom-open-top-closed.1.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-open-index/highly-open-highly-nested/bottom-open-top-closed/bottom-open-top-closed.1.ast
index e69de29..ea06300 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-open-index/highly-open-highly-nested/bottom-open-top-closed/bottom-open-top-closed.1.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-open-index/highly-open-highly-nested/bottom-open-top-closed/bottom-open-top-closed.1.ast
@@ -0,0 +1,67 @@
+DataverseUse test
+TypeDecl S [
+ open RecordType {
+ id : int64
+ }
+]
+TypeDecl GS [
+ closed RecordType {
+ id : int64,
+ Genus : string,
+ lower : S
+ }
+]
+TypeDecl FGS [
+ open RecordType {
+ id : int64,
+ Family : string
+ }
+]
+TypeDecl OFGS [
+ closed RecordType {
+ id : int64,
+ Order : string,
+ lower : FGS
+ }
+]
+TypeDecl COFGS [
+ closed RecordType {
+ id : int64,
+ Class : string,
+ lower : OFGS
+ }
+]
+TypeDecl PCOFGS [
+ closed RecordType {
+ id : int64,
+ Phylum : string,
+ lower : COFGS
+ }
+]
+TypeDecl KPCOFGS [
+ open RecordType {
+ id : int64,
+ Kingdom : string
+ }
+]
+TypeDecl Classification [
+ closed RecordType {
+ id : int64,
+ fullClassification : KPCOFGS
+ }
+]
+TypeDecl Animal [
+ closed RecordType {
+ id : int64,
+ class : Classification
+ }
+]
+DatasetDecl Animals(Animal) partitioned by [[id]]
+DatasetDecl Classifications(Classification) partitioned by [[id]]
+DatasetDecl KPCOFGSs(KPCOFGS) partitioned by [[id]]
+DatasetDecl Ss(S) partitioned by [[id]]
+DatasetDecl GSs(GS) partitioned by [[id]]
+DatasetDecl FGSs(FGS) partitioned by [[id]]
+DatasetDecl OFGSs(OFGS) partitioned by [[id]]
+DatasetDecl COFGSs(COFGS) partitioned by [[id]]
+DatasetDecl PCOFGSs(PCOFGS) partitioned by [[id]]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-open-index/highly-open-highly-nested/bottom-open-top-closed/bottom-open-top-closed.2.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-open-index/highly-open-highly-nested/bottom-open-top-closed/bottom-open-top-closed.2.ast
index e69de29..916a59e 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-open-index/highly-open-highly-nested/bottom-open-top-closed/bottom-open-top-closed.2.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-open-index/highly-open-highly-nested/bottom-open-top-closed/bottom-open-top-closed.2.ast
@@ -0,0 +1 @@
+DataverseUse test
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-open-index/highly-open-highly-nested/bottom-open-top-closed/bottom-open-top-closed.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-open-index/highly-open-highly-nested/bottom-open-top-closed/bottom-open-top-closed.3.ast
index e69de29..00d2bb7 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-open-index/highly-open-highly-nested/bottom-open-top-closed/bottom-open-top-closed.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-open-index/highly-open-highly-nested/bottom-open-top-closed/bottom-open-top-closed.3.ast
@@ -0,0 +1,44 @@
+DataverseUse test
+Query:
+SELECT ELEMENT [
+Variable [ Name=test ]
+]
+FROM [ FunctionCall Metadata.dataset@1[
+ LiteralExpr [STRING] [Animals]
+ ]
+ AS
+ Variable [ Name=test ]
+]
+Where
+ OperatorExpr [
+ FieldAccessor [
+ FieldAccessor [
+ FieldAccessor [
+ FieldAccessor [
+ FieldAccessor [
+ FieldAccessor [
+ FieldAccessor [
+ FieldAccessor [
+ FieldAccessor [
+ Variable [ Name=test ]
+ Field=class
+ ]
+ Field=fullClassification
+ ]
+ Field=lower
+ ]
+ Field=lower
+ ]
+ Field=lower
+ ]
+ Field=lower
+ ]
+ Field=lower
+ ]
+ Field=lower
+ ]
+ Field=Species
+ ]
+ =
+ LiteralExpr [STRING] [Gulo]
+ ]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-open-index/highly-open-highly-nested/bottom-open-top-open/bottom-open-top-open.1.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-open-index/highly-open-highly-nested/bottom-open-top-open/bottom-open-top-open.1.ast
index e69de29..bd6eef1 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-open-index/highly-open-highly-nested/bottom-open-top-open/bottom-open-top-open.1.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-open-index/highly-open-highly-nested/bottom-open-top-open/bottom-open-top-open.1.ast
@@ -0,0 +1,66 @@
+DataverseUse test
+TypeDecl S [
+ open RecordType {
+ id : int64
+ }
+]
+TypeDecl GS [
+ closed RecordType {
+ id : int64,
+ Genus : string,
+ lower : S
+ }
+]
+TypeDecl FGS [
+ open RecordType {
+ id : int64,
+ Family : string
+ }
+]
+TypeDecl OFGS [
+ closed RecordType {
+ id : int64,
+ Order : string,
+ lower : FGS
+ }
+]
+TypeDecl COFGS [
+ closed RecordType {
+ id : int64,
+ Class : string,
+ lower : OFGS
+ }
+]
+TypeDecl PCOFGS [
+ closed RecordType {
+ id : int64,
+ Phylum : string,
+ lower : COFGS
+ }
+]
+TypeDecl KPCOFGS [
+ open RecordType {
+ id : int64,
+ Kingdom : string
+ }
+]
+TypeDecl Classification [
+ closed RecordType {
+ id : int64,
+ fullClassification : KPCOFGS
+ }
+]
+TypeDecl Animal [
+ open RecordType {
+ id : int64
+ }
+]
+DatasetDecl Animals(Animal) partitioned by [[id]]
+DatasetDecl Classifications(Classification) partitioned by [[id]]
+DatasetDecl KPCOFGSs(KPCOFGS) partitioned by [[id]]
+DatasetDecl Ss(S) partitioned by [[id]]
+DatasetDecl GSs(GS) partitioned by [[id]]
+DatasetDecl FGSs(FGS) partitioned by [[id]]
+DatasetDecl OFGSs(OFGS) partitioned by [[id]]
+DatasetDecl COFGSs(COFGS) partitioned by [[id]]
+DatasetDecl PCOFGSs(PCOFGS) partitioned by [[id]]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-open-index/highly-open-highly-nested/bottom-open-top-open/bottom-open-top-open.2.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-open-index/highly-open-highly-nested/bottom-open-top-open/bottom-open-top-open.2.ast
index e69de29..916a59e 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-open-index/highly-open-highly-nested/bottom-open-top-open/bottom-open-top-open.2.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-open-index/highly-open-highly-nested/bottom-open-top-open/bottom-open-top-open.2.ast
@@ -0,0 +1 @@
+DataverseUse test
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-open-index/highly-open-highly-nested/bottom-open-top-open/bottom-open-top-open.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-open-index/highly-open-highly-nested/bottom-open-top-open/bottom-open-top-open.3.ast
index e69de29..00d2bb7 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-open-index/highly-open-highly-nested/bottom-open-top-open/bottom-open-top-open.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-open-index/highly-open-highly-nested/bottom-open-top-open/bottom-open-top-open.3.ast
@@ -0,0 +1,44 @@
+DataverseUse test
+Query:
+SELECT ELEMENT [
+Variable [ Name=test ]
+]
+FROM [ FunctionCall Metadata.dataset@1[
+ LiteralExpr [STRING] [Animals]
+ ]
+ AS
+ Variable [ Name=test ]
+]
+Where
+ OperatorExpr [
+ FieldAccessor [
+ FieldAccessor [
+ FieldAccessor [
+ FieldAccessor [
+ FieldAccessor [
+ FieldAccessor [
+ FieldAccessor [
+ FieldAccessor [
+ FieldAccessor [
+ Variable [ Name=test ]
+ Field=class
+ ]
+ Field=fullClassification
+ ]
+ Field=lower
+ ]
+ Field=lower
+ ]
+ Field=lower
+ ]
+ Field=lower
+ ]
+ Field=lower
+ ]
+ Field=lower
+ ]
+ Field=Species
+ ]
+ =
+ LiteralExpr [STRING] [Gulo]
+ ]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-open-index/index-leftouterjoin/probe-pidx-with-join-invidx-sidx2/probe-pidx-with-join-invidx-sidx2.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-open-index/index-leftouterjoin/probe-pidx-with-join-invidx-sidx2/probe-pidx-with-join-invidx-sidx2.3.ast
index c1b14f9..93da0d9 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-open-index/index-leftouterjoin/probe-pidx-with-join-invidx-sidx2/probe-pidx-with-join-invidx-sidx2.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-open-index/index-leftouterjoin/probe-pidx-with-join-invidx-sidx2/probe-pidx-with-join-invidx-sidx2.3.ast
@@ -80,7 +80,7 @@
OperatorExpr [
IndexAccessor [
Variable [ Name=sim ]
- Index: Variable [ Name=sim ]
+ Index: LiteralExpr [LONG] [0]
]
and
OperatorExpr [
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-open-index/index-selection/inverted-index-ngram-edit-distance-contains/inverted-index-ngram-edit-distance-contains.4.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-open-index/index-selection/inverted-index-ngram-edit-distance-contains/inverted-index-ngram-edit-distance-contains.4.ast
index 10557ee..bee7846 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-open-index/index-selection/inverted-index-ngram-edit-distance-contains/inverted-index-ngram-edit-distance-contains.4.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-open-index/index-selection/inverted-index-ngram-edit-distance-contains/inverted-index-ngram-edit-distance-contains.4.ast
@@ -45,17 +45,7 @@
LiteralExpr [STRING] [Multmedia]
LiteralExpr [LONG] [1]
]
- Index: FunctionCall test.edit-distance-contains@3[
- FieldAccessor [
- FieldAccessor [
- Variable [ Name=paper ]
- Field=nested
- ]
- Field=title
- ]
- LiteralExpr [STRING] [Multmedia]
- LiteralExpr [LONG] [1]
- ]
+ Index: LiteralExpr [LONG] [0]
]
Orderby
FieldAccessor [
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-open-index/index-selection/inverted-index-ngram-edit-distance-panic/inverted-index-ngram-edit-distance-panic.4.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-open-index/index-selection/inverted-index-ngram-edit-distance-panic/inverted-index-ngram-edit-distance-panic.4.ast
index e841a79..52f5d52 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-open-index/index-selection/inverted-index-ngram-edit-distance-panic/inverted-index-ngram-edit-distance-panic.4.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-open-index/index-selection/inverted-index-ngram-edit-distance-panic/inverted-index-ngram-edit-distance-panic.4.ast
@@ -28,5 +28,5 @@
Where
IndexAccessor [
Variable [ Name=ed ]
- Index: Variable [ Name=ed ]
+ Index: LiteralExpr [LONG] [0]
]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-open-index/index-selection/inverted-index-ngram-edit-distance/inverted-index-ngram-edit-distance.4.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-open-index/index-selection/inverted-index-ngram-edit-distance/inverted-index-ngram-edit-distance.4.ast
index ccc037f..a4ac5f5 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-open-index/index-selection/inverted-index-ngram-edit-distance/inverted-index-ngram-edit-distance.4.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-open-index/index-selection/inverted-index-ngram-edit-distance/inverted-index-ngram-edit-distance.4.ast
@@ -28,5 +28,5 @@
Where
IndexAccessor [
Variable [ Name=ed ]
- Index: Variable [ Name=ed ]
+ Index: LiteralExpr [LONG] [0]
]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-open-index/index-selection/inverted-index-ngram-jaccard/inverted-index-ngram-jaccard.4.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-open-index/index-selection/inverted-index-ngram-jaccard/inverted-index-ngram-jaccard.4.ast
index fc953dc..9b7c3f8 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-open-index/index-selection/inverted-index-ngram-jaccard/inverted-index-ngram-jaccard.4.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-open-index/index-selection/inverted-index-ngram-jaccard/inverted-index-ngram-jaccard.4.ast
@@ -37,5 +37,5 @@
Where
IndexAccessor [
Variable [ Name=jacc ]
- Index: Variable [ Name=jacc ]
+ Index: LiteralExpr [LONG] [0]
]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-open-index/index-selection/inverted-index-word-jaccard/inverted-index-word-jaccard.4.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-open-index/index-selection/inverted-index-word-jaccard/inverted-index-word-jaccard.4.ast
index 18c05a8..522ef24 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-open-index/index-selection/inverted-index-word-jaccard/inverted-index-word-jaccard.4.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/nested-open-index/index-selection/inverted-index-word-jaccard/inverted-index-word-jaccard.4.ast
@@ -32,5 +32,5 @@
Where
IndexAccessor [
Variable [ Name=jacc ]
- Index: Variable [ Name=jacc ]
+ Index: LiteralExpr [LONG] [0]
]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/numeric/add_double/add_double.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/numeric/add_double/add_double.3.ast
index 08a0267..61f1216 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/numeric/add_double/add_double.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/numeric/add_double/add_double.3.ast
@@ -91,9 +91,7 @@
OrderedListConstructor [
LiteralExpr [LONG] [1]
]
- Index: OrderedListConstructor [
- LiteralExpr [LONG] [1]
- ]
+ Index: LiteralExpr [LONG] [1]
]
]
)
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/numeric/add_float/add_float.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/numeric/add_float/add_float.3.ast
index 10928fe..a602f5c 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/numeric/add_float/add_float.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/numeric/add_float/add_float.3.ast
@@ -91,9 +91,7 @@
OrderedListConstructor [
LiteralExpr [LONG] [1]
]
- Index: OrderedListConstructor [
- LiteralExpr [LONG] [1]
- ]
+ Index: LiteralExpr [LONG] [1]
]
]
)
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/numeric/add_int16/add_int16.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/numeric/add_int16/add_int16.3.ast
index e086e33..5c6c14d 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/numeric/add_int16/add_int16.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/numeric/add_int16/add_int16.3.ast
@@ -91,9 +91,7 @@
OrderedListConstructor [
LiteralExpr [LONG] [1]
]
- Index: OrderedListConstructor [
- LiteralExpr [LONG] [1]
- ]
+ Index: LiteralExpr [LONG] [1]
]
]
)
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/numeric/add_int32/add_int32.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/numeric/add_int32/add_int32.3.ast
index 374cc32..55fd0d6 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/numeric/add_int32/add_int32.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/numeric/add_int32/add_int32.3.ast
@@ -91,9 +91,7 @@
OrderedListConstructor [
LiteralExpr [LONG] [1]
]
- Index: OrderedListConstructor [
- LiteralExpr [LONG] [1]
- ]
+ Index: LiteralExpr [LONG] [1]
]
]
)
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/numeric/add_int64/add_int64.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/numeric/add_int64/add_int64.3.ast
index 9fff5e0..337afca 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/numeric/add_int64/add_int64.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/numeric/add_int64/add_int64.3.ast
@@ -91,9 +91,7 @@
OrderedListConstructor [
LiteralExpr [LONG] [1]
]
- Index: OrderedListConstructor [
- LiteralExpr [LONG] [1]
- ]
+ Index: LiteralExpr [LONG] [1]
]
]
)
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/numeric/add_int8/add_int8.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/numeric/add_int8/add_int8.3.ast
index 07cce2c..be062d5 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/numeric/add_int8/add_int8.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/numeric/add_int8/add_int8.3.ast
@@ -91,9 +91,7 @@
OrderedListConstructor [
LiteralExpr [LONG] [1]
]
- Index: OrderedListConstructor [
- LiteralExpr [LONG] [1]
- ]
+ Index: LiteralExpr [LONG] [1]
]
]
)
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/numeric/divide_double/divide_double.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/numeric/divide_double/divide_double.3.ast
index 4128270..a92bc55 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/numeric/divide_double/divide_double.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/numeric/divide_double/divide_double.3.ast
@@ -91,9 +91,7 @@
OrderedListConstructor [
LiteralExpr [LONG] [1]
]
- Index: OrderedListConstructor [
- LiteralExpr [LONG] [1]
- ]
+ Index: LiteralExpr [LONG] [1]
]
]
)
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/numeric/divide_float/divide_float.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/numeric/divide_float/divide_float.3.ast
index 9560a49..45b0233 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/numeric/divide_float/divide_float.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/numeric/divide_float/divide_float.3.ast
@@ -91,9 +91,7 @@
OrderedListConstructor [
LiteralExpr [LONG] [1]
]
- Index: OrderedListConstructor [
- LiteralExpr [LONG] [1]
- ]
+ Index: LiteralExpr [LONG] [1]
]
]
)
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/numeric/divide_int16/divide_int16.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/numeric/divide_int16/divide_int16.3.ast
index b0cc853..56dac15 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/numeric/divide_int16/divide_int16.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/numeric/divide_int16/divide_int16.3.ast
@@ -91,9 +91,7 @@
OrderedListConstructor [
LiteralExpr [LONG] [1]
]
- Index: OrderedListConstructor [
- LiteralExpr [LONG] [1]
- ]
+ Index: LiteralExpr [LONG] [1]
]
]
)
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/numeric/divide_int32/divide_int32.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/numeric/divide_int32/divide_int32.3.ast
index e0d9e56..1fa62e7 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/numeric/divide_int32/divide_int32.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/numeric/divide_int32/divide_int32.3.ast
@@ -91,9 +91,7 @@
OrderedListConstructor [
LiteralExpr [LONG] [1]
]
- Index: OrderedListConstructor [
- LiteralExpr [LONG] [1]
- ]
+ Index: LiteralExpr [LONG] [1]
]
]
)
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/numeric/divide_int64/divide_int64.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/numeric/divide_int64/divide_int64.3.ast
index c042637..3bff813 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/numeric/divide_int64/divide_int64.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/numeric/divide_int64/divide_int64.3.ast
@@ -91,9 +91,7 @@
OrderedListConstructor [
LiteralExpr [LONG] [1]
]
- Index: OrderedListConstructor [
- LiteralExpr [LONG] [1]
- ]
+ Index: LiteralExpr [LONG] [1]
]
]
)
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/numeric/divide_int8/divide_int8.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/numeric/divide_int8/divide_int8.3.ast
index 940a9c2..46a69ab 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/numeric/divide_int8/divide_int8.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/numeric/divide_int8/divide_int8.3.ast
@@ -91,9 +91,7 @@
OrderedListConstructor [
LiteralExpr [LONG] [1]
]
- Index: OrderedListConstructor [
- LiteralExpr [LONG] [1]
- ]
+ Index: LiteralExpr [LONG] [1]
]
]
)
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/numeric/multiply_double/multiply_double.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/numeric/multiply_double/multiply_double.3.ast
index ecb3c02..a428685 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/numeric/multiply_double/multiply_double.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/numeric/multiply_double/multiply_double.3.ast
@@ -91,9 +91,7 @@
OrderedListConstructor [
LiteralExpr [LONG] [1]
]
- Index: OrderedListConstructor [
- LiteralExpr [LONG] [1]
- ]
+ Index: LiteralExpr [LONG] [1]
]
]
)
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/numeric/multiply_float/multiply_float.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/numeric/multiply_float/multiply_float.3.ast
index 28ea27a..cfbe2ac 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/numeric/multiply_float/multiply_float.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/numeric/multiply_float/multiply_float.3.ast
@@ -91,9 +91,7 @@
OrderedListConstructor [
LiteralExpr [LONG] [1]
]
- Index: OrderedListConstructor [
- LiteralExpr [LONG] [1]
- ]
+ Index: LiteralExpr [LONG] [1]
]
]
)
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/numeric/multiply_int16/multiply_int16.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/numeric/multiply_int16/multiply_int16.3.ast
index bb00a4e..df7e8fa 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/numeric/multiply_int16/multiply_int16.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/numeric/multiply_int16/multiply_int16.3.ast
@@ -91,9 +91,7 @@
OrderedListConstructor [
LiteralExpr [LONG] [1]
]
- Index: OrderedListConstructor [
- LiteralExpr [LONG] [1]
- ]
+ Index: LiteralExpr [LONG] [1]
]
]
)
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/numeric/multiply_int32/multiply_int32.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/numeric/multiply_int32/multiply_int32.3.ast
index 7a8df5f..9863256 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/numeric/multiply_int32/multiply_int32.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/numeric/multiply_int32/multiply_int32.3.ast
@@ -91,9 +91,7 @@
OrderedListConstructor [
LiteralExpr [LONG] [1]
]
- Index: OrderedListConstructor [
- LiteralExpr [LONG] [1]
- ]
+ Index: LiteralExpr [LONG] [1]
]
]
)
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/numeric/multiply_int64/multiply_int64.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/numeric/multiply_int64/multiply_int64.3.ast
index 60892b6..e9274f2 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/numeric/multiply_int64/multiply_int64.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/numeric/multiply_int64/multiply_int64.3.ast
@@ -91,9 +91,7 @@
OrderedListConstructor [
LiteralExpr [LONG] [1]
]
- Index: OrderedListConstructor [
- LiteralExpr [LONG] [1]
- ]
+ Index: LiteralExpr [LONG] [1]
]
]
)
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/numeric/multiply_int8/multiply_int8.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/numeric/multiply_int8/multiply_int8.3.ast
index 001f751..8964180 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/numeric/multiply_int8/multiply_int8.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/numeric/multiply_int8/multiply_int8.3.ast
@@ -91,9 +91,7 @@
OrderedListConstructor [
LiteralExpr [LONG] [1]
]
- Index: OrderedListConstructor [
- LiteralExpr [LONG] [1]
- ]
+ Index: LiteralExpr [LONG] [1]
]
]
)
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/numeric/subtract_double/subtract_double.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/numeric/subtract_double/subtract_double.3.ast
index e99c5fb..ef39da2 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/numeric/subtract_double/subtract_double.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/numeric/subtract_double/subtract_double.3.ast
@@ -91,9 +91,7 @@
OrderedListConstructor [
LiteralExpr [LONG] [1]
]
- Index: OrderedListConstructor [
- LiteralExpr [LONG] [1]
- ]
+ Index: LiteralExpr [LONG] [1]
]
]
)
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/numeric/subtract_float/subtract_float.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/numeric/subtract_float/subtract_float.3.ast
index 5b8b8d3..214254a 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/numeric/subtract_float/subtract_float.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/numeric/subtract_float/subtract_float.3.ast
@@ -91,9 +91,7 @@
OrderedListConstructor [
LiteralExpr [LONG] [1]
]
- Index: OrderedListConstructor [
- LiteralExpr [LONG] [1]
- ]
+ Index: LiteralExpr [LONG] [1]
]
]
)
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/numeric/subtract_int16/subtract_int16.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/numeric/subtract_int16/subtract_int16.3.ast
index 868f368..c677be5 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/numeric/subtract_int16/subtract_int16.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/numeric/subtract_int16/subtract_int16.3.ast
@@ -91,9 +91,7 @@
OrderedListConstructor [
LiteralExpr [LONG] [1]
]
- Index: OrderedListConstructor [
- LiteralExpr [LONG] [1]
- ]
+ Index: LiteralExpr [LONG] [1]
]
]
)
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/numeric/subtract_int32/subtract_int32.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/numeric/subtract_int32/subtract_int32.3.ast
index 96a2352..ebdf0a8 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/numeric/subtract_int32/subtract_int32.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/numeric/subtract_int32/subtract_int32.3.ast
@@ -91,9 +91,7 @@
OrderedListConstructor [
LiteralExpr [LONG] [1]
]
- Index: OrderedListConstructor [
- LiteralExpr [LONG] [1]
- ]
+ Index: LiteralExpr [LONG] [1]
]
]
)
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/numeric/subtract_int64/subtract_int64.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/numeric/subtract_int64/subtract_int64.3.ast
index 52ee8af..ccfa07d 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/numeric/subtract_int64/subtract_int64.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/numeric/subtract_int64/subtract_int64.3.ast
@@ -91,9 +91,7 @@
OrderedListConstructor [
LiteralExpr [LONG] [1]
]
- Index: OrderedListConstructor [
- LiteralExpr [LONG] [1]
- ]
+ Index: LiteralExpr [LONG] [1]
]
]
)
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/numeric/subtract_int8/subtract_int8.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/numeric/subtract_int8/subtract_int8.3.ast
index fd0b1f8..7565144 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/numeric/subtract_int8/subtract_int8.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/numeric/subtract_int8/subtract_int8.3.ast
@@ -91,9 +91,7 @@
OrderedListConstructor [
LiteralExpr [LONG] [1]
]
- Index: OrderedListConstructor [
- LiteralExpr [LONG] [1]
- ]
+ Index: LiteralExpr [LONG] [1]
]
]
)
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/numeric/unary-minus_null/unary-minus_null.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/numeric/unary-minus_null/unary-minus_null.3.ast
index 70c074c..e7479dc 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/numeric/unary-minus_null/unary-minus_null.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/numeric/unary-minus_null/unary-minus_null.3.ast
@@ -8,9 +8,7 @@
OrderedListConstructor [
LiteralExpr [LONG] [1]
]
- Index: OrderedListConstructor [
- LiteralExpr [LONG] [1]
- ]
+ Index: LiteralExpr [LONG] [1]
]
)
]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue134/query-issue134.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue134/query-issue134.3.ast
index e69de29..f996b27 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue134/query-issue134.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue134/query-issue134.3.ast
@@ -0,0 +1,25 @@
+Query:
+UnorderedListConstructor [
+ OrderedListConstructor [
+ LiteralExpr [LONG] [1]
+ LiteralExpr [LONG] [2]
+ LiteralExpr [LONG] [3]
+ LiteralExpr [LONG] [4]
+ LiteralExpr [LONG] [5]
+ ]
+ OrderedListConstructor [
+ LiteralExpr [LONG] [6]
+ LiteralExpr [LONG] [5]
+ LiteralExpr [LONG] [3]
+ LiteralExpr [LONG] [8]
+ LiteralExpr [LONG] [9]
+ ]
+ OrderedListConstructor [
+ LiteralExpr [LONG] [44]
+ LiteralExpr [LONG] [22]
+ LiteralExpr [LONG] [66]
+ NEGATIVE LiteralExpr [LONG] [1]
+ LiteralExpr [LONG] [0]
+ LiteralExpr [DOUBLE] [99.9]
+ ]
+]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue166/query-issue166.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue166/query-issue166.3.ast
index e69de29..08f38f4 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue166/query-issue166.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue166/query-issue166.3.ast
@@ -0,0 +1,17 @@
+Query:
+IndexAccessor [
+ OrderedListConstructor [
+ OrderedListConstructor [
+ LiteralExpr [LONG] [1]
+ LiteralExpr [LONG] [2]
+ LiteralExpr [LONG] [3]
+ ]
+ OrderedListConstructor [
+ LiteralExpr [LONG] [4]
+ LiteralExpr [LONG] [5]
+ LiteralExpr [LONG] [6]
+ LiteralExpr [LONG] [7]
+ ]
+ ]
+ Index: LiteralExpr [LONG] [1]
+]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue196/query-issue196.1.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue196/query-issue196.1.ast
index e69de29..3d0574c 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue196/query-issue196.1.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue196/query-issue196.1.ast
@@ -0,0 +1,13 @@
+DataverseUse test
+TypeDecl testtype1 [
+ open RecordType {
+ id : int64
+ }
+]
+TypeDecl testtype2 [
+ open RecordType {
+ id : int64
+ }
+]
+DatasetDecl t1(testtype1) partitioned by [[id]]
+DatasetDecl t2(testtype2) partitioned by [[id]]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue196/query-issue196.2.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue196/query-issue196.2.ast
index e69de29..916a59e 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue196/query-issue196.2.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue196/query-issue196.2.ast
@@ -0,0 +1 @@
+DataverseUse test
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue196/query-issue196.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue196/query-issue196.3.ast
index e69de29..5ec0d31 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue196/query-issue196.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue196/query-issue196.3.ast
@@ -0,0 +1,48 @@
+DataverseUse test
+Query:
+RecordConstructor [
+ (
+ LiteralExpr [STRING] [a]
+ :
+ (
+ SELECT ELEMENT [
+ Variable [ Name=l ]
+ ]
+ FROM [ FunctionCall Metadata.dataset@1[
+ LiteralExpr [STRING] [t1]
+ ]
+ AS
+ Variable [ Name=l ]
+ ]
+ Orderby
+ FieldAccessor [
+ Variable [ Name=l ]
+ Field=id
+ ]
+ ASC
+
+ )
+ )
+ (
+ LiteralExpr [STRING] [b]
+ :
+ (
+ SELECT ELEMENT [
+ Variable [ Name=m ]
+ ]
+ FROM [ FunctionCall Metadata.dataset@1[
+ LiteralExpr [STRING] [t2]
+ ]
+ AS
+ Variable [ Name=m ]
+ ]
+ Orderby
+ FieldAccessor [
+ Variable [ Name=m ]
+ Field=id
+ ]
+ ASC
+
+ )
+ )
+]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue208/query-issue208.1.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue208/query-issue208.1.ast
index e69de29..098bc59 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue208/query-issue208.1.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue208/query-issue208.1.ast
@@ -0,0 +1,19 @@
+DataverseUse OpenSocialNetworkData
+TypeDecl TwitterUserType [
+ open RecordType {
+ screen-name : string,
+ lang : string,
+ friends_count : int64,
+ statuses_count : int64,
+ name : string,
+ followers_count : int64
+ }
+]
+TypeDecl TweetMessageType [
+ open RecordType {
+ tweetid : string,
+ tweetid-copy : string,
+ send-time-copy : datetime
+ }
+]
+DatasetDecl TweetMessages(TweetMessageType) partitioned by [[tweetid]]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue208/query-issue208.2.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue208/query-issue208.2.ast
index e69de29..10dfc65 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue208/query-issue208.2.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue208/query-issue208.2.ast
@@ -0,0 +1 @@
+DataverseUse OpenSocialNetworkData
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue208/query-issue208.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue208/query-issue208.3.ast
index e69de29..997d5f8 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue208/query-issue208.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue208/query-issue208.3.ast
@@ -0,0 +1,65 @@
+DataverseUse OpenSocialNetworkData
+Query:
+SELECT ELEMENT [
+RecordConstructor [
+ (
+ LiteralExpr [STRING] [user]
+ :
+ Variable [ Name=uid ]
+ )
+ (
+ LiteralExpr [STRING] [count]
+ :
+ FunctionCall OpenSocialNetworkData.count@1[
+ Variable [ Name=t ]
+ ]
+ )
+]
+]
+FROM [ FunctionCall Metadata.dataset@1[
+ LiteralExpr [STRING] [TweetMessages]
+ ]
+ AS
+ Variable [ Name=t ]
+]
+Where
+ OperatorExpr [
+ OperatorExpr [
+ FieldAccessor [
+ Variable [ Name=t ]
+ Field=send-time
+ ]
+ >=
+ FunctionCall OpenSocialNetworkData.datetime@1[
+ LiteralExpr [STRING] [2005-04-13T17:17:22]
+ ]
+ ]
+ and
+ OperatorExpr [
+ FieldAccessor [
+ Variable [ Name=t ]
+ Field=send-time
+ ]
+ <=
+ FunctionCall OpenSocialNetworkData.datetime@1[
+ LiteralExpr [STRING] [2011-04-13T17:18:22]
+ ]
+ ]
+ ]
+Groupby
+ Variable [ Name=uid ]
+ :=
+ FieldAccessor [
+ FieldAccessor [
+ Variable [ Name=t ]
+ Field=user
+ ]
+ Field=screen-name
+ ]
+ With
+ Variable [ Name=t ]
+
+Orderby
+ Variable [ Name=uid ]
+ ASC
+
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue236/query-issue236.1.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue236/query-issue236.1.ast
index e69de29..6d3cdf9 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue236/query-issue236.1.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue236/query-issue236.1.ast
@@ -0,0 +1,25 @@
+DataverseUse SocialNetworkData
+TypeDecl TwitterUserType [
+ open RecordType {
+ screen-name : string,
+ lang : string,
+ friends_count : int64,
+ statuses_count : int64,
+ name : string,
+ followers_count : int64
+ }
+]
+TypeDecl TweetMessageType [
+ closed RecordType {
+ tweetid : string,
+ tweetid-copy : string,
+ user : TwitterUserType,
+ sender-location : point?,
+ send-time : datetime,
+ send-time-copy : datetime,
+ referred-topics : UnorderedList <string>
+,
+ message-text : string
+ }
+]
+DatasetDecl TweetMessages(TweetMessageType) partitioned by [[tweetid]]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue236/query-issue236.2.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue236/query-issue236.2.ast
index e69de29..119f3ec 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue236/query-issue236.2.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue236/query-issue236.2.ast
@@ -0,0 +1 @@
+DataverseUse SocialNetworkData
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue236/query-issue236.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue236/query-issue236.3.ast
index e69de29..3317b03 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue236/query-issue236.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue236/query-issue236.3.ast
@@ -0,0 +1,11 @@
+DataverseUse SocialNetworkData
+Query:
+SELECT ELEMENT [
+Variable [ Name=r ]
+]
+FROM [ FunctionCall Metadata.dataset@1[
+ LiteralExpr [STRING] [TweetMessages]
+ ]
+ AS
+ Variable [ Name=r ]
+]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue258/query-issue258.1.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue258/query-issue258.1.ast
index e69de29..1374dd4 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue258/query-issue258.1.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue258/query-issue258.1.ast
@@ -0,0 +1,8 @@
+DataverseUse test
+TypeDecl t1 [
+ closed RecordType {
+ id : int64
+ }
+]
+DatasetDecl ds1(t1) partitioned by [[id]]
+DatasetDecl ds2(t1) partitioned by [[id]]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue258/query-issue258.2.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue258/query-issue258.2.ast
index e69de29..916a59e 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue258/query-issue258.2.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue258/query-issue258.2.ast
@@ -0,0 +1 @@
+DataverseUse test
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue258/query-issue258.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue258/query-issue258.3.ast
index e69de29..610ef261 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue258/query-issue258.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue258/query-issue258.3.ast
@@ -0,0 +1,11 @@
+DataverseUse test
+Query:
+SELECT ELEMENT [
+Variable [ Name=d ]
+]
+FROM [ FunctionCall Metadata.dataset@1[
+ LiteralExpr [STRING] [ds1]
+ ]
+ AS
+ Variable [ Name=d ]
+]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue343-2/query-issue343-2.1.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue343-2/query-issue343-2.1.ast
index e69de29..34609a9 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue343-2/query-issue343-2.1.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue343-2/query-issue343-2.1.ast
@@ -0,0 +1,40 @@
+DataverseUse test
+TypeDecl AddressType [
+ open RecordType {
+ number : int64,
+ street : string,
+ city : string
+ }
+]
+TypeDecl AllType [
+ open RecordType {
+ id : int64,
+ name : string,
+ age : float,
+ salary : double,
+ married : boolean,
+ interests : UnorderedList <string>
+,
+ children : OrderedList [string]
+,
+ address : AddressType,
+ dob : date,
+ time : time,
+ datetime : datetime,
+ duration : duration,
+ location2d : point,
+ location3d : point3d,
+ line : line,
+ polygon : polygon,
+ circle : circle
+ }
+]
+TypeDecl MyListType [
+ open RecordType {
+ id : int64,
+ mylist : OrderedList [string]
+
+ }
+]
+DatasetDecl All(AllType) partitioned by [[id]]
+DatasetDecl MyList(MyListType) partitioned by [[id]]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue343-2/query-issue343-2.2.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue343-2/query-issue343-2.2.ast
index e69de29..916a59e 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue343-2/query-issue343-2.2.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue343-2/query-issue343-2.2.ast
@@ -0,0 +1 @@
+DataverseUse test
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue343-2/query-issue343-2.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue343-2/query-issue343-2.3.ast
index e69de29..1655396 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue343-2/query-issue343-2.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue343-2/query-issue343-2.3.ast
@@ -0,0 +1,11 @@
+DataverseUse test
+Query:
+SELECT ELEMENT [
+Variable [ Name=x ]
+]
+FROM [ FunctionCall Metadata.dataset@1[
+ LiteralExpr [STRING] [All]
+ ]
+ AS
+ Variable [ Name=x ]
+]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue343/query-issue343.1.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue343/query-issue343.1.ast
index e69de29..a0f90c5 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue343/query-issue343.1.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue343/query-issue343.1.ast
@@ -0,0 +1,32 @@
+DataverseUse test
+TypeDecl AddressType [
+ open RecordType {
+ number : int64,
+ street : string,
+ city : string
+ }
+]
+TypeDecl AllType [
+ open RecordType {
+ id : int64,
+ name : string,
+ age : float,
+ salary : double,
+ married : boolean,
+ interests : UnorderedList <string>
+,
+ children : OrderedList [string]
+,
+ address : AddressType,
+ dob : date,
+ time : time,
+ datetime : datetime,
+ duration : duration,
+ location2d : point,
+ location3d : point3d,
+ line : line,
+ polygon : polygon,
+ circle : circle
+ }
+]
+DatasetDecl All(AllType) partitioned by [[id]]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue343/query-issue343.2.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue343/query-issue343.2.ast
index e69de29..916a59e 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue343/query-issue343.2.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue343/query-issue343.2.ast
@@ -0,0 +1 @@
+DataverseUse test
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue343/query-issue343.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue343/query-issue343.3.ast
index e69de29..1655396 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue343/query-issue343.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue343/query-issue343.3.ast
@@ -0,0 +1,11 @@
+DataverseUse test
+Query:
+SELECT ELEMENT [
+Variable [ Name=x ]
+]
+FROM [ FunctionCall Metadata.dataset@1[
+ LiteralExpr [STRING] [All]
+ ]
+ AS
+ Variable [ Name=x ]
+]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue350-2/query-issue350-2.1.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue350-2/query-issue350-2.1.ast
index e69de29..7ad7cb2 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue350-2/query-issue350-2.1.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue350-2/query-issue350-2.1.ast
@@ -0,0 +1,7 @@
+DataverseUse TinySocial
+TypeDecl TweetMessageType [
+ open RecordType {
+ tweetid : string
+ }
+]
+DatasetDecl TweetMessages(TweetMessageType) partitioned by [[tweetid]]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue350-2/query-issue350-2.2.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue350-2/query-issue350-2.2.ast
index e69de29..f36d0ea 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue350-2/query-issue350-2.2.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue350-2/query-issue350-2.2.ast
@@ -0,0 +1 @@
+DataverseUse TinySocial
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue350-2/query-issue350-2.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue350-2/query-issue350-2.3.ast
index e69de29..be95a14 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue350-2/query-issue350-2.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue350-2/query-issue350-2.3.ast
@@ -0,0 +1,38 @@
+DataverseUse TinySocial
+Query:
+SELECT ELEMENT [
+Variable [ Name=tm ]
+]
+FROM [ FunctionCall Metadata.dataset@1[
+ LiteralExpr [STRING] [TweetMessages]
+ ]
+ AS
+ Variable [ Name=tm ]
+]
+Where
+ QuantifiedExpression EVERY [
+ [Variable [ Name=h ]
+ In
+ FieldAccessor [
+ FieldAccessor [
+ Variable [ Name=tm ]
+ Field=user
+ ]
+ Field=hobbies
+ ]
+ ]
+ Satifies [
+ OperatorExpr [
+ Variable [ Name=h ]
+ =
+ LiteralExpr [STRING] [basket weaving]
+ ]
+ ]
+ ]
+Orderby
+ FieldAccessor [
+ Variable [ Name=tm ]
+ Field=tweetid
+ ]
+ ASC
+
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue350/query-issue350.1.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue350/query-issue350.1.ast
index e69de29..7ad7cb2 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue350/query-issue350.1.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue350/query-issue350.1.ast
@@ -0,0 +1,7 @@
+DataverseUse TinySocial
+TypeDecl TweetMessageType [
+ open RecordType {
+ tweetid : string
+ }
+]
+DatasetDecl TweetMessages(TweetMessageType) partitioned by [[tweetid]]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue350/query-issue350.2.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue350/query-issue350.2.ast
index e69de29..f36d0ea 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue350/query-issue350.2.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue350/query-issue350.2.ast
@@ -0,0 +1 @@
+DataverseUse TinySocial
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue350/query-issue350.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue350/query-issue350.3.ast
index e69de29..a0847c0 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue350/query-issue350.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue350/query-issue350.3.ast
@@ -0,0 +1,31 @@
+DataverseUse TinySocial
+Query:
+SELECT ELEMENT [
+Variable [ Name=tm ]
+]
+FROM [ FunctionCall Metadata.dataset@1[
+ LiteralExpr [STRING] [TweetMessages]
+ ]
+ AS
+ Variable [ Name=tm ]
+]
+Where
+ QuantifiedExpression SOME [
+ [Variable [ Name=h ]
+ In
+ FieldAccessor [
+ FieldAccessor [
+ Variable [ Name=tm ]
+ Field=user
+ ]
+ Field=hobbies
+ ]
+ ]
+ Satifies [
+ OperatorExpr [
+ Variable [ Name=h ]
+ =
+ LiteralExpr [STRING] [basket weaving]
+ ]
+ ]
+ ]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue377/query-issue377.1.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue377/query-issue377.1.ast
index e69de29..85bfdfb 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue377/query-issue377.1.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue377/query-issue377.1.ast
@@ -0,0 +1,25 @@
+DataverseUse TinySocial
+TypeDecl TwitterUserType [
+ open RecordType {
+ screen-name : string
+ }
+]
+TypeDecl TweetMessageType [
+ open RecordType {
+ tweetid : string
+ }
+]
+TypeDecl FacebookUserType [
+ open RecordType {
+ id : int64
+ }
+]
+TypeDecl FacebookMessageType [
+ open RecordType {
+ message-id : int64
+ }
+]
+DatasetDecl FacebookUsers(FacebookUserType) partitioned by [[id]]
+DatasetDecl FacebookMessages(FacebookMessageType) partitioned by [[message-id]]
+DatasetDecl TwitterUsers(TwitterUserType) partitioned by [[screen-name]]
+DatasetDecl TweetMessages(TweetMessageType) partitioned by [[tweetid]]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue377/query-issue377.2.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue377/query-issue377.2.ast
index e69de29..f36d0ea 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue377/query-issue377.2.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue377/query-issue377.2.ast
@@ -0,0 +1 @@
+DataverseUse TinySocial
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue377/query-issue377.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue377/query-issue377.3.ast
index e69de29..ece5063 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue377/query-issue377.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue377/query-issue377.3.ast
@@ -0,0 +1,87 @@
+DataverseUse TinySocial
+Set simfunction=edit-distance
+Set simthreshold=3
+Query:
+SELECT ELEMENT [
+RecordConstructor [
+ (
+ LiteralExpr [STRING] [id]
+ :
+ FieldAccessor [
+ Variable [ Name=fbu ]
+ Field=id
+ ]
+ )
+ (
+ LiteralExpr [STRING] [name]
+ :
+ FieldAccessor [
+ Variable [ Name=fbu ]
+ Field=name
+ ]
+ )
+ (
+ LiteralExpr [STRING] [similar-users]
+ :
+ (
+ SELECT ELEMENT [
+ RecordConstructor [
+ (
+ LiteralExpr [STRING] [twitter-screenname]
+ :
+ FieldAccessor [
+ Variable [ Name=tu ]
+ Field=screen-name
+ ]
+ )
+ (
+ LiteralExpr [STRING] [twitter-name]
+ :
+ FieldAccessor [
+ Variable [ Name=tu ]
+ Field=name
+ ]
+ )
+ ]
+ ]
+ FROM [ FunctionCall Metadata.dataset@1[
+ LiteralExpr [STRING] [TweetMessages]
+ ]
+ AS
+ Variable [ Name=t ]
+ ]
+ LetVariable [ Name=tu ]
+ :=
+ FieldAccessor [
+ Variable [ Name=t ]
+ Field=user
+ ]
+ Where
+ OperatorExpr [
+ FieldAccessor [
+ Variable [ Name=tu ]
+ Field=name
+ ]
+ ~=
+ FieldAccessor [
+ Variable [ Name=fbu ]
+ Field=name
+ ]
+ ]
+ )
+ )
+]
+]
+FROM [ FunctionCall Metadata.dataset@1[
+ LiteralExpr [STRING] [FacebookUsers]
+ ]
+ AS
+ Variable [ Name=fbu ]
+]
+Orderby
+ FieldAccessor [
+ Variable [ Name=fbu ]
+ Field=id
+ ]
+ ASC
+
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue410/query-issue410.1.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue410/query-issue410.1.ast
index e69de29..6d9c67f 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue410/query-issue410.1.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue410/query-issue410.1.ast
@@ -0,0 +1,8 @@
+DataverseUse test
+TypeDecl Emp [
+ open RecordType {
+ id : int32,
+ name : string
+ }
+]
+DatasetDecl Employee(Emp) partitioned by [[id]]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue410/query-issue410.2.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue410/query-issue410.2.ast
index e69de29..916a59e 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue410/query-issue410.2.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue410/query-issue410.2.ast
@@ -0,0 +1 @@
+DataverseUse test
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue410/query-issue410.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue410/query-issue410.3.ast
index e69de29..1b4ae26 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue410/query-issue410.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue410/query-issue410.3.ast
@@ -0,0 +1,11 @@
+DataverseUse test
+Query:
+SELECT ELEMENT [
+Variable [ Name=x ]
+]
+FROM [ FunctionCall Metadata.dataset@1[
+ LiteralExpr [STRING] [Employee]
+ ]
+ AS
+ Variable [ Name=x ]
+]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue423-2/query-issue423-2.1.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue423-2/query-issue423-2.1.ast
index e69de29..5e69021 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue423-2/query-issue423-2.1.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue423-2/query-issue423-2.1.ast
@@ -0,0 +1,10 @@
+DataverseUse test
+TypeDecl TestType [
+ open RecordType {
+ id : int32,
+ fname : string,
+ lname : string
+ }
+]
+DatasetDecl t2(TestType) partitioned by [[fname], [lname]]
+DatasetDecl t1(TestType) partitioned by [[fname], [lname]]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue423-2/query-issue423-2.2.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue423-2/query-issue423-2.2.ast
index e69de29..916a59e 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue423-2/query-issue423-2.2.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue423-2/query-issue423-2.2.ast
@@ -0,0 +1 @@
+DataverseUse test
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue423-2/query-issue423-2.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue423-2/query-issue423-2.3.ast
index e69de29..ede9e5f 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue423-2/query-issue423-2.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue423-2/query-issue423-2.3.ast
@@ -0,0 +1,40 @@
+DataverseUse test
+Query:
+SELECT ELEMENT [
+RecordConstructor [
+ (
+ LiteralExpr [STRING] [l]
+ :
+ Variable [ Name=l ]
+ )
+ (
+ LiteralExpr [STRING] [m]
+ :
+ Variable [ Name=m ]
+ )
+]
+]
+FROM [ FunctionCall Metadata.dataset@1[
+ LiteralExpr [STRING] [t1]
+ ]
+ AS
+ Variable [ Name=l ]
+,
+ FunctionCall Metadata.dataset@1[
+ LiteralExpr [STRING] [t2]
+ ]
+ AS
+ Variable [ Name=m ]
+]
+Where
+ OperatorExpr [
+ FieldAccessor [
+ Variable [ Name=l ]
+ Field=age
+ ]
+ >
+ FieldAccessor [
+ Variable [ Name=m ]
+ Field=age
+ ]
+ ]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue423/query-issue423.1.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue423/query-issue423.1.ast
index e69de29..5e69021 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue423/query-issue423.1.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue423/query-issue423.1.ast
@@ -0,0 +1,10 @@
+DataverseUse test
+TypeDecl TestType [
+ open RecordType {
+ id : int32,
+ fname : string,
+ lname : string
+ }
+]
+DatasetDecl t2(TestType) partitioned by [[fname], [lname]]
+DatasetDecl t1(TestType) partitioned by [[fname], [lname]]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue423/query-issue423.2.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue423/query-issue423.2.ast
index e69de29..916a59e 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue423/query-issue423.2.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue423/query-issue423.2.ast
@@ -0,0 +1 @@
+DataverseUse test
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue423/query-issue423.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue423/query-issue423.3.ast
index e69de29..75a5727 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue423/query-issue423.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue423/query-issue423.3.ast
@@ -0,0 +1,40 @@
+DataverseUse test
+Query:
+SELECT ELEMENT [
+RecordConstructor [
+ (
+ LiteralExpr [STRING] [l]
+ :
+ Variable [ Name=l ]
+ )
+ (
+ LiteralExpr [STRING] [m]
+ :
+ Variable [ Name=m ]
+ )
+]
+]
+FROM [ FunctionCall Metadata.dataset@1[
+ LiteralExpr [STRING] [t1]
+ ]
+ AS
+ Variable [ Name=l ]
+,
+ FunctionCall Metadata.dataset@1[
+ LiteralExpr [STRING] [t2]
+ ]
+ AS
+ Variable [ Name=m ]
+]
+Where
+ OperatorExpr [
+ FieldAccessor [
+ Variable [ Name=l ]
+ Field=name
+ ]
+ =
+ FieldAccessor [
+ Variable [ Name=m ]
+ Field=name
+ ]
+ ]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue442/query-issue442.1.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue442/query-issue442.1.ast
index e69de29..f523bca 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue442/query-issue442.1.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue442/query-issue442.1.ast
@@ -0,0 +1,65 @@
+Query:
+SELECT ELEMENT [
+Variable [ Name=a ]
+]
+FROM [ OrderedListConstructor [
+ RecordConstructor [
+ (
+ LiteralExpr [STRING] [f]
+ :
+ LiteralExpr [LONG] [100]
+ )
+ ]
+ RecordConstructor [
+ (
+ LiteralExpr [STRING] [f]
+ :
+ LiteralExpr [LONG] [0]
+ )
+ ]
+ RecordConstructor [
+ (
+ LiteralExpr [STRING] [f]
+ :
+ NEGATIVE LiteralExpr [LONG] [1]
+ )
+ ]
+ RecordConstructor [
+ (
+ LiteralExpr [STRING] [f]
+ :
+ LiteralExpr [NULL]
+ )
+ ]
+ RecordConstructor [
+ (
+ LiteralExpr [STRING] [f]
+ :
+ LiteralExpr [LONG] [999999]
+ )
+ ]
+ RecordConstructor [
+ (
+ LiteralExpr [STRING] [f]
+ :
+ LiteralExpr [LONG] [1]
+ )
+ ]
+ RecordConstructor [
+ (
+ LiteralExpr [STRING] [f]
+ :
+ LiteralExpr [STRING] [zzzzz]
+ )
+ ]
+ ]
+ AS
+ Variable [ Name=a ]
+]
+Orderby
+ FieldAccessor [
+ Variable [ Name=a ]
+ Field=f
+ ]
+ DESC
+
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue453-2/query-issue453-2.1.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue453-2/query-issue453-2.1.ast
index e69de29..e7e0e70 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue453-2/query-issue453-2.1.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue453-2/query-issue453-2.1.ast
@@ -0,0 +1,11 @@
+DataverseUse test
+TypeDecl TypeOpen [
+ open RecordType {
+ id : int64,
+ int_m : int64,
+ int_o : int64?,
+ string_m : string,
+ string_o : string?
+ }
+]
+DatasetDecl DataOpen(TypeOpen) partitioned by [[id]]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue453-2/query-issue453-2.2.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue453-2/query-issue453-2.2.ast
index e69de29..916a59e 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue453-2/query-issue453-2.2.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue453-2/query-issue453-2.2.ast
@@ -0,0 +1 @@
+DataverseUse test
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue453-2/query-issue453-2.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue453-2/query-issue453-2.3.ast
index e69de29..58b7098 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue453-2/query-issue453-2.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue453-2/query-issue453-2.3.ast
@@ -0,0 +1,18 @@
+DataverseUse test
+Query:
+SELECT ELEMENT [
+Variable [ Name=d ]
+]
+FROM [ FunctionCall Metadata.dataset@1[
+ LiteralExpr [STRING] [DataOpen]
+ ]
+ AS
+ Variable [ Name=d ]
+]
+Orderby
+ FieldAccessor [
+ Variable [ Name=d ]
+ Field=id
+ ]
+ ASC
+
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue453/query-issue453.1.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue453/query-issue453.1.ast
index e69de29..e7e0e70 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue453/query-issue453.1.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue453/query-issue453.1.ast
@@ -0,0 +1,11 @@
+DataverseUse test
+TypeDecl TypeOpen [
+ open RecordType {
+ id : int64,
+ int_m : int64,
+ int_o : int64?,
+ string_m : string,
+ string_o : string?
+ }
+]
+DatasetDecl DataOpen(TypeOpen) partitioned by [[id]]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue453/query-issue453.2.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue453/query-issue453.2.ast
index e69de29..916a59e 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue453/query-issue453.2.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue453/query-issue453.2.ast
@@ -0,0 +1 @@
+DataverseUse test
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue453/query-issue453.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue453/query-issue453.3.ast
index e69de29..58b7098 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue453/query-issue453.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue453/query-issue453.3.ast
@@ -0,0 +1,18 @@
+DataverseUse test
+Query:
+SELECT ELEMENT [
+Variable [ Name=d ]
+]
+FROM [ FunctionCall Metadata.dataset@1[
+ LiteralExpr [STRING] [DataOpen]
+ ]
+ AS
+ Variable [ Name=d ]
+]
+Orderby
+ FieldAccessor [
+ Variable [ Name=d ]
+ Field=id
+ ]
+ ASC
+
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue487/query-issue487.1.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue487/query-issue487.1.ast
index e69de29..6d783f6 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue487/query-issue487.1.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue487/query-issue487.1.ast
@@ -0,0 +1,8 @@
+DataverseUse test
+TypeDecl EmpType [
+ open RecordType {
+ id : int32,
+ name : string
+ }
+]
+DatasetDecl Employee(EmpType) partitioned by [[id]]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue487/query-issue487.2.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue487/query-issue487.2.ast
index e69de29..916a59e 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue487/query-issue487.2.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue487/query-issue487.2.ast
@@ -0,0 +1 @@
+DataverseUse test
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue487/query-issue487.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue487/query-issue487.3.ast
index e69de29..af7f457 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue487/query-issue487.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue487/query-issue487.3.ast
@@ -0,0 +1,11 @@
+DataverseUse test
+Query:
+SELECT ELEMENT [
+Variable [ Name=l ]
+]
+FROM [ FunctionCall Metadata.dataset@1[
+ LiteralExpr [STRING] [Employee]
+ ]
+ AS
+ Variable [ Name=l ]
+]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue55-1/query-issue55-1.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue55-1/query-issue55-1.3.ast
index e69de29..289595f 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue55-1/query-issue55-1.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue55-1/query-issue55-1.3.ast
@@ -0,0 +1,56 @@
+Query:
+LetVariable [ Name=l ]
+ :=
+ OrderedListConstructor [
+ LiteralExpr [FLOAT] [1.1]
+ LiteralExpr [FLOAT] [1.0]
+ LiteralExpr [FLOAT] [1.2]
+ LiteralExpr [DOUBLE] [0.9]
+ LiteralExpr [DOUBLE] [1.3]
+ LiteralExpr [LONG] [1]
+ LiteralExpr [LONG] [2]
+ ]
+SELECT ELEMENT [
+OrderedListConstructor [
+ Variable [ Name=i ]
+ Variable [ Name=j ]
+ LiteralExpr [STRING] [=]
+ OperatorExpr [
+ Variable [ Name=i ]
+ =
+ Variable [ Name=j ]
+ ]
+ LiteralExpr [STRING] [<]
+ OperatorExpr [
+ Variable [ Name=i ]
+ <
+ Variable [ Name=j ]
+ ]
+ LiteralExpr [STRING] [<=]
+ OperatorExpr [
+ Variable [ Name=i ]
+ <=
+ Variable [ Name=j ]
+ ]
+ LiteralExpr [STRING] [>]
+ OperatorExpr [
+ Variable [ Name=i ]
+ >
+ Variable [ Name=j ]
+ ]
+ LiteralExpr [STRING] [>=]
+ OperatorExpr [
+ Variable [ Name=i ]
+ >=
+ Variable [ Name=j ]
+ ]
+]
+]
+FROM [ Variable [ Name=l ]
+ AS
+ Variable [ Name=i ]
+,
+ Variable [ Name=l ]
+ AS
+ Variable [ Name=j ]
+]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue55/query-issue55.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue55/query-issue55.3.ast
index e69de29..0fe628b 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue55/query-issue55.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-closed/query-issue55/query-issue55.3.ast
@@ -0,0 +1,26 @@
+Query:
+SELECT ELEMENT [
+Variable [ Name=x ]
+]
+FROM [ OrderedListConstructor [
+ OrderedListConstructor [
+ LiteralExpr [LONG] [1]
+ LiteralExpr [LONG] [3]
+ ]
+ OrderedListConstructor [
+ LiteralExpr [LONG] [4]
+ LiteralExpr [LONG] [5]
+ LiteralExpr [LONG] [2]
+ ]
+ OrderedListConstructor [
+ NEGATIVE LiteralExpr [LONG] [1]
+ NEGATIVE LiteralExpr [LONG] [3]
+ LiteralExpr [LONG] [0]
+ ]
+ OrderedListConstructor [
+ LiteralExpr [STRING] [a]
+ ]
+ ]
+ AS
+ Variable [ Name=x ]
+]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-index-enforced/external-indexing/adm-format/adm-format.1.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-index-enforced/external-indexing/adm-format/adm-format.1.ast
index e69de29..a2f8e0a 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-index-enforced/external-indexing/adm-format/adm-format.1.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-index-enforced/external-indexing/adm-format/adm-format.1.ast
@@ -0,0 +1,14 @@
+DataverseUse test
+TypeDecl MyRecord [
+ open RecordType {
+ point : point,
+ kwds : string,
+ line1 : line,
+ line2 : line,
+ poly1 : polygon,
+ poly2 : polygon,
+ rec : rectangle,
+ circle : circle
+ }
+]
+DatasetDecl MyData(MyRecord)is an external dataset
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-index-enforced/external-indexing/adm-format/adm-format.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-index-enforced/external-indexing/adm-format/adm-format.3.ast
index e69de29..a4fec17 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-index-enforced/external-indexing/adm-format/adm-format.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-index-enforced/external-indexing/adm-format/adm-format.3.ast
@@ -0,0 +1,20 @@
+DataverseUse test
+Query:
+SELECT ELEMENT [
+Variable [ Name=d ]
+]
+FROM [ FunctionCall Metadata.dataset@1[
+ LiteralExpr [STRING] [MyData]
+ ]
+ AS
+ Variable [ Name=d ]
+]
+Where
+ OperatorExpr [
+ FieldAccessor [
+ Variable [ Name=d ]
+ Field=id
+ ]
+ =
+ LiteralExpr [LONG] [10]
+ ]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-index-enforced/index-leftouterjoin/probe-pidx-with-join-invidx-sidx2/probe-pidx-with-join-invidx-sidx2.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-index-enforced/index-leftouterjoin/probe-pidx-with-join-invidx-sidx2/probe-pidx-with-join-invidx-sidx2.3.ast
index ddc1e3d..9579313 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-index-enforced/index-leftouterjoin/probe-pidx-with-join-invidx-sidx2/probe-pidx-with-join-invidx-sidx2.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-index-enforced/index-leftouterjoin/probe-pidx-with-join-invidx-sidx2/probe-pidx-with-join-invidx-sidx2.3.ast
@@ -71,7 +71,7 @@
OperatorExpr [
IndexAccessor [
Variable [ Name=sim ]
- Index: Variable [ Name=sim ]
+ Index: LiteralExpr [LONG] [0]
]
and
OperatorExpr [
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-index-enforced/index-selection/inverted-index-ngram-edit-distance-contains/inverted-index-ngram-edit-distance-contains.4.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-index-enforced/index-selection/inverted-index-ngram-edit-distance-contains/inverted-index-ngram-edit-distance-contains.4.ast
index 8ce7812..f2263bc 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-index-enforced/index-selection/inverted-index-ngram-edit-distance-contains/inverted-index-ngram-edit-distance-contains.4.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-index-enforced/index-selection/inverted-index-ngram-edit-distance-contains/inverted-index-ngram-edit-distance-contains.4.ast
@@ -36,14 +36,7 @@
LiteralExpr [STRING] [Multmedia]
LiteralExpr [LONG] [1]
]
- Index: FunctionCall test.edit-distance-contains@3[
- FieldAccessor [
- Variable [ Name=paper ]
- Field=title
- ]
- LiteralExpr [STRING] [Multmedia]
- LiteralExpr [LONG] [1]
- ]
+ Index: LiteralExpr [LONG] [0]
]
Orderby
FieldAccessor [
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-index-enforced/index-selection/inverted-index-ngram-edit-distance-panic/inverted-index-ngram-edit-distance-panic.4.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-index-enforced/index-selection/inverted-index-ngram-edit-distance-panic/inverted-index-ngram-edit-distance-panic.4.ast
index b819eaf..439ed75 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-index-enforced/index-selection/inverted-index-ngram-edit-distance-panic/inverted-index-ngram-edit-distance-panic.4.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-index-enforced/index-selection/inverted-index-ngram-edit-distance-panic/inverted-index-ngram-edit-distance-panic.4.ast
@@ -63,5 +63,5 @@
Where
IndexAccessor [
Variable [ Name=ed ]
- Index: Variable [ Name=ed ]
+ Index: LiteralExpr [LONG] [0]
]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-index-enforced/index-selection/inverted-index-ngram-edit-distance-word-tokens/inverted-index-ngram-edit-distance-word-tokens.4.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-index-enforced/index-selection/inverted-index-ngram-edit-distance-word-tokens/inverted-index-ngram-edit-distance-word-tokens.4.ast
index 8a83757..81a4e5e 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-index-enforced/index-selection/inverted-index-ngram-edit-distance-word-tokens/inverted-index-ngram-edit-distance-word-tokens.4.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-index-enforced/index-selection/inverted-index-ngram-edit-distance-word-tokens/inverted-index-ngram-edit-distance-word-tokens.4.ast
@@ -42,11 +42,7 @@
LiteralExpr [STRING] [Multmedia]
LiteralExpr [LONG] [1]
]
- Index: FunctionCall test.edit-distance-check@3[
- Variable [ Name=word ]
- LiteralExpr [STRING] [Multmedia]
- LiteralExpr [LONG] [1]
- ]
+ Index: LiteralExpr [LONG] [0]
]
Orderby
FieldAccessor [
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-index-enforced/index-selection/inverted-index-ngram-edit-distance/inverted-index-ngram-edit-distance.4.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-index-enforced/index-selection/inverted-index-ngram-edit-distance/inverted-index-ngram-edit-distance.4.ast
index 351a250..8d0c1ac 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-index-enforced/index-selection/inverted-index-ngram-edit-distance/inverted-index-ngram-edit-distance.4.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-index-enforced/index-selection/inverted-index-ngram-edit-distance/inverted-index-ngram-edit-distance.4.ast
@@ -63,5 +63,5 @@
Where
IndexAccessor [
Variable [ Name=ed ]
- Index: Variable [ Name=ed ]
+ Index: LiteralExpr [LONG] [0]
]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-index-enforced/index-selection/inverted-index-ngram-jaccard/inverted-index-ngram-jaccard.4.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-index-enforced/index-selection/inverted-index-ngram-jaccard/inverted-index-ngram-jaccard.4.ast
index a49a9d2..74af353 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-index-enforced/index-selection/inverted-index-ngram-jaccard/inverted-index-ngram-jaccard.4.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-index-enforced/index-selection/inverted-index-ngram-jaccard/inverted-index-ngram-jaccard.4.ast
@@ -72,5 +72,5 @@
Where
IndexAccessor [
Variable [ Name=jacc ]
- Index: Variable [ Name=jacc ]
+ Index: LiteralExpr [LONG] [0]
]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-index-enforced/index-selection/inverted-index-word-jaccard/inverted-index-word-jaccard.4.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-index-enforced/index-selection/inverted-index-word-jaccard/inverted-index-word-jaccard.4.ast
index 300a290..9674565 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-index-enforced/index-selection/inverted-index-word-jaccard/inverted-index-word-jaccard.4.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/open-index-enforced/index-selection/inverted-index-word-jaccard/inverted-index-word-jaccard.4.ast
@@ -67,5 +67,5 @@
Where
IndexAccessor [
Variable [ Name=jacc ]
- Index: Variable [ Name=jacc ]
+ Index: LiteralExpr [LONG] [0]
]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/scan/issue238_query_1/issue238_query_1.1.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/scan/issue238_query_1/issue238_query_1.1.ast
index e69de29..7d94e66 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/scan/issue238_query_1/issue238_query_1.1.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/scan/issue238_query_1/issue238_query_1.1.ast
@@ -0,0 +1,11 @@
+DataverseUse test
+TypeDecl DBLPType [
+ closed RecordType {
+ id : int64,
+ dblpid : string,
+ title : string,
+ authors : string,
+ misc : string
+ }
+]
+DatasetDecl DBLPadm(DBLPType) partitioned by [[id]]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/scan/issue238_query_1/issue238_query_1.2.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/scan/issue238_query_1/issue238_query_1.2.ast
index e69de29..916a59e 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/scan/issue238_query_1/issue238_query_1.2.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/scan/issue238_query_1/issue238_query_1.2.ast
@@ -0,0 +1 @@
+DataverseUse test
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/scan/issue238_query_1/issue238_query_1.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/scan/issue238_query_1/issue238_query_1.3.ast
index e69de29..7f1360c 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/scan/issue238_query_1/issue238_query_1.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/scan/issue238_query_1/issue238_query_1.3.ast
@@ -0,0 +1,18 @@
+DataverseUse test
+Query:
+SELECT ELEMENT [
+Variable [ Name=paper ]
+]
+FROM [ FunctionCall Metadata.dataset@1[
+ LiteralExpr [STRING] [DBLPadm]
+ ]
+ AS
+ Variable [ Name=paper ]
+]
+Orderby
+ FieldAccessor [
+ Variable [ Name=paper ]
+ Field=id
+ ]
+ ASC
+
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/scan/issue238_query_2/issue238_query_2.1.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/scan/issue238_query_2/issue238_query_2.1.ast
index e69de29..7d94e66 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/scan/issue238_query_2/issue238_query_2.1.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/scan/issue238_query_2/issue238_query_2.1.ast
@@ -0,0 +1,11 @@
+DataverseUse test
+TypeDecl DBLPType [
+ closed RecordType {
+ id : int64,
+ dblpid : string,
+ title : string,
+ authors : string,
+ misc : string
+ }
+]
+DatasetDecl DBLPadm(DBLPType) partitioned by [[id]]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/scan/issue238_query_2/issue238_query_2.2.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/scan/issue238_query_2/issue238_query_2.2.ast
index e69de29..916a59e 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/scan/issue238_query_2/issue238_query_2.2.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/scan/issue238_query_2/issue238_query_2.2.ast
@@ -0,0 +1 @@
+DataverseUse test
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/scan/issue238_query_2/issue238_query_2.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/scan/issue238_query_2/issue238_query_2.3.ast
index e69de29..7f1360c 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/scan/issue238_query_2/issue238_query_2.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/scan/issue238_query_2/issue238_query_2.3.ast
@@ -0,0 +1,18 @@
+DataverseUse test
+Query:
+SELECT ELEMENT [
+Variable [ Name=paper ]
+]
+FROM [ FunctionCall Metadata.dataset@1[
+ LiteralExpr [STRING] [DBLPadm]
+ ]
+ AS
+ Variable [ Name=paper ]
+]
+Orderby
+ FieldAccessor [
+ Variable [ Name=paper ]
+ Field=id
+ ]
+ ASC
+
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/similarity/similarity-jaccard-check_query/similarity-jaccard-check_query.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/similarity/similarity-jaccard-check_query/similarity-jaccard-check_query.3.ast
index 846841a..619e42f 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/similarity/similarity-jaccard-check_query/similarity-jaccard-check_query.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/similarity/similarity-jaccard-check_query/similarity-jaccard-check_query.3.ast
@@ -32,5 +32,5 @@
Where
IndexAccessor [
Variable [ Name=jacc ]
- Index: Variable [ Name=jacc ]
+ Index: LiteralExpr [LONG] [0]
]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/similarity/similarity-jaccard-sorted-check_query/similarity-jaccard-sorted-check_query.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/similarity/similarity-jaccard-sorted-check_query/similarity-jaccard-sorted-check_query.3.ast
index d6f2a1e..faf857a 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/similarity/similarity-jaccard-sorted-check_query/similarity-jaccard-sorted-check_query.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/similarity/similarity-jaccard-sorted-check_query/similarity-jaccard-sorted-check_query.3.ast
@@ -33,5 +33,5 @@
Where
IndexAccessor [
Variable [ Name=jacc ]
- Index: Variable [ Name=jacc ]
+ Index: LiteralExpr [LONG] [0]
]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/spatial/cell-aggregation/cell-aggregation.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/spatial/cell-aggregation/cell-aggregation.3.ast
index 4fae5b1..94ca33d 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/spatial/cell-aggregation/cell-aggregation.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/spatial/cell-aggregation/cell-aggregation.3.ast
@@ -40,7 +40,6 @@
]
With
Variable [ Name=o ]
- Variable [ Name=grid ]
LetVariable [ Name=num ]
:=
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/string/matches11/matches11.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/string/matches11/matches11.3.ast
index 3ccd271..e7004ec 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/string/matches11/matches11.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/string/matches11/matches11.3.ast
@@ -3,6 +3,7 @@
Variable [ Name=a ]
]
FROM [ OrderedListConstructor [
+ LiteralExpr [NULL]
FunctionCall null.matches@2[
LiteralExpr [STRING] [hello]
LiteralExpr [NULL]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/temporal/interval_functions/interval_functions.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/temporal/interval_functions/interval_functions.3.ast
index 338c5fe..e85501d 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/temporal/interval_functions/interval_functions.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/temporal/interval_functions/interval_functions.3.ast
@@ -1,398 +1,409 @@
DataverseUse test
Query:
+LetVariable [ Name=itv1 ]
+ :=
+ FunctionCall test.interval-from-date@2[
+ LiteralExpr [STRING] [2010-10-30]
+ LiteralExpr [STRING] [2010-12-21]
+ ]
+LetVariable [ Name=itv2 ]
+ :=
+ FunctionCall test.interval-from-date@2[
+ LiteralExpr [STRING] [2011-10-30]
+ LiteralExpr [STRING] [2012-10-21]
+ ]
+LetVariable [ Name=itv3 ]
+ :=
+ FunctionCall test.interval-from-date@2[
+ LiteralExpr [STRING] [2010-12-21]
+ LiteralExpr [STRING] [2013-01-01]
+ ]
+LetVariable [ Name=blnBefore1 ]
+ :=
+ FunctionCall test.interval-before@2[
+ Variable [ Name=itv1 ]
+ Variable [ Name=itv2 ]
+ ]
+LetVariable [ Name=blnAfter1 ]
+ :=
+ FunctionCall test.interval-after@2[
+ Variable [ Name=itv2 ]
+ Variable [ Name=itv1 ]
+ ]
+LetVariable [ Name=blnBefore2 ]
+ :=
+ FunctionCall test.interval-before@2[
+ Variable [ Name=itv1 ]
+ Variable [ Name=itv3 ]
+ ]
+LetVariable [ Name=blnAfter2 ]
+ :=
+ FunctionCall test.interval-after@2[
+ Variable [ Name=itv3 ]
+ Variable [ Name=itv1 ]
+ ]
+LetVariable [ Name=itv4 ]
+ :=
+ FunctionCall test.interval-from-datetime@2[
+ LiteralExpr [STRING] [2012-06-26T01:01:01.111]
+ LiteralExpr [STRING] [2012-07-27T02:02:02.222]
+ ]
+LetVariable [ Name=itv5 ]
+ :=
+ FunctionCall test.interval-from-datetime@2[
+ LiteralExpr [STRING] [20120727T020202222]
+ LiteralExpr [STRING] [2013-08-08T03:03:03.333]
+ ]
+LetVariable [ Name=itv6 ]
+ :=
+ FunctionCall test.interval-from-datetime@2[
+ LiteralExpr [STRING] [19000707T020202222]
+ LiteralExpr [STRING] [2013-08-07T03:03:03.333]
+ ]
+LetVariable [ Name=blnMeet1 ]
+ :=
+ FunctionCall test.interval-meets@2[
+ Variable [ Name=itv4 ]
+ Variable [ Name=itv5 ]
+ ]
+LetVariable [ Name=blnMetBy1 ]
+ :=
+ FunctionCall test.interval-met-by@2[
+ Variable [ Name=itv5 ]
+ Variable [ Name=itv4 ]
+ ]
+LetVariable [ Name=blnMeet2 ]
+ :=
+ FunctionCall test.interval-meets@2[
+ Variable [ Name=itv6 ]
+ Variable [ Name=itv4 ]
+ ]
+LetVariable [ Name=blnMetBy2 ]
+ :=
+ FunctionCall test.interval-met-by@2[
+ Variable [ Name=itv6 ]
+ Variable [ Name=itv4 ]
+ ]
+LetVariable [ Name=itv7 ]
+ :=
+ FunctionCall test.interval-from-time@2[
+ LiteralExpr [STRING] [12:32:38]
+ LiteralExpr [STRING] [20:29:20]
+ ]
+LetVariable [ Name=itv8 ]
+ :=
+ FunctionCall test.interval-from-time@2[
+ LiteralExpr [STRING] [17:48:19]
+ LiteralExpr [STRING] [22:19:49]
+ ]
+LetVariable [ Name=itv9 ]
+ :=
+ FunctionCall test.interval-from-time@2[
+ LiteralExpr [STRING] [01:32:49]
+ LiteralExpr [STRING] [17:48:19]
+ ]
+LetVariable [ Name=blnOverlaps1 ]
+ :=
+ FunctionCall test.interval-overlaps@2[
+ Variable [ Name=itv7 ]
+ Variable [ Name=itv8 ]
+ ]
+LetVariable [ Name=blnOverlapped1 ]
+ :=
+ FunctionCall test.interval-overlapped-by@2[
+ Variable [ Name=itv8 ]
+ Variable [ Name=itv7 ]
+ ]
+LetVariable [ Name=blnOverlaps2 ]
+ :=
+ FunctionCall test.interval-overlaps@2[
+ Variable [ Name=itv9 ]
+ Variable [ Name=itv8 ]
+ ]
+LetVariable [ Name=blnOverlapped2 ]
+ :=
+ FunctionCall test.interval-overlapped-by@2[
+ Variable [ Name=itv8 ]
+ Variable [ Name=itv9 ]
+ ]
+LetVariable [ Name=blnOverlap1 ]
+ :=
+ FunctionCall test.interval-overlapping@2[
+ Variable [ Name=itv9 ]
+ Variable [ Name=itv7 ]
+ ]
+LetVariable [ Name=blnOverlap2 ]
+ :=
+ FunctionCall test.interval-overlapping@2[
+ Variable [ Name=itv9 ]
+ Variable [ Name=itv8 ]
+ ]
+LetVariable [ Name=itv10 ]
+ :=
+ FunctionCall test.interval-from-date@2[
+ LiteralExpr [STRING] [2010-10-30]
+ LiteralExpr [STRING] [2010-11-30]
+ ]
+LetVariable [ Name=blnStarts1 ]
+ :=
+ FunctionCall test.interval-starts@2[
+ Variable [ Name=itv10 ]
+ Variable [ Name=itv1 ]
+ ]
+LetVariable [ Name=blnStarts2 ]
+ :=
+ FunctionCall test.interval-starts@2[
+ Variable [ Name=itv10 ]
+ Variable [ Name=itv2 ]
+ ]
+LetVariable [ Name=blnStartedBy1 ]
+ :=
+ FunctionCall test.interval-started-by@2[
+ Variable [ Name=itv1 ]
+ Variable [ Name=itv10 ]
+ ]
+LetVariable [ Name=blnStartedBy2 ]
+ :=
+ FunctionCall test.interval-started-by@2[
+ Variable [ Name=itv10 ]
+ Variable [ Name=itv2 ]
+ ]
+LetVariable [ Name=itv10 ]
+ :=
+ FunctionCall test.interval-from-datetime@2[
+ LiteralExpr [STRING] [19000707T020202222]
+ LiteralExpr [STRING] [2013-08-07T03:03:03.333]
+ ]
+LetVariable [ Name=itv11 ]
+ :=
+ FunctionCall test.interval-from-datetime@2[
+ LiteralExpr [STRING] [19990707T020202222]
+ LiteralExpr [STRING] [2013-08-07T03:03:03.333]
+ ]
+LetVariable [ Name=itv12 ]
+ :=
+ FunctionCall test.interval-from-datetime@2[
+ LiteralExpr [STRING] [-19990707T020202222]
+ LiteralExpr [STRING] [2013-08-07T03:03:03.333]
+ ]
+LetVariable [ Name=blnCovers1 ]
+ :=
+ FunctionCall test.interval-covers@2[
+ Variable [ Name=itv10 ]
+ Variable [ Name=itv11 ]
+ ]
+LetVariable [ Name=blnCovers2 ]
+ :=
+ FunctionCall test.interval-covers@2[
+ Variable [ Name=itv10 ]
+ Variable [ Name=itv12 ]
+ ]
+LetVariable [ Name=blnCoveredBy1 ]
+ :=
+ FunctionCall test.interval-covered-by@2[
+ Variable [ Name=itv11 ]
+ Variable [ Name=itv10 ]
+ ]
+LetVariable [ Name=blnCoveredBy2 ]
+ :=
+ FunctionCall test.interval-covered-by@2[
+ Variable [ Name=itv12 ]
+ Variable [ Name=itv10 ]
+ ]
+LetVariable [ Name=itv11 ]
+ :=
+ FunctionCall test.interval-from-time@2[
+ LiteralExpr [STRING] [19:00:00.009]
+ LiteralExpr [STRING] [20:29:20.000]
+ ]
+LetVariable [ Name=blnEnds1 ]
+ :=
+ FunctionCall test.interval-ends@2[
+ Variable [ Name=itv11 ]
+ Variable [ Name=itv7 ]
+ ]
+LetVariable [ Name=blnEnds2 ]
+ :=
+ FunctionCall test.interval-ends@2[
+ Variable [ Name=itv11 ]
+ Variable [ Name=itv8 ]
+ ]
+LetVariable [ Name=blnEndedBy1 ]
+ :=
+ FunctionCall test.interval-ended-by@2[
+ Variable [ Name=itv7 ]
+ Variable [ Name=itv11 ]
+ ]
+LetVariable [ Name=blnEndedBy2 ]
+ :=
+ FunctionCall test.interval-ended-by@2[
+ Variable [ Name=itv8 ]
+ Variable [ Name=itv11 ]
+ ]
+LetVariable [ Name=null1 ]
+ :=
+ FunctionCall test.interval-before@2[
+ LiteralExpr [NULL]
+ Variable [ Name=itv2 ]
+ ]
+LetVariable [ Name=null2 ]
+ :=
+ FunctionCall test.interval-covered-by@2[
+ Variable [ Name=itv11 ]
+ LiteralExpr [NULL]
+ ]
+LetVariable [ Name=null3 ]
+ :=
+ FunctionCall test.interval-overlapping@2[
+ LiteralExpr [NULL]
+ LiteralExpr [NULL]
+ ]
+SELECT ELEMENT [
RecordConstructor [
(
LiteralExpr [STRING] [before1]
:
- FunctionCall test.interval-before@2[
- FunctionCall test.interval-from-date@2[
- LiteralExpr [STRING] [2010-10-30]
- LiteralExpr [STRING] [2010-12-21]
- ]
- FunctionCall test.interval-from-date@2[
- LiteralExpr [STRING] [2011-10-30]
- LiteralExpr [STRING] [2012-10-21]
- ]
- ]
+ Variable [ Name=blnBefore1 ]
)
(
LiteralExpr [STRING] [before2]
:
- FunctionCall test.interval-before@2[
- FunctionCall test.interval-from-date@2[
- LiteralExpr [STRING] [2010-10-30]
- LiteralExpr [STRING] [2010-12-21]
- ]
- FunctionCall test.interval-from-date@2[
- LiteralExpr [STRING] [2010-12-21]
- LiteralExpr [STRING] [2013-01-01]
- ]
- ]
+ Variable [ Name=blnBefore2 ]
)
(
LiteralExpr [STRING] [after1]
:
- FunctionCall test.interval-after@2[
- FunctionCall test.interval-from-date@2[
- LiteralExpr [STRING] [2011-10-30]
- LiteralExpr [STRING] [2012-10-21]
- ]
- FunctionCall test.interval-from-date@2[
- LiteralExpr [STRING] [2010-10-30]
- LiteralExpr [STRING] [2010-12-21]
- ]
- ]
+ Variable [ Name=blnAfter1 ]
)
(
LiteralExpr [STRING] [after2]
:
- FunctionCall test.interval-after@2[
- FunctionCall test.interval-from-date@2[
- LiteralExpr [STRING] [2010-12-21]
- LiteralExpr [STRING] [2013-01-01]
- ]
- FunctionCall test.interval-from-date@2[
- LiteralExpr [STRING] [2010-10-30]
- LiteralExpr [STRING] [2010-12-21]
- ]
- ]
+ Variable [ Name=blnAfter2 ]
)
(
LiteralExpr [STRING] [meet1]
:
- FunctionCall test.interval-meets@2[
- FunctionCall test.interval-from-datetime@2[
- LiteralExpr [STRING] [2012-06-26T01:01:01.111]
- LiteralExpr [STRING] [2012-07-27T02:02:02.222]
- ]
- FunctionCall test.interval-from-datetime@2[
- LiteralExpr [STRING] [20120727T020202222]
- LiteralExpr [STRING] [2013-08-08T03:03:03.333]
- ]
- ]
+ Variable [ Name=blnMeet1 ]
)
(
LiteralExpr [STRING] [meet2]
:
- FunctionCall test.interval-meets@2[
- FunctionCall test.interval-from-datetime@2[
- LiteralExpr [STRING] [19000707T020202222]
- LiteralExpr [STRING] [2013-08-07T03:03:03.333]
- ]
- FunctionCall test.interval-from-datetime@2[
- LiteralExpr [STRING] [2012-06-26T01:01:01.111]
- LiteralExpr [STRING] [2012-07-27T02:02:02.222]
- ]
- ]
+ Variable [ Name=blnMeet2 ]
)
(
LiteralExpr [STRING] [metby1]
:
- FunctionCall test.interval-met-by@2[
- FunctionCall test.interval-from-datetime@2[
- LiteralExpr [STRING] [20120727T020202222]
- LiteralExpr [STRING] [2013-08-08T03:03:03.333]
- ]
- FunctionCall test.interval-from-datetime@2[
- LiteralExpr [STRING] [2012-06-26T01:01:01.111]
- LiteralExpr [STRING] [2012-07-27T02:02:02.222]
- ]
- ]
+ Variable [ Name=blnMetBy1 ]
)
(
LiteralExpr [STRING] [metby2]
:
- FunctionCall test.interval-met-by@2[
- FunctionCall test.interval-from-datetime@2[
- LiteralExpr [STRING] [19000707T020202222]
- LiteralExpr [STRING] [2013-08-07T03:03:03.333]
- ]
- FunctionCall test.interval-from-datetime@2[
- LiteralExpr [STRING] [2012-06-26T01:01:01.111]
- LiteralExpr [STRING] [2012-07-27T02:02:02.222]
- ]
- ]
+ Variable [ Name=blnMetBy2 ]
)
(
LiteralExpr [STRING] [overlaps1]
:
- FunctionCall test.interval-overlaps@2[
- FunctionCall test.interval-from-time@2[
- LiteralExpr [STRING] [12:32:38]
- LiteralExpr [STRING] [20:29:20]
- ]
- FunctionCall test.interval-from-time@2[
- LiteralExpr [STRING] [17:48:19]
- LiteralExpr [STRING] [22:19:49]
- ]
- ]
+ Variable [ Name=blnOverlaps1 ]
)
(
LiteralExpr [STRING] [overlaps2]
:
- FunctionCall test.interval-overlaps@2[
- FunctionCall test.interval-from-time@2[
- LiteralExpr [STRING] [01:32:49]
- LiteralExpr [STRING] [17:48:19]
- ]
- FunctionCall test.interval-from-time@2[
- LiteralExpr [STRING] [17:48:19]
- LiteralExpr [STRING] [22:19:49]
- ]
- ]
+ Variable [ Name=blnOverlaps2 ]
)
(
LiteralExpr [STRING] [overlapped1]
:
- FunctionCall test.interval-overlapped-by@2[
- FunctionCall test.interval-from-time@2[
- LiteralExpr [STRING] [17:48:19]
- LiteralExpr [STRING] [22:19:49]
- ]
- FunctionCall test.interval-from-time@2[
- LiteralExpr [STRING] [12:32:38]
- LiteralExpr [STRING] [20:29:20]
- ]
- ]
+ Variable [ Name=blnOverlapped1 ]
)
(
LiteralExpr [STRING] [overlapped2]
:
- FunctionCall test.interval-overlapped-by@2[
- FunctionCall test.interval-from-time@2[
- LiteralExpr [STRING] [17:48:19]
- LiteralExpr [STRING] [22:19:49]
- ]
- FunctionCall test.interval-from-time@2[
- LiteralExpr [STRING] [01:32:49]
- LiteralExpr [STRING] [17:48:19]
- ]
- ]
+ Variable [ Name=blnOverlapped2 ]
)
(
LiteralExpr [STRING] [overlap1]
:
- FunctionCall test.interval-overlapping@2[
- FunctionCall test.interval-from-time@2[
- LiteralExpr [STRING] [01:32:49]
- LiteralExpr [STRING] [17:48:19]
- ]
- FunctionCall test.interval-from-time@2[
- LiteralExpr [STRING] [12:32:38]
- LiteralExpr [STRING] [20:29:20]
- ]
- ]
+ Variable [ Name=blnOverlap1 ]
)
(
LiteralExpr [STRING] [overlap2]
:
- FunctionCall test.interval-overlapping@2[
- FunctionCall test.interval-from-time@2[
- LiteralExpr [STRING] [01:32:49]
- LiteralExpr [STRING] [17:48:19]
- ]
- FunctionCall test.interval-from-time@2[
- LiteralExpr [STRING] [17:48:19]
- LiteralExpr [STRING] [22:19:49]
- ]
- ]
+ Variable [ Name=blnOverlap2 ]
)
(
LiteralExpr [STRING] [starts1]
:
- FunctionCall test.interval-starts@2[
- FunctionCall test.interval-from-date@2[
- LiteralExpr [STRING] [2010-10-30]
- LiteralExpr [STRING] [2010-11-30]
- ]
- FunctionCall test.interval-from-date@2[
- LiteralExpr [STRING] [2010-10-30]
- LiteralExpr [STRING] [2010-12-21]
- ]
- ]
+ Variable [ Name=blnStarts1 ]
)
(
LiteralExpr [STRING] [starts2]
:
- FunctionCall test.interval-starts@2[
- FunctionCall test.interval-from-date@2[
- LiteralExpr [STRING] [2010-10-30]
- LiteralExpr [STRING] [2010-11-30]
- ]
- FunctionCall test.interval-from-date@2[
- LiteralExpr [STRING] [2011-10-30]
- LiteralExpr [STRING] [2012-10-21]
- ]
- ]
+ Variable [ Name=blnStarts2 ]
)
(
LiteralExpr [STRING] [startedby1]
:
- FunctionCall test.interval-started-by@2[
- FunctionCall test.interval-from-date@2[
- LiteralExpr [STRING] [2010-10-30]
- LiteralExpr [STRING] [2010-12-21]
- ]
- FunctionCall test.interval-from-date@2[
- LiteralExpr [STRING] [2010-10-30]
- LiteralExpr [STRING] [2010-11-30]
- ]
- ]
+ Variable [ Name=blnStartedBy1 ]
)
(
LiteralExpr [STRING] [startedby2]
:
- FunctionCall test.interval-started-by@2[
- FunctionCall test.interval-from-date@2[
- LiteralExpr [STRING] [2010-10-30]
- LiteralExpr [STRING] [2010-11-30]
- ]
- FunctionCall test.interval-from-date@2[
- LiteralExpr [STRING] [2011-10-30]
- LiteralExpr [STRING] [2012-10-21]
- ]
- ]
+ Variable [ Name=blnStartedBy2 ]
)
(
LiteralExpr [STRING] [covers1]
:
- FunctionCall test.interval-covers@2[
- FunctionCall test.interval-from-date@2[
- LiteralExpr [STRING] [2010-10-30]
- LiteralExpr [STRING] [2010-11-30]
- ]
- FunctionCall test.interval-from-datetime@2[
- LiteralExpr [STRING] [19990707T020202222]
- LiteralExpr [STRING] [2013-08-07T03:03:03.333]
- ]
- ]
+ Variable [ Name=blnCovers1 ]
)
(
LiteralExpr [STRING] [covers2]
:
- FunctionCall test.interval-covers@2[
- FunctionCall test.interval-from-date@2[
- LiteralExpr [STRING] [2010-10-30]
- LiteralExpr [STRING] [2010-11-30]
- ]
- FunctionCall test.interval-from-datetime@2[
- LiteralExpr [STRING] [-19990707T020202222]
- LiteralExpr [STRING] [2013-08-07T03:03:03.333]
- ]
- ]
+ Variable [ Name=blnCovers2 ]
)
(
LiteralExpr [STRING] [coveredby1]
:
- FunctionCall test.interval-covered-by@2[
- FunctionCall test.interval-from-datetime@2[
- LiteralExpr [STRING] [19990707T020202222]
- LiteralExpr [STRING] [2013-08-07T03:03:03.333]
- ]
- FunctionCall test.interval-from-date@2[
- LiteralExpr [STRING] [2010-10-30]
- LiteralExpr [STRING] [2010-11-30]
- ]
- ]
+ Variable [ Name=blnCoveredBy1 ]
)
(
LiteralExpr [STRING] [coveredby2]
:
- FunctionCall test.interval-covered-by@2[
- FunctionCall test.interval-from-datetime@2[
- LiteralExpr [STRING] [-19990707T020202222]
- LiteralExpr [STRING] [2013-08-07T03:03:03.333]
- ]
- FunctionCall test.interval-from-date@2[
- LiteralExpr [STRING] [2010-10-30]
- LiteralExpr [STRING] [2010-11-30]
- ]
- ]
+ Variable [ Name=blnCoveredBy2 ]
)
(
LiteralExpr [STRING] [ends1]
:
- FunctionCall test.interval-ends@2[
- FunctionCall test.interval-from-datetime@2[
- LiteralExpr [STRING] [19990707T020202222]
- LiteralExpr [STRING] [2013-08-07T03:03:03.333]
- ]
- FunctionCall test.interval-from-time@2[
- LiteralExpr [STRING] [12:32:38]
- LiteralExpr [STRING] [20:29:20]
- ]
- ]
+ Variable [ Name=blnEnds1 ]
)
(
LiteralExpr [STRING] [ends2]
:
- FunctionCall test.interval-ends@2[
- FunctionCall test.interval-from-datetime@2[
- LiteralExpr [STRING] [19990707T020202222]
- LiteralExpr [STRING] [2013-08-07T03:03:03.333]
- ]
- FunctionCall test.interval-from-time@2[
- LiteralExpr [STRING] [17:48:19]
- LiteralExpr [STRING] [22:19:49]
- ]
- ]
+ Variable [ Name=blnEnds2 ]
)
(
LiteralExpr [STRING] [endedby1]
:
- FunctionCall test.interval-ended-by@2[
- FunctionCall test.interval-from-time@2[
- LiteralExpr [STRING] [12:32:38]
- LiteralExpr [STRING] [20:29:20]
- ]
- FunctionCall test.interval-from-datetime@2[
- LiteralExpr [STRING] [19990707T020202222]
- LiteralExpr [STRING] [2013-08-07T03:03:03.333]
- ]
- ]
+ Variable [ Name=blnEndedBy1 ]
)
(
LiteralExpr [STRING] [endedby2]
:
- FunctionCall test.interval-ended-by@2[
- FunctionCall test.interval-from-time@2[
- LiteralExpr [STRING] [17:48:19]
- LiteralExpr [STRING] [22:19:49]
- ]
- FunctionCall test.interval-from-datetime@2[
- LiteralExpr [STRING] [19990707T020202222]
- LiteralExpr [STRING] [2013-08-07T03:03:03.333]
- ]
- ]
+ Variable [ Name=blnEndedBy2 ]
)
(
LiteralExpr [STRING] [null1]
:
- FunctionCall test.interval-before@2[
- LiteralExpr [NULL]
- FunctionCall test.interval-from-date@2[
- LiteralExpr [STRING] [2011-10-30]
- LiteralExpr [STRING] [2012-10-21]
- ]
- ]
+ Variable [ Name=null1 ]
)
(
LiteralExpr [STRING] [null2]
:
- FunctionCall test.interval-covered-by@2[
- FunctionCall test.interval-from-datetime@2[
- LiteralExpr [STRING] [19990707T020202222]
- LiteralExpr [STRING] [2013-08-07T03:03:03.333]
- ]
- LiteralExpr [NULL]
- ]
+ Variable [ Name=null2 ]
)
(
LiteralExpr [STRING] [null3]
:
- FunctionCall test.interval-overlapping@2[
- LiteralExpr [NULL]
- LiteralExpr [NULL]
- ]
+ Variable [ Name=null3 ]
)
]
+]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/temporal/overlap_bins_gby_0/overlap_bins_gby_0.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/temporal/overlap_bins_gby_0/overlap_bins_gby_0.3.ast
index f3945e1..297d932 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/temporal/overlap_bins_gby_0/overlap_bins_gby_0.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/temporal/overlap_bins_gby_0/overlap_bins_gby_0.3.ast
@@ -32,20 +32,35 @@
SELECT ELEMENT [
RecordConstructor [
(
- LiteralExpr [STRING] [i]
- :
- Variable [ Name=i ]
- )
- (
LiteralExpr [STRING] [bin]
:
Variable [ Name=bin ]
)
+ (
+ LiteralExpr [STRING] [i]
+ :
+ Variable [ Name=i ]
+ )
]
]
- FROM [ FunctionCall Metadata.dataset@1[
- LiteralExpr [STRING] [tsdata]
- ]
+ FROM [ (
+ SELECT ELEMENT [
+ Variable [ Name=i ]
+ ]
+ FROM [ FunctionCall Metadata.dataset@1[
+ LiteralExpr [STRING] [tsdata]
+ ]
+ AS
+ Variable [ Name=i ]
+ ]
+ Orderby
+ FieldAccessor [
+ Variable [ Name=i ]
+ Field=time
+ ]
+ ASC
+
+ )
AS
Variable [ Name=i ]
,
@@ -107,3 +122,12 @@
Field=duration
]
]
+Orderby
+ FunctionCall test.get-interval-start@1[
+ FieldAccessor [
+ Variable [ Name=gen0 ]
+ Field=bin
+ ]
+ ]
+ ASC
+
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/tpch-sql-like/query-issue785-2/query-issue785-2.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/tpch-sql-like/query-issue785-2/query-issue785-2.3.ast
index 4a81b19..715999d 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/tpch-sql-like/query-issue785-2/query-issue785-2.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/tpch-sql-like/query-issue785-2/query-issue785-2.3.ast
@@ -129,7 +129,6 @@
Variable [ Name=orders ]
Variable [ Name=n ]
Variable [ Name=customer ]
- Variable [ Name=X ]
Variable [ Name=t ]
LetVariable [ Name=sum ]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/tpch-sql-like/query-issue785/query-issue785.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/tpch-sql-like/query-issue785/query-issue785.3.ast
index 085714d..f69a6be 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/tpch-sql-like/query-issue785/query-issue785.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/tpch-sql-like/query-issue785/query-issue785.3.ast
@@ -39,6 +39,7 @@
With
Variable [ Name=i ]
Variable [ Name=x ]
+ Variable [ Name=nation_key ]
LetVariable [ Name=sum ]
:=
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/tpch/nest_aggregate/nest_aggregate.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/tpch/nest_aggregate/nest_aggregate.3.ast
index ccaa2ee..47eea36 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/tpch/nest_aggregate/nest_aggregate.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/tpch/nest_aggregate/nest_aggregate.3.ast
@@ -137,3 +137,10 @@
Field=n_nationkey
]
]
+Orderby
+ FieldAccessor [
+ Variable [ Name=nation ]
+ Field=n_nationkey
+ ]
+ ASC
+
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/tpch/q04_order_priority/q04_order_priority.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/tpch/q04_order_priority/q04_order_priority.3.ast
index 4dc7445..2f4234e 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/tpch/q04_order_priority/q04_order_priority.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/tpch/q04_order_priority/q04_order_priority.3.ast
@@ -54,14 +54,12 @@
]
AS
Variable [ Name=o ]
-,
- FunctionCall tpch.tmp@0[
- ]
- AS
- Variable [ Name=t ]
-]
-Where
- OperatorExpr [
+ INNER JOIN
+ FunctionCall tpch.tmp@0[
+ ]
+ AS
+ Variable [ Name=t ]
+ ON
OperatorExpr [
FieldAccessor [
Variable [ Name=o ]
@@ -73,7 +71,9 @@
Field=o_orderkey
]
]
- and
+]
+Where
+ OperatorExpr [
OperatorExpr [
FieldAccessor [
Variable [ Name=o ]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/tpch/q09_product_type_profit_nt/q09_product_type_profit_nt.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/tpch/q09_product_type_profit_nt/q09_product_type_profit_nt.3.ast
index 8052433..2472739 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/tpch/q09_product_type_profit_nt/q09_product_type_profit_nt.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/tpch/q09_product_type_profit_nt/q09_product_type_profit_nt.3.ast
@@ -119,258 +119,258 @@
]
AS
Variable [ Name=p ]
-,
- (
- SELECT ELEMENT [
- RecordConstructor [
- (
- LiteralExpr [STRING] [l_extendedprice]
- :
- FieldAccessor [
- Variable [ Name=l1 ]
- Field=l_extendedprice
- ]
- )
- (
- LiteralExpr [STRING] [l_discount]
- :
- FieldAccessor [
- Variable [ Name=l1 ]
- Field=l_discount
- ]
- )
- (
- LiteralExpr [STRING] [l_quantity]
- :
- FieldAccessor [
- Variable [ Name=l1 ]
- Field=l_quantity
- ]
- )
- (
- LiteralExpr [STRING] [l_partkey]
- :
- FieldAccessor [
- Variable [ Name=l1 ]
- Field=l_partkey
- ]
- )
- (
- LiteralExpr [STRING] [l_orderkey]
- :
- FieldAccessor [
- Variable [ Name=l1 ]
- Field=l_orderkey
- ]
- )
- (
- LiteralExpr [STRING] [n_name]
- :
- FieldAccessor [
- Variable [ Name=l1 ]
- Field=n_name
- ]
- )
- (
- LiteralExpr [STRING] [ps_supplycost]
- :
- FieldAccessor [
- Variable [ Name=ps ]
- Field=ps_supplycost
- ]
- )
- ]
- ]
- FROM [ FunctionCall Metadata.dataset@1[
- LiteralExpr [STRING] [Partsupp]
+ INNER JOIN
+ (
+ SELECT ELEMENT [
+ RecordConstructor [
+ (
+ LiteralExpr [STRING] [l_extendedprice]
+ :
+ FieldAccessor [
+ Variable [ Name=l1 ]
+ Field=l_extendedprice
+ ]
+ )
+ (
+ LiteralExpr [STRING] [l_discount]
+ :
+ FieldAccessor [
+ Variable [ Name=l1 ]
+ Field=l_discount
+ ]
+ )
+ (
+ LiteralExpr [STRING] [l_quantity]
+ :
+ FieldAccessor [
+ Variable [ Name=l1 ]
+ Field=l_quantity
+ ]
+ )
+ (
+ LiteralExpr [STRING] [l_partkey]
+ :
+ FieldAccessor [
+ Variable [ Name=l1 ]
+ Field=l_partkey
+ ]
+ )
+ (
+ LiteralExpr [STRING] [l_orderkey]
+ :
+ FieldAccessor [
+ Variable [ Name=l1 ]
+ Field=l_orderkey
+ ]
+ )
+ (
+ LiteralExpr [STRING] [n_name]
+ :
+ FieldAccessor [
+ Variable [ Name=l1 ]
+ Field=n_name
+ ]
+ )
+ (
+ LiteralExpr [STRING] [ps_supplycost]
+ :
+ FieldAccessor [
+ Variable [ Name=ps ]
+ Field=ps_supplycost
+ ]
+ )
]
- AS
- Variable [ Name=ps ]
-,
- (
- SELECT ELEMENT [
- RecordConstructor [
- (
- LiteralExpr [STRING] [l_suppkey]
- :
- FieldAccessor [
- Variable [ Name=l ]
- Field=l_suppkey
- ]
- )
- (
- LiteralExpr [STRING] [l_extendedprice]
- :
- FieldAccessor [
- Variable [ Name=l ]
- Field=l_extendedprice
- ]
- )
- (
- LiteralExpr [STRING] [l_discount]
- :
- FieldAccessor [
- Variable [ Name=l ]
- Field=l_discount
- ]
- )
- (
- LiteralExpr [STRING] [l_quantity]
- :
- FieldAccessor [
- Variable [ Name=l ]
- Field=l_quantity
- ]
- )
- (
- LiteralExpr [STRING] [l_partkey]
- :
- FieldAccessor [
- Variable [ Name=l ]
- Field=l_partkey
- ]
- )
- (
- LiteralExpr [STRING] [l_orderkey]
- :
- FieldAccessor [
- Variable [ Name=l ]
- Field=l_orderkey
- ]
- )
- (
- LiteralExpr [STRING] [n_name]
- :
- FieldAccessor [
- Variable [ Name=s1 ]
- Field=n_name
- ]
- )
+ ]
+ FROM [ FunctionCall Metadata.dataset@1[
+ LiteralExpr [STRING] [Partsupp]
]
- ]
- FROM [ (
+ AS
+ Variable [ Name=ps ]
+ INNER JOIN
+ (
SELECT ELEMENT [
RecordConstructor [
(
- LiteralExpr [STRING] [s_suppkey]
+ LiteralExpr [STRING] [l_suppkey]
:
FieldAccessor [
- Variable [ Name=s ]
- Field=s_suppkey
+ Variable [ Name=l ]
+ Field=l_suppkey
+ ]
+ )
+ (
+ LiteralExpr [STRING] [l_extendedprice]
+ :
+ FieldAccessor [
+ Variable [ Name=l ]
+ Field=l_extendedprice
+ ]
+ )
+ (
+ LiteralExpr [STRING] [l_discount]
+ :
+ FieldAccessor [
+ Variable [ Name=l ]
+ Field=l_discount
+ ]
+ )
+ (
+ LiteralExpr [STRING] [l_quantity]
+ :
+ FieldAccessor [
+ Variable [ Name=l ]
+ Field=l_quantity
+ ]
+ )
+ (
+ LiteralExpr [STRING] [l_partkey]
+ :
+ FieldAccessor [
+ Variable [ Name=l ]
+ Field=l_partkey
+ ]
+ )
+ (
+ LiteralExpr [STRING] [l_orderkey]
+ :
+ FieldAccessor [
+ Variable [ Name=l ]
+ Field=l_orderkey
]
)
(
LiteralExpr [STRING] [n_name]
:
FieldAccessor [
- Variable [ Name=n ]
+ Variable [ Name=s1 ]
Field=n_name
]
)
]
]
- FROM [ FunctionCall Metadata.dataset@1[
- LiteralExpr [STRING] [Supplier]
- ]
- AS
- Variable [ Name=s ]
-,
- FunctionCall Metadata.dataset@1[
- LiteralExpr [STRING] [Nation]
- ]
- AS
- Variable [ Name=n ]
- ]
- Where
- OperatorExpr [
- FieldAccessor [
- Variable [ Name=n ]
- Field=n_nationkey
+ FROM [ (
+ SELECT ELEMENT [
+ RecordConstructor [
+ (
+ LiteralExpr [STRING] [s_suppkey]
+ :
+ FieldAccessor [
+ Variable [ Name=s ]
+ Field=s_suppkey
+ ]
+ )
+ (
+ LiteralExpr [STRING] [n_name]
+ :
+ FieldAccessor [
+ Variable [ Name=n ]
+ Field=n_name
+ ]
+ )
]
- =
- FieldAccessor [
+ ]
+ FROM [ FunctionCall Metadata.dataset@1[
+ LiteralExpr [STRING] [Supplier]
+ ]
+ AS
Variable [ Name=s ]
- Field=s_nationkey
+,
+ FunctionCall Metadata.dataset@1[
+ LiteralExpr [STRING] [Nation]
+ ]
+ AS
+ Variable [ Name=n ]
]
- ]
+ Where
+ OperatorExpr [
+ FieldAccessor [
+ Variable [ Name=n ]
+ Field=n_nationkey
+ ]
+ =
+ FieldAccessor [
+ Variable [ Name=s ]
+ Field=s_nationkey
+ ]
+ ]
+ )
+ AS
+ Variable [ Name=s1 ]
+ INNER JOIN
+ FunctionCall Metadata.dataset@1[
+ LiteralExpr [STRING] [LineItem]
+ ]
+ AS
+ Variable [ Name=l ]
+ ON
+ OperatorExpr [
+ FieldAccessor [
+ Variable [ Name=s1 ]
+ Field=s_suppkey
+ ]
+ =
+ FieldAccessor [
+ Variable [ Name=l ]
+ Field=l_suppkey
+ ]
+ ]
+ ]
)
AS
- Variable [ Name=s1 ]
-,
- FunctionCall Metadata.dataset@1[
- LiteralExpr [STRING] [LineItem]
- ]
- AS
- Variable [ Name=l ]
- ]
- Where
+ Variable [ Name=l1 ]
+ ON
OperatorExpr [
- FieldAccessor [
- Variable [ Name=s1 ]
- Field=s_suppkey
+ OperatorExpr [
+ FieldAccessor [
+ Variable [ Name=ps ]
+ Field=ps_suppkey
+ ]
+ =
+ FieldAccessor [
+ Variable [ Name=l1 ]
+ Field=l_suppkey
+ ]
]
- =
- FieldAccessor [
- Variable [ Name=l ]
- Field=l_suppkey
+ and
+ OperatorExpr [
+ FieldAccessor [
+ Variable [ Name=ps ]
+ Field=ps_partkey
+ ]
+ =
+ FieldAccessor [
+ Variable [ Name=l1 ]
+ Field=l_partkey
+ ]
]
]
- )
- AS
- Variable [ Name=l1 ]
- ]
- Where
- OperatorExpr [
- OperatorExpr [
- FieldAccessor [
- Variable [ Name=ps ]
- Field=ps_suppkey
- ]
- =
- FieldAccessor [
- Variable [ Name=l1 ]
- Field=l_suppkey
- ]
- ]
- and
- OperatorExpr [
- FieldAccessor [
- Variable [ Name=ps ]
- Field=ps_partkey
- ]
- =
- FieldAccessor [
- Variable [ Name=l1 ]
- Field=l_partkey
- ]
- ]
]
- )
- AS
- Variable [ Name=l2 ]
- ]
- Where
- OperatorExpr [
- FunctionCall tpch.contains@2[
- FieldAccessor [
- Variable [ Name=p ]
- Field=p_name
- ]
- LiteralExpr [STRING] [green]
- ]
- and
+ )
+ AS
+ Variable [ Name=l2 ]
+ ON
OperatorExpr [
- FieldAccessor [
- Variable [ Name=p ]
- Field=p_partkey
+ FunctionCall tpch.contains@2[
+ FieldAccessor [
+ Variable [ Name=p ]
+ Field=p_name
+ ]
+ LiteralExpr [STRING] [green]
]
- =
- FieldAccessor [
- Variable [ Name=l2 ]
- Field=l_partkey
+ and
+ OperatorExpr [
+ FieldAccessor [
+ Variable [ Name=p ]
+ Field=p_partkey
+ ]
+ =
+ FieldAccessor [
+ Variable [ Name=l2 ]
+ Field=l_partkey
+ ]
]
]
- ]
+ ]
)
AS
Variable [ Name=l3 ]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/tpch/q18_large_volume_customer/q18_large_volume_customer.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/tpch/q18_large_volume_customer/q18_large_volume_customer.3.ast
index edf6190..440f07a 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/tpch/q18_large_volume_customer/q18_large_volume_customer.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/tpch/q18_large_volume_customer/q18_large_volume_customer.3.ast
@@ -130,37 +130,35 @@
]
and
OperatorExpr [
- OperatorExpr [
- FieldAccessor [
- Variable [ Name=o ]
- Field=o_orderkey
- ]
- =
- FieldAccessor [
- Variable [ Name=t ]
- Field=l_orderkey
- ]
+ FieldAccessor [
+ Variable [ Name=o ]
+ Field=o_orderkey
]
- and
- OperatorExpr [
- FieldAccessor [
- Variable [ Name=t ]
- Field=t_sum_quantity
- ]
- >
- LiteralExpr [LONG] [30]
+ =
+ FieldAccessor [
+ Variable [ Name=t ]
+ Field=l_orderkey
]
]
and
OperatorExpr [
FieldAccessor [
+ Variable [ Name=t ]
+ Field=t_sum_quantity
+ ]
+ >
+ LiteralExpr [LONG] [30]
+ ]
+ and
+ OperatorExpr [
+ FieldAccessor [
Variable [ Name=l ]
Field=l_orderkey
]
=
FieldAccessor [
- Variable [ Name=o ]
- Field=o_orderkey
+ Variable [ Name=t ]
+ Field=l_orderkey
]
]
]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/tpch/q21_suppliers_who_kept_orders_waiting/q21_suppliers_who_kept_orders_waiting.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/tpch/q21_suppliers_who_kept_orders_waiting/q21_suppliers_who_kept_orders_waiting.3.ast
index c471683..02b134c 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/tpch/q21_suppliers_who_kept_orders_waiting/q21_suppliers_who_kept_orders_waiting.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/tpch/q21_suppliers_who_kept_orders_waiting/q21_suppliers_who_kept_orders_waiting.3.ast
@@ -359,28 +359,26 @@
Where
OperatorExpr [
OperatorExpr [
- OperatorExpr [
- FieldAccessor [
- Variable [ Name=ns ]
- Field=s_suppkey
- ]
- =
- FieldAccessor [
- Variable [ Name=l ]
- Field=l_suppkey
- ]
+ FieldAccessor [
+ Variable [ Name=ns ]
+ Field=s_suppkey
]
- and
- OperatorExpr [
- FieldAccessor [
- Variable [ Name=l ]
- Field=l_receiptdate
- ]
- >
- FieldAccessor [
- Variable [ Name=l ]
- Field=l_commitdate
- ]
+ =
+ FieldAccessor [
+ Variable [ Name=l ]
+ Field=l_suppkey
+ ]
+ ]
+ and
+ OperatorExpr [
+ FieldAccessor [
+ Variable [ Name=l ]
+ Field=l_receiptdate
+ ]
+ >
+ FieldAccessor [
+ Variable [ Name=l ]
+ Field=l_commitdate
]
]
and
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/tpch/query-issue785-2/query-issue785-2.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/tpch/query-issue785-2/query-issue785-2.3.ast
index 4a81b19..715999d 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/tpch/query-issue785-2/query-issue785-2.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/tpch/query-issue785-2/query-issue785-2.3.ast
@@ -129,7 +129,6 @@
Variable [ Name=orders ]
Variable [ Name=n ]
Variable [ Name=customer ]
- Variable [ Name=X ]
Variable [ Name=t ]
LetVariable [ Name=sum ]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/tpch/query-issue785/query-issue785.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/tpch/query-issue785/query-issue785.3.ast
index 085714d..f69a6be 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/tpch/query-issue785/query-issue785.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/tpch/query-issue785/query-issue785.3.ast
@@ -39,6 +39,7 @@
With
Variable [ Name=i ]
Variable [ Name=x ]
+ Variable [ Name=nation_key ]
LetVariable [ Name=sum ]
:=
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/query-issue172/query-issue172.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/query-issue172/query-issue172.3.ast
index e69de29..0246049 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/query-issue172/query-issue172.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/query-issue172/query-issue172.3.ast
@@ -0,0 +1,9 @@
+Query:
+FunctionCall null.string-length@1[
+ FunctionCall null.string-concat@1[
+ OrderedListConstructor [
+ LiteralExpr [STRING] [this is a ]
+ LiteralExpr [STRING] [test string]
+ ]
+ ]
+]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/query-issue201/query-issue201.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/query-issue201/query-issue201.3.ast
index e69de29..0aa55c7 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/query-issue201/query-issue201.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/query-issue201/query-issue201.3.ast
@@ -0,0 +1,15 @@
+Set import-private-functions=true
+Query:
+LetVariable [ Name=x ]
+ :=
+ FunctionCall null.range@2[
+ LiteralExpr [LONG] [1]
+ LiteralExpr [LONG] [100]
+ ]
+SELECT ELEMENT [
+Variable [ Name=i ]
+]
+FROM [ Variable [ Name=x ]
+ AS
+ Variable [ Name=i ]
+]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/query-issue218-2/query-issue218-2.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/query-issue218-2/query-issue218-2.3.ast
index e69de29..15eb8e3 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/query-issue218-2/query-issue218-2.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/query-issue218-2/query-issue218-2.3.ast
@@ -0,0 +1,7 @@
+Query:
+SELECT ELEMENT [
+FunctionCall test.computeBonus@2[
+ NEGATIVE LiteralExpr [LONG] [1]
+ NEGATIVE LiteralExpr [LONG] [1]
+]
+]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/query-issue218/query-issue218.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/query-issue218/query-issue218.3.ast
index e69de29..bc1d2ae 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/query-issue218/query-issue218.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/query-issue218/query-issue218.3.ast
@@ -0,0 +1,2 @@
+Query:
+LiteralExpr [LONG] [1]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/query-issue244/query-issue244.1.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/query-issue244/query-issue244.1.ast
index e69de29..b5cf1a2 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/query-issue244/query-issue244.1.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/query-issue244/query-issue244.1.ast
@@ -0,0 +1,9 @@
+DataverseUse test
+TypeDecl TypeA [
+ open RecordType {
+ id : int64,
+ name : string
+ }
+]
+DatasetDecl t1(TypeA) partitioned by [[id]]
+DatasetDecl t2(TypeA) partitioned by [[id]]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/query-issue244/query-issue244.2.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/query-issue244/query-issue244.2.ast
index e69de29..916a59e 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/query-issue244/query-issue244.2.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/query-issue244/query-issue244.2.ast
@@ -0,0 +1 @@
+DataverseUse test
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/query-issue244/query-issue244.3.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/query-issue244/query-issue244.3.ast
index e69de29..b14b434 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/query-issue244/query-issue244.3.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/query-issue244/query-issue244.3.ast
@@ -0,0 +1,18 @@
+DataverseUse test
+Query:
+SELECT ELEMENT [
+Variable [ Name=l ]
+]
+FROM [ FunctionCall Metadata.dataset@1[
+ LiteralExpr [STRING] [t2]
+ ]
+ AS
+ Variable [ Name=l ]
+]
+Orderby
+ FieldAccessor [
+ Variable [ Name=l ]
+ Field=id
+ ]
+ ASC
+
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/query-issue455/query-issue455.2.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/query-issue455/query-issue455.2.ast
index e69de29..c30763f 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/query-issue455/query-issue455.2.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/query-issue455/query-issue455.2.ast
@@ -0,0 +1,5 @@
+Query:
+SELECT ELEMENT [
+FunctionCall null.printName@0[
+]
+]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/query-issue455/query-issue455.4.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/query-issue455/query-issue455.4.ast
index e69de29..2e23f79 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/query-issue455/query-issue455.4.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/query-issue455/query-issue455.4.ast
@@ -0,0 +1,15 @@
+Query:
+SELECT ELEMENT [
+Variable [ Name=l ]
+]
+FROM [ FunctionCall Metadata.dataset@1[
+ LiteralExpr [STRING] [Metadata.Function]
+ ]
+ AS
+ Variable [ Name=l ]
+]
+Query:
+SELECT ELEMENT [
+FunctionCall null.printName@0[
+]
+]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/query-issue489/query-issue489.1.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/query-issue489/query-issue489.1.ast
index e69de29..916a59e 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/query-issue489/query-issue489.1.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/query-issue489/query-issue489.1.ast
@@ -0,0 +1 @@
+DataverseUse test
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/query-issue489/query-issue489.2.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/query-issue489/query-issue489.2.ast
index e69de29..7a053bd 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/query-issue489/query-issue489.2.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/query-issue489/query-issue489.2.ast
@@ -0,0 +1,25 @@
+Query:
+SELECT ELEMENT [
+FunctionCall null.count@1[
+ (
+ SELECT ELEMENT [
+ Variable [ Name=x ]
+ ]
+ FROM [ FunctionCall Metadata.dataset@1[
+ LiteralExpr [STRING] [Metadata.Function]
+ ]
+ AS
+ Variable [ Name=x ]
+ ]
+ Where
+ OperatorExpr [
+ FieldAccessor [
+ Variable [ Name=x ]
+ Field=DataverseName
+ ]
+ =
+ LiteralExpr [STRING] [test]
+ ]
+ )
+]
+]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/query-issue489/query-issue489.4.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/query-issue489/query-issue489.4.ast
index e69de29..7a053bd 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/query-issue489/query-issue489.4.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/query-issue489/query-issue489.4.ast
@@ -0,0 +1,25 @@
+Query:
+SELECT ELEMENT [
+FunctionCall null.count@1[
+ (
+ SELECT ELEMENT [
+ Variable [ Name=x ]
+ ]
+ FROM [ FunctionCall Metadata.dataset@1[
+ LiteralExpr [STRING] [Metadata.Function]
+ ]
+ AS
+ Variable [ Name=x ]
+ ]
+ Where
+ OperatorExpr [
+ FieldAccessor [
+ Variable [ Name=x ]
+ Field=DataverseName
+ ]
+ =
+ LiteralExpr [STRING] [test]
+ ]
+ )
+]
+]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/udf01/udf01.1.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/udf01/udf01.1.ast
index e69de29..916a59e 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/udf01/udf01.1.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/udf01/udf01.1.ast
@@ -0,0 +1 @@
+DataverseUse test
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/udf02/udf02.1.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/udf02/udf02.1.ast
index e69de29..916a59e 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/udf02/udf02.1.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/udf02/udf02.1.ast
@@ -0,0 +1 @@
+DataverseUse test
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/udf04/udf04.1.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/udf04/udf04.1.ast
index e69de29..916a59e 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/udf04/udf04.1.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/udf04/udf04.1.ast
@@ -0,0 +1 @@
+DataverseUse test
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/udf05/udf05.1.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/udf05/udf05.1.ast
index e69de29..916a59e 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/udf05/udf05.1.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/udf05/udf05.1.ast
@@ -0,0 +1 @@
+DataverseUse test
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/udf06/udf06.1.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/udf06/udf06.1.ast
index e69de29..916a59e 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/udf06/udf06.1.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/udf06/udf06.1.ast
@@ -0,0 +1 @@
+DataverseUse test
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/udf07/udf07.1.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/udf07/udf07.1.ast
index e69de29..916a59e 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/udf07/udf07.1.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/udf07/udf07.1.ast
@@ -0,0 +1 @@
+DataverseUse test
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/udf08/udf08.1.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/udf08/udf08.1.ast
index e69de29..916a59e 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/udf08/udf08.1.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/udf08/udf08.1.ast
@@ -0,0 +1 @@
+DataverseUse test
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/udf09/udf09.1.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/udf09/udf09.1.ast
index e69de29..40ba667 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/udf09/udf09.1.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/udf09/udf09.1.ast
@@ -0,0 +1,7 @@
+DataverseUse test
+TypeDecl TestType [
+ open RecordType {
+ id : int64
+ }
+]
+DatasetDecl t1(TestType) partitioned by [[id]]
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/udf10/udf10.1.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/udf10/udf10.1.ast
index e69de29..916a59e 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/udf10/udf10.1.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/udf10/udf10.1.ast
@@ -0,0 +1 @@
+DataverseUse test
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/udf11/udf11.1.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/udf11/udf11.1.ast
index e69de29..916a59e 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/udf11/udf11.1.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/udf11/udf11.1.ast
@@ -0,0 +1 @@
+DataverseUse test
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/udf12/udf12.1.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/udf12/udf12.1.ast
index e69de29..916a59e 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/udf12/udf12.1.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/udf12/udf12.1.ast
@@ -0,0 +1 @@
+DataverseUse test
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/udf13/udf13.1.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/udf13/udf13.1.ast
index e69de29..916a59e 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/udf13/udf13.1.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/udf13/udf13.1.ast
@@ -0,0 +1 @@
+DataverseUse test
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/udf14/udf14.1.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/udf14/udf14.1.ast
index e69de29..916a59e 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/udf14/udf14.1.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/udf14/udf14.1.ast
@@ -0,0 +1 @@
+DataverseUse test
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/udf16/udf16.1.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/udf16/udf16.1.ast
index e69de29..916a59e 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/udf16/udf16.1.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/udf16/udf16.1.ast
@@ -0,0 +1 @@
+DataverseUse test
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/udf17/udf17.1.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/udf17/udf17.1.ast
index e69de29..916a59e 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/udf17/udf17.1.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/udf17/udf17.1.ast
@@ -0,0 +1 @@
+DataverseUse test
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/udf18/udf18.1.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/udf18/udf18.1.ast
index e69de29..916a59e 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/udf18/udf18.1.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/udf18/udf18.1.ast
@@ -0,0 +1 @@
+DataverseUse test
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/udf19/udf19.1.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/udf19/udf19.1.ast
index e69de29..916a59e 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/udf19/udf19.1.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/udf19/udf19.1.ast
@@ -0,0 +1 @@
+DataverseUse test
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/udf20/udf20.1.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/udf20/udf20.1.ast
index e69de29..916a59e 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/udf20/udf20.1.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/udf20/udf20.1.ast
@@ -0,0 +1 @@
+DataverseUse test
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/udf21/udf21.1.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/udf21/udf21.1.ast
index e69de29..916a59e 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/udf21/udf21.1.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/udf21/udf21.1.ast
@@ -0,0 +1 @@
+DataverseUse test
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/udf22/udf22.1.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/udf22/udf22.1.ast
index e69de29..916a59e 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/udf22/udf22.1.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/udf22/udf22.1.ast
@@ -0,0 +1 @@
+DataverseUse test
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/udf23/udf23.1.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/udf23/udf23.1.ast
index e69de29..916a59e 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/udf23/udf23.1.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/udf23/udf23.1.ast
@@ -0,0 +1 @@
+DataverseUse test
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/udf26/udf26.1.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/udf26/udf26.1.ast
index e69de29..916a59e 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/udf26/udf26.1.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/udf26/udf26.1.ast
@@ -0,0 +1 @@
+DataverseUse test
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/udf27/udf27.1.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/udf27/udf27.1.ast
index e69de29..916a59e 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/udf27/udf27.1.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/udf27/udf27.1.ast
@@ -0,0 +1 @@
+DataverseUse test
diff --git a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/udf28/udf28.1.ast b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/udf28/udf28.1.ast
index e69de29..916a59e 100644
--- a/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/udf28/udf28.1.ast
+++ b/asterix-app/src/test/resources/runtimets/results_parser_sqlpp/user-defined-functions/udf28/udf28.1.ast
@@ -0,0 +1 @@
+DataverseUse test
diff --git a/asterix-app/src/test/resources/runtimets/testsuite_sqlpp.xml b/asterix-app/src/test/resources/runtimets/testsuite_sqlpp.xml
new file mode 100644
index 0000000..095adbf
--- /dev/null
+++ b/asterix-app/src/test/resources/runtimets/testsuite_sqlpp.xml
@@ -0,0 +1,6587 @@
+<!--
+ ! Licensed to the Apache Software Foundation (ASF) under one
+ ! or more contributor license agreements. See the NOTICE file
+ ! distributed with this work for additional information
+ ! regarding copyright ownership. The ASF licenses this file
+ ! to you under the Apache License, Version 2.0 (the
+ ! "License"); you may not use this file except in compliance
+ ! with the License. You may obtain a copy of the License at
+ !
+ ! http://www.apache.org/licenses/LICENSE-2.0
+ !
+ ! Unless required by applicable law or agreed to in writing,
+ ! software distributed under the License is distributed on an
+ ! "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ ! KIND, either express or implied. See the License for the
+ ! specific language governing permissions and limitations
+ ! under the License.
+ !-->
+<!DOCTYPE test-suite [
+
+<!ENTITY RecordsQueries SYSTEM "queries/records/RecordsQueries.xml">
+
+]>
+<test-suite
+ xmlns="urn:xml.testframework.asterix.apache.org"
+ ResultOffsetPath="results"
+ QueryOffsetPath="queries_sqlpp"
+ QueryFileExtension=".sqlpp">
+ <test-group name="flwor">
+ <test-case FilePath="flwor">
+ <compilation-unit name="at00">
+ <output-dir compare="Text">at00</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="flwor">
+ <compilation-unit name="at01">
+ <output-dir compare="Text">at01</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="flwor">
+ <compilation-unit name="at02">
+ <output-dir compare="Text">at02</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="flwor">
+ <compilation-unit name="at03">
+ <output-dir compare="Text">at03</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="flwor">
+ <compilation-unit name="at04">
+ <output-dir compare="Text">at04</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="flwor">
+ <compilation-unit name="at05">
+ <output-dir compare="Text">at05</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="flwor">
+ <compilation-unit name="at06">
+ <output-dir compare="Text">at06</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="flwor">
+ <compilation-unit name="query-issue550">
+ <output-dir compare="Text">query-issue550</output-dir>
+ </compilation-unit>
+ </test-case>
+ </test-group>
+ <!--
+ <test-group name="union">
+ <test-case FilePath="union">
+ <compilation-unit name="union">
+ <output-dir compare="Text">union</output-dir>
+ </compilation-unit>
+ </test-case>
+ </test-group>
+ -->
+ <test-case FilePath="flwor">
+ <compilation-unit name="let33">
+ <output-dir compare="Text">let33</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-group name="aggregate">
+ <test-case FilePath="aggregate">
+ <compilation-unit name="issue531_string_min_max">
+ <output-dir compare="Text">issue531_string_min_max</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate">
+ <compilation-unit name="agg_null">
+ <output-dir compare="Text">agg_null</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate">
+ <compilation-unit name="agg_null_rec">
+ <output-dir compare="Text">agg_null_rec</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate">
+ <compilation-unit name="agg_null_rec_1">
+ <output-dir compare="Text">agg_null_rec_1</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate">
+ <compilation-unit name="agg_number_rec">
+ <output-dir compare="Text">agg_number_rec</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate">
+ <compilation-unit name="avg_mixed">
+ <output-dir compare="Text">avg_mixed</output-dir>
+ <expected-error>org.apache.asterix.common.exceptions.AsterixException</expected-error>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate">
+ <compilation-unit name="sum_mixed">
+ <output-dir compare="Text">sum_mixed</output-dir>
+ <expected-error>org.apache.asterix.common.exceptions.AsterixException</expected-error>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate">
+ <compilation-unit name="min_mixed">
+ <output-dir compare="Text">min_mixed</output-dir>
+ <expected-error>org.apache.asterix.common.exceptions.AsterixException</expected-error>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate">
+ <compilation-unit name="agg_number">
+ <output-dir compare="Text">agg_number</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate">
+ <compilation-unit name="issue425_min_hetero_list_1">
+ <output-dir compare="Text">issue425_min_hetero_list_1</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate">
+ <compilation-unit name="issue425_min_hetero_list">
+ <output-dir compare="Text">issue425_min_hetero_list</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate">
+ <compilation-unit name="issue425_sum_hetero_list_1">
+ <output-dir compare="Text">issue425_sum_hetero_list_1</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate">
+ <compilation-unit name="issue425_sum_hetero_list">
+ <output-dir compare="Text">issue425_sum_hetero_list</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate">
+ <compilation-unit name="query-issue400">
+ <output-dir compare="Text">query-issue400</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate">
+ <compilation-unit name="issue395">
+ <output-dir compare="Text">issue395</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate">
+ <compilation-unit name="issue412_0">
+ <output-dir compare="Text">issue412_0</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate">
+ <compilation-unit name="issue412_1">
+ <output-dir compare="Text">issue412_1</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate">
+ <compilation-unit name="avg_double">
+ <output-dir compare="Text">avg_double</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate">
+ <compilation-unit name="avg_double_null">
+ <output-dir compare="Text">avg_double_null</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate">
+ <compilation-unit name="avg_empty_01">
+ <output-dir compare="Text">avg_empty_01</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate">
+ <compilation-unit name="avg_empty_02">
+ <output-dir compare="Text">avg_empty_02</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate">
+ <compilation-unit name="avg_float">
+ <output-dir compare="Text">avg_float</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate">
+ <compilation-unit name="avg_float_null">
+ <output-dir compare="Text">avg_float_null</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate">
+ <compilation-unit name="avg_int16">
+ <output-dir compare="Text">avg_int16</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate">
+ <compilation-unit name="avg_int16_null">
+ <output-dir compare="Text">avg_int16_null</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate">
+ <compilation-unit name="avg_int32">
+ <output-dir compare="Text">avg_int32</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate">
+ <compilation-unit name="avg_int32_null">
+ <output-dir compare="Text">avg_int32_null</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate">
+ <compilation-unit name="avg_int64">
+ <output-dir compare="Text">avg_int64</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate">
+ <compilation-unit name="avg_int64_null">
+ <output-dir compare="Text">avg_int64_null</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate">
+ <compilation-unit name="avg_int8">
+ <output-dir compare="Text">avg_int8</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate">
+ <compilation-unit name="avg_int8_null">
+ <output-dir compare="Text">avg_int8_null</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate">
+ <compilation-unit name="count_01">
+ <output-dir compare="Text">count_01</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate">
+ <compilation-unit name="count_empty_01">
+ <output-dir compare="Text">count_empty_01</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate">
+ <compilation-unit name="count_empty_02">
+ <output-dir compare="Text">count_empty_02</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate">
+ <compilation-unit name="count_null">
+ <output-dir compare="Text">count_null</output-dir>
+ </compilation-unit>
+ </test-case>
+ <!--
+ <test-case FilePath="aggregate">
+ <compilation-unit name="droptype">
+ <output-dir compare="Text">droptype</output-dir>
+ </compilation-unit>
+ </test-case>
+ -->
+ <!-- TODO(madhusudancs): These tests that test for local_<agg>/global_<agg> functions should be removed, but
+ before that we should modify the code to make sure those built-in functions are still defined but not exposed
+ by AQL, so leaving these test cases commented.
+ <test-case FilePath="aggregate">
+ <compilation-unit name="global-avg_01">
+ <output-dir compare="Text">global-avg_01</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate">
+ <compilation-unit name="global-avg_null">
+ <output-dir compare="Text">global-avg_null</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate">
+ <compilation-unit name="local-avg_double">
+ <output-dir compare="Text">local-avg_double</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate">
+ <compilation-unit name="local-avg_double_null">
+ <output-dir compare="Text">local-avg_double_null</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate">
+ <compilation-unit name="local-avg_float">
+ <output-dir compare="Text">local-avg_float</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate">
+ <compilation-unit name="local-avg_float_null">
+ <output-dir compare="Text">local-avg_float_null</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate">
+ <compilation-unit name="local-avg_int16">
+ <output-dir compare="Text">local-avg_int16</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate">
+ <compilation-unit name="local-avg_int16_null">
+ <output-dir compare="Text">local-avg_int16_null</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate">
+ <compilation-unit name="local-avg_int32">
+ <output-dir compare="Text">local-avg_int32</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate">
+ <compilation-unit name="local-avg_int32_null">
+ <output-dir compare="Text">local-avg_int32_null</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate">
+ <compilation-unit name="local-avg_int64">
+ <output-dir compare="Text">local-avg_int64</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate">
+ <compilation-unit name="local-avg_int64_null">
+ <output-dir compare="Text">local-avg_int64_null</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate">
+ <compilation-unit name="local-avg_int8">
+ <output-dir compare="Text">local-avg_int8</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate">
+ <compilation-unit name="local-avg_int8_null">
+ <output-dir compare="Text">local-avg_int8_null</output-dir>
+ </compilation-unit>
+ </test-case>
+ -->
+ <test-case FilePath="aggregate">
+ <compilation-unit name="max_empty_01">
+ <output-dir compare="Text">max_empty_01</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate">
+ <compilation-unit name="max_empty_02">
+ <output-dir compare="Text">max_empty_02</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate">
+ <compilation-unit name="min_empty_01">
+ <output-dir compare="Text">min_empty_01</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate">
+ <compilation-unit name="min_empty_02">
+ <output-dir compare="Text">min_empty_02</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate">
+ <compilation-unit name="scalar_avg">
+ <output-dir compare="Text">scalar_avg</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate">
+ <compilation-unit name="scalar_avg_empty">
+ <output-dir compare="Text">scalar_avg_empty</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate">
+ <compilation-unit name="scalar_avg_null">
+ <output-dir compare="Text">scalar_avg_null</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate">
+ <compilation-unit name="scalar_count">
+ <output-dir compare="Text">scalar_count</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate">
+ <compilation-unit name="scalar_count_empty">
+ <output-dir compare="Text">scalar_count_empty</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate">
+ <compilation-unit name="scalar_count_null">
+ <output-dir compare="Text">scalar_count_null</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate">
+ <compilation-unit name="scalar_max">
+ <output-dir compare="Text">scalar_max</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate">
+ <compilation-unit name="scalar_max_empty">
+ <output-dir compare="Text">scalar_max_empty</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate">
+ <compilation-unit name="scalar_max_null">
+ <output-dir compare="Text">scalar_max_null</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate">
+ <compilation-unit name="scalar_min">
+ <output-dir compare="Text">scalar_min</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate">
+ <compilation-unit name="scalar_min_empty">
+ <output-dir compare="Text">scalar_min_empty</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate">
+ <compilation-unit name="scalar_min_null">
+ <output-dir compare="Text">scalar_min_null</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate">
+ <compilation-unit name="scalar_sum">
+ <output-dir compare="Text">scalar_sum</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate">
+ <compilation-unit name="scalar_sum_empty">
+ <output-dir compare="Text">scalar_sum_empty</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate">
+ <compilation-unit name="scalar_sum_null">
+ <output-dir compare="Text">scalar_sum_null</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate">
+ <compilation-unit name="sum_double">
+ <output-dir compare="Text">sum_double</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate">
+ <compilation-unit name="sum_double_null">
+ <output-dir compare="Text">sum_double_null</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate">
+ <compilation-unit name="sum_empty_01">
+ <output-dir compare="Text">sum_empty_01</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate">
+ <compilation-unit name="sum_empty_02">
+ <output-dir compare="Text">sum_empty_02</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate">
+ <compilation-unit name="sum_float">
+ <output-dir compare="Text">sum_float</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate">
+ <compilation-unit name="sum_float_null">
+ <output-dir compare="Text">sum_float_null</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate">
+ <compilation-unit name="sum_int16">
+ <output-dir compare="Text">sum_int16</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate">
+ <compilation-unit name="sum_int16_null">
+ <output-dir compare="Text">sum_int16_null</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate">
+ <compilation-unit name="sum_int32">
+ <output-dir compare="Text">sum_int32</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate">
+ <compilation-unit name="sum_int32_null">
+ <output-dir compare="Text">sum_int32_null</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate">
+ <compilation-unit name="sum_int64">
+ <output-dir compare="Text">sum_int64</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate">
+ <compilation-unit name="sum_int64_null">
+ <output-dir compare="Text">sum_int64_null</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate">
+ <compilation-unit name="sum_int8">
+ <output-dir compare="Text">sum_int8</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate">
+ <compilation-unit name="sum_int8_null">
+ <output-dir compare="Text">sum_int8_null</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate">
+ <compilation-unit name="sum_null-with-pred">
+ <output-dir compare="Text">sum_null-with-pred</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate">
+ <compilation-unit name="sum_numeric_null">
+ <output-dir compare="Text">sum_numeric_null</output-dir>
+ </compilation-unit>
+ </test-case>
+ </test-group>
+ <test-group name="aggregate-sql">
+ <test-case FilePath="aggregate-sql">
+ <compilation-unit name="issue531_string_min_max">
+ <output-dir compare="Text">issue531_string_min_max</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate-sql">
+ <compilation-unit name="agg_null">
+ <output-dir compare="Text">agg_null</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate-sql">
+ <compilation-unit name="agg_null_rec">
+ <output-dir compare="Text">agg_null_rec</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate-sql">
+ <compilation-unit name="agg_null_rec_1">
+ <output-dir compare="Text">agg_null_rec_1</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate-sql">
+ <compilation-unit name="agg_number_rec">
+ <output-dir compare="Text">agg_number_rec</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate-sql">
+ <compilation-unit name="avg_mixed">
+ <output-dir compare="Text">avg_mixed</output-dir>
+ <expected-error>org.apache.asterix.common.exceptions.AsterixException</expected-error>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate-sql">
+ <compilation-unit name="sum_mixed">
+ <output-dir compare="Text">sum_mixed</output-dir>
+ <expected-error>org.apache.asterix.common.exceptions.AsterixException</expected-error>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate-sql">
+ <compilation-unit name="min_mixed">
+ <output-dir compare="Text">min_mixed</output-dir>
+ <expected-error>org.apache.asterix.common.exceptions.AsterixException</expected-error>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate-sql">
+ <compilation-unit name="agg_number">
+ <output-dir compare="Text">agg_number</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate-sql">
+ <compilation-unit name="issue425_min_hetero_list_1">
+ <output-dir compare="Text">issue425_min_hetero_list_1</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate-sql">
+ <compilation-unit name="issue425_min_hetero_list">
+ <output-dir compare="Text">issue425_min_hetero_list</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate-sql">
+ <compilation-unit name="issue425_sum_hetero_list_1">
+ <output-dir compare="Text">issue425_sum_hetero_list_1</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate-sql">
+ <compilation-unit name="issue425_sum_hetero_list">
+ <output-dir compare="Text">issue425_sum_hetero_list</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate-sql">
+ <compilation-unit name="query-issue400">
+ <output-dir compare="Text">query-issue400</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate-sql">
+ <compilation-unit name="issue395">
+ <output-dir compare="Text">issue395</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate-sql">
+ <compilation-unit name="issue412_0">
+ <output-dir compare="Text">issue412_0</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate-sql">
+ <compilation-unit name="issue412_1">
+ <output-dir compare="Text">issue412_1</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate-sql">
+ <compilation-unit name="avg_double">
+ <output-dir compare="Text">avg_double</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate-sql">
+ <compilation-unit name="avg_double_null">
+ <output-dir compare="Text">avg_double_null</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate-sql">
+ <compilation-unit name="avg_empty_01">
+ <output-dir compare="Text">avg_empty_01</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate-sql">
+ <compilation-unit name="avg_empty_02">
+ <output-dir compare="Text">avg_empty_02</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate-sql">
+ <compilation-unit name="avg_float">
+ <output-dir compare="Text">avg_float</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate-sql">
+ <compilation-unit name="avg_float_null">
+ <output-dir compare="Text">avg_float_null</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate-sql">
+ <compilation-unit name="avg_int16">
+ <output-dir compare="Text">avg_int16</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate-sql">
+ <compilation-unit name="avg_int16_null">
+ <output-dir compare="Text">avg_int16_null</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate-sql">
+ <compilation-unit name="avg_int32">
+ <output-dir compare="Text">avg_int32</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate-sql">
+ <compilation-unit name="avg_int32_null">
+ <output-dir compare="Text">avg_int32_null</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate-sql">
+ <compilation-unit name="avg_int64">
+ <output-dir compare="Text">avg_int64</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate-sql">
+ <compilation-unit name="avg_int64_null">
+ <output-dir compare="Text">avg_int64_null</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate-sql">
+ <compilation-unit name="avg_int8">
+ <output-dir compare="Text">avg_int8</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate-sql">
+ <compilation-unit name="avg_int8_null">
+ <output-dir compare="Text">avg_int8_null</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate-sql">
+ <compilation-unit name="count_01">
+ <output-dir compare="Text">count_01</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate-sql">
+ <compilation-unit name="count_empty_01">
+ <output-dir compare="Text">count_empty_01</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate-sql">
+ <compilation-unit name="count_empty_02">
+ <output-dir compare="Text">count_empty_02</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate-sql">
+ <compilation-unit name="count_null">
+ <output-dir compare="Text">count_null</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate-sql">
+ <compilation-unit name="max_empty_01">
+ <output-dir compare="Text">max_empty_01</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate-sql">
+ <compilation-unit name="max_empty_02">
+ <output-dir compare="Text">max_empty_02</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate-sql">
+ <compilation-unit name="min_empty_01">
+ <output-dir compare="Text">min_empty_01</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate-sql">
+ <compilation-unit name="min_empty_02">
+ <output-dir compare="Text">min_empty_02</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate-sql">
+ <compilation-unit name="scalar_avg">
+ <output-dir compare="Text">scalar_avg</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate-sql">
+ <compilation-unit name="scalar_avg_empty">
+ <output-dir compare="Text">scalar_avg_empty</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate-sql">
+ <compilation-unit name="scalar_avg_null">
+ <output-dir compare="Text">scalar_avg_null</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate-sql">
+ <compilation-unit name="scalar_count">
+ <output-dir compare="Text">scalar_count</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate-sql">
+ <compilation-unit name="scalar_count_empty">
+ <output-dir compare="Text">scalar_count_empty</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate-sql">
+ <compilation-unit name="scalar_count_null">
+ <output-dir compare="Text">scalar_count_null</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate-sql">
+ <compilation-unit name="scalar_max">
+ <output-dir compare="Text">scalar_max</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate-sql">
+ <compilation-unit name="scalar_max_empty">
+ <output-dir compare="Text">scalar_max_empty</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate-sql">
+ <compilation-unit name="scalar_max_null">
+ <output-dir compare="Text">scalar_max_null</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate-sql">
+ <compilation-unit name="scalar_min">
+ <output-dir compare="Text">scalar_min</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate-sql">
+ <compilation-unit name="scalar_min_empty">
+ <output-dir compare="Text">scalar_min_empty</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate-sql">
+ <compilation-unit name="scalar_min_null">
+ <output-dir compare="Text">scalar_min_null</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate-sql">
+ <compilation-unit name="scalar_sum">
+ <output-dir compare="Text">scalar_sum</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate-sql">
+ <compilation-unit name="scalar_sum_empty">
+ <output-dir compare="Text">scalar_sum_empty</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate-sql">
+ <compilation-unit name="scalar_sum_null">
+ <output-dir compare="Text">scalar_sum_null</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate-sql">
+ <compilation-unit name="sum_double">
+ <output-dir compare="Text">sum_double</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate-sql">
+ <compilation-unit name="sum_double_null">
+ <output-dir compare="Text">sum_double_null</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate-sql">
+ <compilation-unit name="sum_empty_01">
+ <output-dir compare="Text">sum_empty_01</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate-sql">
+ <compilation-unit name="sum_empty_02">
+ <output-dir compare="Text">sum_empty_02</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate-sql">
+ <compilation-unit name="sum_float">
+ <output-dir compare="Text">sum_float</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate-sql">
+ <compilation-unit name="sum_float_null">
+ <output-dir compare="Text">sum_float_null</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate-sql">
+ <compilation-unit name="sum_int16">
+ <output-dir compare="Text">sum_int16</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate-sql">
+ <compilation-unit name="sum_int16_null">
+ <output-dir compare="Text">sum_int16_null</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate-sql">
+ <compilation-unit name="sum_int32">
+ <output-dir compare="Text">sum_int32</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate-sql">
+ <compilation-unit name="sum_int32_null">
+ <output-dir compare="Text">sum_int32_null</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate-sql">
+ <compilation-unit name="sum_int64">
+ <output-dir compare="Text">sum_int64</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate-sql">
+ <compilation-unit name="sum_int64_null">
+ <output-dir compare="Text">sum_int64_null</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate-sql">
+ <compilation-unit name="sum_int8">
+ <output-dir compare="Text">sum_int8</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate-sql">
+ <compilation-unit name="sum_int8_null">
+ <output-dir compare="Text">sum_int8_null</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate-sql">
+ <compilation-unit name="sum_null-with-pred">
+ <output-dir compare="Text">sum_null-with-pred</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="aggregate-sql">
+ <compilation-unit name="sum_numeric_null">
+ <output-dir compare="Text">sum_numeric_null</output-dir>
+ </compilation-unit>
+ </test-case>
+ </test-group>
+ <test-group name="boolean">
+ <test-case FilePath="boolean">
+ <compilation-unit name="and_01">
+ <output-dir compare="Text">and_01</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="boolean">
+ <compilation-unit name="and_null">
+ <output-dir compare="Text">and_null</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="boolean">
+ <compilation-unit name="and_null_false">
+ <output-dir compare="Text">and_null_false</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="boolean">
+ <compilation-unit name="not_01">
+ <output-dir compare="Text">not_01</output-dir>
+ </compilation-unit>
+ </test-case>
+ </test-group>
+ <test-group name="comparison">
+ <test-case FilePath="comparison">
+ <compilation-unit name="year_month_duration_order">
+ <output-dir compare="Text">year_month_duration_order</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="comparison">
+ <compilation-unit name="datetime_order">
+ <output-dir compare="Text">datetime_order</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="comparison">
+ <compilation-unit name="datetime_range">
+ <output-dir compare="Text">datetime_range</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="comparison">
+ <compilation-unit name="datetime_tzeq">
+ <output-dir compare="Text">datetime_tzeq</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="comparison">
+ <compilation-unit name="double">
+ <output-dir compare="Text">double</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="comparison">
+ <compilation-unit name="double_gte_01">
+ <output-dir compare="Text">double_gte_01</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="comparison">
+ <compilation-unit name="double_null">
+ <output-dir compare="Text">double_null</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="comparison">
+ <compilation-unit name="eq_01">
+ <output-dir compare="Text">eq_01</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="comparison">
+ <compilation-unit name="float">
+ <output-dir compare="Text">float</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="comparison">
+ <compilation-unit name="float_null">
+ <output-dir compare="Text">float_null</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="comparison">
+ <compilation-unit name="gt_01">
+ <output-dir compare="Text">gt_01</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="comparison">
+ <compilation-unit name="gte_01">
+ <output-dir compare="Text">gte_01</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="comparison">
+ <compilation-unit name="int16">
+ <output-dir compare="Text">int16</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="comparison">
+ <compilation-unit name="int16_null">
+ <output-dir compare="Text">int16_null</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="comparison">
+ <compilation-unit name="int32">
+ <output-dir compare="Text">int32</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="comparison">
+ <compilation-unit name="int32_null">
+ <output-dir compare="Text">int32_null</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="comparison">
+ <compilation-unit name="int64">
+ <output-dir compare="Text">int64</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="comparison">
+ <compilation-unit name="int64_null">
+ <output-dir compare="Text">int64_null</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="comparison">
+ <compilation-unit name="int8">
+ <output-dir compare="Text">int8</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="comparison">
+ <compilation-unit name="int8_null">
+ <output-dir compare="Text">int8_null</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="comparison">
+ <compilation-unit name="lt_01">
+ <output-dir compare="Text">lt_01</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="comparison">
+ <compilation-unit name="lte_01">
+ <output-dir compare="Text">lte_01</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="comparison">
+ <compilation-unit name="neq_01">
+ <output-dir compare="Text">neq_01</output-dir>
+ </compilation-unit>
+ </test-case>
+ <!--
+ <test-case FilePath="comparison">
+ <compilation-unit name="numeric-comparison_01">
+ <output-dir compare="Text">numeric-comparison_01</output-dir>
+ </compilation-unit>
+ </test-case>
+ -->
+ <test-case FilePath="comparison">
+ <compilation-unit name="string">
+ <output-dir compare="Text">string</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="comparison">
+ <compilation-unit name="string_null">
+ <output-dir compare="Text">string_null</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="comparison">
+ <compilation-unit name="issue363_equality">
+ <output-dir compare="Text">issue363_equality</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="comparison">
+ <compilation-unit name="issue363_inequality_duration">
+ <output-dir compare="Text">issue363_inequality_duration</output-dir>
+ <expected-error>org.apache.asterix.common.exceptions.AsterixException</expected-error>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="comparison">
+ <compilation-unit name="issue363_inequality_interval">
+ <output-dir compare="Text">issue363_inequality_interval</output-dir>
+ <expected-error>org.apache.asterix.common.exceptions.AsterixException</expected-error>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="comparison">
+ <compilation-unit name="issue363_inequality_point">
+ <output-dir compare="Text">issue363_inequality_point</output-dir>
+ <expected-error>org.apache.asterix.common.exceptions.AsterixException</expected-error>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="comparison">
+ <compilation-unit name="issue363_inequality_line">
+ <output-dir compare="Text">issue363_inequality_line</output-dir>
+ <expected-error>org.apache.asterix.common.exceptions.AsterixException</expected-error>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="comparison">
+ <compilation-unit name="issue363_inequality_polygon">
+ <output-dir compare="Text">issue363_inequality_polygon</output-dir>
+ <expected-error>org.apache.asterix.common.exceptions.AsterixException</expected-error>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="comparison">
+ <compilation-unit name="issue363_inequality_rectangle">
+ <output-dir compare="Text">issue363_inequality_rectangle</output-dir>
+ <expected-error>org.apache.asterix.common.exceptions.AsterixException</expected-error>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="comparison">
+ <compilation-unit name="issue363_inequality_circle">
+ <output-dir compare="Text">issue363_inequality_circle</output-dir>
+ <expected-error>org.apache.asterix.common.exceptions.AsterixException</expected-error>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="comparison">
+ <compilation-unit name="binary">
+ <output-dir compare="Text">binary</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="comparison">
+ <compilation-unit name="binary_null">
+ <output-dir compare="Text">binary_null</output-dir>
+ </compilation-unit>
+ </test-case>
+ </test-group>
+ <test-group name="constructor">
+ <test-case FilePath="constructor">
+ <compilation-unit name="binary_01">
+ <output-dir compare="Text">binary_01</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="constructor">
+ <compilation-unit name="add-null">
+ <output-dir compare="Text">add-null</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="constructor">
+ <compilation-unit name="boolean_01">
+ <output-dir compare="Text">boolean_01</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="constructor">
+ <compilation-unit name="circle_01">
+ <output-dir compare="Text">circle_01</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="constructor">
+ <compilation-unit name="date_01">
+ <output-dir compare="Text">date_01</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="constructor">
+ <compilation-unit name="datetime_01">
+ <output-dir compare="Text">datetime_01</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="constructor">
+ <compilation-unit name="double_01">
+ <output-dir compare="Text">double_01</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="constructor">
+ <compilation-unit name="duration_01">
+ <output-dir compare="Text">duration_01</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="constructor">
+ <compilation-unit name="duration_02">
+ <output-dir compare="Text">duration_02</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="constructor">
+ <compilation-unit name="float_01">
+ <output-dir compare="Text">float_01</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="constructor">
+ <compilation-unit name="int_01">
+ <output-dir compare="Text">int_01</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="constructor">
+ <compilation-unit name="interval">
+ <output-dir compare="Text">interval</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="constructor">
+ <compilation-unit name="line_01">
+ <output-dir compare="Text">line_01</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="constructor">
+ <compilation-unit name="rectangle_01">
+ <output-dir compare="Text">rectangle_01</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="constructor">
+ <compilation-unit name="point_01">
+ <output-dir compare="Text">point_01</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="constructor">
+ <compilation-unit name="polygon_01">
+ <output-dir compare="Text">polygon_01</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="constructor">
+ <compilation-unit name="primitive-01">
+ <output-dir compare="Text">primitive-01</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="constructor">
+ <compilation-unit name="primitive-02">
+ <output-dir compare="Text">primitive-02</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="constructor">
+ <compilation-unit name="primitive-03">
+ <output-dir compare="Text">primitive-03</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="constructor">
+ <compilation-unit name="primitive-04">
+ <output-dir compare="Text">primitive-04</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="constructor">
+ <compilation-unit name="string_01">
+ <output-dir compare="Text">string_01</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="constructor">
+ <compilation-unit name="time_01">
+ <output-dir compare="Text">time_01</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="constructor">
+ <compilation-unit name="uuid_01">
+ <output-dir compare="Text">uuid_01</output-dir>
+ </compilation-unit>
+ </test-case>
+ </test-group>
+ <test-group name="custord">
+ <!--
+ <test-case FilePath="custord">
+ <compilation-unit name="co">
+ <output-dir compare="Text">co</output-dir>
+ </compilation-unit>
+ </test-case>
+ -->
+ <test-case FilePath="custord">
+ <compilation-unit name="customer_q_01">
+ <output-dir compare="Text">customer_q_01</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="custord">
+ <compilation-unit name="customer_q_02">
+ <output-dir compare="Text">customer_q_02</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="custord">
+ <compilation-unit name="customer_q_03">
+ <output-dir compare="Text">customer_q_03</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="custord">
+ <compilation-unit name="customer_q_04">
+ <output-dir compare="Text">customer_q_04</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="custord">
+ <compilation-unit name="customer_q_05">
+ <output-dir compare="Text">customer_q_05</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="custord">
+ <compilation-unit name="customer_q_06">
+ <output-dir compare="Text">customer_q_06</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="custord">
+ <compilation-unit name="customer_q_07">
+ <output-dir compare="Text">customer_q_07</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="custord">
+ <compilation-unit name="customer_q_08">
+ <output-dir compare="Text">customer_q_08</output-dir>
+ </compilation-unit>
+ </test-case>
+ <!--
+ <test-case FilePath="custord">
+ <compilation-unit name="denorm-cust-order_01">
+ <output-dir compare="Text">denorm-cust-order_01</output-dir>
+ </compilation-unit>
+ </test-case>
+ -->
+ <test-case FilePath="custord">
+ <compilation-unit name="denorm-cust-order_02">
+ <output-dir compare="Text">denorm-cust-order_02</output-dir>
+ </compilation-unit>
+ </test-case>
+ <!--
+ <test-case FilePath="custord">
+ <compilation-unit name="denorm-cust-order_03">
+ <output-dir compare="Text">denorm-cust-order_03</output-dir>
+ </compilation-unit>
+ </test-case>
+ -->
+ <!--
+ <test-case FilePath="custord">
+ <compilation-unit name="freq-clerk">
+ <output-dir compare="Text">freq-clerk</output-dir>
+ </compilation-unit>
+ </test-case>
+ -->
+ <test-case FilePath="custord">
+ <compilation-unit name="join_q_01">
+ <output-dir compare="Text">join_q_01</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="custord">
+ <compilation-unit name="join_q_02">
+ <output-dir compare="Text">join_q_02</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="custord">
+ <compilation-unit name="join_q_03">
+ <output-dir compare="Text">join_q_03</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="custord">
+ <compilation-unit name="join_q_04">
+ <output-dir compare="Text">join_q_04</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="custord">
+ <compilation-unit name="load-test">
+ <output-dir compare="Text">load-test</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="custord">
+ <compilation-unit name="order_q_01">
+ <output-dir compare="Text">order_q_01</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="custord">
+ <compilation-unit name="order_q_02">
+ <output-dir compare="Text">order_q_02</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="custord">
+ <compilation-unit name="order_q_03">
+ <output-dir compare="Text">order_q_03</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="custord">
+ <compilation-unit name="order_q_04">
+ <output-dir compare="Text">order_q_04</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="custord">
+ <compilation-unit name="order_q_05">
+ <output-dir compare="Text">order_q_05</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="custord">
+ <compilation-unit name="order_q_06">
+ <output-dir compare="Text">order_q_06</output-dir>
+ </compilation-unit>
+ </test-case>
+ </test-group>
+ <test-group name="dapd">
+ <test-case FilePath="dapd">
+ <compilation-unit name="q1">
+ <output-dir compare="Text">q1</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="dapd">
+ <compilation-unit name="q2">
+ <output-dir compare="Text">q2</output-dir>
+ </compilation-unit>
+ </test-case>
+ <!--
+ <test-case FilePath="dapd">
+ <compilation-unit name="q3">
+ <output-dir compare="Text">q3</output-dir>
+ </compilation-unit>
+ </test-case>
+ -->
+ </test-group>
+ <test-group name="dml">
+ <test-case FilePath="dml">
+ <compilation-unit name="compact-dataset-and-its-indexes">
+ <output-dir compare="Text">compact-dataset-and-its-indexes</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="dml">
+ <compilation-unit name="using-constant-merge-policy">
+ <output-dir compare="Text">using-constant-merge-policy</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="dml">
+ <compilation-unit name="using-prefix-merge-policy">
+ <output-dir compare="Text">using-prefix-merge-policy</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="dml">
+ <compilation-unit name="using-correlated-prefix-merge-policy">
+ <output-dir compare="Text">using-correlated-prefix-merge-policy</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="dml">
+ <compilation-unit name="using-no-merge-policy">
+ <output-dir compare="Text">using-no-merge-policy</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="dml">
+ <compilation-unit name="query-issue382">
+ <output-dir compare="Text">query-issue382</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="dml">
+ <compilation-unit name="query-issue433">
+ <output-dir compare="Text">query-issue433</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="dml">
+ <compilation-unit name="query-issue288">
+ <output-dir compare="Text">query-issue288</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="dml">
+ <compilation-unit name="query-issue205">
+ <output-dir compare="Text">query-issue205</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="dml">
+ <compilation-unit name="delete-from-loaded-dataset-with-index">
+ <output-dir compare="Text">delete-from-loaded-dataset-with-index</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="dml">
+ <compilation-unit name="delete-from-loaded-dataset">
+ <output-dir compare="Text">delete-from-loaded-dataset</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="dml">
+ <compilation-unit name="delete-syntax-change">
+ <output-dir compare="Text">delete-syntax-change</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="dml">
+ <compilation-unit name="drop-empty-secondary-indexes">
+ <output-dir compare="Text">drop-empty-secondary-indexes</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="dml">
+ <compilation-unit name="drop-index">
+ <output-dir compare="Text">drop-index</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="dml">
+ <compilation-unit name="create-drop-cltype">
+ <output-dir compare="Text">create-drop-cltype</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="dml">
+ <compilation-unit name="create-drop-opntype">
+ <output-dir compare="Text">create-drop-opntype</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="dml">
+ <compilation-unit name="empty-load-with-index">
+ <output-dir compare="Text">empty-load-with-index</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="dml">
+ <compilation-unit name="insert-into-empty-dataset">
+ <output-dir compare="Text">insert-into-empty-dataset</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="dml">
+ <compilation-unit name="insert-into-empty-dataset-with-index">
+ <output-dir compare="Text">insert-into-empty-dataset-with-index</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="dml">
+ <compilation-unit name="insert-syntax">
+ <output-dir compare="Text">insert-syntax</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="dml">
+ <compilation-unit name="insert-and-scan-dataset">
+ <output-dir compare="Text">insert-and-scan-dataset</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="dml">
+ <compilation-unit name="insert-and-scan-dataset-with-index">
+ <output-dir compare="Text">insert-and-scan-dataset-with-index</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="dml">
+ <compilation-unit name="insert-and-scan-joined-datasets">
+ <output-dir compare="Text">insert-and-scan-joined-datasets</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="dml">
+ <compilation-unit name="insert-into-loaded-dataset-with-index_01">
+ <output-dir compare="Text">insert-into-loaded-dataset-with-index_01</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="dml">
+ <compilation-unit name="insert-into-loaded-dataset-with-index_02">
+ <output-dir compare="Text">insert-into-loaded-dataset-with-index_02</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="dml">
+ <compilation-unit name="insert-into-loaded-dataset_01">
+ <output-dir compare="Text">insert-into-loaded-dataset_01</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="dml">
+ <compilation-unit name="insert-into-loaded-dataset_02">
+ <output-dir compare="Text">insert-into-loaded-dataset_02</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="dml">
+ <compilation-unit name="insert-src-dst-01">
+ <output-dir compare="Text">insert-src-dst-01</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="dml">
+ <compilation-unit name="insert">
+ <output-dir compare="Text">insert</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="dml">
+ <compilation-unit name="insert-duplicated-keys">
+ <output-dir compare="Text">insert-duplicated-keys</output-dir>
+ <expected-error>org.apache.hyracks.storage.am.common.exceptions.TreeIndexDuplicateKeyException
+ </expected-error>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="dml">
+ <compilation-unit name="insert_less_nc">
+ <output-dir compare="Text">insert_less_nc</output-dir>
+ </compilation-unit>
+ </test-case>
+ <!--
+ <test-case FilePath="dml">
+ <compilation-unit name="load-from-hdfs">
+ <output-dir compare="Text">load-from-hdfs</output-dir>
+ </compilation-unit>
+ </test-case>
+ -->
+ <test-case FilePath="dml">
+ <compilation-unit name="insert-with-autogenerated-pk_adm_01">
+ <output-dir compare="Text">insert-with-autogenerated-pk_adm_01</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="dml">
+ <compilation-unit name="insert-with-autogenerated-pk_adm_02">
+ <output-dir compare="Text">insert-with-autogenerated-pk_adm_02</output-dir>
+ <expected-error>org.apache.asterix.runtime.operators.file.ADMDataParser.ParseException</expected-error>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="dml">
+ <compilation-unit name="insert-with-autogenerated-pk_adm_03">
+ <output-dir compare="Text">insert-with-autogenerated-pk_adm_03</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="dml">
+ <compilation-unit name="load-with-autogenerated-pk_txt_01">
+ <output-dir compare="Text">load-with-autogenerated-pk_txt_01</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="dml">
+ <compilation-unit name="load-with-autogenerated-pk_adm_01">
+ <output-dir compare="Text">load-with-autogenerated-pk_adm_01</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="dml">
+ <compilation-unit name="load-with-autogenerated-pk_adm_02">
+ <output-dir compare="Text">load-with-autogenerated-pk_adm_02</output-dir>
+ <expected-error>org.apache.asterix.runtime.operators.file.ADMDataParser.ParseException</expected-error>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="dml">
+ <compilation-unit name="load-with-autogenerated-pk_adm_03">
+ <output-dir compare="Text">load-with-autogenerated-pk_adm_03</output-dir>
+ <expected-error>org.apache.asterix.common.exceptions.AsterixException</expected-error>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="dml">
+ <compilation-unit name="load-with-autogenerated-pk_adm_04">
+ <output-dir compare="Text">load-with-autogenerated-pk_adm_04</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="dml">
+ <compilation-unit name="load-with-autogenerated-pk_csv_01">
+ <output-dir compare="Text">load-with-autogenerated-pk_csv_01</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="dml">
+ <compilation-unit name="load-with-autogenerated-pk_csv_02">
+ <output-dir compare="Text">load-with-autogenerated-pk_csv_02</output-dir>
+ <expected-error>org.apache.asterix.common.exceptions.AsterixException</expected-error>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="dml">
+ <compilation-unit name="load-with-index">
+ <output-dir compare="Text">load-with-index</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="dml">
+ <compilation-unit name="load-with-ngram-index">
+ <output-dir compare="Text">load-with-ngram-index</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="dml">
+ <compilation-unit name="load-with-rtree-index">
+ <output-dir compare="Text">load-with-rtree-index</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="dml">
+ <compilation-unit name="load-with-word-index">
+ <output-dir compare="Text">load-with-word-index</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="dml">
+ <compilation-unit name="opentype-c2o-recursive">
+ <output-dir compare="Text">opentype-c2o-recursive</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="dml">
+ <compilation-unit name="opentype-c2o">
+ <output-dir compare="Text">opentype-c2o</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="dml">
+ <compilation-unit name="opentype-closed-optional">
+ <output-dir compare="Text">opentype-closed-optional</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="dml">
+ <compilation-unit name="opentype-insert">
+ <output-dir compare="Text">opentype-insert</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="dml">
+ <compilation-unit name="opentype-insert2">
+ <output-dir compare="Text">opentype-insert2</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="dml">
+ <compilation-unit name="opentype-noexpand">
+ <output-dir compare="Text">opentype-noexpand</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="dml">
+ <compilation-unit name="opentype-o2c-recursive">
+ <output-dir compare="Text">opentype-o2c-recursive</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="dml">
+ <compilation-unit name="opentype-o2c">
+ <output-dir compare="Text">opentype-o2c</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="dml">
+ <compilation-unit name="opentype-o2o">
+ <output-dir compare="Text">opentype-o2o</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="dml">
+ <compilation-unit name="scan-delete-btree-secondary-index-nullable">
+ <output-dir compare="Text">scan-delete-btree-secondary-index-nullable</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="dml">
+ <compilation-unit name="scan-delete-rtree-secondary-index-nullable">
+ <output-dir compare="Text">scan-delete-rtree-secondary-index-nullable</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="dml">
+ <compilation-unit name="scan-delete-rtree-secondary-index">
+ <output-dir compare="Text">scan-delete-rtree-secondary-index</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="dml">
+ <compilation-unit name="scan-insert-btree-secondary-index-nullable">
+ <output-dir compare="Text">scan-insert-btree-secondary-index-nullable</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="dml">
+ <compilation-unit name="scan-insert-rtree-secondary-index-nullable">
+ <output-dir compare="Text">scan-insert-rtree-secondary-index-nullable</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="dml">
+ <compilation-unit name="scan-insert-rtree-secondary-index">
+ <output-dir compare="Text">scan-insert-rtree-secondary-index</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="dml">
+ <compilation-unit name="scan-insert-inverted-index-ngram-secondary-index">
+ <output-dir compare="Text">scan-insert-inverted-index-ngram-secondary-index</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="dml">
+ <compilation-unit name="scan-insert-inverted-index-word-secondary-index">
+ <output-dir compare="Text">scan-insert-inverted-index-word-secondary-index</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="dml">
+ <compilation-unit name="scan-insert-inverted-index-ngram-secondary-index-nullable">
+ <output-dir compare="Text">scan-insert-inverted-index-ngram-secondary-index-nullable</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="dml">
+ <compilation-unit name="scan-insert-inverted-index-word-secondary-index-nullable">
+ <output-dir compare="Text">scan-insert-inverted-index-word-secondary-index-nullable</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="dml">
+ <compilation-unit name="scan-delete-inverted-index-ngram-secondary-index">
+ <output-dir compare="Text">scan-delete-inverted-index-ngram-secondary-index</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="dml">
+ <compilation-unit name="scan-delete-inverted-index-word-secondary-index">
+ <output-dir compare="Text">scan-delete-inverted-index-word-secondary-index</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="dml">
+ <compilation-unit name="scan-delete-inverted-index-ngram-secondary-index-nullable">
+ <output-dir compare="Text">scan-delete-inverted-index-ngram-secondary-index-nullable</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="dml">
+ <compilation-unit name="scan-delete-inverted-index-word-secondary-index-nullable">
+ <output-dir compare="Text">scan-delete-inverted-index-word-secondary-index-nullable</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="dml">
+ <compilation-unit name="load-with-index-open">
+ <output-dir compare="Text">load-with-index-open</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="dml">
+ <compilation-unit name="load-with-ngram-index-open">
+ <output-dir compare="Text">load-with-ngram-index-open</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="dml">
+ <compilation-unit name="load-with-rtree-index-open">
+ <output-dir compare="Text">load-with-rtree-index-open</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="dml">
+ <compilation-unit name="load-with-word-index-open">
+ <output-dir compare="Text">load-with-word-index-open</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="dml">
+ <compilation-unit name="scan-delete-btree-secondary-index-open">
+ <output-dir compare="Text">scan-delete-btree-secondary-index-open</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="dml">
+ <compilation-unit name="scan-delete-inverted-index-ngram-secondary-index-open">
+ <output-dir compare="Text">scan-delete-inverted-index-ngram-secondary-index-open</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="dml">
+ <compilation-unit name="scan-delete-inverted-index-word-secondary-index-open">
+ <output-dir compare="Text">scan-delete-inverted-index-word-secondary-index-open</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="dml">
+ <compilation-unit name="scan-delete-rtree-secondary-index-open">
+ <output-dir compare="Text">scan-delete-rtree-secondary-index-open</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="dml">
+ <compilation-unit name="scan-insert-btree-secondary-index-open">
+ <output-dir compare="Text">scan-insert-btree-secondary-index-open</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="dml">
+ <compilation-unit name="scan-insert-inverted-index-ngram-secondary-index-open">
+ <output-dir compare="Text">scan-insert-inverted-index-ngram-secondary-index-open</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="dml">
+ <compilation-unit name="scan-insert-inverted-index-word-secondary-index-open">
+ <output-dir compare="Text">scan-insert-inverted-index-word-secondary-index-open</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="dml">
+ <compilation-unit name="scan-insert-rtree-secondary-index-open">
+ <output-dir compare="Text">scan-insert-rtree-secondary-index-open</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="dml">
+ <compilation-unit name="delete-multi-statement">
+ <output-dir compare="Text">delete-multi-statement</output-dir>
+ </compilation-unit>
+ </test-case>
+ </test-group>
+ <test-group name="employee">
+ <test-case FilePath="employee">
+ <compilation-unit name="q_01">
+ <output-dir compare="Text">q_01</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="employee">
+ <compilation-unit name="q_02">
+ <output-dir compare="Text">q_02</output-dir>
+ </compilation-unit>
+ </test-case>
+ </test-group>
+ <test-group name="failure">
+ <!--
+ <test-case FilePath="failure">
+ <compilation-unit name="q1_pricing_summary_report_failure">
+ <output-dir compare="Text">q1_pricing_summary_report_failure</output-dir>
+ </compilation-unit>
+ </test-case>
+ -->
+ </test-group>
+ <!--
+ <test-group name="flwor">
+ <test-case FilePath="flwor">
+ <compilation-unit name="for01">
+ <output-dir compare="Text">for01</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="flwor">
+ <compilation-unit name="for02">
+ <output-dir compare="Text">for02</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="flwor">
+ <compilation-unit name="for03">
+ <output-dir compare="Text">for03</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="flwor">
+ <compilation-unit name="for04">
+ <output-dir compare="Text">for04</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="flwor">
+ <compilation-unit name="for05">
+ <output-dir compare="Text">for05</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="flwor">
+ <compilation-unit name="for06">
+ <output-dir compare="Text">for06</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="flwor">
+ <compilation-unit name="for07">
+ <output-dir compare="Text">for07</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="flwor">
+ <compilation-unit name="for08">
+ <output-dir compare="Text">for08</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="flwor">
+ <compilation-unit name="for09">
+ <output-dir compare="Text">for09</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="flwor">
+ <compilation-unit name="for10">
+ <output-dir compare="Text">for10</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="flwor">
+ <compilation-unit name="for11">
+ <output-dir compare="Text">for11</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="flwor">
+ <compilation-unit name="for12">
+ <output-dir compare="Text">for12</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="flwor">
+ <compilation-unit name="for13">
+ <output-dir compare="Text">for13</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="flwor">
+ <compilation-unit name="for14">
+ <output-dir compare="Text">for14</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="flwor">
+ <compilation-unit name="for15">
+ <output-dir compare="Text">for15</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="flwor">
+ <compilation-unit name="for16">
+ <output-dir compare="Text">for16</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="flwor">
+ <compilation-unit name="for17">
+ <output-dir compare="Text">for17</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="flwor">
+ <compilation-unit name="for18">
+ <output-dir compare="Text">for18</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="flwor">
+ <compilation-unit name="for19">
+ <output-dir compare="Text">for19</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="flwor">
+ <compilation-unit name="grpby01">
+ <output-dir compare="Text">grpby01</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="flwor">
+ <compilation-unit name="grpby02">
+ <output-dir compare="Text">grpby02</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="flwor">
+ <compilation-unit name="let01">
+ <output-dir compare="Text">let01</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="flwor">
+ <compilation-unit name="let02">
+ <output-dir compare="Text">let02</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="flwor">
+ <compilation-unit name="let03">
+ <output-dir compare="Text">let03</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="flwor">
+ <compilation-unit name="let04">
+ <output-dir compare="Text">let04</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="flwor">
+ <compilation-unit name="let05">
+ <output-dir compare="Text">let05</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="flwor">
+ <compilation-unit name="let06">
+ <output-dir compare="Text">let06</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="flwor">
+ <compilation-unit name="let07">
+ <output-dir compare="Text">let07</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="flwor">
+ <compilation-unit name="let08">
+ <output-dir compare="Text">let08</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="flwor">
+ <compilation-unit name="let09">
+ <output-dir compare="Text">let09</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="flwor">
+ <compilation-unit name="let10">
+ <output-dir compare="Text">let10</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="flwor">
+ <compilation-unit name="let11">
+ <output-dir compare="Text">let11</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="flwor">
+ <compilation-unit name="let12">
+ <output-dir compare="Text">let12</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="flwor">
+ <compilation-unit name="let13">
+ <output-dir compare="Text">let13</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="flwor">
+ <compilation-unit name="let14">
+ <output-dir compare="Text">let14</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="flwor">
+ <compilation-unit name="let15">
+ <output-dir compare="Text">let15</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="flwor">
+ <compilation-unit name="let16">
+ <output-dir compare="Text">let16</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="flwor">
+ <compilation-unit name="let17">
+ <output-dir compare="Text">let17</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="flwor">
+ <compilation-unit name="let18">
+ <output-dir compare="Text">let18</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="flwor">
+ <compilation-unit name="let19">
+ <output-dir compare="Text">let19</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="flwor">
+ <compilation-unit name="let20">
+ <output-dir compare="Text">let20</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="flwor">
+ <compilation-unit name="let21">
+ <output-dir compare="Text">let21</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="flwor">
+ <compilation-unit name="let22">
+ <output-dir compare="Text">let22</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="flwor">
+ <compilation-unit name="let23">
+ <output-dir compare="Text">let23</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="flwor">
+ <compilation-unit name="let24">
+ <output-dir compare="Text">let24</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="flwor">
+ <compilation-unit name="let25">
+ <output-dir compare="Text">let25</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="flwor">
+ <compilation-unit name="let26">
+ <output-dir compare="Text">let26</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="flwor">
+ <compilation-unit name="let27">
+ <output-dir compare="Text">let27</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="flwor">
+ <compilation-unit name="let28">
+ <output-dir compare="Text">let28</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="flwor">
+ <compilation-unit name="let29">
+ <output-dir compare="Text">let29</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="flwor">
+ <compilation-unit name="let30">
+ <output-dir compare="Text">let30</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="flwor">
+ <compilation-unit name="let31">
+ <output-dir compare="Text">let31</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="flwor">
+ <compilation-unit name="let32">
+ <output-dir compare="Text">let32</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="flwor">
+ <compilation-unit name="order-by-01">
+ <output-dir compare="Text">order-by-01</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="flwor">
+ <compilation-unit name="order-by-02">
+ <output-dir compare="Text">order-by-02</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="flwor">
+ <compilation-unit name="order-by-03">
+ <output-dir compare="Text">order-by-03</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="flwor">
+ <compilation-unit name="order-by-04">
+ <output-dir compare="Text">order-by-04</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="flwor">
+ <compilation-unit name="order-by-05">
+ <output-dir compare="Text">order-by-05</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="flwor">
+ <compilation-unit name="order-by-06">
+ <output-dir compare="Text">order-by-06</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="flwor">
+ <compilation-unit name="order-by-07">
+ <output-dir compare="Text">order-by-07</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="flwor">
+ <compilation-unit name="order-by-08">
+ <output-dir compare="Text">order-by-08</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="flwor">
+ <compilation-unit name="order-by-09">
+ <output-dir compare="Text">order-by-09</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="flwor">
+ <compilation-unit name="order-by-10">
+ <output-dir compare="Text">order-by-10</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="flwor">
+ <compilation-unit name="order-by-11">
+ <output-dir compare="Text">order-by-11</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="flwor">
+ <compilation-unit name="order-by-12">
+ <output-dir compare="Text">order-by-12</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="flwor">
+ <compilation-unit name="ret-01">
+ <output-dir compare="Text">ret-01</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="flwor">
+ <compilation-unit name="ret-02">
+ <output-dir compare="Text">ret-02</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="flwor">
+ <compilation-unit name="ret-03">
+ <output-dir compare="Text">ret-03</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="flwor">
+ <compilation-unit name="ret-04">
+ <output-dir compare="Text">ret-04</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="flwor">
+ <compilation-unit name="ret-05">
+ <output-dir compare="Text">ret-05</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="flwor">
+ <compilation-unit name="ret-06">
+ <output-dir compare="Text">ret-06</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="flwor">
+ <compilation-unit name="ret-07">
+ <output-dir compare="Text">ret-07</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="flwor">
+ <compilation-unit name="ret-08">
+ <output-dir compare="Text">ret-08</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="flwor">
+ <compilation-unit name="ret-09">
+ <output-dir compare="Text">ret-09</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="flwor">
+ <compilation-unit name="ret-10">
+ <output-dir compare="Text">ret-10</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="flwor">
+ <compilation-unit name="ret-11">
+ <output-dir compare="Text">ret-11</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="flwor">
+ <compilation-unit name="ret-12">
+ <output-dir compare="Text">ret-12</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="flwor">
+ <compilation-unit name="ret-13">
+ <output-dir compare="Text">ret-13</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="flwor">
+ <compilation-unit name="ret-14">
+ <output-dir compare="Text">ret-14</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="flwor">
+ <compilation-unit name="ret-15">
+ <output-dir compare="Text">ret-15</output-dir>
+ </compilation-unit>
+ </test-case>
+ </test-group>
+ <test-group name="writers">
+ <test-case FilePath="writers">
+ <compilation-unit name="print_01">
+ <output-dir compare="Text">print_01</output-dir>
+ </test-case>
+ <test-case FilePath="flwor">
+ <compilation-unit name="ret-16">
+ <output-dir compare="Text">ret-16</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="flwor">
+ <compilation-unit name="ret-17">
+ <output-dir compare="Text">ret-17</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="flwor">
+ <compilation-unit name="ret-18">
+ <output-dir compare="Text">ret-18</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="flwor">
+ <compilation-unit name="ret-19">
+ <output-dir compare="Text">ret-19</output-dir>
+ </compilation-unit>
+ </test-case>
+ </test-group>
+ -->
+ <!-- <test-group name="graph">
+ <test-case FilePath="graph">
+ <compilation-unit name="pregel-q01">
+ <output-dir compare="Text">pregel-q01</output-dir>
+ </compilation-unit>
+ <test-case FilePath="graph">
+ <compilation-unit name="pregel-q02">
+ <output-dir compare="Text">pregel-q02</output-dir>
+ </compilation-unit>
+ <test-case FilePath="graph">
+ <compilation-unit name="pregel-q03">
+ <output-dir compare="Text">pregel-q03</output-dir>
+ </compilation-unit>
+ </test-case>
+ </test-group> -->
+ <test-group name="index-join">
+ <test-case FilePath="index-join">
+ <compilation-unit name="btree-index-nested-loop-join">
+ <output-dir compare="Text">btree-index-nested-loop-join</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="index-join">
+ <compilation-unit name="btree-primary-equi-join">
+ <output-dir compare="Text">btree-primary-equi-join</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="index-join">
+ <compilation-unit name="btree-secondary-equi-join_01">
+ <output-dir compare="Text">btree-secondary-equi-join_01</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="index-join">
+ <compilation-unit name="btree-secondary-equi-join_02">
+ <output-dir compare="Text">btree-secondary-equi-join_02</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="index-join">
+ <compilation-unit name="btree-secondary-equi-join_03">
+ <output-dir compare="Text">btree-secondary-equi-join_03</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="index-join">
+ <compilation-unit name="rtree-spatial-intersect-point">
+ <output-dir compare="Text">rtree-spatial-intersect-point</output-dir>
+ </compilation-unit>
+ </test-case>
+ </test-group>
+ <test-group name="index-selection">
+ <test-case FilePath="index-selection">
+ <compilation-unit name="btree-index-composite-key">
+ <output-dir compare="Text">btree-index-composite-key</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="index-selection">
+ <compilation-unit name="btree-index-composite-key-mixed-intervals">
+ <output-dir compare="Text">btree-index-composite-key-mixed-intervals</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="index-selection">
+ <compilation-unit name="btree-index-rewrite-multiple">
+ <output-dir compare="Text">btree-index-rewrite-multiple</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="index-selection">
+ <compilation-unit name="cust-index-age-nullable">
+ <output-dir compare="Text">cust-index-age-nullable</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="index-selection">
+ <compilation-unit name="inverted-index-ngram-contains">
+ <output-dir compare="Text">inverted-index-ngram-contains</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="index-selection">
+ <compilation-unit name="inverted-index-ngram-edit-distance-panic">
+ <output-dir compare="Text">inverted-index-ngram-edit-distance-panic</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="index-selection">
+ <compilation-unit name="inverted-index-ngram-edit-distance">
+ <output-dir compare="Text">inverted-index-ngram-edit-distance</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="index-selection">
+ <compilation-unit name="inverted-index-ngram-edit-distance-word-tokens">
+ <output-dir compare="Text">inverted-index-ngram-edit-distance-word-tokens</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="index-selection">
+ <compilation-unit name="inverted-index-ngram-jaccard">
+ <output-dir compare="Text">inverted-index-ngram-jaccard</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="index-selection">
+ <compilation-unit name="inverted-index-ngram-edit-distance-contains">
+ <output-dir compare="Text">inverted-index-ngram-edit-distance-contains</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="index-selection">
+ <compilation-unit name="inverted-index-olist-edit-distance-panic">
+ <output-dir compare="Text">inverted-index-olist-edit-distance-panic</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="index-selection">
+ <compilation-unit name="inverted-index-olist-edit-distance">
+ <output-dir compare="Text">inverted-index-olist-edit-distance</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="index-selection">
+ <compilation-unit name="inverted-index-olist-jaccard">
+ <output-dir compare="Text">inverted-index-olist-jaccard</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="index-selection">
+ <compilation-unit name="inverted-index-ulist-jaccard">
+ <output-dir compare="Text">inverted-index-ulist-jaccard</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="index-selection">
+ <compilation-unit name="inverted-index-word-contains">
+ <output-dir compare="Text">inverted-index-word-contains</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="index-selection">
+ <compilation-unit name="inverted-index-word-jaccard">
+ <output-dir compare="Text">inverted-index-word-jaccard</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="index-selection">
+ <compilation-unit name="orders-index-custkey-conjunctive-open">
+ <output-dir compare="Text">orders-index-custkey-conjunctive-open</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="index-selection">
+ <compilation-unit name="orders-index-custkey-conjunctive">
+ <output-dir compare="Text">orders-index-custkey-conjunctive</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="index-selection">
+ <compilation-unit name="orders-index-custkey-open">
+ <output-dir compare="Text">orders-index-custkey-open</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="index-selection">
+ <compilation-unit name="orders-index-custkey">
+ <output-dir compare="Text">orders-index-custkey</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="index-selection">
+ <compilation-unit name="range-search-open">
+ <output-dir compare="Text">range-search-open</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="index-selection">
+ <compilation-unit name="range-search">
+ <output-dir compare="Text">range-search</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="index-selection">
+ <compilation-unit name="rtree-secondary-index-nullable">
+ <output-dir compare="Text">rtree-secondary-index-nullable</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="index-selection">
+ <compilation-unit name="rtree-secondary-index-open">
+ <output-dir compare="Text">rtree-secondary-index-open</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="index-selection">
+ <compilation-unit name="rtree-secondary-index">
+ <output-dir compare="Text">rtree-secondary-index</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="index-selection">
+ <compilation-unit name="rtree-secondary-index-circular-query">
+ <output-dir compare="Text">rtree-secondary-index-circular-query</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="index-selection">
+ <compilation-unit name="disjunctive-predicate-1">
+ <output-dir compare="Text">disjunctive-predicate-1</output-dir>
+ </compilation-unit>
+ </test-case>
+ </test-group>
+ <test-group name="inverted-index-join">
+ <test-case FilePath="inverted-index-join">
+ <compilation-unit name="ngram-edit-distance">
+ <output-dir compare="Text">ngram-edit-distance</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="inverted-index-join">
+ <compilation-unit name="ngram-edit-distance-inline">
+ <output-dir compare="Text">ngram-edit-distance-inline</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="inverted-index-join">
+ <compilation-unit name="ngram-jaccard">
+ <output-dir compare="Text">ngram-jaccard</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="inverted-index-join">
+ <compilation-unit name="ngram-jaccard-inline">
+ <output-dir compare="Text">ngram-jaccard-inline</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="inverted-index-join">
+ <compilation-unit name="olist-edit-distance">
+ <output-dir compare="Text">olist-edit-distance</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="inverted-index-join">
+ <compilation-unit name="olist-edit-distance-inline">
+ <output-dir compare="Text">olist-edit-distance-inline</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="inverted-index-join">
+ <compilation-unit name="olist-jaccard">
+ <output-dir compare="Text">olist-jaccard</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="inverted-index-join">
+ <compilation-unit name="olist-jaccard-inline">
+ <output-dir compare="Text">olist-jaccard-inline</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="inverted-index-join">
+ <compilation-unit name="ulist-jaccard">
+ <output-dir compare="Text">ulist-jaccard</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="inverted-index-join">
+ <compilation-unit name="ulist-jaccard-inline">
+ <output-dir compare="Text">ulist-jaccard-inline</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="inverted-index-join">
+ <compilation-unit name="word-jaccard">
+ <output-dir compare="Text">word-jaccard</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="inverted-index-join">
+ <compilation-unit name="word-jaccard-inline">
+ <output-dir compare="Text">word-jaccard-inline</output-dir>
+ </compilation-unit>
+ </test-case>
+ </test-group>
+ <test-group name="inverted-index-join-noeqjoin">
+ <test-case FilePath="inverted-index-join-noeqjoin">
+ <compilation-unit name="ngram-edit-distance">
+ <output-dir compare="Text">ngram-edit-distance</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="inverted-index-join-noeqjoin">
+ <compilation-unit name="ngram-edit-distance-inline">
+ <output-dir compare="Text">ngram-edit-distance-inline</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="inverted-index-join-noeqjoin">
+ <compilation-unit name="ngram-jaccard">
+ <output-dir compare="Text">ngram-jaccard</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="inverted-index-join-noeqjoin">
+ <compilation-unit name="ngram-jaccard-inline">
+ <output-dir compare="Text">ngram-jaccard-inline</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="inverted-index-join-noeqjoin">
+ <compilation-unit name="olist-edit-distance">
+ <output-dir compare="Text">olist-edit-distance</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="inverted-index-join-noeqjoin">
+ <compilation-unit name="olist-edit-distance-inline">
+ <output-dir compare="Text">olist-edit-distance-inline</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="inverted-index-join-noeqjoin">
+ <compilation-unit name="olist-jaccard">
+ <output-dir compare="Text">olist-jaccard</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="inverted-index-join-noeqjoin">
+ <compilation-unit name="olist-jaccard-inline">
+ <output-dir compare="Text">olist-jaccard-inline</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="inverted-index-join-noeqjoin">
+ <compilation-unit name="ulist-jaccard">
+ <output-dir compare="Text">ulist-jaccard</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="inverted-index-join-noeqjoin">
+ <compilation-unit name="ulist-jaccard-inline">
+ <output-dir compare="Text">ulist-jaccard-inline</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="inverted-index-join-noeqjoin">
+ <compilation-unit name="word-jaccard">
+ <output-dir compare="Text">word-jaccard</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="inverted-index-join-noeqjoin">
+ <compilation-unit name="word-jaccard-inline">
+ <output-dir compare="Text">word-jaccard-inline</output-dir>
+ </compilation-unit>
+ </test-case>
+ </test-group>
+ <test-group name="list">
+ <test-case FilePath="list">
+ <compilation-unit name="any-collection-member_01">
+ <output-dir compare="Text">any-collection-member_01</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="list">
+ <compilation-unit name="get-item_01">
+ <output-dir compare="Text">get-item_01</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="list">
+ <compilation-unit name="get-item_02">
+ <output-dir compare="Text">get-item_02</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="list">
+ <compilation-unit name="len_01">
+ <output-dir compare="Text">len_01</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="list">
+ <compilation-unit name="len_null_01">
+ <output-dir compare="Text">len_null_01</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="list">
+ <compilation-unit name="listify_01">
+ <output-dir compare="Text">listify_01</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="list">
+ <compilation-unit name="listify_02">
+ <output-dir compare="Text">listify_02</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="list">
+ <compilation-unit name="listify_03">
+ <output-dir compare="Text">listify_03</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="list">
+ <compilation-unit name="ordered-list-constructor_01">
+ <output-dir compare="Text">ordered-list-constructor_01</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="list">
+ <compilation-unit name="ordered-list-constructor_02">
+ <output-dir compare="Text">ordered-list-constructor_02</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="list">
+ <compilation-unit name="ordered-list-constructor_03">
+ <output-dir compare="Text">ordered-list-constructor_03</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="list">
+ <compilation-unit name="scan-collection_01">
+ <output-dir compare="Text">scan-collection_01</output-dir>
+ </compilation-unit>
+ </test-case>
+ <!-- <test-case FilePath="list">
+ <compilation-unit name="union_01">
+ <output-dir compare="Text">union_01</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="list">
+ <compilation-unit name="union_02">
+ <output-dir compare="Text">union_02</output-dir>
+ </compilation-unit>
+ </test-case>
+ -->
+ <test-case FilePath="list">
+ <compilation-unit name="unordered-list-constructor_01">
+ <output-dir compare="Text">unordered-list-constructor_01</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="list">
+ <compilation-unit name="unordered-list-constructor_02">
+ <output-dir compare="Text">unordered-list-constructor_02</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="list">
+ <compilation-unit name="unordered-list-constructor_03">
+ <output-dir compare="Text">unordered-list-constructor_03</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="list">
+ <compilation-unit name="query-issue428">
+ <output-dir compare="Text">query-issue428</output-dir>
+ </compilation-unit>
+ </test-case>
+ </test-group>
+ <test-group name="misc">
+ <test-case FilePath="misc">
+ <compilation-unit name="partition-by-nonexistent-field">
+ <output-dir compare="Text">partition-by-nonexistent-field</output-dir>
+ <expected-error>org.apache.asterix.common.exceptions.AsterixException</expected-error>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="misc">
+ <compilation-unit name="float_01">
+ <output-dir compare="Text">float_01</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="misc">
+ <compilation-unit name="flushtest">
+ <output-dir compare="Text">flushtest</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="misc">
+ <compilation-unit name="groupby-orderby-count">
+ <output-dir compare="Text">groupby-orderby-count</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="misc">
+ <compilation-unit name="ifthenelse_01">
+ <output-dir compare="Text">ifthenelse_01</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="misc">
+ <compilation-unit name="is-null_01">
+ <output-dir compare="Text">is-null_01</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="misc">
+ <compilation-unit name="nested-loop-join_01">
+ <output-dir compare="Text">nested-loop-join_01</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="misc">
+ <compilation-unit name="query_issue267">
+ <output-dir compare="Text">query_issue267</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="misc">
+ <compilation-unit name="stable_sort">
+ <output-dir compare="Text">stable_sort</output-dir>
+ </compilation-unit>
+ </test-case>
+ <!--
+ <test-case FilePath="misc">
+ <compilation-unit name="range_01">
+ <output-dir compare="Text">range_01</output-dir>
+ </compilation-unit>
+ </test-case>
+ -->
+ <!--
+ <test-case FilePath="misc">
+ <compilation-unit name="tid_01">
+ <output-dir compare="Text">tid_01</output-dir>
+ </compilation-unit>
+ </test-case>
+ -->
+ <test-case FilePath="misc">
+ <compilation-unit name="year_01">
+ <output-dir compare="Text">year_01</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="misc">
+ <compilation-unit name="string_eq_01">
+ <output-dir compare="Text">string_eq_01</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="misc">
+ <compilation-unit name="prefix-search">
+ <output-dir compare="Text">prefix-search</output-dir>
+ </compilation-unit>
+ </test-case>
+ </test-group>
+ <test-group name="open-index-enforced">
+ <test-group FilePath="open-index-enforced/error-checking">
+ <test-case FilePath="open-index-enforced/error-checking">
+ <compilation-unit name="enforced-field-name-collision">
+ <output-dir compare="Text">enforced-field-name-collision</output-dir>
+ <expected-error>org.apache.hyracks.algebricks.common.exceptions.AlgebricksException
+ </expected-error>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="open-index-enforced/error-checking">
+ <compilation-unit name="enforced-field-type-collision">
+ <output-dir compare="Text">enforced-field-type-collision</output-dir>
+ <expected-error>org.apache.asterix.common.exceptions.AsterixException</expected-error>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="open-index-enforced/error-checking">
+ <compilation-unit name="missing-enforce-statement">
+ <output-dir compare="Text">missing-enforce-statement</output-dir>
+ <expected-error>org.apache.hyracks.algebricks.common.exceptions.AlgebricksException
+ </expected-error>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="open-index-enforced/error-checking">
+ <compilation-unit name="index-on-closed-type">
+ <output-dir compare="Text">index-on-closed-type</output-dir>
+ <expected-error>org.apache.hyracks.algebricks.common.exceptions.AlgebricksException
+ </expected-error>
+ </compilation-unit>
+ </test-case>
+ </test-group>
+ <test-group FilePath="open-index-enforced/index-join">
+ <test-case FilePath="open-index-enforced/index-join">
+ <compilation-unit name="btree-secondary-equi-join">
+ <output-dir compare="Text">btree-secondary-equi-join</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="open-index-enforced/index-join">
+ <compilation-unit name="ngram-edit-distance">
+ <output-dir compare="Text">ngram-edit-distance</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="open-index-enforced/index-join">
+ <compilation-unit name="ngram-edit-distance-inline">
+ <output-dir compare="Text">ngram-edit-distance-inline</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="open-index-enforced/index-join">
+ <compilation-unit name="ngram-jaccard">
+ <output-dir compare="Text">ngram-jaccard</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="open-index-enforced/index-join">
+ <compilation-unit name="ngram-jaccard-inline">
+ <output-dir compare="Text">ngram-jaccard-inline</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="open-index-enforced/index-join">
+ <compilation-unit name="rtree-spatial-intersect-point">
+ <output-dir compare="Text">rtree-spatial-intersect-point</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="open-index-enforced/index-join">
+ <compilation-unit name="word-jaccard">
+ <output-dir compare="Text">word-jaccard</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="open-index-enforced/index-join">
+ <compilation-unit name="word-jaccard-inline">
+ <output-dir compare="Text">word-jaccard-inline</output-dir>
+ </compilation-unit>
+ </test-case>
+ </test-group>
+ <test-group FilePath="open-index-enforced/index-leftouterjoin">
+ <test-case FilePath="open-index-enforced/index-leftouterjoin">
+ <compilation-unit name="probe-pidx-with-join-btree-sidx1">
+ <output-dir compare="Text">probe-pidx-with-join-btree-sidx1</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="open-index-enforced/index-leftouterjoin">
+ <compilation-unit name="probe-pidx-with-join-btree-sidx2">
+ <output-dir compare="Text">probe-pidx-with-join-btree-sidx2</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="open-index-enforced/index-leftouterjoin">
+ <compilation-unit name="probe-pidx-with-join-invidx-sidx1">
+ <output-dir compare="Text">probe-pidx-with-join-invidx-sidx1</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="open-index-enforced/index-leftouterjoin">
+ <compilation-unit name="probe-pidx-with-join-invidx-sidx2">
+ <output-dir compare="Text">probe-pidx-with-join-invidx-sidx2</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="open-index-enforced/index-leftouterjoin">
+ <compilation-unit name="probe-pidx-with-join-rtree-sidx1">
+ <output-dir compare="Text">probe-pidx-with-join-rtree-sidx1</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="open-index-enforced/index-leftouterjoin">
+ <compilation-unit name="probe-pidx-with-join-rtree-sidx2">
+ <output-dir compare="Text">probe-pidx-with-join-rtree-sidx2</output-dir>
+ </compilation-unit>
+ </test-case>
+ </test-group>
+ <test-group FilePath="open-index-enforced/index-selection">
+ <test-case FilePath="open-index-enforced/index-selection">
+ <compilation-unit name="btree-index-composite-key">
+ <output-dir compare="Text">btree-index-composite-key</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="open-index-enforced/index-selection">
+ <compilation-unit name="btree-index-composite-key-mixed-intervals">
+ <output-dir compare="Text">btree-index-composite-key-mixed-intervals</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="open-index-enforced/index-selection">
+ <compilation-unit name="btree-index-rewrite-multiple">
+ <output-dir compare="Text">btree-index-rewrite-multiple</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="open-index-enforced/index-selection">
+ <compilation-unit name="inverted-index-ngram-contains">
+ <output-dir compare="Text">inverted-index-ngram-contains</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="open-index-enforced/index-selection">
+ <compilation-unit name="inverted-index-ngram-edit-distance">
+ <output-dir compare="Text">inverted-index-ngram-edit-distance</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="open-index-enforced/index-selection">
+ <compilation-unit name="inverted-index-ngram-edit-distance-contains">
+ <output-dir compare="Text">inverted-index-ngram-edit-distance-contains</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="open-index-enforced/index-selection">
+ <compilation-unit name="inverted-index-ngram-edit-distance-panic">
+ <output-dir compare="Text">inverted-index-ngram-edit-distance-panic</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="open-index-enforced/index-selection">
+ <compilation-unit name="inverted-index-ngram-edit-distance-word-tokens">
+ <output-dir compare="Text">inverted-index-ngram-edit-distance-word-tokens</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="open-index-enforced/index-selection">
+ <compilation-unit name="inverted-index-ngram-jaccard">
+ <output-dir compare="Text">inverted-index-ngram-jaccard</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="open-index-enforced/index-selection">
+ <compilation-unit name="inverted-index-word-contains">
+ <output-dir compare="Text">inverted-index-word-contains</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="open-index-enforced/index-selection">
+ <compilation-unit name="inverted-index-word-jaccard">
+ <output-dir compare="Text">inverted-index-word-jaccard</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="open-index-enforced/index-selection">
+ <compilation-unit name="orders-index-custkey">
+ <output-dir compare="Text">orders-index-custkey</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="open-index-enforced/index-selection">
+ <compilation-unit name="orders-index-custkey-conjunctive">
+ <output-dir compare="Text">orders-index-custkey-conjunctive</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="open-index-enforced/index-selection">
+ <compilation-unit name="range-search">
+ <output-dir compare="Text">range-search</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="open-index-enforced/index-selection">
+ <compilation-unit name="rtree-secondary-index">
+ <output-dir compare="Text">rtree-secondary-index</output-dir>
+ </compilation-unit>
+ </test-case>
+ </test-group>
+ <test-group name="open-index-enforced/external-indexing">
+ <test-case FilePath="open-index-enforced/external-indexing">
+ <compilation-unit name="adm-format">
+ <output-dir compare="Text">adm-format</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="open-index-enforced/external-indexing">
+ <compilation-unit name="rtree-index">
+ <output-dir compare="Text">rtree-index</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="open-index-enforced/external-indexing">
+ <compilation-unit name="leftouterjoin">
+ <output-dir compare="Text">leftouterjoin</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="open-index-enforced/external-indexing">
+ <compilation-unit name="leftouterjoin-rtree">
+ <output-dir compare="Text">leftouterjoin-rtree</output-dir>
+ </compilation-unit>
+ </test-case>
+ </test-group>
+ </test-group>
+ <test-group name="nested-open-index">
+ <test-group FilePath="nested-open-index/index-join">
+ <test-case FilePath="nested-open-index/index-join">
+ <compilation-unit name="btree-secondary-equi-join">
+ <output-dir compare="Text">btree-secondary-equi-join</output-dir>
+ </compilation-unit>
+ </test-case>
+ <!-- ASTERIXDB-1159 <test-case FilePath="nested-open-index/index-join">
+ <compilation-unit name="ngram-edit-distance">
+ <output-dir compare="Text">ngram-edit-distance</output-dir>
+ </compilation-unit>
+ </test-case>
+ -->
+ <!-- <test-case FilePath="nested-open-index/index-join">
+ <compilation-unit name="ngram-edit-distance-inline">
+ <output-dir compare="Text">ngram-edit-distance-inline</output-dir>
+ </compilation-unit>
+ </test-case> -->
+ <test-case FilePath="nested-open-index/index-join">
+ <compilation-unit name="ngram-jaccard">
+ <output-dir compare="Text">ngram-jaccard</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="nested-open-index/index-join">
+ <compilation-unit name="ngram-jaccard-inline">
+ <output-dir compare="Text">ngram-jaccard-inline</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="nested-open-index/index-join">
+ <compilation-unit name="rtree-spatial-intersect-point">
+ <output-dir compare="Text">rtree-spatial-intersect-point</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="nested-open-index/index-join">
+ <compilation-unit name="word-jaccard">
+ <output-dir compare="Text">word-jaccard</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="nested-open-index/index-join">
+ <compilation-unit name="word-jaccard-inline">
+ <output-dir compare="Text">word-jaccard-inline</output-dir>
+ </compilation-unit>
+ </test-case>
+ </test-group>
+ <test-group FilePath="nested-open-index/index-leftouterjoin">
+ <test-case FilePath="nested-open-index/index-leftouterjoin">
+ <compilation-unit name="probe-pidx-with-join-btree-sidx1">
+ <output-dir compare="Text">probe-pidx-with-join-btree-sidx1</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="nested-open-index/index-leftouterjoin">
+ <compilation-unit name="probe-pidx-with-join-btree-sidx2">
+ <output-dir compare="Text">probe-pidx-with-join-btree-sidx2</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="nested-open-index/index-leftouterjoin">
+ <compilation-unit name="probe-pidx-with-join-invidx-sidx1">
+ <output-dir compare="Text">probe-pidx-with-join-invidx-sidx1</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="nested-open-index/index-leftouterjoin">
+ <compilation-unit name="probe-pidx-with-join-invidx-sidx2">
+ <output-dir compare="Text">probe-pidx-with-join-invidx-sidx2</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="nested-open-index/index-leftouterjoin">
+ <compilation-unit name="probe-pidx-with-join-rtree-sidx1">
+ <output-dir compare="Text">probe-pidx-with-join-rtree-sidx1</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="nested-open-index/index-leftouterjoin">
+ <compilation-unit name="probe-pidx-with-join-rtree-sidx2">
+ <output-dir compare="Text">probe-pidx-with-join-rtree-sidx2</output-dir>
+ </compilation-unit>
+ </test-case>
+ </test-group>
+ <test-group FilePath="nested-open-index/index-selection">
+ <test-case FilePath="nested-open-index/index-selection">
+ <compilation-unit name="btree-index-composite-key">
+ <output-dir compare="Text">btree-index-composite-key</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="nested-open-index/index-selection">
+ <compilation-unit name="btree-index-composite-key-mixed-intervals">
+ <output-dir compare="Text">btree-index-composite-key-mixed-intervals</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="nested-open-index/index-selection">
+ <compilation-unit name="btree-index-rewrite-multiple">
+ <output-dir compare="Text">btree-index-rewrite-multiple</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="nested-open-index/index-selection">
+ <compilation-unit name="inverted-index-ngram-contains">
+ <output-dir compare="Text">inverted-index-ngram-contains</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="nested-open-index/index-selection">
+ <compilation-unit name="inverted-index-ngram-edit-distance">
+ <output-dir compare="Text">inverted-index-ngram-edit-distance</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="nested-open-index/index-selection">
+ <compilation-unit name="inverted-index-ngram-edit-distance-contains">
+ <output-dir compare="Text">inverted-index-ngram-edit-distance-contains</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="nested-open-index/index-selection">
+ <compilation-unit name="inverted-index-ngram-edit-distance-panic">
+ <output-dir compare="Text">inverted-index-ngram-edit-distance-panic</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="nested-open-index/index-selection">
+ <compilation-unit name="inverted-index-ngram-edit-distance-work-tokens">
+ <output-dir compare="Text">inverted-index-ngram-edit-distance-word-tokens</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="nested-open-index/index-selection">
+ <compilation-unit name="inverted-index-ngram-jaccard">
+ <output-dir compare="Text">inverted-index-ngram-jaccard</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="nested-open-index/index-selection">
+ <compilation-unit name="inverted-index-word-contains">
+ <output-dir compare="Text">inverted-index-word-contains</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="nested-open-index/index-selection">
+ <compilation-unit name="inverted-index-word-jaccard">
+ <output-dir compare="Text">inverted-index-word-jaccard</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="nested-open-index/index-selection">
+ <compilation-unit name="orders-index-custkey">
+ <output-dir compare="Text">orders-index-custkey</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="nested-open-index/index-selection">
+ <compilation-unit name="orders-index-custkey-conjunctive">
+ <output-dir compare="Text">orders-index-custkey-conjunctive</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="nested-open-index/index-selection">
+ <compilation-unit name="range-search">
+ <output-dir compare="Text">range-search</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="nested-open-index/index-selection">
+ <compilation-unit name="rtree-secondary-index">
+ <output-dir compare="Text">rtree-secondary-index</output-dir>
+ </compilation-unit>
+ </test-case>
+ </test-group>
+ <test-group name="nested-open-index/external-indexing">
+ <test-case FilePath="nested-open-index/external-indexing">
+ <compilation-unit name="adm-format">
+ <output-dir compare="Text">adm-format</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="nested-open-index/external-indexing">
+ <compilation-unit name="rtree-index">
+ <output-dir compare="Text">rtree-index</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="nested-open-index/external-indexing">
+ <compilation-unit name="leftouterjoin">
+ <output-dir compare="Text">leftouterjoin</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="nested-open-index/external-indexing">
+ <compilation-unit name="leftouterjoin-rtree">
+ <output-dir compare="Text">leftouterjoin-rtree</output-dir>
+ </compilation-unit>
+ </test-case>
+ </test-group>
+ <test-group name="nested-open-index/highly-open-highly-nested">
+ <test-case FilePath="nested-open-index/highly-open-highly-nested">
+ <compilation-unit name="bottom-closed-top-closed">
+ <output-dir compare="Text">bottom-closed-top-closed</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="nested-open-index/highly-open-highly-nested">
+ <compilation-unit name="bottom-closed-top-open">
+ <output-dir compare="Text">bottom-closed-top-open</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="nested-open-index/highly-open-highly-nested">
+ <compilation-unit name="bottom-open-top-closed">
+ <output-dir compare="Text">bottom-open-top-closed</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="nested-open-index/highly-open-highly-nested">
+ <compilation-unit name="bottom-open-top-open">
+ <output-dir compare="Text">bottom-open-top-open</output-dir>
+ </compilation-unit>
+ </test-case>
+ </test-group>
+ </test-group>
+ <test-group name="nested-index">
+ <test-group FilePath="nested-index/index-join">
+ <test-case FilePath="nested-index/index-join">
+ <compilation-unit name="btree-primary-equi-join">
+ <output-dir compare="Text">btree-primary-equi-join</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="nested-index/index-join">
+ <compilation-unit name="btree-secondary-equi-join">
+ <output-dir compare="Text">btree-secondary-equi-join</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="nested-index/index-join">
+ <compilation-unit name="ngram-edit-distance">
+ <output-dir compare="Text">ngram-edit-distance</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="nested-index/index-join">
+ <compilation-unit name="ngram-edit-distance-inline">
+ <output-dir compare="Text">ngram-edit-distance-inline</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="nested-index/index-join">
+ <compilation-unit name="ngram-jaccard">
+ <output-dir compare="Text">ngram-jaccard</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="nested-index/index-join">
+ <compilation-unit name="ngram-jaccard-inline">
+ <output-dir compare="Text">ngram-jaccard-inline</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="nested-index/index-join">
+ <compilation-unit name="rtree-spatial-intersect-point">
+ <output-dir compare="Text">rtree-spatial-intersect-point</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="nested-index/index-join">
+ <compilation-unit name="word-jaccard">
+ <output-dir compare="Text">word-jaccard</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="nested-index/index-join">
+ <compilation-unit name="word-jaccard-inline">
+ <output-dir compare="Text">word-jaccard-inline</output-dir>
+ </compilation-unit>
+ </test-case>
+ </test-group>
+ <test-group FilePath="nested-index/index-leftouterjoin">
+ <test-case FilePath="nested-index/index-leftouterjoin">
+ <compilation-unit name="probe-pidx-with-join-btree-sidx1">
+ <output-dir compare="Text">probe-pidx-with-join-btree-sidx1</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="nested-index/index-leftouterjoin">
+ <compilation-unit name="probe-pidx-with-join-btree-sidx2">
+ <output-dir compare="Text">probe-pidx-with-join-btree-sidx2</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="nested-index/index-leftouterjoin">
+ <compilation-unit name="probe-pidx-with-join-invidx-sidx1">
+ <output-dir compare="Text">probe-pidx-with-join-invidx-sidx1</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="nested-index/index-leftouterjoin">
+ <compilation-unit name="probe-pidx-with-join-invidx-sidx2">
+ <output-dir compare="Text">probe-pidx-with-join-invidx-sidx2</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="nested-index/index-leftouterjoin">
+ <compilation-unit name="probe-pidx-with-join-rtree-sidx1">
+ <output-dir compare="Text">probe-pidx-with-join-rtree-sidx1</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="nested-index/index-leftouterjoin">
+ <compilation-unit name="probe-pidx-with-join-rtree-sidx2">
+ <output-dir compare="Text">probe-pidx-with-join-rtree-sidx2</output-dir>
+ </compilation-unit>
+ </test-case>
+ </test-group>
+ <test-group FilePath="nested-index/index-selection">
+ <test-case FilePath="nested-index/index-selection">
+ <compilation-unit name="btree-index-composite-key">
+ <output-dir compare="Text">btree-index-composite-key</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="nested-index/index-selection">
+ <compilation-unit name="btree-index-composite-key-mixed-intervals">
+ <output-dir compare="Text">btree-index-composite-key-mixed-intervals</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="nested-index/index-selection">
+ <compilation-unit name="btree-index-rewrite-multiple">
+ <output-dir compare="Text">btree-index-rewrite-multiple</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="nested-index/index-selection">
+ <compilation-unit name="cust-index-age-nullable">
+ <output-dir compare="Text">cust-index-age-nullable</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="nested-index/index-selection">
+ <compilation-unit name="inverted-index-ngram-contains">
+ <output-dir compare="Text">inverted-index-ngram-contains</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="nested-index/index-selection">
+ <compilation-unit name="inverted-index-ngram-edit-distance">
+ <output-dir compare="Text">inverted-index-ngram-edit-distance</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="nested-index/index-selection">
+ <compilation-unit name="inverted-index-ngram-edit-distance-contains">
+ <output-dir compare="Text">inverted-index-ngram-edit-distance-contains</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="nested-index/index-selection">
+ <compilation-unit name="inverted-index-ngram-edit-distance-panic">
+ <output-dir compare="Text">inverted-index-ngram-edit-distance-panic</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="nested-index/index-selection">
+ <compilation-unit name="inverted-index-ngram-edit-distance-word-tokens">
+ <output-dir compare="Text">inverted-index-ngram-edit-distance-word-tokens</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="nested-index/index-selection">
+ <compilation-unit name="inverted-index-ngram-jaccard">
+ <output-dir compare="Text">inverted-index-ngram-jaccard</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="nested-index/index-selection">
+ <compilation-unit name="inverted-index-olist-edit-distance">
+ <output-dir compare="Text">inverted-index-olist-edit-distance</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="nested-index/index-selection">
+ <compilation-unit name="inverted-index-olist-edit-distance-panic">
+ <output-dir compare="Text">inverted-index-olist-edit-distance-panic</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="nested-index/index-selection">
+ <compilation-unit name="inverted-index-olist-jaccard">
+ <output-dir compare="Text">inverted-index-olist-jaccard</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="nested-index/index-selection">
+ <compilation-unit name="inverted-index-ulist-jaccard">
+ <output-dir compare="Text">inverted-index-ulist-jaccard</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="nested-index/index-selection">
+ <compilation-unit name="inverted-index-word-contains">
+ <output-dir compare="Text">inverted-index-word-contains</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="nested-index/index-selection">
+ <compilation-unit name="inverted-index-word-jaccard">
+ <output-dir compare="Text">inverted-index-word-jaccard</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="nested-index/index-selection">
+ <compilation-unit name="orders-index-custkey">
+ <output-dir compare="Text">orders-index-custkey</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="nested-index/index-selection">
+ <compilation-unit name="orders-index-custkey-conjunctive">
+ <output-dir compare="Text">orders-index-custkey-conjunctive</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="nested-index/index-selection">
+ <compilation-unit name="orders-index-custkey-conjunctive-open">
+ <output-dir compare="Text">orders-index-custkey-conjunctive-open</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="nested-index/index-selection">
+ <compilation-unit name="orders-index-custkey-open">
+ <output-dir compare="Text">orders-index-custkey-open</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="nested-index/index-selection">
+ <compilation-unit name="range-search">
+ <output-dir compare="Text">range-search</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="nested-index/index-selection">
+ <compilation-unit name="range-search-open">
+ <output-dir compare="Text">range-search-open</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="nested-index/index-selection">
+ <compilation-unit name="rtree-secondary-index">
+ <output-dir compare="Text">rtree-secondary-index</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="nested-index/index-selection">
+ <compilation-unit name="rtree-secondary-index-nullable">
+ <output-dir compare="Text">rtree-secondary-index-nullable</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="nested-index/index-selection">
+ <compilation-unit name="rtree-secondary-index-open">
+ <output-dir compare="Text">rtree-secondary-index-open</output-dir>
+ </compilation-unit>
+ </test-case>
+ </test-group>
+ <test-group name="nested-index/external-indexing">
+ <test-case FilePath="nested-index/external-indexing">
+ <compilation-unit name="adm-format">
+ <output-dir compare="Text">adm-format</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="nested-index/external-indexing">
+ <compilation-unit name="rtree-index">
+ <output-dir compare="Text">rtree-index</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="nested-index/external-indexing">
+ <compilation-unit name="leftouterjoin">
+ <output-dir compare="Text">leftouterjoin</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="nested-index/external-indexing">
+ <compilation-unit name="leftouterjoin-rtree">
+ <output-dir compare="Text">leftouterjoin-rtree</output-dir>
+ </compilation-unit>
+ </test-case>
+ </test-group>
+ </test-group>
+ <test-group name="nested-index-dml">
+ <test-case FilePath="nested-index-dml">
+ <compilation-unit name="compact-dataset-and-its-indexes">
+ <output-dir compare="Text">compact-dataset-and-its-indexes</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="nested-index-dml">
+ <compilation-unit name="nested-uuid-load">
+ <output-dir compare="Text">nested-uuid-load</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="nested-index-dml">
+ <compilation-unit name="nested-uuid-insert">
+ <output-dir compare="Text">nested-uuid-insert</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="nested-index-dml">
+ <compilation-unit name="delete-from-loaded-dataset-with-index">
+ <output-dir compare="Text">delete-from-loaded-dataset-with-index</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="nested-index-dml">
+ <compilation-unit name="drop-index">
+ <output-dir compare="Text">drop-index</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="nested-index-dml">
+ <compilation-unit name="insert-into-empty-dataset-with-index">
+ <output-dir compare="Text">insert-into-empty-dataset-with-index</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="nested-index-dml">
+ <compilation-unit name="insert-into-loaded-dataset-with-index_01">
+ <output-dir compare="Text">insert-into-loaded-dataset-with-index_01</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="nested-index-dml">
+ <compilation-unit name="insert-into-loaded-dataset-with-index_02">
+ <output-dir compare="Text">insert-into-loaded-dataset-with-index_02</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="nested-index-dml">
+ <compilation-unit name="load-with-index">
+ <output-dir compare="Text">load-with-index</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="nested-index-dml">
+ <compilation-unit name="load-with-ngram-index">
+ <output-dir compare="Text">load-with-ngram-index</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="nested-index-dml">
+ <compilation-unit name="load-with-rtree-index">
+ <output-dir compare="Text">load-with-rtree-index</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="nested-index-dml">
+ <compilation-unit name="load-with-word-index">
+ <output-dir compare="Text">load-with-word-index</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="nested-index-dml">
+ <compilation-unit name="scan-delete-btree-secondary-index-nullable">
+ <output-dir compare="Text">scan-delete-btree-secondary-index-nullable</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="nested-index-dml">
+ <compilation-unit name="scan-delete-rtree-secondary-index-nullable">
+ <output-dir compare="Text">scan-delete-rtree-secondary-index-nullable</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="nested-index-dml">
+ <compilation-unit name="scan-delete-rtree-secondary-index">
+ <output-dir compare="Text">scan-delete-rtree-secondary-index</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="nested-index-dml">
+ <compilation-unit name="scan-insert-btree-secondary-index-nullable">
+ <output-dir compare="Text">scan-insert-btree-secondary-index-nullable</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="nested-index-dml">
+ <compilation-unit name="scan-insert-rtree-secondary-index-nullable">
+ <output-dir compare="Text">scan-insert-rtree-secondary-index-nullable</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="nested-index-dml">
+ <compilation-unit name="scan-insert-rtree-secondary-index">
+ <output-dir compare="Text">scan-insert-rtree-secondary-index</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="nested-index-dml">
+ <compilation-unit name="scan-insert-inverted-index-ngram-secondary-index">
+ <output-dir compare="Text">scan-insert-inverted-index-ngram-secondary-index</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="nested-index-dml">
+ <compilation-unit name="scan-insert-inverted-index-word-secondary-index">
+ <output-dir compare="Text">scan-insert-inverted-index-word-secondary-index</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="nested-index-dml">
+ <compilation-unit name="scan-insert-inverted-index-ngram-secondary-index-nullable">
+ <output-dir compare="Text">scan-insert-inverted-index-ngram-secondary-index-nullable</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="nested-index-dml">
+ <compilation-unit name="scan-insert-inverted-index-word-secondary-index-nullable">
+ <output-dir compare="Text">scan-insert-inverted-index-word-secondary-index-nullable</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="nested-index-dml">
+ <compilation-unit name="scan-delete-inverted-index-ngram-secondary-index">
+ <output-dir compare="Text">scan-delete-inverted-index-ngram-secondary-index</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="nested-index-dml">
+ <compilation-unit name="scan-delete-inverted-index-word-secondary-index">
+ <output-dir compare="Text">scan-delete-inverted-index-word-secondary-index</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="nested-index-dml">
+ <compilation-unit name="scan-delete-inverted-index-ngram-secondary-index-nullable">
+ <output-dir compare="Text">scan-delete-inverted-index-ngram-secondary-index-nullable</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="nested-index-dml">
+ <compilation-unit name="scan-delete-inverted-index-word-secondary-index-nullable">
+ <output-dir compare="Text">scan-delete-inverted-index-word-secondary-index-nullable</output-dir>
+ </compilation-unit>
+ </test-case>
+ </test-group>
+ <test-group name="nestrecords">
+ <test-case FilePath="nestrecords">
+ <compilation-unit name="nestrecord">
+ <output-dir compare="Text">nestrecord</output-dir>
+ </compilation-unit>
+ </test-case>
+ </test-group>
+ <test-group name="numeric">
+ <test-case FilePath="numeric">
+ <compilation-unit name="caret0">
+ <output-dir compare="Text">caret0</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="numeric">
+ <compilation-unit name="abs0">
+ <output-dir compare="Text">abs0</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="numeric">
+ <compilation-unit name="abs1">
+ <output-dir compare="Text">abs1</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="numeric">
+ <compilation-unit name="abs2">
+ <output-dir compare="Text">abs2</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="numeric">
+ <compilation-unit name="abs3">
+ <output-dir compare="Text">abs3</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="numeric">
+ <compilation-unit name="abs4">
+ <output-dir compare="Text">abs4</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="numeric">
+ <compilation-unit name="add_double">
+ <output-dir compare="Text">add_double</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="numeric">
+ <compilation-unit name="add_float">
+ <output-dir compare="Text">add_float</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="numeric">
+ <compilation-unit name="add_int16">
+ <output-dir compare="Text">add_int16</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="numeric">
+ <compilation-unit name="add_int32">
+ <output-dir compare="Text">add_int32</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="numeric">
+ <compilation-unit name="add_int64">
+ <output-dir compare="Text">add_int64</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="numeric">
+ <compilation-unit name="add_int8">
+ <output-dir compare="Text">add_int8</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="numeric">
+ <compilation-unit name="ceiling0">
+ <output-dir compare="Text">ceiling0</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="numeric">
+ <compilation-unit name="ceiling1">
+ <output-dir compare="Text">ceiling1</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="numeric">
+ <compilation-unit name="ceiling2">
+ <output-dir compare="Text">ceiling2</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="numeric">
+ <compilation-unit name="ceiling3">
+ <output-dir compare="Text">ceiling3</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="numeric">
+ <compilation-unit name="ceiling4">
+ <output-dir compare="Text">ceiling4</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="numeric">
+ <compilation-unit name="divide_double">
+ <output-dir compare="Text">divide_double</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="numeric">
+ <compilation-unit name="divide_float">
+ <output-dir compare="Text">divide_float</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="numeric">
+ <compilation-unit name="divide_int16">
+ <output-dir compare="Text">divide_int16</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="numeric">
+ <compilation-unit name="divide_int32">
+ <output-dir compare="Text">divide_int32</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="numeric">
+ <compilation-unit name="divide_int64">
+ <output-dir compare="Text">divide_int64</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="numeric">
+ <compilation-unit name="divide_int8">
+ <output-dir compare="Text">divide_int8</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="numeric">
+ <compilation-unit name="floor0">
+ <output-dir compare="Text">floor0</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="numeric">
+ <compilation-unit name="floor1">
+ <output-dir compare="Text">floor1</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="numeric">
+ <compilation-unit name="floor2">
+ <output-dir compare="Text">floor2</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="numeric">
+ <compilation-unit name="floor3">
+ <output-dir compare="Text">floor3</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="numeric">
+ <compilation-unit name="floor4">
+ <output-dir compare="Text">floor4</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="numeric">
+ <compilation-unit name="multiply_double">
+ <output-dir compare="Text">multiply_double</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="numeric">
+ <compilation-unit name="multiply_float">
+ <output-dir compare="Text">multiply_float</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="numeric">
+ <compilation-unit name="multiply_int16">
+ <output-dir compare="Text">multiply_int16</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="numeric">
+ <compilation-unit name="multiply_int32">
+ <output-dir compare="Text">multiply_int32</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="numeric">
+ <compilation-unit name="multiply_int64">
+ <output-dir compare="Text">multiply_int64</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="numeric">
+ <compilation-unit name="multiply_int8">
+ <output-dir compare="Text">multiply_int8</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="numeric">
+ <compilation-unit name="round-half-to-even0">
+ <output-dir compare="Text">round-half-to-even0</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="numeric">
+ <compilation-unit name="round-half-to-even1">
+ <output-dir compare="Text">round-half-to-even1</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="numeric">
+ <compilation-unit name="round-half-to-even2">
+ <output-dir compare="Text">round-half-to-even2</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="numeric">
+ <compilation-unit name="round-half-to-even20">
+ <output-dir compare="Text">round-half-to-even20</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="numeric">
+ <compilation-unit name="round-half-to-even21">
+ <output-dir compare="Text">round-half-to-even21</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="numeric">
+ <compilation-unit name="round-half-to-even22">
+ <output-dir compare="Text">round-half-to-even22</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="numeric">
+ <compilation-unit name="round-half-to-even23">
+ <output-dir compare="Text">round-half-to-even23</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="numeric">
+ <compilation-unit name="round-half-to-even24">
+ <output-dir compare="Text">round-half-to-even24</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="numeric">
+ <compilation-unit name="round-half-to-even3">
+ <output-dir compare="Text">round-half-to-even3</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="numeric">
+ <compilation-unit name="round-half-to-even4">
+ <output-dir compare="Text">round-half-to-even4</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="numeric">
+ <compilation-unit name="round-half-to-even5">
+ <output-dir compare="Text">round-half-to-even5</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="numeric">
+ <compilation-unit name="round0">
+ <output-dir compare="Text">round0</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="numeric">
+ <compilation-unit name="round1">
+ <output-dir compare="Text">round1</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="numeric">
+ <compilation-unit name="round2">
+ <output-dir compare="Text">round2</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="numeric">
+ <compilation-unit name="round3">
+ <output-dir compare="Text">round3</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="numeric">
+ <compilation-unit name="round4">
+ <output-dir compare="Text">round4</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="numeric">
+ <compilation-unit name="subtract_double">
+ <output-dir compare="Text">subtract_double</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="numeric">
+ <compilation-unit name="subtract_float">
+ <output-dir compare="Text">subtract_float</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="numeric">
+ <compilation-unit name="subtract_int16">
+ <output-dir compare="Text">subtract_int16</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="numeric">
+ <compilation-unit name="subtract_int32">
+ <output-dir compare="Text">subtract_int32</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="numeric">
+ <compilation-unit name="subtract_int64">
+ <output-dir compare="Text">subtract_int64</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="numeric">
+ <compilation-unit name="subtract_int8">
+ <output-dir compare="Text">subtract_int8</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="numeric">
+ <compilation-unit name="unary-minus_double_02">
+ <output-dir compare="Text">unary-minus_double_02</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="numeric">
+ <compilation-unit name="unary-minus_float_02">
+ <output-dir compare="Text">unary-minus_float_02</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="numeric">
+ <compilation-unit name="unary-minus_int_02">
+ <output-dir compare="Text">unary-minus_int_02</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="numeric">
+ <compilation-unit name="unary-minus_null">
+ <output-dir compare="Text">unary-minus_null</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="numeric">
+ <compilation-unit name="query-issue355">
+ <output-dir compare="Text">query-issue355</output-dir>
+ <expected-error>org.apache.asterix.common.exceptions.AsterixException</expected-error>
+ </compilation-unit>
+ </test-case>
+ </test-group>
+ <test-group name="open-closed">
+ <!--
+ <test-case FilePath="open-closed">
+ <compilation-unit name="c2c-w-optional">
+ <output-dir compare="Text">c2c-w-optional</output-dir>
+ </compilation-unit>
+ </test-case>
+ -->
+ <!--
+ <test-case FilePath="open-closed">
+ <compilation-unit name="c2c-wo-optional">
+ <output-dir compare="Text">c2c-wo-optional</output-dir>
+ </compilation-unit>
+ </test-case>
+ -->
+ <!--
+ <test-case FilePath="open-closed">
+ <compilation-unit name="c2c">
+ <output-dir compare="Text">c2c</output-dir>
+ </compilation-unit>
+ </test-case>
+ -->
+ <test-case FilePath="open-closed">
+ <compilation-unit name="heterog-list-ordered01">
+ <output-dir compare="Text">heterog-list-ordered01</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="open-closed">
+ <compilation-unit name="heterog-list01">
+ <output-dir compare="Text">heterog-list01</output-dir>
+ </compilation-unit>
+ </test-case>
+ <!--
+ <test-case FilePath="open-closed">
+ <compilation-unit name="heterog-list02">
+ <output-dir compare="Text">heterog-list02</output-dir>
+ </compilation-unit>
+ </test-case>
+ -->
+ <!--
+ <test-case FilePath="open-closed">
+ <compilation-unit name="heterog-list03">
+ <output-dir compare="Text">heterog-list03</output-dir>
+ </compilation-unit>
+ </test-case>
+ -->
+ <test-case FilePath="open-closed">
+ <compilation-unit name="open-closed-01">
+ <output-dir compare="Text">open-closed-01</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="open-closed">
+ <compilation-unit name="open-closed-12">
+ <output-dir compare="Text">open-closed-12</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="open-closed">
+ <compilation-unit name="open-closed-14">
+ <output-dir compare="Text">open-closed-14</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="open-closed">
+ <compilation-unit name="query-issue134">
+ <output-dir compare="Text">query-issue134</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="open-closed">
+ <compilation-unit name="query-issue55">
+ <output-dir compare="Text">query-issue55</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="open-closed">
+ <compilation-unit name="query-issue55-1">
+ <output-dir compare="Text">query-issue55-1</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="open-closed">
+ <compilation-unit name="query-issue166">
+ <output-dir compare="Text">query-issue166</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="open-closed">
+ <compilation-unit name="query-issue208">
+ <output-dir compare="Text">query-issue208</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="open-closed">
+ <compilation-unit name="query-issue236">
+ <output-dir compare="Text">query-issue236</output-dir>
+ </compilation-unit>
+ </test-case>
+ <!--
+ <test-case FilePath="open-closed">
+ <compilation-unit name="open-closed-15">
+ <output-dir compare="Text">open-closed-15</output-dir>
+ </compilation-unit>
+ </test-case>
+ -->
+ <!--
+ <test-case FilePath="open-closed">
+ <compilation-unit name="open-closed-16">
+ <output-dir compare="Text">open-closed-16</output-dir>
+ </compilation-unit>
+ </test-case>
+ -->
+ <!--
+ <test-case FilePath="open-closed">
+ <compilation-unit name="open-closed-17">
+ <output-dir compare="Text">open-closed-17</output-dir>
+ </compilation-unit>
+ </test-case>
+ -->
+ <!--
+ <test-case FilePath="open-closed">
+ <compilation-unit name="open-closed-19">
+ <output-dir compare="Text">open-closed-19</output-dir>
+ </compilation-unit>
+ </test-case>
+ -->
+ <!--
+ <test-case FilePath="open-closed">
+ <compilation-unit name="open-closed-20">
+ <output-dir compare="Text">open-closed-20</output-dir>
+ </compilation-unit>
+ </test-case>
+ -->
+ <!--
+ <test-case FilePath="open-closed">
+ <compilation-unit name="open-closed-21">
+ <output-dir compare="Text">open-closed-21</output-dir>
+ </compilation-unit>
+ </test-case>
+ -->
+ <!--
+ <test-case FilePath="open-closed">
+ <compilation-unit name="open-closed-22">
+ <output-dir compare="Text">open-closed-22</output-dir>
+ </compilation-unit>
+ </test-case>
+ -->
+ <test-case FilePath="open-closed">
+ <compilation-unit name="open-closed-24">
+ <output-dir compare="Text">open-closed-24</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="open-closed">
+ <compilation-unit name="open-closed-25">
+ <output-dir compare="Text">open-closed-25</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="open-closed">
+ <compilation-unit name="open-closed-26">
+ <output-dir compare="Text">open-closed-26</output-dir>
+ </compilation-unit>
+ </test-case>
+ <!--
+ <test-case FilePath="open-closed">
+ <compilation-unit name="open-closed-28">
+ <output-dir compare="Text">open-closed-28</output-dir>
+ </compilation-unit>
+ </test-case>
+ -->
+ <test-case FilePath="open-closed">
+ <compilation-unit name="open-closed-29">
+ <output-dir compare="Text">open-closed-29</output-dir>
+ </compilation-unit>
+ </test-case>
+ <!--
+ <test-case FilePath="open-closed">
+ <compilation-unit name="open-closed-30">
+ <output-dir compare="Text">open-closed-30</output-dir>
+ </compilation-unit>
+ </test-case>
+ -->
+ <test-case FilePath="open-closed">
+ <compilation-unit name="open-closed-31">
+ <output-dir compare="Text">open-closed-31</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="open-closed">
+ <compilation-unit name="open-closed-32">
+ <output-dir compare="Text">open-closed-32</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="open-closed">
+ <compilation-unit name="open-closed-33">
+ <output-dir compare="Text">open-closed-33</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="open-closed">
+ <compilation-unit name="query-proposal02">
+ <output-dir compare="Text">query-proposal02</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="open-closed">
+ <compilation-unit name="query-proposal">
+ <output-dir compare="Text">query-proposal</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="open-closed">
+ <compilation-unit name="query-issue350">
+ <output-dir compare="Text">query-issue350</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="open-closed">
+ <compilation-unit name="query-issue350-2">
+ <output-dir compare="Text">query-issue350-2</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="open-closed">
+ <compilation-unit name="query-issue343">
+ <output-dir compare="Text">query-issue343</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="open-closed">
+ <compilation-unit name="query-issue343-2">
+ <output-dir compare="Text">query-issue343-2</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="open-closed">
+ <compilation-unit name="query-issue196">
+ <output-dir compare="Text">query-issue196</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="open-closed">
+ <compilation-unit name="query-issue377">
+ <output-dir compare="Text">query-issue377</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="open-closed">
+ <compilation-unit name="query-issue410">
+ <output-dir compare="Text">query-issue410</output-dir>
+ <expected-error>org.apache.asterix.common.exceptions.AsterixException</expected-error>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="open-closed">
+ <compilation-unit name="query-issue453">
+ <output-dir compare="Text">query-issue453</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="open-closed">
+ <compilation-unit name="query-issue453-2">
+ <output-dir compare="Text">query-issue453-2</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="open-closed">
+ <compilation-unit name="query-issue456">
+ <output-dir compare="Text">query-issue456</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="open-closed">
+ <compilation-unit name="query-issue465">
+ <output-dir compare="Text">query-issue465</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="open-closed">
+ <compilation-unit name="query-issue258">
+ <output-dir compare="Text">query-issue258</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="open-closed">
+ <compilation-unit name="query-issue423">
+ <output-dir compare="Text">query-issue423</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="open-closed">
+ <compilation-unit name="query-issue423-2">
+ <output-dir compare="Text">query-issue423-2</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="open-closed">
+ <compilation-unit name="query-issue442">
+ <output-dir compare="Text">query-issue442</output-dir>
+ <expected-error>org.apache.asterix.common.exceptions.AsterixException</expected-error>
+ </compilation-unit>
+ </test-case>
+ <!--<test-case FilePath="open-closed">
+ <compilation-unit name="query-issue487">
+ <output-dir compare="Text">query-issue487</output-dir>
+ <expected-error>org.apache.asterix.common.exceptions.AsterixException</expected-error>
+ </compilation-unit>
+ </test-case> -->
+ <test-case FilePath="open-closed">
+ <compilation-unit name="query-issue592">
+ <output-dir compare="Text">query-issue592</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="open-closed">
+ <compilation-unit name="query-issue625">
+ <output-dir compare="Text">query-issue625</output-dir>
+ </compilation-unit>
+ </test-case>
+ </test-group>
+ <test-group name="quantifiers">
+ <test-case FilePath="quantifiers">
+ <compilation-unit name="everysat_01">
+ <output-dir compare="Text">everysat_01</output-dir>
+ </compilation-unit>
+ </test-case>
+ <!--
+ <test-case FilePath="quantifiers">
+ <compilation-unit name="everysat_02">
+ <output-dir compare="Text">everysat_02</output-dir>
+ </compilation-unit>
+ </test-case>
+ -->
+ <!--
+ <test-case FilePath="quantifiers">
+ <compilation-unit name="everysat_03">
+ <output-dir compare="Text">everysat_03</output-dir>
+ </compilation-unit>
+ </test-case>
+ -->
+ <test-case FilePath="quantifiers">
+ <compilation-unit name="everysat_04">
+ <output-dir compare="Text">everysat_04</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="quantifiers">
+ <compilation-unit name="somesat_01">
+ <output-dir compare="Text">somesat_01</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="quantifiers">
+ <compilation-unit name="somesat_02">
+ <output-dir compare="Text">somesat_02</output-dir>
+ </compilation-unit>
+ </test-case>
+ <!--
+ <test-case FilePath="quantifiers">
+ <compilation-unit name="somesat_03">
+ <output-dir compare="Text">somesat_03</output-dir>
+ </compilation-unit>
+ </test-case>
+ -->
+ <!--
+ <test-case FilePath="quantifiers">
+ <compilation-unit name="somesat_04">
+ <output-dir compare="Text">somesat_04</output-dir>
+ </compilation-unit>
+ </test-case>
+ -->
+ <!--
+ <test-case FilePath="quantifiers">
+ <compilation-unit name="somesat_05">
+ <output-dir compare="Text">somesat_05</output-dir>
+ </compilation-unit>
+ </test-case>
+ -->
+ <test-case FilePath="quantifiers">
+ <compilation-unit name="somesat_06">
+ <output-dir compare="Text">somesat_06</output-dir>
+ </compilation-unit>
+ </test-case>
+ </test-group>
+ <test-group name="range-hints">
+ <test-case FilePath="range-hints">
+ <compilation-unit name="order-by">
+ <output-dir compare="Text">order-by</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="range-hints">
+ <compilation-unit name="order-by-exception_01">
+ <output-dir compare="Text">order-by</output-dir>
+ <expected-error>org.apache.asterix.common.exceptions.AsterixException</expected-error>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="range-hints">
+ <compilation-unit name="order-by-exception_02">
+ <output-dir compare="Text">order-by</output-dir>
+ <expected-error>org.apache.asterix.common.exceptions.AsterixException</expected-error>
+ </compilation-unit>
+ </test-case>
+ </test-group>
+ <test-group name="records">
+ &RecordsQueries;
+ </test-group>
+ <test-group name="scan">
+ <test-case FilePath="scan">
+ <compilation-unit name="10">
+ <output-dir compare="Text">10</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="scan">
+ <compilation-unit name="20">
+ <output-dir compare="Text">20</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="scan">
+ <compilation-unit name="issue238_query_1">
+ <output-dir compare="Text">issue238_query_1</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="scan">
+ <compilation-unit name="issue238_query_2">
+ <output-dir compare="Text">issue238_query_2</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="scan">
+ <compilation-unit name="invalid-scan-syntax">
+ <output-dir compare="Text">invalid-scan-syntax</output-dir>
+ <expected-error>SyntaxError</expected-error>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="scan">
+ <compilation-unit name="30">
+ <output-dir compare="Text">30</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="scan">
+ <compilation-unit name="alltypes_01">
+ <output-dir compare="Text">alltypes_01</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="scan">
+ <compilation-unit name="alltypes_01">
+ <output-dir compare="Text">alltypes_01</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="scan">
+ <compilation-unit name="alltypes_02">
+ <output-dir compare="Text">alltypes_02</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="scan">
+ <compilation-unit name="numeric_types_01">
+ <output-dir compare="Text">numeric_types_01</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="scan">
+ <compilation-unit name="spatial_types_01">
+ <output-dir compare="Text">spatial_types_01</output-dir>
+ </compilation-unit>
+ </test-case>
+ <!--
+ <test-case FilePath="scan">
+ <compilation-unit name="spatial_types_02">
+ <output-dir compare="Text">spatial_types_02</output-dir>
+ </compilation-unit>
+ </test-case>
+ -->
+ <test-case FilePath="scan">
+ <compilation-unit name="temp_types_01">
+ <output-dir compare="Text">temp_types_01</output-dir>
+ </compilation-unit>
+ </test-case>
+ <!--
+ <test-case FilePath="scan">
+ <compilation-unit name="temp_types_02">
+ <output-dir compare="Text">temp_types_02</output-dir>
+ </compilation-unit>
+ </test-case>
+ -->
+ </test-group>
+ <test-group name="semistructured">
+ <test-case FilePath="semistructured">
+ <compilation-unit name="count-nullable">
+ <output-dir compare="Text">count-nullable</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="semistructured">
+ <compilation-unit name="cust-filter">
+ <output-dir compare="Text">cust-filter</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="semistructured">
+ <compilation-unit name="has-param1">
+ <output-dir compare="Text">has-param1</output-dir>
+ </compilation-unit>
+ </test-case>
+ </test-group>
+ <test-group name="similarity">
+ <test-case FilePath="similarity">
+ <compilation-unit name="edit-distance-check_ints">
+ <output-dir compare="Text">edit-distance-check_ints</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="similarity">
+ <compilation-unit name="edit-distance-check_strings">
+ <output-dir compare="Text">edit-distance-check_strings</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="similarity">
+ <compilation-unit name="edit-distance-check_unicode">
+ <output-dir compare="Text">edit-distance-check_unicode</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="similarity">
+ <compilation-unit name="edit-distance-list-is-filterable">
+ <output-dir compare="Text">edit-distance-list-is-filterable</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="similarity">
+ <compilation-unit name="edit-distance-string-is-filterable">
+ <output-dir compare="Text">edit-distance-string-is-filterable</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="similarity">
+ <compilation-unit name="edit-distance_ints">
+ <output-dir compare="Text">edit-distance_ints</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="similarity">
+ <compilation-unit name="edit-distance_strings">
+ <output-dir compare="Text">edit-distance_strings</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="similarity">
+ <compilation-unit name="fuzzyeq-edit-distance">
+ <output-dir compare="Text">fuzzyeq-edit-distance</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="similarity">
+ <compilation-unit name="fuzzyeq-similarity-jaccard">
+ <output-dir compare="Text">fuzzyeq-similarity-jaccard</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="similarity">
+ <compilation-unit name="prefix-len-jaccard">
+ <output-dir compare="Text">prefix-len-jaccard</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="similarity">
+ <compilation-unit name="similarity-jaccard-check_ints">
+ <output-dir compare="Text">similarity-jaccard-check_ints</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="similarity">
+ <compilation-unit name="similarity-jaccard-check_query">
+ <output-dir compare="Text">similarity-jaccard-check_query</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="similarity">
+ <compilation-unit name="similarity-jaccard-check_strings">
+ <output-dir compare="Text">similarity-jaccard-check_strings</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="similarity">
+ <compilation-unit name="similarity-jaccard-prefix-check">
+ <output-dir compare="Text">similarity-jaccard-prefix-check</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="similarity">
+ <compilation-unit name="similarity-jaccard-prefix">
+ <output-dir compare="Text">similarity-jaccard-prefix</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="similarity">
+ <compilation-unit name="similarity-jaccard-sorted-check_ints">
+ <output-dir compare="Text">similarity-jaccard-sorted-check_ints</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="similarity">
+ <compilation-unit name="similarity-jaccard-sorted-check_query">
+ <output-dir compare="Text">similarity-jaccard-sorted-check_query</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="similarity">
+ <compilation-unit name="similarity-jaccard-sorted-check_strings">
+ <output-dir compare="Text">similarity-jaccard-sorted-check_strings</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="similarity">
+ <compilation-unit name="similarity-jaccard-sorted_ints">
+ <output-dir compare="Text">similarity-jaccard-sorted_ints</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="similarity">
+ <compilation-unit name="similarity-jaccard-sorted_query">
+ <output-dir compare="Text">similarity-jaccard-sorted_query</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="similarity">
+ <compilation-unit name="similarity-jaccard-sorted_strings">
+ <output-dir compare="Text">similarity-jaccard-sorted_strings</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="similarity">
+ <compilation-unit name="similarity-jaccard_ints">
+ <output-dir compare="Text">similarity-jaccard_ints</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="similarity">
+ <compilation-unit name="similarity-jaccard_query">
+ <output-dir compare="Text">similarity-jaccard_query</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="similarity">
+ <compilation-unit name="similarity-jaccard_strings">
+ <output-dir compare="Text">similarity-jaccard_strings</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="similarity">
+ <compilation-unit name="similarity-jaccard-check_strings_issue628">
+ <output-dir compare="Text">similarity-jaccard-check_strings_issue628</output-dir>
+ </compilation-unit>
+ </test-case>
+ </test-group>
+ <test-group name="spatial">
+ <test-case FilePath="spatial">
+ <compilation-unit name="cell-aggregation-with-filtering">
+ <output-dir compare="Text">cell-aggregation-with-filtering</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="spatial">
+ <compilation-unit name="cell-aggregation">
+ <output-dir compare="Text">cell-aggregation</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="spatial">
+ <compilation-unit name="circle_accessor">
+ <output-dir compare="Text">circle_accessor</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="spatial">
+ <compilation-unit name="circle-intersect-circle">
+ <output-dir compare="Text">circle-intersect-circle</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="spatial">
+ <compilation-unit name="create-rtree-index">
+ <output-dir compare="Text">create-rtree-index</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="spatial">
+ <compilation-unit name="distance-between-points">
+ <output-dir compare="Text">distance-between-points</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="spatial">
+ <compilation-unit name="line_accessor">
+ <output-dir compare="Text">line_accessor</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="spatial">
+ <compilation-unit name="line-intersect-circle">
+ <output-dir compare="Text">line-intersect-circle</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="spatial">
+ <compilation-unit name="line-intersect-line">
+ <output-dir compare="Text">line-intersect-line</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="spatial">
+ <compilation-unit name="line-intersect-polygon">
+ <output-dir compare="Text">line-intersect-polygon</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="spatial">
+ <compilation-unit name="line-intersect-rectangle">
+ <output-dir compare="Text">line-intersect-rectangle</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="spatial">
+ <compilation-unit name="point_accessor">
+ <output-dir compare="Text">point_accessor</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="spatial">
+ <compilation-unit name="point-equals-point">
+ <output-dir compare="Text">point-equals-point</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="spatial">
+ <compilation-unit name="point-in-circle">
+ <output-dir compare="Text">point-in-circle</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="spatial">
+ <compilation-unit name="point-in-polygon">
+ <output-dir compare="Text">point-in-polygon</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="spatial">
+ <compilation-unit name="point-in-rectangle">
+ <output-dir compare="Text">point-in-rectangle</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="spatial">
+ <compilation-unit name="point-on-line">
+ <output-dir compare="Text">point-on-line</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="spatial">
+ <compilation-unit name="polygon_accessor">
+ <output-dir compare="Text">polygon_accessor</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="spatial">
+ <compilation-unit name="polygon-intersect-circle">
+ <output-dir compare="Text">polygon-intersect-circle</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="spatial">
+ <compilation-unit name="polygon-intersect-polygon">
+ <output-dir compare="Text">polygon-intersect-polygon</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="spatial">
+ <compilation-unit name="polygon-intersect-rectangle">
+ <output-dir compare="Text">polygon-intersect-rectangle</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="spatial">
+ <compilation-unit name="rectangle_accessor">
+ <output-dir compare="Text">rectangle_accessor</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="spatial">
+ <compilation-unit name="rectangle-intersect-circle">
+ <output-dir compare="Text">rectangle-intersect-circle</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="spatial">
+ <compilation-unit name="rectangle-intersect-rectangle">
+ <output-dir compare="Text">rectangle-intersect-rectangle</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="spatial">
+ <compilation-unit name="spatial-area">
+ <output-dir compare="Text">spatial-area</output-dir>
+ </compilation-unit>
+ </test-case>
+ </test-group>
+ <test-group name="string">
+ <test-case FilePath="string">
+ <compilation-unit name="codepoint-to-string1">
+ <output-dir compare="Text">codepoint-to-string1</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="string">
+ <compilation-unit name="codepoint-to-string2">
+ <output-dir compare="Text">codepoint-to-string2</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="string">
+ <compilation-unit name="concat_01">
+ <output-dir compare="Text">concat_01</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="string">
+ <compilation-unit name="concat_02">
+ <output-dir compare="Text">concat_02</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="string">
+ <compilation-unit name="concat_03">
+ <output-dir compare="Text">concat_03</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="string">
+ <compilation-unit name="constructor">
+ <output-dir compare="Text">constructor</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="string">
+ <compilation-unit name="contains_01">
+ <output-dir compare="Text">contains_01</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="string">
+ <compilation-unit name="cpttostr01">
+ <output-dir compare="Text">cpttostr01</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="string">
+ <compilation-unit name="cpttostr02">
+ <output-dir compare="Text">cpttostr02</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="string">
+ <compilation-unit name="cpttostr04">
+ <output-dir compare="Text">cpttostr04</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="string">
+ <compilation-unit name="end-with1">
+ <output-dir compare="Text">end-with1</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="string">
+ <compilation-unit name="end-with2">
+ <output-dir compare="Text">end-with2</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="string">
+ <compilation-unit name="end-with3">
+ <output-dir compare="Text">end-with3</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="string">
+ <compilation-unit name="end-with4">
+ <output-dir compare="Text">end-with4</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="string">
+ <compilation-unit name="end-with5">
+ <output-dir compare="Text">end-with5</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="string">
+ <compilation-unit name="ends-with_01">
+ <output-dir compare="Text">ends-with_01</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="string">
+ <compilation-unit name="endwith02">
+ <output-dir compare="Text">endwith02</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="string">
+ <compilation-unit name="endwith03">
+ <output-dir compare="Text">endwith03</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="string">
+ <compilation-unit name="escapes01">
+ <output-dir compare="Text">escapes01</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="string">
+ <compilation-unit name="escapes02">
+ <output-dir compare="Text">escapes02</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="string">
+ <compilation-unit name="length_01">
+ <output-dir compare="Text">length_01</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="string">
+ <compilation-unit name="length_02">
+ <output-dir compare="Text">length_02</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="string">
+ <compilation-unit name="like_01">
+ <output-dir compare="Text">like_01</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="string">
+ <compilation-unit name="like_null">
+ <output-dir compare="Text">like_null</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="string">
+ <compilation-unit name="lowercase">
+ <output-dir compare="Text">lowercase</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="string">
+ <compilation-unit name="matches02">
+ <output-dir compare="Text">matches02</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="string">
+ <compilation-unit name="matches03">
+ <output-dir compare="Text">matches03</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="string">
+ <compilation-unit name="matches04">
+ <output-dir compare="Text">matches04</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="string">
+ <compilation-unit name="matches05">
+ <output-dir compare="Text">matches05</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="string">
+ <compilation-unit name="matches06">
+ <output-dir compare="Text">matches06</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="string">
+ <compilation-unit name="matches1">
+ <output-dir compare="Text">matches1</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="string">
+ <compilation-unit name="matches11">
+ <output-dir compare="Text">matches11</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="string">
+ <compilation-unit name="matches2">
+ <output-dir compare="Text">matches2</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="string">
+ <compilation-unit name="matches21">
+ <output-dir compare="Text">matches21</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="string">
+ <compilation-unit name="matches22">
+ <output-dir compare="Text">matches22</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="string">
+ <compilation-unit name="matches23">
+ <output-dir compare="Text">matches23</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="string">
+ <compilation-unit name="matches3">
+ <output-dir compare="Text">matches3</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="string">
+ <compilation-unit name="matchesnull">
+ <output-dir compare="Text">matchesnull</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="string">
+ <compilation-unit name="replace1">
+ <output-dir compare="Text">replace1</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="string">
+ <compilation-unit name="replace2">
+ <output-dir compare="Text">replace2</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="string">
+ <compilation-unit name="replace21">
+ <output-dir compare="Text">replace21</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="string">
+ <compilation-unit name="replace22">
+ <output-dir compare="Text">replace22</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="string">
+ <compilation-unit name="replace3">
+ <output-dir compare="Text">replace3</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="string">
+ <compilation-unit name="start-with1">
+ <output-dir compare="Text">start-with1</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="string">
+ <compilation-unit name="start-with2">
+ <output-dir compare="Text">start-with2</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="string">
+ <compilation-unit name="start-with3">
+ <output-dir compare="Text">start-with3</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="string">
+ <compilation-unit name="start-with4">
+ <output-dir compare="Text">start-with4</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="string">
+ <compilation-unit name="start-with5">
+ <output-dir compare="Text">start-with5</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="string">
+ <compilation-unit name="starts-with_01">
+ <output-dir compare="Text">starts-with_01</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="string">
+ <compilation-unit name="startwith02">
+ <output-dir compare="Text">startwith02</output-dir>
+ </compilation-unit>
+ </test-case>
+ <!--
+ <test-case FilePath="string">
+ <compilation-unit name="startwith03">
+ <output-dir compare="Text">startwith03</output-dir>
+ </compilation-unit>
+ </test-case>
+ -->
+ <test-case FilePath="string">
+ <compilation-unit name="strconcat01">
+ <output-dir compare="Text">strconcat01</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="string">
+ <compilation-unit name="strconcat02">
+ <output-dir compare="Text">strconcat02</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="string">
+ <compilation-unit name="string-concat1">
+ <output-dir compare="Text">string-concat1</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="string">
+ <compilation-unit name="string-equal1">
+ <output-dir compare="Text">string-equal1</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="string">
+ <compilation-unit name="string-equal2">
+ <output-dir compare="Text">string-equal2</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="string">
+ <compilation-unit name="string-equal3">
+ <output-dir compare="Text">string-equal3</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="string">
+ <compilation-unit name="string-equal4">
+ <output-dir compare="Text">string-equal4</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="string">
+ <compilation-unit name="string-join1">
+ <output-dir compare="Text">string-join1</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="string">
+ <compilation-unit name="string-to-codepoint">
+ <output-dir compare="Text">string-to-codepoint</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="string">
+ <compilation-unit name="string-to-codepoint1">
+ <output-dir compare="Text">string-to-codepoint1</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="string">
+ <compilation-unit name="string-to-codepoint2">
+ <output-dir compare="Text">string-to-codepoint2</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="string">
+ <compilation-unit name="strlen02">
+ <output-dir compare="Text">strlen02</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="string">
+ <compilation-unit name="strlen03">
+ <output-dir compare="Text">strlen03</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="string">
+ <compilation-unit name="strtocpt01">
+ <output-dir compare="Text">strtocpt01</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="string">
+ <compilation-unit name="strtocpt02">
+ <output-dir compare="Text">strtocpt02</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="string">
+ <compilation-unit name="strtocpt03">
+ <output-dir compare="Text">strtocpt03</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="string">
+ <compilation-unit name="substr01">
+ <output-dir compare="Text">substr01</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="string">
+ <compilation-unit name="substr04">
+ <output-dir compare="Text">substr04</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="string">
+ <compilation-unit name="substr05">
+ <output-dir compare="Text">substr05</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="string">
+ <compilation-unit name="substr06">
+ <output-dir compare="Text">substr06</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="string">
+ <compilation-unit name="substring-after-1">
+ <output-dir compare="Text">substring-after-1</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="string">
+ <compilation-unit name="substring-after-2">
+ <output-dir compare="Text">substring-after-2</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="string">
+ <compilation-unit name="substring-after-3">
+ <output-dir compare="Text">substring-after-3</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="string">
+ <compilation-unit name="substring-after-4">
+ <output-dir compare="Text">substring-after-4</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="string">
+ <compilation-unit name="substring-before-1">
+ <output-dir compare="Text">substring-before-1</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="string">
+ <compilation-unit name="substring-before-2">
+ <output-dir compare="Text">substring-before-2</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="string">
+ <compilation-unit name="substring-before-3">
+ <output-dir compare="Text">substring-before-3</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="string">
+ <compilation-unit name="substring2-1">
+ <output-dir compare="Text">substring2-1</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="string">
+ <compilation-unit name="substring2-2">
+ <output-dir compare="Text">substring2-2</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="string">
+ <compilation-unit name="substring2-3">
+ <output-dir compare="Text">substring2-3</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="string">
+ <compilation-unit name="substring2-4">
+ <output-dir compare="Text">substring2-4</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="string">
+ <compilation-unit name="substring_01">
+ <output-dir compare="Text">substring_01</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="string">
+ <compilation-unit name="toLowerCase02">
+ <output-dir compare="Text">toLowerCase02</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="string">
+ <compilation-unit name="toLowerCase03">
+ <output-dir compare="Text">toLowerCase03</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="string">
+ <compilation-unit name="toLowerCase04">
+ <output-dir compare="Text">toLowerCase04</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="string">
+ <compilation-unit name="uppercase">
+ <output-dir compare="Text">uppercase</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="string">
+ <compilation-unit name="varlen-encoding">
+ <output-dir compare="Text">varlen-encoding</output-dir>
+ </compilation-unit>
+ </test-case>
+ </test-group>
+ <test-group name="subset-collection">
+ <test-case FilePath="subset-collection">
+ <compilation-unit name="01">
+ <output-dir compare="Text">01</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="subset-collection">
+ <compilation-unit name="02">
+ <output-dir compare="Text">02</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="subset-collection">
+ <compilation-unit name="03">
+ <output-dir compare="Text">03</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="subset-collection">
+ <compilation-unit name="05">
+ <output-dir compare="Text">05</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="subset-collection">
+ <compilation-unit name="06">
+ <output-dir compare="Text">06</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="subset-collection">
+ <compilation-unit name="07">
+ <output-dir compare="Text">07</output-dir>
+ </compilation-unit>
+ </test-case>
+ </test-group>
+ <test-group name="tokenizers">
+ <test-case FilePath="tokenizers">
+ <compilation-unit name="counthashed-gram-tokens_01">
+ <output-dir compare="Text">counthashed-gram-tokens_01</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="tokenizers">
+ <compilation-unit name="counthashed-gram-tokens_02">
+ <output-dir compare="Text">counthashed-gram-tokens_02</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="tokenizers">
+ <compilation-unit name="counthashed-word-tokens_01">
+ <output-dir compare="Text">counthashed-word-tokens_01</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="tokenizers">
+ <compilation-unit name="gram-tokens_01">
+ <output-dir compare="Text">gram-tokens_01</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="tokenizers">
+ <compilation-unit name="gram-tokens_02">
+ <output-dir compare="Text">gram-tokens_02</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="tokenizers">
+ <compilation-unit name="hashed-gram-tokens_01">
+ <output-dir compare="Text">hashed-gram-tokens_01</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="tokenizers">
+ <compilation-unit name="hashed-gram-tokens_02">
+ <output-dir compare="Text">hashed-gram-tokens_02</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="tokenizers">
+ <compilation-unit name="hashed-word-tokens_01">
+ <output-dir compare="Text">hashed-word-tokens_01</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="tokenizers">
+ <compilation-unit name="word-tokens_01">
+ <output-dir compare="Text">word-tokens_01</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="tokenizers">
+ <compilation-unit name="word-tokens_02">
+ <output-dir compare="Text">word-tokens_02</output-dir>
+ </compilation-unit>
+ </test-case>
+ </test-group>
+ <test-group name="tpch">
+ <test-case FilePath="tpch">
+ <compilation-unit name="distinct_by">
+ <output-dir compare="Text">distinct_by</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="tpch">
+ <compilation-unit name="group_no_agg">
+ <output-dir compare="Text">group_no_agg</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="tpch">
+ <compilation-unit name="nest_aggregate">
+ <output-dir compare="Text">nest_aggregate</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="tpch">
+ <compilation-unit name="query-issue638">
+ <output-dir compare="Text">query-issue638</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="tpch">
+ <compilation-unit name="query-issue785">
+ <output-dir compare="Text">query-issue785</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="tpch">
+ <compilation-unit name="query-issue785-2">
+ <output-dir compare="Text">query-issue785-2</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="tpch">
+ <compilation-unit name="query-issue786">
+ <output-dir compare="Text">query-issue786</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="tpch">
+ <compilation-unit name="query-issue601">
+ <output-dir compare="Text">query-issue601</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="tpch">
+ <compilation-unit name="q10_returned_item">
+ <output-dir compare="Text">q10_returned_item</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="tpch">
+ <compilation-unit name="q10_returned_item_int64">
+ <output-dir compare="Text">q10_returned_item_int64</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="tpch">
+ <compilation-unit name="q11_important_stock">
+ <output-dir compare="Text">q11_important_stock</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="tpch">
+ <compilation-unit name="q12_shipping">
+ <output-dir compare="Text">q12_shipping</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="tpch">
+ <compilation-unit name="q13_customer_distribution">
+ <output-dir compare="Text">q13_customer_distribution</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="tpch">
+ <compilation-unit name="q14_promotion_effect">
+ <output-dir compare="Text">q14_promotion_effect</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="tpch">
+ <compilation-unit name="q15_top_supplier">
+ <output-dir compare="Text">q15_top_supplier</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="tpch">
+ <compilation-unit name="q16_parts_supplier_relationship">
+ <output-dir compare="Text">q16_parts_supplier_relationship</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="tpch">
+ <compilation-unit name="q17_squantity_order_revenue">
+ <output-dir compare="Text">q17_small_quantity_order_revenue</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="tpch">
+ <compilation-unit name="q17_large_gby_variant">
+ <output-dir compare="Text">q17_large_gby_variant</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="tpch">
+ <compilation-unit name="q18_large_volume_customer">
+ <output-dir compare="Text">q18_large_volume_customer</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="tpch">
+ <compilation-unit name="q19_discounted_revenue">
+ <output-dir compare="Text">q19_discounted_revenue</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="tpch">
+ <compilation-unit name="q01_pricing_summary_report_nt">
+ <output-dir compare="Text">q01_pricing_summary_report_nt</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="tpch">
+ <compilation-unit name="q20_potential_part_promotion">
+ <output-dir compare="Text">q20_potential_part_promotion</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="tpch">
+ <compilation-unit name="q21_suppliers_who_kept_orders_waiting">
+ <output-dir compare="Text">q21_suppliers_who_kept_orders_waiting</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="tpch">
+ <compilation-unit name="q22_global_sales_opportunity">
+ <output-dir compare="Text">q22_global_sales_opportunity</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="tpch">
+ <compilation-unit name="q02_minimum_cost_supplier">
+ <output-dir compare="Text">q02_minimum_cost_supplier</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="tpch">
+ <compilation-unit name="q03_shipping_priority_nt">
+ <output-dir compare="Text">q03_shipping_priority_nt</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="tpch">
+ <compilation-unit name="q04_order_priority">
+ <output-dir compare="Text">q04_order_priority</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="tpch">
+ <compilation-unit name="q05_local_supplier_volume">
+ <output-dir compare="Text">q05_local_supplier_volume</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="tpch">
+ <compilation-unit name="q06_forecast_revenue_change">
+ <output-dir compare="Text">q06_forecast_revenue_change</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="tpch">
+ <compilation-unit name="q07_volume_shipping">
+ <output-dir compare="Text">q07_volume_shipping</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="tpch">
+ <compilation-unit name="q08_national_market_share">
+ <output-dir compare="Text">q08_national_market_share</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="tpch">
+ <compilation-unit name="q09_product_type_profit_nt">
+ <output-dir compare="Text">q09_product_type_profit_nt</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="tpch">
+ <compilation-unit name="query-issue562">
+ <output-dir compare="Text">query-issue562</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="tpch">
+ <compilation-unit name="query-issue810">
+ <output-dir compare="Text">query-issue810</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="tpch">
+ <compilation-unit name="query-issue810-2">
+ <output-dir compare="Text">query-issue810-2</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="tpch">
+ <compilation-unit name="query-issue810-3">
+ <output-dir compare="Text">query-issue810-3</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="tpch">
+ <compilation-unit name="query-issue827">
+ <output-dir compare="Text">query-issue827</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="tpch">
+ <compilation-unit name="query-issue827-2">
+ <output-dir compare="Text">query-issue827-2</output-dir>
+ </compilation-unit>
+ </test-case>
+ </test-group>
+ <test-group name="tpch-sql-like">
+ <test-case FilePath="tpch-sql-like">
+ <compilation-unit name="query-issue638">
+ <output-dir compare="Text">query-issue638</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="tpch-sql-like">
+ <compilation-unit name="query-issue785">
+ <output-dir compare="Text">query-issue785</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="tpch-sql-like">
+ <compilation-unit name="query-issue785-2">
+ <output-dir compare="Text">query-issue785-2</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="tpch-sql-like">
+ <compilation-unit name="query-issue786">
+ <output-dir compare="Text">query-issue786</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="tpch-sql-like">
+ <compilation-unit name="query-issue601">
+ <output-dir compare="Text">query-issue601</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="tpch-sql-like">
+ <compilation-unit name="q10_returned_item">
+ <output-dir compare="Text">q10_returned_item</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="tpch-sql-like">
+ <compilation-unit name="q10_returned_item_int64">
+ <output-dir compare="Text">q10_returned_item_int64</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="tpch-sql-like">
+ <compilation-unit name="q11_important_stock">
+ <output-dir compare="Text">q11_important_stock</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="tpch-sql-like">
+ <compilation-unit name="q12_shipping">
+ <output-dir compare="Text">q12_shipping</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="tpch-sql-like">
+ <compilation-unit name="q13_customer_distribution">
+ <output-dir compare="Text">q13_customer_distribution</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="tpch-sql-like">
+ <compilation-unit name="q14_promotion_effect">
+ <output-dir compare="Text">q14_promotion_effect</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="tpch-sql-like">
+ <compilation-unit name="q15_top_supplier">
+ <output-dir compare="Text">q15_top_supplier</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="tpch-sql-like">
+ <compilation-unit name="q16_parts_supplier_relationship">
+ <output-dir compare="Text">q16_parts_supplier_relationship</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="tpch-sql-like">
+ <compilation-unit name="q17_small_quantity_order_revenue">
+ <output-dir compare="Text">q17_small_quantity_order_revenue</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="tpch-sql-like">
+ <compilation-unit name="q17_large_gby_variant">
+ <output-dir compare="Text">q17_large_gby_variant</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="tpch-sql-like">
+ <compilation-unit name="q18_large_volume_customer">
+ <output-dir compare="Text">q18_large_volume_customer</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="tpch-sql-like">
+ <compilation-unit name="q19_discounted_revenue">
+ <output-dir compare="Text">q19_discounted_revenue</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="tpch-sql-like">
+ <compilation-unit name="q01_pricing_summary_report_nt">
+ <output-dir compare="Text">q01_pricing_summary_report_nt</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="tpch-sql-like">
+ <compilation-unit name="q20_potential_part_promotion">
+ <output-dir compare="Text">q20_potential_part_promotion</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="tpch-sql-like">
+ <compilation-unit name="q21_suppliers_who_kept_orders_waiting">
+ <output-dir compare="Text">q21_suppliers_who_kept_orders_waiting</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="tpch-sql-like">
+ <compilation-unit name="q22_global_sales_opportunity">
+ <output-dir compare="Text">q22_global_sales_opportunity</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="tpch-sql-like">
+ <compilation-unit name="q02_minimum_cost_supplier">
+ <output-dir compare="Text">q02_minimum_cost_supplier</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="tpch-sql-like">
+ <compilation-unit name="q03_shipping_priority_nt">
+ <output-dir compare="Text">q03_shipping_priority_nt</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="tpch-sql-like">
+ <compilation-unit name="q04_order_priority">
+ <output-dir compare="Text">q04_order_priority</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="tpch-sql-like">
+ <compilation-unit name="q05_local_supplier_volume">
+ <output-dir compare="Text">q05_local_supplier_volume</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="tpch-sql-like">
+ <compilation-unit name="q06_forecast_revenue_change">
+ <output-dir compare="Text">q06_forecast_revenue_change</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="tpch-sql-like">
+ <compilation-unit name="q07_volume_shipping">
+ <output-dir compare="Text">q07_volume_shipping</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="tpch-sql-like">
+ <compilation-unit name="q08_national_market_share">
+ <output-dir compare="Text">q08_national_market_share</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="tpch-sql-like">
+ <compilation-unit name="q09_product_type_profit_nt">
+ <output-dir compare="Text">q09_product_type_profit_nt</output-dir>
+ </compilation-unit>
+ </test-case>
+ </test-group>
+ <test-group name="writers">
+ <test-case FilePath="writers">
+ <compilation-unit name="print_01">
+ <output-dir compare="Text">print_01</output-dir>
+ </compilation-unit>
+ </test-case>
+ <!-- TODO(madhusudancs): Enable this test when REST API supports serialized output support.
+ <test-case FilePath="writers">
+ <compilation-unit name="serialized_01">
+ <output-dir compare="Text">serialized_01</output-dir>
+ </compilation-unit>
+ </test-case>
+ -->
+ </test-group>
+ <test-group name="cross-dataverse">
+ <test-case FilePath="cross-dataverse">
+ <compilation-unit name="cross-dv01">
+ <output-dir compare="Text">cross-dv01</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="cross-dataverse">
+ <compilation-unit name="cross-dv02">
+ <output-dir compare="Text">cross-dv02</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="cross-dataverse">
+ <compilation-unit name="cross-dv03">
+ <output-dir compare="Text">cross-dv03</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="cross-dataverse">
+ <compilation-unit name="cross-dv04">
+ <output-dir compare="Text">cross-dv04</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="cross-dataverse">
+ <compilation-unit name="cross-dv07">
+ <output-dir compare="Text">cross-dv07</output-dir>
+ </compilation-unit>
+ </test-case>
+ <!--NotImplementedException: No binary comparator factory implemented for type RECORD.
+ <test-case FilePath="cross-dataverse">
+ <compilation-unit name="cross-dv08">
+ <output-dir compare="Text">cross-dv08</output-dir>
+ </compilation-unit>
+ </test-case>
+ -->
+ <test-case FilePath="cross-dataverse">
+ <compilation-unit name="cross-dv09">
+ <output-dir compare="Text">cross-dv09</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="cross-dataverse">
+ <compilation-unit name="cross-dv11">
+ <output-dir compare="Text">cross-dv11</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="cross-dataverse">
+ <compilation-unit name="cross-dv12">
+ <output-dir compare="Text">cross-dv12</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="cross-dataverse">
+ <compilation-unit name="cross-dv13">
+ <output-dir compare="Text">cross-dv13</output-dir>
+ <expected-error>org.apache.asterix.common.exceptions.AsterixException</expected-error>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="cross-dataverse">
+ <compilation-unit name="cross-dv14">
+ <output-dir compare="Text">cross-dv14</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="cross-dataverse">
+ <compilation-unit name="cross-dv15">
+ <output-dir compare="Text">cross-dv15</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="cross-dataverse">
+ <compilation-unit name="cross-dv16">
+ <output-dir compare="Text">cross-dv16</output-dir>
+ <expected-error>org.apache.asterix.common.exceptions.AsterixException</expected-error>
+ </compilation-unit>
+ </test-case>
+ <!--NotImplementedException: No binary comparator factory implemented for type RECORD.
+ <test-case FilePath="cross-dataverse">
+ <compilation-unit name="cross-dv17">
+ <output-dir compare="Text">cross-dv17</output-dir>
+ </compilation-unit>
+ </test-case>
+ -->
+ <!--NotImplementedException: No binary comparator factory implemented for type RECORD.
+ <test-case FilePath="cross-dataverse">
+ <compilation-unit name="cross-dv18">
+ <output-dir compare="Text">cross-dv18</output-dir>
+ </compilation-unit>
+ </test-case>
+ -->
+ <test-case FilePath="cross-dataverse">
+ <compilation-unit name="cross-dv19">
+ <output-dir compare="Text">cross-dv19</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="cross-dataverse">
+ <compilation-unit name="cross-dv20">
+ <output-dir compare="Text">cross-dv20</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="cross-dataverse">
+ <compilation-unit name="insert_across_dataverses">
+ <output-dir compare="Text">insert_across_dataverses</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="cross-dataverse">
+ <compilation-unit name="join_across_dataverses">
+ <output-dir compare="Text">join_across_dataverses</output-dir>
+ </compilation-unit>
+ </test-case>
+ </test-group>
+ <test-group name="user-defined-functions">
+ <test-case FilePath="user-defined-functions">
+ <compilation-unit name="query-issue218-2">
+ <output-dir compare="Text">query-issue218-2</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="user-defined-functions">
+ <compilation-unit name="query-issue218">
+ <output-dir compare="Text">query-issue218</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="user-defined-functions">
+ <compilation-unit name="query-issue201">
+ <output-dir compare="Text">query-issue201</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="user-defined-functions">
+ <compilation-unit name="query-issue172">
+ <output-dir compare="Text">query-issue172</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="user-defined-functions">
+ <compilation-unit name="query-issue455">
+ <output-dir compare="Text">query-issue455</output-dir>
+ <expected-error>org.apache.asterix.common.exceptions.AsterixException</expected-error>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="user-defined-functions">
+ <compilation-unit name="query-issue489">
+ <output-dir compare="Text">query-issue489</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="user-defined-functions">
+ <compilation-unit name="udf01">
+ <output-dir compare="Text">udf01</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="user-defined-functions">
+ <compilation-unit name="udf02">
+ <output-dir compare="Text">udf02</output-dir>
+ </compilation-unit>
+ </test-case>
+ <!-- causes NPE: Issue 200
+ <test-case FilePath="user-defined-functions">
+ <compilation-unit name="udf03">
+ <output-dir compare="Text">udf03</output-dir>
+ </compilation-unit>
+ </test-case>
+ -->
+ <test-case FilePath="user-defined-functions">
+ <compilation-unit name="udf04">
+ <output-dir compare="Text">udf04</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="user-defined-functions">
+ <compilation-unit name="udf05">
+ <output-dir compare="Text">udf05</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="user-defined-functions">
+ <compilation-unit name="udf06">
+ <output-dir compare="Text">udf06</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="user-defined-functions">
+ <compilation-unit name="udf07">
+ <output-dir compare="Text">udf07</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="user-defined-functions">
+ <compilation-unit name="udf08">
+ <output-dir compare="Text">udf08</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="user-defined-functions">
+ <compilation-unit name="udf09">
+ <output-dir compare="Text">udf09</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="user-defined-functions">
+ <compilation-unit name="udf10">
+ <output-dir compare="Text">udf10</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="user-defined-functions">
+ <compilation-unit name="udf11">
+ <output-dir compare="Text">udf11</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="user-defined-functions">
+ <compilation-unit name="udf12">
+ <output-dir compare="Text">udf12</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="user-defined-functions">
+ <compilation-unit name="udf13">
+ <output-dir compare="Text">udf13</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="user-defined-functions">
+ <compilation-unit name="udf14">
+ <output-dir compare="Text">udf14</output-dir>
+ </compilation-unit>
+ </test-case>
+ <!-- Issue 166
+ <test-case FilePath="user-defined-functions">
+ <compilation-unit name="udf15">
+ <output-dir compare="Text">udf15</output-dir>
+ </compilation-unit>
+ </test-case>
+ -->
+ <test-case FilePath="user-defined-functions">
+ <compilation-unit name="udf16">
+ <output-dir compare="Text">udf16</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="user-defined-functions">
+ <compilation-unit name="udf17">
+ <output-dir compare="Text">udf17</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="user-defined-functions">
+ <compilation-unit name="udf18">
+ <output-dir compare="Text">udf18</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="user-defined-functions">
+ <compilation-unit name="udf19">
+ <output-dir compare="Text">udf19</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="user-defined-functions">
+ <compilation-unit name="udf20">
+ <output-dir compare="Text">udf20</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="user-defined-functions">
+ <compilation-unit name="udf21">
+ <output-dir compare="Text">udf21</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="user-defined-functions">
+ <compilation-unit name="udf22">
+ <output-dir compare="Text">udf22</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="user-defined-functions">
+ <compilation-unit name="udf23">
+ <output-dir compare="Text">udf23</output-dir>
+ </compilation-unit>
+ </test-case>
+ <!-- Issue 195
+ <test-case FilePath="user-defined-functions">
+ <compilation-unit name="udf24">
+ <output-dir compare="Text">udf24</output-dir>
+ </compilation-unit>
+ </test-case>
+ -->
+ <!-- Issue 218
+ <test-case FilePath="user-defined-functions">
+ <compilation-unit name="udf25">
+ <output-dir compare="Text">udf25</output-dir>
+ </compilation-unit>
+ </test-case>
+ -->
+ <test-case FilePath="user-defined-functions">
+ <compilation-unit name="udf26">
+ <output-dir compare="Text">udf26</output-dir>
+ <expected-error>org.apache.asterix.common.exceptions.AsterixException</expected-error>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="user-defined-functions">
+ <compilation-unit name="udf27">
+ <output-dir compare="Text">udf27</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="user-defined-functions">
+ <compilation-unit name="udf28">
+ <output-dir compare="Text">udf28</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="user-defined-functions">
+ <compilation-unit name="udf29">
+ <output-dir compare="Text">udf29</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="user-defined-functions">
+ <compilation-unit name="udf30">
+ <output-dir compare="Text">udf30</output-dir>
+ <expected-error>org.apache.asterix.common.exceptions.AsterixException</expected-error>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="user-defined-functions">
+ <compilation-unit name="f01">
+ <output-dir compare="Text">f01</output-dir>
+ <expected-error>org.apache.asterix.common.exceptions.AsterixException</expected-error>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="user-defined-functions">
+ <compilation-unit name="invoke-private-function">
+ <output-dir compare="Text">invoke-private-function</output-dir>
+ <expected-error>org.apache.asterix.common.exceptions.AsterixException</expected-error>
+ </compilation-unit>
+ </test-case>
+ </test-group>
+ <test-group name="load">
+ <test-case FilePath="load">
+ <compilation-unit name="csv_01">
+ <output-dir compare="Text">csv_01</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="load">
+ <compilation-unit name="csv_02">
+ <output-dir compare="Text">csv_02</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="load">
+ <compilation-unit name="csv_03">
+ <output-dir compare="Text">csv_03</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="load">
+ <compilation-unit name="csv_04">
+ <output-dir compare="Text">csv_04</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="load">
+ <compilation-unit name="csv_05">
+ <output-dir compare="Text">csv_05</output-dir>
+ <expected-error>org.apache.hyracks.api.exceptions.HyracksDataException</expected-error>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="load">
+ <compilation-unit name="csv_06">
+ <output-dir compare="Text">csv_06</output-dir>
+ <expected-error>org.apache.hyracks.api.exceptions.HyracksDataException</expected-error>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="load">
+ <compilation-unit name="csv_07">
+ <output-dir compare="Text">csv_07</output-dir>
+ <expected-error>org.apache.hyracks.api.exceptions.HyracksDataException</expected-error>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="load">
+ <compilation-unit name="csv_08_header_cr">
+ <output-dir compare="Text">csv_08</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="load">
+ <compilation-unit name="csv_08_header_lf">
+ <output-dir compare="Text">csv_08</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="load">
+ <compilation-unit name="csv_08_header_crlf">
+ <output-dir compare="Text">csv_08</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="load">
+ <compilation-unit name="issue14_query">
+ <output-dir compare="Text">none</output-dir>
+ <expected-error>org.apache.asterix.common.exceptions.AsterixException</expected-error>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="load">
+ <compilation-unit name="issue315_query">
+ <output-dir compare="Text">none</output-dir>
+ <expected-error>org.apache.asterix.common.exceptions.AsterixException</expected-error>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="load">
+ <compilation-unit name="issue289_query">
+ <output-dir compare="Text">issue289_query</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="load">
+ <compilation-unit name="issue650_query">
+ <output-dir compare="Text">none</output-dir>
+ <expected-error>org.apache.asterix.common.exceptions.AsterixException</expected-error>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="load">
+ <compilation-unit name="type_promotion_0">
+ <output-dir compare="Text">type_promotion_0</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="load">
+ <compilation-unit name="escapes01">
+ <output-dir compare="Text">escapes01</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="load">
+ <compilation-unit name="escapes02">
+ <output-dir compare="Text">escapes02</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="load">
+ <compilation-unit name="escapes-err-1">
+ <output-dir compare="Text">none</output-dir>
+ <expected-error>org.apache.hyracks.api.exceptions.HyracksException</expected-error>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="user-defined-functions">
+ <compilation-unit name="query-issue244">
+ <output-dir compare="Text">query-issue244</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="load">
+ <compilation-unit name="duplicate-key-error">
+ <output-dir compare="Text">none</output-dir>
+ <expected-error>org.apache.hyracks.api.exceptions.HyracksException</expected-error>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="load">
+ <compilation-unit name="issue610_adm_token_end_collection">
+ <output-dir compare="Text">issue610_adm_token_end_collection</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="load">
+ <compilation-unit name="adm_binary">
+ <output-dir compare="Text">adm_binary</output-dir>
+ </compilation-unit>
+ </test-case>
+ </test-group>
+ <test-group name="hints">
+ <test-case FilePath="hints">
+ <compilation-unit name="issue_251_dataset_hint_5">
+ <output-dir compare="Text">issue_251_dataset_hint_5</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="hints">
+ <compilation-unit name="issue_251_dataset_hint_6">
+ <output-dir compare="Text">issue_251_dataset_hint_6</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="hints">
+ <compilation-unit name="issue_251_dataset_hint_7">
+ <output-dir compare="Text">issue_251_dataset_hint_7</output-dir>
+ </compilation-unit>
+ </test-case>
+ </test-group>
+ <test-group name="feeds">
+
+ <!--Disable it because of sporadic failures. Raman will re-enable it.
+ <test-case FilePath="feeds">
+ <compilation-unit name="feeds_01">
+ <output-dir compare="Text">feeds_01</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="feeds">
+ <compilation-unit name="feeds_02">
+ <output-dir compare="Text">feeds_02</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="feeds">
+ <compilation-unit name="feeds_03">
+ <output-dir compare="Text">feeds_03</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="feeds">
+ <compilation-unit name="feeds_04">
+ <output-dir compare="Text">feeds_04</output-dir>
+ </compilation-unit>
+ </test-case>
+
+ <test-case FilePath="feeds">
+ <compilation-unit name="feeds_06">
+ <output-dir compare="Text">feeds_06</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="feeds">
+ <compilation-unit name="feeds_07">
+ <output-dir compare="Text">feeds_07</output-dir>
+ </compilation-unit>
+ </test-case>
+
+ <test-case FilePath="feeds">
+ <compilation-unit name="feeds_08">
+ <output-dir compare="Text">feeds_08</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="feeds">
+ <compilation-unit name="feeds_09">
+ <output-dir compare="Text">feeds_09</output-dir>
+ </compilation-unit>
+ </test-case>
+
+ <test-case FilePath="feeds">
+ <compilation-unit name="feeds_10">
+ <output-dir compare="Text">feeds_10</output-dir>
+ </compilation-unit>
+ </test-case>
+
+ <test-case FilePath="feeds">
+ <compilation-unit name="feeds_11">
+ <output-dir compare="Text">feeds_11</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="feeds">
+ <compilation-unit name="feeds_12">
+ <output-dir compare="Text">feeds_12</output-dir>
+ </compilation-unit>
+ </test-case>
+
+ <test-case FilePath="feeds">
+ <compilation-unit name="issue_230_feeds">
+ <output-dir compare="Text">issue_230_feeds</output-dir>
+ </compilation-unit>
+ </test-case>
+
+ <test-case FilePath="feeds">
+ <compilation-unit name="issue_711_feeds">
+ <output-dir compare="Text">issue_711_feeds</output-dir>
+ </compilation-unit>
+ </test-case>
+ -->
+
+ </test-group>
+ <test-group name="hdfs">
+ <test-case FilePath="hdfs">
+ <compilation-unit name="hdfs_shortcircuit">
+ <output-dir compare="Text">hdfs_shortcircuit</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="hdfs">
+ <compilation-unit name="issue_245_hdfs">
+ <output-dir compare="Text">issue_245_hdfs</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="hdfs">
+ <compilation-unit name="hdfs_02">
+ <output-dir compare="Text">hdfs_02</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="hdfs">
+ <compilation-unit name="hdfs_03">
+ <output-dir compare="Text">hdfs_03</output-dir>
+ </compilation-unit>
+ </test-case>
+ </test-group>
+ <test-group>
+ <test-case FilePath="big-object">
+ <compilation-unit name="big_object_sort">
+ <output-dir compare="Text">big_object_sort</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="big-object">
+ <compilation-unit name="big_object_groupby">
+ <output-dir compare="Text">big_object_groupby</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="big-object">
+ <compilation-unit name="big_object_groupby-2">
+ <output-dir compare="Text">big_object_groupby-2</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="big-object">
+ <compilation-unit name="big_object_join">
+ <output-dir compare="Text">big_object_join</output-dir>
+ </compilation-unit>
+ </test-case>
+ </test-group>
+ <test-group name="external-indexing">
+ <test-case FilePath="external-indexing">
+ <compilation-unit name="text-format">
+ <output-dir compare="Text">text-format</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="external-indexing">
+ <compilation-unit name="sequence-format">
+ <output-dir compare="Text">sequence-format</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="external-indexing">
+ <compilation-unit name="rc-format">
+ <output-dir compare="Text">rc-format</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="external-indexing">
+ <compilation-unit name="rtree-index">
+ <output-dir compare="Text">rtree-index</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="external-indexing">
+ <compilation-unit name="leftouterjoin">
+ <output-dir compare="Text">leftouterjoin</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="external-indexing">
+ <compilation-unit name="leftouterjoin-rtree">
+ <output-dir compare="Text">leftouterjoin-rtree</output-dir>
+ </compilation-unit>
+ </test-case>
+ </test-group>
+ <test-group name="temporal">
+ <test-case FilePath="temporal">
+ <compilation-unit name="overlap_bins_gby_3">
+ <output-dir compare="Text">overlap_bins_gby_3</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="temporal">
+ <compilation-unit name="agg_01">
+ <output-dir compare="Text">agg_01</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="temporal">
+ <compilation-unit name="overlap_bins_gby_1">
+ <output-dir compare="Text">overlap_bins_gby_1</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="temporal">
+ <compilation-unit name="duration_functions">
+ <output-dir compare="Text">duration_functions</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="temporal">
+ <compilation-unit name="overlap_bins_gby_0">
+ <output-dir compare="Text">overlap_bins_gby_0</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="temporal">
+ <compilation-unit name="get_overlapping_interval">
+ <output-dir compare="Text">get_overlapping_interval</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="temporal">
+ <compilation-unit name="overlap_bins">
+ <output-dir compare="Text">overlap_bins</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="temporal">
+ <compilation-unit name="parse_02">
+ <output-dir compare="Text">parse_02</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="temporal">
+ <compilation-unit name="parse_01">
+ <output-dir compare="Text">parse_01</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="temporal">
+ <compilation-unit name="day_of_week_01">
+ <output-dir compare="Text">day_of_week_01</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="temporal">
+ <compilation-unit name="interval_bin">
+ <output-dir compare="Text">interval_bin</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="temporal">
+ <compilation-unit name="interval_bin_gby_0">
+ <output-dir compare="Text">interval_bin_gby_0</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="temporal">
+ <compilation-unit name="interval_bin_gby_1">
+ <output-dir compare="Text">interval_bin_gby_1</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="temporal">
+ <compilation-unit name="accessors">
+ <output-dir compare="Text">accessors</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="temporal">
+ <compilation-unit name="accessors_interval">
+ <output-dir compare="Text">accessors_interval</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="temporal">
+ <compilation-unit name="accessors_interval_null">
+ <output-dir compare="Text">accessors_interval_null</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="temporal">
+ <compilation-unit name="adjust_timezone">
+ <output-dir compare="Text">adjust_timezone</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="temporal">
+ <compilation-unit name="calendar_duration">
+ <output-dir compare="Text">calendar_duration</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="temporal">
+ <compilation-unit name="date_functions">
+ <output-dir compare="Text">date_functions</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="temporal">
+ <compilation-unit name="datetime_functions">
+ <output-dir compare="Text">datetime_functions</output-dir>
+ </compilation-unit>
+ </test-case>
+ <!--
+ <test-case FilePath="temporal">
+ <compilation-unit name="insert_from_delimited_ds">
+ <output-dir compare="Text">insert_from_delimited_ds</output-dir>
+ </compilation-unit>
+ </test-case>
+ -->
+ <test-case FilePath="temporal">
+ <compilation-unit name="insert_from_ext_ds">
+ <output-dir compare="Text">insert_from_ext_ds</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="temporal">
+ <compilation-unit name="insert_from_ext_ds_2">
+ <output-dir compare="Text">insert_from_ext_ds_2</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="temporal">
+ <compilation-unit name="interval_functions">
+ <output-dir compare="Text">interval_functions</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="temporal">
+ <compilation-unit name="time_functions">
+ <output-dir compare="Text">time_functions</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="constructor">
+ <compilation-unit name="interval">
+ <output-dir compare="Text">interval</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="temporal">
+ <compilation-unit name="duration_comps">
+ <output-dir compare="Text">duration_comps</output-dir>
+ </compilation-unit>
+ </test-case>
+ </test-group>
+ <test-group name="leftouterjoin">
+ <test-case FilePath="leftouterjoin">
+ <compilation-unit name="query_issue658">
+ <output-dir compare="Text">query_issue658</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="leftouterjoin">
+ <compilation-unit name="query_issue285">
+ <output-dir compare="Text">query_issue285</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="leftouterjoin">
+ <compilation-unit name="query_issue285-2">
+ <output-dir compare="Text">query_issue285-2</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="leftouterjoin">
+ <compilation-unit name="query_issue849">
+ <output-dir compare="Text">query_issue849</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="leftouterjoin">
+ <compilation-unit name="query_issue849-2">
+ <output-dir compare="Text">query_issue849-2</output-dir>
+ </compilation-unit>
+ </test-case>
+ </test-group>
+ <test-group name="index-leftouterjoin">
+ <test-case FilePath="index-leftouterjoin">
+ <compilation-unit name="probe-pidx-with-join-btree-sidx1">
+ <output-dir compare="Text">probe-pidx-with-join-btree-sidx1</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="index-leftouterjoin">
+ <compilation-unit name="probe-pidx-with-join-btree-sidx2">
+ <output-dir compare="Text">probe-pidx-with-join-btree-sidx2</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="index-leftouterjoin">
+ <compilation-unit name="probe-pidx-with-join-rtree-sidx1">
+ <output-dir compare="Text">probe-pidx-with-join-rtree-sidx1</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="index-leftouterjoin">
+ <compilation-unit name="probe-pidx-with-join-rtree-sidx2">
+ <output-dir compare="Text">probe-pidx-with-join-rtree-sidx2</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="index-leftouterjoin">
+ <compilation-unit name="probe-pidx-with-join-invidx-sidx1">
+ <output-dir compare="Text">probe-pidx-with-join-invidx-sidx1</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="index-leftouterjoin">
+ <compilation-unit name="probe-pidx-with-join-invidx-sidx2">
+ <output-dir compare="Text">probe-pidx-with-join-invidx-sidx2</output-dir>
+ </compilation-unit>
+ </test-case>
+ </test-group>
+ <test-group name="distinct">
+ <test-case FilePath="distinct">
+ <compilation-unit name="query-issue443">
+ <output-dir compare="Text">query-issue443</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="distinct">
+ <compilation-unit name="query-issue443-2">
+ <output-dir compare="Text">query-issue443-2</output-dir>
+ </compilation-unit>
+ </test-case>
+ </test-group>
+ <test-group name="tinysocial">
+ <test-case FilePath="tinysocial">
+ <compilation-unit name="tinysocial-suite">
+ <output-dir compare="Text">tinysocial-suite</output-dir>
+ </compilation-unit>
+ </test-case>
+ </test-group>
+ <test-group name="types">
+ <test-case FilePath="types">
+ <compilation-unit name="record01">
+ <output-dir compare="Text">record01</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="types">
+ <compilation-unit name="type_promotion_0">
+ <output-dir compare="Text">type_promotion_0</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="types">
+ <compilation-unit name="type_promotion_1">
+ <output-dir compare="Text">type_promotion_1</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="types">
+ <compilation-unit name="opentype_orderby_01">
+ <output-dir compare="Text">opentype_orderby_01</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="types">
+ <compilation-unit name="promotion_closedtype_field_vs_closedtype_field_01">
+ <output-dir compare="Text">promotion_closedtype_field_vs_closedtype_field_01</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="types">
+ <compilation-unit name="promotion_closedtype_field_vs_closedtype_field_02">
+ <output-dir compare="Text">promotion_closedtype_field_vs_closedtype_field_02</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="types">
+ <compilation-unit name="promotion_closedtype_field_vs_closedtype_field_03">
+ <output-dir compare="Text">promotion_closedtype_field_vs_closedtype_field_03</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="types">
+ <compilation-unit name="promotion_closedtype_field_vs_closedtype_field_04">
+ <output-dir compare="Text">promotion_closedtype_field_vs_closedtype_field_04</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="types">
+ <compilation-unit name="promotion_closedtype_field_vs_closedtype_field_05">
+ <output-dir compare="Text">promotion_closedtype_field_vs_closedtype_field_05</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="types">
+ <compilation-unit name="promotion_closedtype_field_vs_constant_01">
+ <output-dir compare="Text">promotion_closedtype_field_vs_constant_01</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="types">
+ <compilation-unit name="promotion_closedtype_field_vs_constant_02">
+ <output-dir compare="Text">promotion_closedtype_field_vs_constant_02</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="types">
+ <compilation-unit name="promotion_closedtype_field_vs_constant_03">
+ <output-dir compare="Text">promotion_closedtype_field_vs_constant_03</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="types">
+ <compilation-unit name="promotion_closedtype_field_vs_constant_04">
+ <output-dir compare="Text">promotion_closedtype_field_vs_constant_04</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="types">
+ <compilation-unit name="promotion_closedtype_field_vs_constant_05">
+ <output-dir compare="Text">promotion_closedtype_field_vs_constant_05</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="types">
+ <compilation-unit name="promotion_closedtype_field_vs_constant_06">
+ <output-dir compare="Text">promotion_closedtype_field_vs_constant_06</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="types">
+ <compilation-unit name="promotion_closedtype_field_vs_constant_07">
+ <output-dir compare="Text">promotion_closedtype_field_vs_constant_07</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="types">
+ <compilation-unit name="promotion_closedtype_field_vs_constant_08">
+ <output-dir compare="Text">promotion_closedtype_field_vs_constant_08</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="types">
+ <compilation-unit name="promotion_closedtype_field_vs_constant_09">
+ <output-dir compare="Text">promotion_closedtype_field_vs_constant_09</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="types">
+ <compilation-unit name="promotion_closedtype_field_vs_constant_10">
+ <output-dir compare="Text">promotion_closedtype_field_vs_constant_10</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="types">
+ <compilation-unit name="promotion_closedtype_field_vs_constant_11">
+ <output-dir compare="Text">promotion_closedtype_field_vs_constant_11</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="types">
+ <compilation-unit name="promotion_closedtype_field_vs_opentype_field_01">
+ <output-dir compare="Text">promotion_closedtype_field_vs_opentype_field_01</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="types">
+ <compilation-unit name="promotion_closedtype_field_vs_opentype_field_02">
+ <output-dir compare="Text">promotion_closedtype_field_vs_opentype_field_02</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="types">
+ <compilation-unit name="promotion_closedtype_field_vs_opentype_field_03">
+ <output-dir compare="Text">promotion_closedtype_field_vs_opentype_field_03</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="types">
+ <compilation-unit name="promotion_closedtype_field_vs_opentype_field_04">
+ <output-dir compare="Text">promotion_closedtype_field_vs_opentype_field_04</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="types">
+ <compilation-unit name="promotion_opentype_field_vs_constant_01">
+ <output-dir compare="Text">promotion_opentype_field_vs_constant_01</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="types">
+ <compilation-unit name="promotion_opentype_field_vs_constant_02">
+ <output-dir compare="Text">promotion_opentype_field_vs_constant_02</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="types">
+ <compilation-unit name="promotion_opentype_field_vs_constant_03">
+ <output-dir compare="Text">promotion_opentype_field_vs_constant_03</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="types">
+ <compilation-unit name="promotion_opentype_field_vs_constant_04">
+ <output-dir compare="Text">promotion_opentype_field_vs_constant_04</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="types">
+ <compilation-unit name="promotion_opentype_field_vs_constant_05">
+ <output-dir compare="Text">promotion_opentype_field_vs_constant_05</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="types">
+ <compilation-unit name="promotion_opentype_field_vs_constant_06">
+ <output-dir compare="Text">promotion_opentype_field_vs_constant_06</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="types">
+ <compilation-unit name="promotion_opentype_field_vs_constant_07">
+ <output-dir compare="Text">promotion_opentype_field_vs_constant_07</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="types">
+ <compilation-unit name="promotion_opentype_field_vs_constant_08">
+ <output-dir compare="Text">promotion_opentype_field_vs_constant_08</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="types">
+ <compilation-unit name="promotion_opentype_field_vs_opentype_field_01">
+ <output-dir compare="Text">promotion_opentype_field_vs_opentype_field_01</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="types">
+ <compilation-unit name="promotion_opentype_field_vs_opentype_field_02">
+ <output-dir compare="Text">promotion_opentype_field_vs_opentype_field_02</output-dir>
+ </compilation-unit>
+ </test-case>
+ </test-group>
+ <test-group name="materialization">
+ <test-case FilePath="materialization">
+ <compilation-unit name="assign-reuse">
+ <output-dir compare="Text">assign-reuse</output-dir>
+ </compilation-unit>
+ </test-case>
+ </test-group>
+ <test-group name="filters">
+ <test-case FilePath="filters">
+ <compilation-unit name="equality-predicate">
+ <output-dir compare="Text">equality-predicate</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="filters">
+ <compilation-unit name="load">
+ <output-dir compare="Text">load</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="filters">
+ <compilation-unit name="load-with-secondary-btree">
+ <output-dir compare="Text">load-with-secondary-btree</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="filters">
+ <compilation-unit name="load-with-secondary-inverted-ngram">
+ <output-dir compare="Text">load-with-secondary-inverted-ngram</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="filters">
+ <compilation-unit name="load-with-secondary-inverted-word">
+ <output-dir compare="Text">load-with-secondary-inverted-word</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="filters">
+ <compilation-unit name="load-with-secondary-rtree">
+ <output-dir compare="Text">load-with-secondary-rtree</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="filters">
+ <compilation-unit name="insert">
+ <output-dir compare="Text">insert</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="filters">
+ <compilation-unit name="insert-with-secondary-btree">
+ <output-dir compare="Text">insert-with-secondary-btree</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="filters">
+ <compilation-unit name="insert-with-secondary-inverted-ngram">
+ <output-dir compare="Text">insert-with-secondary-inverted-ngram</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="filters">
+ <compilation-unit name="insert-with-secondary-inverted-word">
+ <output-dir compare="Text">insert-with-secondary-inverted-word</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="filters">
+ <compilation-unit name="insert-with-secondary-rtree">
+ <output-dir compare="Text">insert-with-secondary-rtree</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="filters">
+ <compilation-unit name="nested-filterequality-predicate">
+ <output-dir compare="Text">nested-filter-equality-predicate</output-dir>
+ </compilation-unit>
+ </test-case>
+ </test-group>
+ <test-group name="json">
+ <test-case FilePath="json">
+ <compilation-unit name="int01">
+ <output-dir compare="Lossless-JSON">int01-losslessjson</output-dir>
+ </compilation-unit>
+ </test-case>
+ </test-group>
+ <test-group name="cleanjson">
+ <test-case FilePath="json">
+ <compilation-unit name="int01">
+ <output-dir compare="Clean-JSON">int01-cleanjson</output-dir>
+ </compilation-unit>
+ </test-case>
+ </test-group>
+ <test-group name="csv">
+ <test-case FilePath="csv">
+ <compilation-unit name="basic-types">
+ <output-dir compare="CSV">basic-types</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="csv">
+ <compilation-unit name="basic-types">
+ <output-dir compare="CSV_Header">basic-types-header</output-dir>
+ </compilation-unit>
+ </test-case>
+ </test-group>
+ <test-group name="binary">
+ <test-case FilePath="binary">
+ <compilation-unit name="parse">
+ <output-dir compare="Text">parse</output-dir>
+ </compilation-unit>
+ </test-case>
+
+ <test-case FilePath="binary">
+ <compilation-unit name="print">
+ <output-dir compare="Text">print</output-dir>
+ </compilation-unit>
+ </test-case>
+
+ <test-case FilePath="binary">
+ <compilation-unit name="concat">
+ <output-dir compare="Text">concat</output-dir>
+ </compilation-unit>
+ </test-case>
+
+ <test-case FilePath="binary">
+ <compilation-unit name="subbinary">
+ <output-dir compare="Text">subbinary</output-dir>
+ </compilation-unit>
+ </test-case>
+
+ <test-case FilePath="binary">
+ <compilation-unit name="find">
+ <output-dir compare="Text">find</output-dir>
+ </compilation-unit>
+ </test-case>
+
+ <test-case FilePath="binary">
+ <compilation-unit name="insert">
+ <output-dir compare="Text">insert</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="binary">
+ <compilation-unit name="equal_join">
+ <output-dir compare="Text">equal_join</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="binary">
+ <compilation-unit name="index_join">
+ <output-dir compare="Text">index_join</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="binary">
+ <compilation-unit name="length">
+ <output-dir compare="Text">length</output-dir>
+ </compilation-unit>
+ </test-case>
+ </test-group>
+ <test-group name="temp-dataset">
+ <test-case FilePath="temp-dataset">
+ <compilation-unit name="delete-from-loaded-dataset">
+ <output-dir compare="Text">delete-from-loaded-dataset</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="temp-dataset">
+ <compilation-unit name="delete-from-loaded-dataset-with-index">
+ <output-dir compare="Text">delete-from-loaded-dataset-with-index</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="temp-dataset">
+ <compilation-unit name="drop-empty-secondary-indexes">
+ <output-dir compare="Text">drop-empty-secondary-indexes</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="temp-dataset">
+ <compilation-unit name="drop-index">
+ <output-dir compare="Text">drop-index</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="temp-dataset">
+ <compilation-unit name="empty-load-with-index">
+ <output-dir compare="Text">empty-load-with-index</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="temp-dataset">
+ <compilation-unit name="insert-and-scan-dataset">
+ <output-dir compare="Text">insert-and-scan-dataset</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="temp-dataset">
+ <compilation-unit name="q01_pricing_summary_report_nt">
+ <output-dir compare="Text">q01_pricing_summary_report_nt</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="temp-dataset">
+ <compilation-unit name="scan-delete-rtree-secondary-index">
+ <output-dir compare="Text">scan-delete-rtree-secondary-index</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="temp-dataset">
+ <compilation-unit name="scan-insert-rtree-secondary-index">
+ <output-dir compare="Text">scan-insert-rtree-secondary-index</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="temp-dataset">
+ <compilation-unit name="scan-insert-persistent-to-temp">
+ <output-dir compare="Text">scan-insert-persistent-to-temp</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="temp-dataset">
+ <compilation-unit name="scan-insert-temp-to-persistent">
+ <output-dir compare="Text">scan-insert-temp-to-persistent</output-dir>
+ </compilation-unit>
+ </test-case>
+ <test-case FilePath="temp-dataset">
+ <compilation-unit name="insert-and-scan-dataset-with-index">
+ <output-dir compare="Text">insert-and-scan-dataset-with-index</output-dir>
+ </compilation-unit>
+ </test-case>
+ </test-group>
+</test-suite>